@x-plat/design-system 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (165) hide show
  1. package/README.md +123 -0
  2. package/dist/attributes-DJIWir_0.d.cts +7 -0
  3. package/dist/attributes-DJIWir_0.d.ts +7 -0
  4. package/dist/breakpoints-DsXkJgdl.d.cts +35 -0
  5. package/dist/breakpoints-DsXkJgdl.d.ts +35 -0
  6. package/dist/colors-BG91q_uV.d.cts +133 -0
  7. package/dist/colors-BG91q_uV.d.ts +133 -0
  8. package/dist/components/Button/index.cjs +203 -0
  9. package/dist/components/Button/index.css +1231 -0
  10. package/dist/components/Button/index.d.cts +132 -0
  11. package/dist/components/Button/index.d.ts +132 -0
  12. package/dist/components/Button/index.js +176 -0
  13. package/dist/components/Card/index.cjs +56 -0
  14. package/dist/components/Card/index.css +27 -0
  15. package/dist/components/Card/index.d.cts +13 -0
  16. package/dist/components/Card/index.d.ts +13 -0
  17. package/dist/components/Card/index.js +29 -0
  18. package/dist/components/Chart/index.cjs +393 -0
  19. package/dist/components/Chart/index.css +4 -0
  20. package/dist/components/Chart/index.d.cts +10 -0
  21. package/dist/components/Chart/index.d.ts +10 -0
  22. package/dist/components/Chart/index.js +367 -0
  23. package/dist/components/CheckBox/index.cjs +1116 -0
  24. package/dist/components/CheckBox/index.css +598 -0
  25. package/dist/components/CheckBox/index.d.cts +132 -0
  26. package/dist/components/CheckBox/index.d.ts +132 -0
  27. package/dist/components/CheckBox/index.js +1089 -0
  28. package/dist/components/Chip/index.cjs +193 -0
  29. package/dist/components/Chip/index.css +1227 -0
  30. package/dist/components/Chip/index.d.cts +132 -0
  31. package/dist/components/Chip/index.d.ts +132 -0
  32. package/dist/components/Chip/index.js +166 -0
  33. package/dist/components/DatePicker/index.cjs +1653 -0
  34. package/dist/components/DatePicker/index.css +1417 -0
  35. package/dist/components/DatePicker/index.d.cts +56 -0
  36. package/dist/components/DatePicker/index.d.ts +56 -0
  37. package/dist/components/DatePicker/index.js +1613 -0
  38. package/dist/components/HtmlTypeWriter/index.cjs +172 -0
  39. package/dist/components/HtmlTypeWriter/index.css +23 -0
  40. package/dist/components/HtmlTypeWriter/index.d.cts +14 -0
  41. package/dist/components/HtmlTypeWriter/index.d.ts +14 -0
  42. package/dist/components/HtmlTypeWriter/index.js +135 -0
  43. package/dist/components/ImageSelector/index.cjs +1063 -0
  44. package/dist/components/ImageSelector/index.css +85 -0
  45. package/dist/components/ImageSelector/index.d.cts +10 -0
  46. package/dist/components/ImageSelector/index.d.ts +10 -0
  47. package/dist/components/ImageSelector/index.js +1026 -0
  48. package/dist/components/Input/index.cjs +410 -0
  49. package/dist/components/Input/index.css +74 -0
  50. package/dist/components/Input/index.d.cts +23 -0
  51. package/dist/components/Input/index.d.ts +23 -0
  52. package/dist/components/Input/index.js +372 -0
  53. package/dist/components/Modal/index.cjs +101 -0
  54. package/dist/components/Modal/index.css +39 -0
  55. package/dist/components/Modal/index.d.cts +16 -0
  56. package/dist/components/Modal/index.d.ts +16 -0
  57. package/dist/components/Modal/index.js +64 -0
  58. package/dist/components/PopOver/index.cjs +176 -0
  59. package/dist/components/PopOver/index.css +27 -0
  60. package/dist/components/PopOver/index.d.cts +15 -0
  61. package/dist/components/PopOver/index.d.ts +15 -0
  62. package/dist/components/PopOver/index.js +139 -0
  63. package/dist/components/Radio/index.cjs +257 -0
  64. package/dist/components/Radio/index.css +777 -0
  65. package/dist/components/Radio/index.d.cts +154 -0
  66. package/dist/components/Radio/index.d.ts +154 -0
  67. package/dist/components/Radio/index.js +219 -0
  68. package/dist/components/Select/index.cjs +1203 -0
  69. package/dist/components/Select/index.css +136 -0
  70. package/dist/components/Select/index.d.cts +44 -0
  71. package/dist/components/Select/index.d.ts +44 -0
  72. package/dist/components/Select/index.js +1165 -0
  73. package/dist/components/Swiper/index.cjs +144 -0
  74. package/dist/components/Swiper/index.d.cts +24 -0
  75. package/dist/components/Swiper/index.d.ts +24 -0
  76. package/dist/components/Swiper/index.js +128 -0
  77. package/dist/components/Switch/index.cjs +240 -0
  78. package/dist/components/Switch/index.css +780 -0
  79. package/dist/components/Switch/index.d.cts +131 -0
  80. package/dist/components/Switch/index.d.ts +131 -0
  81. package/dist/components/Switch/index.js +203 -0
  82. package/dist/components/Tab/index.cjs +122 -0
  83. package/dist/components/Tab/index.css +59 -0
  84. package/dist/components/Tab/index.d.cts +18 -0
  85. package/dist/components/Tab/index.d.ts +18 -0
  86. package/dist/components/Tab/index.js +85 -0
  87. package/dist/components/Table/index.cjs +384 -0
  88. package/dist/components/Table/index.css +4093 -0
  89. package/dist/components/Table/index.d.cts +174 -0
  90. package/dist/components/Table/index.d.ts +174 -0
  91. package/dist/components/Table/index.js +343 -0
  92. package/dist/components/TextArea/index.cjs +114 -0
  93. package/dist/components/TextArea/index.css +34 -0
  94. package/dist/components/TextArea/index.d.cts +6 -0
  95. package/dist/components/TextArea/index.d.ts +6 -0
  96. package/dist/components/TextArea/index.js +77 -0
  97. package/dist/components/Tooltip/index.cjs +210 -0
  98. package/dist/components/Tooltip/index.css +599 -0
  99. package/dist/components/Tooltip/index.d.cts +134 -0
  100. package/dist/components/Tooltip/index.d.ts +134 -0
  101. package/dist/components/Tooltip/index.js +173 -0
  102. package/dist/components/Video/index.cjs +269 -0
  103. package/dist/components/Video/index.css +71 -0
  104. package/dist/components/Video/index.d.cts +15 -0
  105. package/dist/components/Video/index.d.ts +15 -0
  106. package/dist/components/Video/index.js +232 -0
  107. package/dist/components/index.cjs +3221 -0
  108. package/dist/components/index.css +9972 -0
  109. package/dist/components/index.d.cts +23 -0
  110. package/dist/components/index.d.ts +23 -0
  111. package/dist/components/index.js +3167 -0
  112. package/dist/index.cjs +8216 -0
  113. package/dist/index.css +10087 -0
  114. package/dist/index.d.cts +31 -0
  115. package/dist/index.d.ts +31 -0
  116. package/dist/index.js +7855 -0
  117. package/dist/layout/Grid/FullGrid/index.cjs +54 -0
  118. package/dist/layout/Grid/FullGrid/index.css +21 -0
  119. package/dist/layout/Grid/FullGrid/index.d.cts +9 -0
  120. package/dist/layout/Grid/FullGrid/index.d.ts +9 -0
  121. package/dist/layout/Grid/FullGrid/index.js +27 -0
  122. package/dist/layout/Grid/FullScreen/index.cjs +54 -0
  123. package/dist/layout/Grid/FullScreen/index.css +23 -0
  124. package/dist/layout/Grid/FullScreen/index.d.cts +9 -0
  125. package/dist/layout/Grid/FullScreen/index.d.ts +9 -0
  126. package/dist/layout/Grid/FullScreen/index.js +27 -0
  127. package/dist/layout/Grid/GapGrid/index.cjs +32 -0
  128. package/dist/layout/Grid/GapGrid/index.d.cts +12 -0
  129. package/dist/layout/Grid/GapGrid/index.d.ts +12 -0
  130. package/dist/layout/Grid/GapGrid/index.js +11 -0
  131. package/dist/layout/Grid/Item/index.cjs +71 -0
  132. package/dist/layout/Grid/Item/index.css +19 -0
  133. package/dist/layout/Grid/Item/index.d.cts +20 -0
  134. package/dist/layout/Grid/Item/index.d.ts +20 -0
  135. package/dist/layout/Grid/Item/index.js +44 -0
  136. package/dist/layout/Grid/index.cjs +95 -0
  137. package/dist/layout/Grid/index.css +65 -0
  138. package/dist/layout/Grid/index.d.cts +5 -0
  139. package/dist/layout/Grid/index.d.ts +5 -0
  140. package/dist/layout/Grid/index.js +65 -0
  141. package/dist/layout/Header/index.cjs +45 -0
  142. package/dist/layout/Header/index.css +11 -0
  143. package/dist/layout/Header/index.d.cts +10 -0
  144. package/dist/layout/Header/index.d.ts +10 -0
  145. package/dist/layout/Header/index.js +18 -0
  146. package/dist/layout/Layout/index.cjs +44 -0
  147. package/dist/layout/Layout/index.css +23 -0
  148. package/dist/layout/Layout/index.d.cts +15 -0
  149. package/dist/layout/Layout/index.d.ts +15 -0
  150. package/dist/layout/Layout/index.js +17 -0
  151. package/dist/layout/SideBar/index.cjs +101 -0
  152. package/dist/layout/SideBar/index.css +10 -0
  153. package/dist/layout/SideBar/index.d.cts +16 -0
  154. package/dist/layout/SideBar/index.d.ts +16 -0
  155. package/dist/layout/SideBar/index.js +62 -0
  156. package/dist/layout/index.cjs +188 -0
  157. package/dist/layout/index.css +112 -0
  158. package/dist/layout/index.d.cts +8 -0
  159. package/dist/layout/index.d.ts +8 -0
  160. package/dist/layout/index.js +143 -0
  161. package/dist/tokens/index.cjs +6225 -0
  162. package/dist/tokens/index.d.cts +593 -0
  163. package/dist/tokens/index.d.ts +593 -0
  164. package/dist/tokens/index.js +5900 -0
  165. package/package.json +86 -0
@@ -0,0 +1,4093 @@
1
+ /* src/components/Table/table.scss */
2
+ .lib-xplat-table-wrapper {
3
+ width: 100%;
4
+ position: relative;
5
+ }
6
+ .lib-xplat-table-wrapper > .lib-xplat-table {
7
+ width: 100%;
8
+ min-width: 600px;
9
+ }
10
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead.table-sticky {
11
+ position: sticky;
12
+ top: 0;
13
+ z-index: 9;
14
+ }
15
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.table-bottom-border,
16
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.table-bottom-border {
17
+ border-bottom: 1px solid #E5E5E5;
18
+ }
19
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-50,
20
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-50 {
21
+ background-color: #FFF0F0;
22
+ }
23
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-50 > td,
24
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-50 > th,
25
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-50 > td,
26
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-50 > th {
27
+ color: #FFFFFF;
28
+ background-color: #FFF0F0;
29
+ }
30
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-50 > td.cell-hover:hover,
31
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-50 > th.cell-hover:hover,
32
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-50 > td.cell-hover:hover,
33
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-50 > th.cell-hover:hover {
34
+ background-color: hsl(0, 100%, 105.0588235294%);
35
+ }
36
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-50.hover:hover > td,
37
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-50.hover:hover > th,
38
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-50.hover:hover > td,
39
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-50.hover:hover > th {
40
+ color: #FFFFFF;
41
+ background-color: hsl(0, 100%, 105.0588235294%);
42
+ }
43
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-100,
44
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-100 {
45
+ background-color: #FFDDDE;
46
+ }
47
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-100 > td,
48
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-100 > th,
49
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-100 > td,
50
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-100 > th {
51
+ color: #FFFFFF;
52
+ background-color: #FFDDDE;
53
+ }
54
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-100 > td.cell-hover:hover,
55
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-100 > th.cell-hover:hover,
56
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-100 > td.cell-hover:hover,
57
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-100 > th.cell-hover:hover {
58
+ background-color: hsl(358.2352941176, 100%, 101.3333333333%);
59
+ }
60
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-100.hover:hover > td,
61
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-100.hover:hover > th,
62
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-100.hover:hover > td,
63
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-100.hover:hover > th {
64
+ color: #FFFFFF;
65
+ background-color: hsl(358.2352941176, 100%, 101.3333333333%);
66
+ }
67
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-200,
68
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-200 {
69
+ background-color: #FFC1C2;
70
+ }
71
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-200 > td,
72
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-200 > th,
73
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-200 > td,
74
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-200 > th {
75
+ color: #FFFFFF;
76
+ background-color: #FFC1C2;
77
+ }
78
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-200 > td.cell-hover:hover,
79
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-200 > th.cell-hover:hover,
80
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-200 > td.cell-hover:hover,
81
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-200 > th.cell-hover:hover {
82
+ background-color: rgb(255, 152.2, 153.8580645161);
83
+ }
84
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-200.hover:hover > td,
85
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-200.hover:hover > th,
86
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-200.hover:hover > td,
87
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-200.hover:hover > th {
88
+ color: #FFFFFF;
89
+ background-color: rgb(255, 152.2, 153.8580645161);
90
+ }
91
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-300,
92
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-300 {
93
+ background-color: #FF9698;
94
+ }
95
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-300 > td,
96
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-300 > th,
97
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-300 > td,
98
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-300 > th {
99
+ color: #FFFFFF;
100
+ background-color: #FF9698;
101
+ }
102
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-300 > td.cell-hover:hover,
103
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-300 > th.cell-hover:hover,
104
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-300 > td.cell-hover:hover,
105
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-300 > th.cell-hover:hover {
106
+ background-color: rgb(255, 109.2, 111.9771428571);
107
+ }
108
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-300.hover:hover > td,
109
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-300.hover:hover > th,
110
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-300.hover:hover > td,
111
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-300.hover:hover > th {
112
+ color: #FFFFFF;
113
+ background-color: rgb(255, 109.2, 111.9771428571);
114
+ }
115
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-400,
116
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-400 {
117
+ background-color: #FF5A5D;
118
+ }
119
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-400 > td,
120
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-400 > th,
121
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-400 > td,
122
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-400 > th {
123
+ color: #FFFFFF;
124
+ background-color: #FF5A5D;
125
+ }
126
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-400 > td.cell-hover:hover,
127
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-400 > th.cell-hover:hover,
128
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-400 > td.cell-hover:hover,
129
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-400 > th.cell-hover:hover {
130
+ background-color: rgb(255, 141, 143.0727272727);
131
+ }
132
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-400.hover:hover > td,
133
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-400.hover:hover > th,
134
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-400.hover:hover > td,
135
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-400.hover:hover > th {
136
+ color: #FFFFFF;
137
+ background-color: rgb(255, 141, 143.0727272727);
138
+ }
139
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-500,
140
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-500 {
141
+ background-color: #FF272B;
142
+ }
143
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-500 > td,
144
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-500 > th,
145
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-500 > td,
146
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-500 > th {
147
+ color: #FFFFFF;
148
+ background-color: #FF272B;
149
+ }
150
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-500 > td.cell-hover:hover,
151
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-500 > th.cell-hover:hover,
152
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-500 > td.cell-hover:hover,
153
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-500 > th.cell-hover:hover {
154
+ background-color: rgb(255, 90, 93.0555555556);
155
+ }
156
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-500.hover:hover > td,
157
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-500.hover:hover > th,
158
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-500.hover:hover > td,
159
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-500.hover:hover > th {
160
+ color: #FFFFFF;
161
+ background-color: rgb(255, 90, 93.0555555556);
162
+ }
163
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-600,
164
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-600 {
165
+ background-color: #F80409;
166
+ }
167
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-600 > td,
168
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-600 > th,
169
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-600 > td,
170
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-600 > th {
171
+ color: #FFFFFF;
172
+ background-color: #F80409;
173
+ }
174
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-600 > td.cell-hover:hover,
175
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-600 > th.cell-hover:hover,
176
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-600 > td.cell-hover:hover,
177
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-600 > th.cell-hover:hover {
178
+ background-color: rgb(251.7142857143, 51.2857142857, 55.3928571429);
179
+ }
180
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-600.hover:hover > td,
181
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-600.hover:hover > th,
182
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-600.hover:hover > td,
183
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-600.hover:hover > th {
184
+ color: #FFFFFF;
185
+ background-color: rgb(251.7142857143, 51.2857142857, 55.3928571429);
186
+ }
187
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-700,
188
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-700 {
189
+ background-color: #D40105;
190
+ }
191
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-700 > td,
192
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-700 > th,
193
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-700 > td,
194
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-700 > th {
195
+ color: #FFFFFF;
196
+ background-color: #D40105;
197
+ }
198
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-700 > td.cell-hover:hover,
199
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-700 > th.cell-hover:hover,
200
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-700 > td.cell-hover:hover,
201
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-700 > th.cell-hover:hover {
202
+ background-color: rgb(253.8450704225, 10.1549295775, 14.7746478873);
203
+ }
204
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-700.hover:hover > td,
205
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-700.hover:hover > th,
206
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-700.hover:hover > td,
207
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-700.hover:hover > th {
208
+ color: #FFFFFF;
209
+ background-color: rgb(253.8450704225, 10.1549295775, 14.7746478873);
210
+ }
211
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-800,
212
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-800 {
213
+ background-color: #AE0609;
214
+ }
215
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-800 > td,
216
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-800 > th,
217
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-800 > td,
218
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-800 > th {
219
+ color: #FFFFFF;
220
+ background-color: #AE0609;
221
+ }
222
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-800 > td.cell-hover:hover,
223
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-800 > th.cell-hover:hover,
224
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-800 > td.cell-hover:hover,
225
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-800 > th.cell-hover:hover {
226
+ background-color: rgb(223.3, 7.7, 11.55);
227
+ }
228
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-800.hover:hover > td,
229
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-800.hover:hover > th,
230
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-800.hover:hover > td,
231
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-800.hover:hover > th {
232
+ color: #FFFFFF;
233
+ background-color: rgb(223.3, 7.7, 11.55);
234
+ }
235
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-900,
236
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-900 {
237
+ background-color: #900C0F;
238
+ }
239
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-900 > td,
240
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-900 > th,
241
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-900 > td,
242
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-900 > th {
243
+ color: #FFFFFF;
244
+ background-color: #900C0F;
245
+ }
246
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-900 > td.cell-hover:hover,
247
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-900 > th.cell-hover:hover,
248
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-900 > td.cell-hover:hover,
249
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-900 > th.cell-hover:hover {
250
+ background-color: rgb(191.0769230769, 15.9230769231, 19.9038461538);
251
+ }
252
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-900.hover:hover > td,
253
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-red-900.hover:hover > th,
254
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-900.hover:hover > td,
255
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-red-900.hover:hover > th {
256
+ color: #FFFFFF;
257
+ background-color: rgb(191.0769230769, 15.9230769231, 19.9038461538);
258
+ }
259
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-50,
260
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-50 {
261
+ background-color: #E5F6EA;
262
+ }
263
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-50 > td,
264
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-50 > th,
265
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-50 > td,
266
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-50 > th {
267
+ color: #FFFFFF;
268
+ background-color: #E5F6EA;
269
+ }
270
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-50 > td.cell-hover:hover,
271
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-50 > th.cell-hover:hover,
272
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-50 > td.cell-hover:hover,
273
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-50 > th.cell-hover:hover {
274
+ background-color: hsl(137.6470588235, 48.5714285714%, 101.137254902%);
275
+ }
276
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-50.hover:hover > td,
277
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-50.hover:hover > th,
278
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-50.hover:hover > td,
279
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-50.hover:hover > th {
280
+ color: #FFFFFF;
281
+ background-color: hsl(137.6470588235, 48.5714285714%, 101.137254902%);
282
+ }
283
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-100,
284
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-100 {
285
+ background-color: #C1E7CC;
286
+ }
287
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-100 > td,
288
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-100 > th,
289
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-100 > td,
290
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-100 > th {
291
+ color: #FFFFFF;
292
+ background-color: #C1E7CC;
293
+ }
294
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-100 > td.cell-hover:hover,
295
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-100 > th.cell-hover:hover,
296
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-100 > td.cell-hover:hover,
297
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-100 > th.cell-hover:hover {
298
+ background-color: rgb(222.4139534884, 242.3860465116, 228.1953488372);
299
+ }
300
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-100.hover:hover > td,
301
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-100.hover:hover > th,
302
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-100.hover:hover > td,
303
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-100.hover:hover > th {
304
+ color: #FFFFFF;
305
+ background-color: rgb(222.4139534884, 242.3860465116, 228.1953488372);
306
+ }
307
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-200,
308
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-200 {
309
+ background-color: #98D8AC;
310
+ }
311
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-200 > td,
312
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-200 > th,
313
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-200 > td,
314
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-200 > th {
315
+ color: #FFFFFF;
316
+ background-color: #98D8AC;
317
+ }
318
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-200 > td.cell-hover:hover,
319
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-200 > th.cell-hover:hover,
320
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-200 > td.cell-hover:hover,
321
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-200 > th.cell-hover:hover {
322
+ background-color: rgb(122.4056338028, 204.7943661972, 148.1521126761);
323
+ }
324
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-200.hover:hover > td,
325
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-200.hover:hover > th,
326
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-200.hover:hover > td,
327
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-200.hover:hover > th {
328
+ color: #FFFFFF;
329
+ background-color: rgb(122.4056338028, 204.7943661972, 148.1521126761);
330
+ }
331
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-300,
332
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-300 {
333
+ background-color: #6CCA8B;
334
+ }
335
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-300 > td,
336
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-300 > th,
337
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-300 > td,
338
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-300 > th {
339
+ color: #FFFFFF;
340
+ background-color: #6CCA8B;
341
+ }
342
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-300 > td.cell-hover:hover,
343
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-300 > th.cell-hover:hover,
344
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-300 > td.cell-hover:hover,
345
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-300 > th.cell-hover:hover {
346
+ background-color: rgb(78.012, 191.188, 115.336);
347
+ }
348
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-300.hover:hover > td,
349
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-300.hover:hover > th,
350
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-300.hover:hover > td,
351
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-300.hover:hover > th {
352
+ color: #FFFFFF;
353
+ background-color: rgb(78.012, 191.188, 115.336);
354
+ }
355
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-400,
356
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-400 {
357
+ background-color: #47BE72;
358
+ }
359
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-400 > td,
360
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-400 > th,
361
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-400 > td,
362
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-400 > th {
363
+ color: #FFFFFF;
364
+ background-color: #47BE72;
365
+ }
366
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-400 > td.cell-hover:hover,
367
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-400 > th.cell-hover:hover,
368
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-400 > td.cell-hover:hover,
369
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-400 > th.cell-hover:hover {
370
+ background-color: rgb(108.686746988, 203.313253012, 142.8795180723);
371
+ }
372
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-400.hover:hover > td,
373
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-400.hover:hover > th,
374
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-400.hover:hover > td,
375
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-400.hover:hover > th {
376
+ color: #FFFFFF;
377
+ background-color: rgb(108.686746988, 203.313253012, 142.8795180723);
378
+ }
379
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-500,
380
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-500 {
381
+ background-color: #10B259;
382
+ }
383
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-500 > td,
384
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-500 > th,
385
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-500 > td,
386
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-500 > th {
387
+ color: #FFFFFF;
388
+ background-color: #10B259;
389
+ }
390
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-500 > td.cell-hover:hover,
391
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-500 > th.cell-hover:hover,
392
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-500 > td.cell-hover:hover,
393
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-500 > th.cell-hover:hover {
394
+ background-color: rgb(20.206185567, 224.793814433, 112.3969072165);
395
+ }
396
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-500.hover:hover > td,
397
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-500.hover:hover > th,
398
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-500.hover:hover > td,
399
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-500.hover:hover > th {
400
+ color: #FFFFFF;
401
+ background-color: rgb(20.206185567, 224.793814433, 112.3969072165);
402
+ }
403
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-600,
404
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-600 {
405
+ background-color: #00A34F;
406
+ }
407
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-600 > td,
408
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-600 > th,
409
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-600 > td,
410
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-600 > th {
411
+ color: #FFFFFF;
412
+ background-color: #00A34F;
413
+ }
414
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-600 > td.cell-hover:hover,
415
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-600 > th.cell-hover:hover,
416
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-600 > td.cell-hover:hover,
417
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-600 > th.cell-hover:hover {
418
+ background-color: rgb(0, 214, 103.717791411);
419
+ }
420
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-600.hover:hover > td,
421
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-600.hover:hover > th,
422
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-600.hover:hover > td,
423
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-600.hover:hover > th {
424
+ color: #FFFFFF;
425
+ background-color: rgb(0, 214, 103.717791411);
426
+ }
427
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-700,
428
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-700 {
429
+ background-color: #009143;
430
+ }
431
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-700 > td,
432
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-700 > th,
433
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-700 > td,
434
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-700 > th {
435
+ color: #FFFFFF;
436
+ background-color: #009143;
437
+ }
438
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-700 > td.cell-hover:hover,
439
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-700 > th.cell-hover:hover,
440
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-700 > td.cell-hover:hover,
441
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-700 > th.cell-hover:hover {
442
+ background-color: rgb(0, 196, 90.5655172414);
443
+ }
444
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-700.hover:hover > td,
445
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-700.hover:hover > th,
446
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-700.hover:hover > td,
447
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-700.hover:hover > th {
448
+ color: #FFFFFF;
449
+ background-color: rgb(0, 196, 90.5655172414);
450
+ }
451
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-800,
452
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-800 {
453
+ background-color: #007F38;
454
+ }
455
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-800 > td,
456
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-800 > th,
457
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-800 > td,
458
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-800 > th {
459
+ color: #FFFFFF;
460
+ background-color: #007F38;
461
+ }
462
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-800 > td.cell-hover:hover,
463
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-800 > th.cell-hover:hover,
464
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-800 > td.cell-hover:hover,
465
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-800 > th.cell-hover:hover {
466
+ background-color: rgb(0, 178, 78.4881889764);
467
+ }
468
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-800.hover:hover > td,
469
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-800.hover:hover > th,
470
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-800.hover:hover > td,
471
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-800.hover:hover > th {
472
+ color: #FFFFFF;
473
+ background-color: rgb(0, 178, 78.4881889764);
474
+ }
475
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-900,
476
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-900 {
477
+ background-color: #006024;
478
+ }
479
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-900 > td,
480
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-900 > th,
481
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-900 > td,
482
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-900 > th {
483
+ color: #FFFFFF;
484
+ background-color: #006024;
485
+ }
486
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-900 > td.cell-hover:hover,
487
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-900 > th.cell-hover:hover,
488
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-900 > td.cell-hover:hover,
489
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-900 > th.cell-hover:hover {
490
+ background-color: rgb(0, 147, 55.125);
491
+ }
492
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-900.hover:hover > td,
493
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-green-900.hover:hover > th,
494
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-900.hover:hover > td,
495
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-green-900.hover:hover > th {
496
+ color: #FFFFFF;
497
+ background-color: rgb(0, 147, 55.125);
498
+ }
499
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-50,
500
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-50 {
501
+ background-color: #FFF8EC;
502
+ }
503
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-50 > td,
504
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-50 > th,
505
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-50 > td,
506
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-50 > th {
507
+ color: #FFFFFF;
508
+ background-color: #FFF8EC;
509
+ }
510
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-50 > td.cell-hover:hover,
511
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-50 > th.cell-hover:hover,
512
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-50 > td.cell-hover:hover,
513
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-50 > th.cell-hover:hover {
514
+ background-color: hsl(37.8947368421, 100%, 104.2745098039%);
515
+ }
516
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-50.hover:hover > td,
517
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-50.hover:hover > th,
518
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-50.hover:hover > td,
519
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-50.hover:hover > th {
520
+ color: #FFFFFF;
521
+ background-color: hsl(37.8947368421, 100%, 104.2745098039%);
522
+ }
523
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-100,
524
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-100 {
525
+ background-color: #FFF0D3;
526
+ }
527
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-100 > td,
528
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-100 > th,
529
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-100 > td,
530
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-100 > th {
531
+ color: #FFFFFF;
532
+ background-color: #FFF0D3;
533
+ }
534
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-100 > td.cell-hover:hover,
535
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-100 > th.cell-hover:hover,
536
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-100 > td.cell-hover:hover,
537
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-100 > th.cell-hover:hover {
538
+ background-color: rgb(255, 253.9090909091, 251.8);
539
+ }
540
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-100.hover:hover > td,
541
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-100.hover:hover > th,
542
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-100.hover:hover > td,
543
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-100.hover:hover > th {
544
+ color: #FFFFFF;
545
+ background-color: rgb(255, 253.9090909091, 251.8);
546
+ }
547
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-200,
548
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-200 {
549
+ background-color: #FFDDA5;
550
+ }
551
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-200 > td,
552
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-200 > th,
553
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-200 > td,
554
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-200 > th {
555
+ color: #FFFFFF;
556
+ background-color: #FFDDA5;
557
+ }
558
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-200 > td.cell-hover:hover,
559
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-200 > th.cell-hover:hover,
560
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-200 > td.cell-hover:hover,
561
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-200 > th.cell-hover:hover {
562
+ background-color: rgb(255, 236.4133333333, 205.8);
563
+ }
564
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-200.hover:hover > td,
565
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-200.hover:hover > th,
566
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-200.hover:hover > td,
567
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-200.hover:hover > th {
568
+ color: #FFFFFF;
569
+ background-color: rgb(255, 236.4133333333, 205.8);
570
+ }
571
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-300,
572
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-300 {
573
+ background-color: #FFC46D;
574
+ }
575
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-300 > td,
576
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-300 > th,
577
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-300 > td,
578
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-300 > th {
579
+ color: #FFFFFF;
580
+ background-color: #FFC46D;
581
+ }
582
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-300 > td.cell-hover:hover,
583
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-300 > th.cell-hover:hover,
584
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-300 > td.cell-hover:hover,
585
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-300 > th.cell-hover:hover {
586
+ background-color: rgb(255, 179.5123287671, 68.2);
587
+ }
588
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-300.hover:hover > td,
589
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-300.hover:hover > th,
590
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-300.hover:hover > td,
591
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-300.hover:hover > th {
592
+ color: #FFFFFF;
593
+ background-color: rgb(255, 179.5123287671, 68.2);
594
+ }
595
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-400,
596
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-400 {
597
+ background-color: #FF9F32;
598
+ }
599
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-400 > td,
600
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-400 > th,
601
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-400 > td,
602
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-400 > th {
603
+ color: #FFFFFF;
604
+ background-color: #FF9F32;
605
+ }
606
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-400 > td.cell-hover:hover,
607
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-400 > th.cell-hover:hover,
608
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-400 > td.cell-hover:hover,
609
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-400 > th.cell-hover:hover {
610
+ background-color: rgb(255, 139.8936585366, 9.2);
611
+ }
612
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-400.hover:hover > td,
613
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-400.hover:hover > th,
614
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-400.hover:hover > td,
615
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-400.hover:hover > th {
616
+ color: #FFFFFF;
617
+ background-color: rgb(255, 139.8936585366, 9.2);
618
+ }
619
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-500,
620
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-500 {
621
+ background-color: #FF820A;
622
+ }
623
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-500 > td,
624
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-500 > th,
625
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-500 > td,
626
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-500 > th {
627
+ color: #FFFFFF;
628
+ background-color: #FF820A;
629
+ }
630
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-500 > td.cell-hover:hover,
631
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-500 > th.cell-hover:hover,
632
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-500 > td.cell-hover:hover,
633
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-500 > th.cell-hover:hover {
634
+ background-color: rgb(255, 156.0204081633, 61);
635
+ }
636
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-500.hover:hover > td,
637
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-500.hover:hover > th,
638
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-500.hover:hover > td,
639
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-500.hover:hover > th {
640
+ color: #FFFFFF;
641
+ background-color: rgb(255, 156.0204081633, 61);
642
+ }
643
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-600,
644
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-600 {
645
+ background-color: #FF6900;
646
+ }
647
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-600 > td,
648
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-600 > th,
649
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-600 > td,
650
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-600 > th {
651
+ color: #FFFFFF;
652
+ background-color: #FF6900;
653
+ }
654
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-600 > td.cell-hover:hover,
655
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-600 > th.cell-hover:hover,
656
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-600 > td.cell-hover:hover,
657
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-600 > th.cell-hover:hover {
658
+ background-color: #ff8733;
659
+ }
660
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-600.hover:hover > td,
661
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-600.hover:hover > th,
662
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-600.hover:hover > td,
663
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-600.hover:hover > th {
664
+ color: #FFFFFF;
665
+ background-color: #ff8733;
666
+ }
667
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-700,
668
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-700 {
669
+ background-color: #CC4B02;
670
+ }
671
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-700 > td,
672
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-700 > th,
673
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-700 > td,
674
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-700 > th {
675
+ color: #FFFFFF;
676
+ background-color: #CC4B02;
677
+ }
678
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-700 > td.cell-hover:hover,
679
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-700 > th.cell-hover:hover,
680
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-700 > td.cell-hover:hover,
681
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-700 > th.cell-hover:hover {
682
+ background-color: rgb(252.5436893204, 94.1116504854, 4.4563106796);
683
+ }
684
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-700.hover:hover > td,
685
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-700.hover:hover > th,
686
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-700.hover:hover > td,
687
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-700.hover:hover > th {
688
+ color: #FFFFFF;
689
+ background-color: rgb(252.5436893204, 94.1116504854, 4.4563106796);
690
+ }
691
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-800,
692
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-800 {
693
+ background-color: #A13A0B;
694
+ }
695
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-800 > td,
696
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-800 > th,
697
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-800 > td,
698
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-800 > th {
699
+ color: #FFFFFF;
700
+ background-color: #A13A0B;
701
+ }
702
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-800 > td.cell-hover:hover,
703
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-800 > th.cell-hover:hover,
704
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-800 > td.cell-hover:hover,
705
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-800 > th.cell-hover:hover {
706
+ background-color: rgb(208.738372093, 75.1976744186, 14.261627907);
707
+ }
708
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-800.hover:hover > td,
709
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-800.hover:hover > th,
710
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-800.hover:hover > td,
711
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-800.hover:hover > th {
712
+ color: #FFFFFF;
713
+ background-color: rgb(208.738372093, 75.1976744186, 14.261627907);
714
+ }
715
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-900,
716
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-900 {
717
+ background-color: #82320C;
718
+ }
719
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-900 > td,
720
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-900 > th,
721
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-900 > td,
722
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-900 > th {
723
+ color: #FFFFFF;
724
+ background-color: #82320C;
725
+ }
726
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-900 > td.cell-hover:hover,
727
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-900 > th.cell-hover:hover,
728
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-900 > td.cell-hover:hover,
729
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-900 > th.cell-hover:hover {
730
+ background-color: rgb(176.6901408451, 67.9577464789, 16.3098591549);
731
+ }
732
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-900.hover:hover > td,
733
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-orange-900.hover:hover > th,
734
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-900.hover:hover > td,
735
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-orange-900.hover:hover > th {
736
+ color: #FFFFFF;
737
+ background-color: rgb(176.6901408451, 67.9577464789, 16.3098591549);
738
+ }
739
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-50,
740
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-50 {
741
+ background-color: #FFFDE7;
742
+ }
743
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-50 > td,
744
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-50 > th,
745
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-50 > td,
746
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-50 > th {
747
+ color: #FFFFFF;
748
+ background-color: #FFFDE7;
749
+ }
750
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-50 > td.cell-hover:hover,
751
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-50 > th.cell-hover:hover,
752
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-50 > td.cell-hover:hover,
753
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-50 > th.cell-hover:hover {
754
+ background-color: hsl(55, 100%, 103.2941176471%);
755
+ }
756
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-50.hover:hover > td,
757
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-50.hover:hover > th,
758
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-50.hover:hover > td,
759
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-50.hover:hover > th {
760
+ color: #FFFFFF;
761
+ background-color: hsl(55, 100%, 103.2941176471%);
762
+ }
763
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-100,
764
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-100 {
765
+ background-color: #FFFAC1;
766
+ }
767
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-100 > td,
768
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-100 > th,
769
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-100 > td,
770
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-100 > th {
771
+ color: #FFFFFF;
772
+ background-color: #FFFAC1;
773
+ }
774
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-100 > td.cell-hover:hover,
775
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-100 > th.cell-hover:hover,
776
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-100 > td.cell-hover:hover,
777
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-100 > th.cell-hover:hover {
778
+ background-color: rgb(255, 253.2903225806, 233.8);
779
+ }
780
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-100.hover:hover > td,
781
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-100.hover:hover > th,
782
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-100.hover:hover > td,
783
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-100.hover:hover > th {
784
+ color: #FFFFFF;
785
+ background-color: rgb(255, 253.2903225806, 233.8);
786
+ }
787
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-200,
788
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-200 {
789
+ background-color: #FFF186;
790
+ }
791
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-200 > td,
792
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-200 > th,
793
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-200 > td,
794
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-200 > th {
795
+ color: #FFFFFF;
796
+ background-color: #FFF186;
797
+ }
798
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-200 > td.cell-hover:hover,
799
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-200 > th.cell-hover:hover,
800
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-200 > td.cell-hover:hover,
801
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-200 > th.cell-hover:hover {
802
+ background-color: rgb(255, 245.720661157, 174.8);
803
+ }
804
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-200.hover:hover > td,
805
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-200.hover:hover > th,
806
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-200.hover:hover > td,
807
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-200.hover:hover > th {
808
+ color: #FFFFFF;
809
+ background-color: rgb(255, 245.720661157, 174.8);
810
+ }
811
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-300,
812
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-300 {
813
+ background-color: #FFE041;
814
+ }
815
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-300 > td,
816
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-300 > th,
817
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-300 > td,
818
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-300 > th {
819
+ color: #FFFFFF;
820
+ background-color: #FFE041;
821
+ }
822
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-300 > td.cell-hover:hover,
823
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-300 > th.cell-hover:hover,
824
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-300 > td.cell-hover:hover,
825
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-300 > th.cell-hover:hover {
826
+ background-color: rgb(255, 230.6568421053, 105.8);
827
+ }
828
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-300.hover:hover > td,
829
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-300.hover:hover > th,
830
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-300.hover:hover > td,
831
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-300.hover:hover > th {
832
+ color: #FFFFFF;
833
+ background-color: rgb(255, 230.6568421053, 105.8);
834
+ }
835
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-400,
836
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-400 {
837
+ background-color: #FFCC0D;
838
+ }
839
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-400 > td,
840
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-400 > th,
841
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-400 > td,
842
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-400 > th {
843
+ color: #FFFFFF;
844
+ background-color: #FFCC0D;
845
+ }
846
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-400 > td.cell-hover:hover,
847
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-400 > th.cell-hover:hover,
848
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-400 > td.cell-hover:hover,
849
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-400 > th.cell-hover:hover {
850
+ background-color: rgb(227.2, 179.3190082645, 0);
851
+ }
852
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-400.hover:hover > td,
853
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-400.hover:hover > th,
854
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-400.hover:hover > td,
855
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-400.hover:hover > th {
856
+ color: #FFFFFF;
857
+ background-color: rgb(227.2, 179.3190082645, 0);
858
+ }
859
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-500,
860
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-500 {
861
+ background-color: #F0B100;
862
+ }
863
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-500 > td,
864
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-500 > th,
865
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-500 > td,
866
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-500 > th {
867
+ color: #FFFFFF;
868
+ background-color: #F0B100;
869
+ }
870
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-500 > td.cell-hover:hover,
871
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-500 > th.cell-hover:hover,
872
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-500 > td.cell-hover:hover,
873
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-500 > th.cell-hover:hover {
874
+ background-color: rgb(199.2, 146.91, 0);
875
+ }
876
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-500.hover:hover > td,
877
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-500.hover:hover > th,
878
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-500.hover:hover > td,
879
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-500.hover:hover > th {
880
+ color: #FFFFFF;
881
+ background-color: rgb(199.2, 146.91, 0);
882
+ }
883
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-600,
884
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-600 {
885
+ background-color: #D18800;
886
+ }
887
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-600 > td,
888
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-600 > th,
889
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-600 > td,
890
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-600 > th {
891
+ color: #FFFFFF;
892
+ background-color: #D18800;
893
+ }
894
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-600 > td.cell-hover:hover,
895
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-600 > th.cell-hover:hover,
896
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-600 > td.cell-hover:hover,
897
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-600 > th.cell-hover:hover {
898
+ background-color: rgb(255, 167.6794258373, 5);
899
+ }
900
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-600.hover:hover > td,
901
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-600.hover:hover > th,
902
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-600.hover:hover > td,
903
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-600.hover:hover > th {
904
+ color: #FFFFFF;
905
+ background-color: rgb(255, 167.6794258373, 5);
906
+ }
907
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-700,
908
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-700 {
909
+ background-color: #A66002;
910
+ }
911
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-700 > td,
912
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-700 > th,
913
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-700 > td,
914
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-700 > th {
915
+ color: #FFFFFF;
916
+ background-color: #A66002;
917
+ }
918
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-700 > td.cell-hover:hover,
919
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-700 > th.cell-hover:hover,
920
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-700 > td.cell-hover:hover,
921
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-700 > th.cell-hover:hover {
922
+ background-color: rgb(216.3928571429, 125.1428571429, 2.6071428571);
923
+ }
924
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-700.hover:hover > td,
925
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-700.hover:hover > th,
926
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-700.hover:hover > td,
927
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-700.hover:hover > th {
928
+ color: #FFFFFF;
929
+ background-color: rgb(216.3928571429, 125.1428571429, 2.6071428571);
930
+ }
931
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-800,
932
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-800 {
933
+ background-color: #894B0A;
934
+ }
935
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-800 > td,
936
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-800 > th,
937
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-800 > td,
938
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-800 > th {
939
+ color: #FFFFFF;
940
+ background-color: #894B0A;
941
+ }
942
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-800 > td.cell-hover:hover,
943
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-800 > th.cell-hover:hover,
944
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-800 > td.cell-hover:hover,
945
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-800 > th.cell-hover:hover {
946
+ background-color: rgb(184.5306122449, 101.0204081633, 13.4693877551);
947
+ }
948
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-800.hover:hover > td,
949
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-800.hover:hover > th,
950
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-800.hover:hover > td,
951
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-800.hover:hover > th {
952
+ color: #FFFFFF;
953
+ background-color: rgb(184.5306122449, 101.0204081633, 13.4693877551);
954
+ }
955
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-900,
956
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-900 {
957
+ background-color: #743D0F;
958
+ }
959
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-900 > td,
960
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-900 > th,
961
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-900 > td,
962
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-900 > th {
963
+ color: #FFFFFF;
964
+ background-color: #743D0F;
965
+ }
966
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-900 > td.cell-hover:hover,
967
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-900 > th.cell-hover:hover,
968
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-900 > td.cell-hover:hover,
969
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-900 > th.cell-hover:hover {
970
+ background-color: rgb(161.1603053435, 84.7480916031, 20.8396946565);
971
+ }
972
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-900.hover:hover > td,
973
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-yellow-900.hover:hover > th,
974
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-900.hover:hover > td,
975
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-yellow-900.hover:hover > th {
976
+ color: #FFFFFF;
977
+ background-color: rgb(161.1603053435, 84.7480916031, 20.8396946565);
978
+ }
979
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-50,
980
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-50 {
981
+ background-color: #F1F4FD;
982
+ }
983
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-50 > td,
984
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-50 > th,
985
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-50 > td,
986
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-50 > th {
987
+ color: #FFFFFF;
988
+ background-color: #F1F4FD;
989
+ }
990
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-50 > td.cell-hover:hover,
991
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-50 > th.cell-hover:hover,
992
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-50 > td.cell-hover:hover,
993
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-50 > th.cell-hover:hover {
994
+ background-color: hsl(225, 75%, 104.862745098%);
995
+ }
996
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-50.hover:hover > td,
997
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-50.hover:hover > th,
998
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-50.hover:hover > td,
999
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-50.hover:hover > th {
1000
+ color: #FFFFFF;
1001
+ background-color: hsl(225, 75%, 104.862745098%);
1002
+ }
1003
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-100,
1004
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-100 {
1005
+ background-color: #DFE7FA;
1006
+ }
1007
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-100 > td,
1008
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-100 > th,
1009
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-100 > td,
1010
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-100 > th {
1011
+ color: #FFFFFF;
1012
+ background-color: #DFE7FA;
1013
+ }
1014
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-100 > td.cell-hover:hover,
1015
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-100 > th.cell-hover:hover,
1016
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-100 > td.cell-hover:hover,
1017
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-100 > th.cell-hover:hover {
1018
+ background-color: hsl(222.2222222222, 72.972972973%, 100.7450980392%);
1019
+ }
1020
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-100.hover:hover > td,
1021
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-100.hover:hover > th,
1022
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-100.hover:hover > td,
1023
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-100.hover:hover > th {
1024
+ color: #FFFFFF;
1025
+ background-color: hsl(222.2222222222, 72.972972973%, 100.7450980392%);
1026
+ }
1027
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-200,
1028
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-200 {
1029
+ background-color: #C5D4F8;
1030
+ }
1031
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-200 > td,
1032
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-200 > th,
1033
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-200 > td,
1034
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-200 > th {
1035
+ color: #FFFFFF;
1036
+ background-color: #C5D4F8;
1037
+ }
1038
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-200 > td.cell-hover:hover,
1039
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-200 > th.cell-hover:hover,
1040
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-200 > td.cell-hover:hover,
1041
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-200 > th.cell-hover:hover {
1042
+ background-color: rgb(160.5938461538, 185.0092307692, 243.6061538462);
1043
+ }
1044
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-200.hover:hover > td,
1045
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-200.hover:hover > th,
1046
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-200.hover:hover > td,
1047
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-200.hover:hover > th {
1048
+ color: #FFFFFF;
1049
+ background-color: rgb(160.5938461538, 185.0092307692, 243.6061538462);
1050
+ }
1051
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-300,
1052
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-300 {
1053
+ background-color: #9EB8F2;
1054
+ }
1055
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-300 > td,
1056
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-300 > th,
1057
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-300 > td,
1058
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-300 > th {
1059
+ color: #FFFFFF;
1060
+ background-color: #9EB8F2;
1061
+ }
1062
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-300 > td.cell-hover:hover,
1063
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-300 > th.cell-hover:hover,
1064
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-300 > td.cell-hover:hover,
1065
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-300 > th.cell-hover:hover {
1066
+ background-color: rgb(122.0218181818, 157.6654545455, 237.1781818182);
1067
+ }
1068
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-300.hover:hover > td,
1069
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-300.hover:hover > th,
1070
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-300.hover:hover > td,
1071
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-300.hover:hover > th {
1072
+ color: #FFFFFF;
1073
+ background-color: rgb(122.0218181818, 157.6654545455, 237.1781818182);
1074
+ }
1075
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-400,
1076
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-400 {
1077
+ background-color: #7093EA;
1078
+ }
1079
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-400 > td,
1080
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-400 > th,
1081
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-400 > td,
1082
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-400 > th {
1083
+ color: #FFFFFF;
1084
+ background-color: #7093EA;
1085
+ }
1086
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-400 > td.cell-hover:hover,
1087
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-400 > th.cell-hover:hover,
1088
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-400 > td.cell-hover:hover,
1089
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-400 > th.cell-hover:hover {
1090
+ background-color: rgb(156.4695121951, 180.5853658537, 240.5304878049);
1091
+ }
1092
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-400.hover:hover > td,
1093
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-400.hover:hover > th,
1094
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-400.hover:hover > td,
1095
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-400.hover:hover > th {
1096
+ color: #FFFFFF;
1097
+ background-color: rgb(156.4695121951, 180.5853658537, 240.5304878049);
1098
+ }
1099
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-500,
1100
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-500 {
1101
+ background-color: #4D6DE3;
1102
+ }
1103
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-500 > td,
1104
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-500 > th,
1105
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-500 > td,
1106
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-500 > th {
1107
+ color: #FFFFFF;
1108
+ background-color: #4D6DE3;
1109
+ }
1110
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-500 > td.cell-hover:hover,
1111
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-500 > th.cell-hover:hover,
1112
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-500 > td.cell-hover:hover,
1113
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-500 > th.cell-hover:hover {
1114
+ background-color: rgb(121.067961165, 145.145631068, 233.932038835);
1115
+ }
1116
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-500.hover:hover > td,
1117
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-500.hover:hover > th,
1118
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-500.hover:hover > td,
1119
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-500.hover:hover > th {
1120
+ color: #FFFFFF;
1121
+ background-color: rgb(121.067961165, 145.145631068, 233.932038835);
1122
+ }
1123
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-600,
1124
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-600 {
1125
+ background-color: #3950D7;
1126
+ }
1127
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-600 > td,
1128
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-600 > th,
1129
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-600 > td,
1130
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-600 > th {
1131
+ color: #FFFFFF;
1132
+ background-color: #3950D7;
1133
+ }
1134
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-600 > td.cell-hover:hover,
1135
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-600 > th.cell-hover:hover,
1136
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-600 > td.cell-hover:hover,
1137
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-600 > th.cell-hover:hover {
1138
+ background-color: rgb(99.4285714286, 117.5, 223.5714285714);
1139
+ }
1140
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-600.hover:hover > td,
1141
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-600.hover:hover > th,
1142
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-600.hover:hover > td,
1143
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-600.hover:hover > th {
1144
+ color: #FFFFFF;
1145
+ background-color: rgb(99.4285714286, 117.5, 223.5714285714);
1146
+ }
1147
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-700,
1148
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-700 {
1149
+ background-color: #303EC5;
1150
+ }
1151
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-700 > td,
1152
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-700 > th,
1153
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-700 > td,
1154
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-700 > th {
1155
+ color: #FFFFFF;
1156
+ background-color: #303EC5;
1157
+ }
1158
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-700 > td.cell-hover:hover,
1159
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-700 > th.cell-hover:hover,
1160
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-700 > td.cell-hover:hover,
1161
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-700 > th.cell-hover:hover {
1162
+ background-color: rgb(82.9265306122, 95.1551020408, 213.0734693878);
1163
+ }
1164
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-700.hover:hover > td,
1165
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-700.hover:hover > th,
1166
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-700.hover:hover > td,
1167
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-700.hover:hover > th {
1168
+ color: #FFFFFF;
1169
+ background-color: rgb(82.9265306122, 95.1551020408, 213.0734693878);
1170
+ }
1171
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-800,
1172
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-800 {
1173
+ background-color: #2D35A0;
1174
+ }
1175
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-800 > td,
1176
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-800 > th,
1177
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-800 > td,
1178
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-800 > th {
1179
+ color: #FFFFFF;
1180
+ background-color: #2D35A0;
1181
+ }
1182
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-800 > td.cell-hover:hover,
1183
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-800 > th.cell-hover:hover,
1184
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-800 > td.cell-hover:hover,
1185
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-800 > th.cell-hover:hover {
1186
+ background-color: rgb(56.756097561, 66.6682926829, 199.243902439);
1187
+ }
1188
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-800.hover:hover > td,
1189
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-800.hover:hover > th,
1190
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-800.hover:hover > td,
1191
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-800.hover:hover > th {
1192
+ color: #FFFFFF;
1193
+ background-color: rgb(56.756097561, 66.6682926829, 199.243902439);
1194
+ }
1195
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-900,
1196
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-900 {
1197
+ background-color: #29317F;
1198
+ }
1199
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-900 > td,
1200
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-900 > th,
1201
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-900 > td,
1202
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-900 > th {
1203
+ color: #FFFFFF;
1204
+ background-color: #29317F;
1205
+ }
1206
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-900 > td.cell-hover:hover,
1207
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-900 > th.cell-hover:hover,
1208
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-900 > td.cell-hover:hover,
1209
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-900 > th.cell-hover:hover {
1210
+ background-color: rgb(65.8607142857, 77.775, 193.9392857143);
1211
+ }
1212
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-900.hover:hover > td,
1213
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-blue-900.hover:hover > th,
1214
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-900.hover:hover > td,
1215
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-blue-900.hover:hover > th {
1216
+ color: #FFFFFF;
1217
+ background-color: rgb(65.8607142857, 77.775, 193.9392857143);
1218
+ }
1219
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-50,
1220
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-50 {
1221
+ background-color: #EEFAFF;
1222
+ }
1223
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-50 > td,
1224
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-50 > th,
1225
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-50 > td,
1226
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-50 > th {
1227
+ color: #FFFFFF;
1228
+ background-color: #EEFAFF;
1229
+ }
1230
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-50 > td.cell-hover:hover,
1231
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-50 > th.cell-hover:hover,
1232
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-50 > td.cell-hover:hover,
1233
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-50 > th.cell-hover:hover {
1234
+ background-color: hsl(197.6470588235, 100%, 104.6666666667%);
1235
+ }
1236
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-50.hover:hover > td,
1237
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-50.hover:hover > th,
1238
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-50.hover:hover > td,
1239
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-50.hover:hover > th {
1240
+ color: #FFFFFF;
1241
+ background-color: hsl(197.6470588235, 100%, 104.6666666667%);
1242
+ }
1243
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-100,
1244
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-100 {
1245
+ background-color: #D9F4FF;
1246
+ }
1247
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-100 > td,
1248
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-100 > th,
1249
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-100 > td,
1250
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-100 > th {
1251
+ color: #FFFFFF;
1252
+ background-color: #D9F4FF;
1253
+ }
1254
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-100 > td.cell-hover:hover,
1255
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-100 > th.cell-hover:hover,
1256
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-100 > td.cell-hover:hover,
1257
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-100 > th.cell-hover:hover {
1258
+ background-color: hsl(197.3684210526, 100%, 100.5490196078%);
1259
+ }
1260
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-100.hover:hover > td,
1261
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-100.hover:hover > th,
1262
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-100.hover:hover > td,
1263
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-100.hover:hover > th {
1264
+ color: #FFFFFF;
1265
+ background-color: hsl(197.3684210526, 100%, 100.5490196078%);
1266
+ }
1267
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-200,
1268
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-200 {
1269
+ background-color: #BBEDFF;
1270
+ }
1271
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-200 > td,
1272
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-200 > th,
1273
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-200 > td,
1274
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-200 > th {
1275
+ color: #FFFFFF;
1276
+ background-color: #BBEDFF;
1277
+ }
1278
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-200 > td.cell-hover:hover,
1279
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-200 > th.cell-hover:hover,
1280
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-200 > td.cell-hover:hover,
1281
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-200 > th.cell-hover:hover {
1282
+ background-color: rgb(227.8, 247.8, 255);
1283
+ }
1284
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-200.hover:hover > td,
1285
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-200.hover:hover > th,
1286
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-200.hover:hover > td,
1287
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-200.hover:hover > th {
1288
+ color: #FFFFFF;
1289
+ background-color: rgb(227.8, 247.8, 255);
1290
+ }
1291
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-300,
1292
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-300 {
1293
+ background-color: #8DE3FF;
1294
+ }
1295
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-300 > td,
1296
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-300 > th,
1297
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-300 > td,
1298
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-300 > th {
1299
+ color: #FFFFFF;
1300
+ background-color: #8DE3FF;
1301
+ }
1302
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-300 > td.cell-hover:hover,
1303
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-300 > th.cell-hover:hover,
1304
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-300 > td.cell-hover:hover,
1305
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-300 > th.cell-hover:hover {
1306
+ background-color: rgb(100.2, 216.9789473684, 255);
1307
+ }
1308
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-300.hover:hover > td,
1309
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-300.hover:hover > th,
1310
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-300.hover:hover > td,
1311
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-300.hover:hover > th {
1312
+ color: #FFFFFF;
1313
+ background-color: rgb(100.2, 216.9789473684, 255);
1314
+ }
1315
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-400,
1316
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-400 {
1317
+ background-color: #57D0FF;
1318
+ }
1319
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-400 > td,
1320
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-400 > th,
1321
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-400 > td,
1322
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-400 > th {
1323
+ color: #FFFFFF;
1324
+ background-color: #57D0FF;
1325
+ }
1326
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-400 > td.cell-hover:hover,
1327
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-400 > th.cell-hover:hover,
1328
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-400 > td.cell-hover:hover,
1329
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-400 > th.cell-hover:hover {
1330
+ background-color: rgb(46.2, 196.5857142857, 255);
1331
+ }
1332
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-400.hover:hover > td,
1333
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-400.hover:hover > th,
1334
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-400.hover:hover > td,
1335
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-400.hover:hover > th {
1336
+ color: #FFFFFF;
1337
+ background-color: rgb(46.2, 196.5857142857, 255);
1338
+ }
1339
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-500,
1340
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-500 {
1341
+ background-color: #30B6FF;
1342
+ }
1343
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-500 > td,
1344
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-500 > th,
1345
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-500 > td,
1346
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-500 > th {
1347
+ color: #FFFFFF;
1348
+ background-color: #30B6FF;
1349
+ }
1350
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-500 > td.cell-hover:hover,
1351
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-500 > th.cell-hover:hover,
1352
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-500 > td.cell-hover:hover,
1353
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-500 > th.cell-hover:hover {
1354
+ background-color: rgb(7.2, 167.6115942029, 255);
1355
+ }
1356
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-500.hover:hover > td,
1357
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-500.hover:hover > th,
1358
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-500.hover:hover > td,
1359
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-500.hover:hover > th {
1360
+ color: #FFFFFF;
1361
+ background-color: rgb(7.2, 167.6115942029, 255);
1362
+ }
1363
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-600,
1364
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-600 {
1365
+ background-color: #1999F7;
1366
+ }
1367
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-600 > td,
1368
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-600 > th,
1369
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-600 > td,
1370
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-600 > th {
1371
+ color: #FFFFFF;
1372
+ background-color: #1999F7;
1373
+ }
1374
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-600 > td.cell-hover:hover,
1375
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-600 > th.cell-hover:hover,
1376
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-600 > td.cell-hover:hover,
1377
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-600 > th.cell-hover:hover {
1378
+ background-color: rgb(74.2857142857, 174.8571428571, 248.7142857143);
1379
+ }
1380
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-600.hover:hover > td,
1381
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-600.hover:hover > th,
1382
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-600.hover:hover > td,
1383
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-600.hover:hover > th {
1384
+ color: #FFFFFF;
1385
+ background-color: rgb(74.2857142857, 174.8571428571, 248.7142857143);
1386
+ }
1387
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-700,
1388
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-700 {
1389
+ background-color: #1280E3;
1390
+ }
1391
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-700 > td,
1392
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-700 > th,
1393
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-700 > td,
1394
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-700 > th {
1395
+ color: #FFFFFF;
1396
+ background-color: #1280E3;
1397
+ }
1398
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-700 > td.cell-hover:hover,
1399
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-700 > th.cell-hover:hover,
1400
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-700 > td.cell-hover:hover,
1401
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-700 > th.cell-hover:hover {
1402
+ background-color: rgb(56.7224489796, 152.8040816327, 239.2775510204);
1403
+ }
1404
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-700.hover:hover > td,
1405
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-700.hover:hover > th,
1406
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-700.hover:hover > td,
1407
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-700.hover:hover > th {
1408
+ color: #FFFFFF;
1409
+ background-color: rgb(56.7224489796, 152.8040816327, 239.2775510204);
1410
+ }
1411
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-800,
1412
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-800 {
1413
+ background-color: #1566B8;
1414
+ }
1415
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-800 > td,
1416
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-800 > th,
1417
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-800 > td,
1418
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-800 > th {
1419
+ color: #FFFFFF;
1420
+ background-color: #1566B8;
1421
+ }
1422
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-800 > td.cell-hover:hover,
1423
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-800 > th.cell-hover:hover,
1424
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-800 > td.cell-hover:hover,
1425
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-800 > th.cell-hover:hover {
1426
+ background-color: rgb(27.0195121951, 127.3804878049, 228.9804878049);
1427
+ }
1428
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-800.hover:hover > td,
1429
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-800.hover:hover > th,
1430
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-800.hover:hover > td,
1431
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-800.hover:hover > th {
1432
+ color: #FFFFFF;
1433
+ background-color: rgb(27.0195121951, 127.3804878049, 228.9804878049);
1434
+ }
1435
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-900,
1436
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-900 {
1437
+ background-color: #175791;
1438
+ }
1439
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-900 > td,
1440
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-900 > th,
1441
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-900 > td,
1442
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-900 > th {
1443
+ color: #FFFFFF;
1444
+ background-color: #175791;
1445
+ }
1446
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-900 > td.cell-hover:hover,
1447
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-900 > th.cell-hover:hover,
1448
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-900 > td.cell-hover:hover,
1449
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-900 > th.cell-hover:hover {
1450
+ background-color: rgb(29.9821428571, 113.4107142857, 189.0178571429);
1451
+ }
1452
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-900.hover:hover > td,
1453
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-lightblue-900.hover:hover > th,
1454
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-900.hover:hover > td,
1455
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-lightblue-900.hover:hover > th {
1456
+ color: #FFFFFF;
1457
+ background-color: rgb(29.9821428571, 113.4107142857, 189.0178571429);
1458
+ }
1459
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-50,
1460
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-50 {
1461
+ background-color: #FBF6FE;
1462
+ }
1463
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-50 > td,
1464
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-50 > th,
1465
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-50 > td,
1466
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-50 > th {
1467
+ color: #FFFFFF;
1468
+ background-color: #FBF6FE;
1469
+ }
1470
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-50 > td.cell-hover:hover,
1471
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-50 > th.cell-hover:hover,
1472
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-50 > td.cell-hover:hover,
1473
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-50 > th.cell-hover:hover {
1474
+ background-color: hsl(277.5, 80%, 106.0392156863%);
1475
+ }
1476
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-50.hover:hover > td,
1477
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-50.hover:hover > th,
1478
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-50.hover:hover > td,
1479
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-50.hover:hover > th {
1480
+ color: #FFFFFF;
1481
+ background-color: hsl(277.5, 80%, 106.0392156863%);
1482
+ }
1483
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-100,
1484
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-100 {
1485
+ background-color: #F5EAFD;
1486
+ }
1487
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-100 > td,
1488
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-100 > th,
1489
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-100 > td,
1490
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-100 > th {
1491
+ color: #FFFFFF;
1492
+ background-color: #F5EAFD;
1493
+ }
1494
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-100 > td.cell-hover:hover,
1495
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-100 > th.cell-hover:hover,
1496
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-100 > td.cell-hover:hover,
1497
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-100 > th.cell-hover:hover {
1498
+ background-color: hsl(274.7368421053, 82.6086956522%, 103.4901960784%);
1499
+ }
1500
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-100.hover:hover > td,
1501
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-100.hover:hover > th,
1502
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-100.hover:hover > td,
1503
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-100.hover:hover > th {
1504
+ color: #FFFFFF;
1505
+ background-color: hsl(274.7368421053, 82.6086956522%, 103.4901960784%);
1506
+ }
1507
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-200,
1508
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-200 {
1509
+ background-color: #EDD8FC;
1510
+ }
1511
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-200 > td,
1512
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-200 > th,
1513
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-200 > td,
1514
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-200 > th {
1515
+ color: #FFFFFF;
1516
+ background-color: #EDD8FC;
1517
+ }
1518
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-200 > td.cell-hover:hover,
1519
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-200 > th.cell-hover:hover,
1520
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-200 > td.cell-hover:hover,
1521
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-200 > th.cell-hover:hover {
1522
+ background-color: rgb(254.4857142857, 253.8857142857, 254.9142857143);
1523
+ }
1524
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-200.hover:hover > td,
1525
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-200.hover:hover > th,
1526
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-200.hover:hover > td,
1527
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-200.hover:hover > th {
1528
+ color: #FFFFFF;
1529
+ background-color: rgb(254.4857142857, 253.8857142857, 254.9142857143);
1530
+ }
1531
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-300,
1532
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-300 {
1533
+ background-color: #E0BAF8;
1534
+ }
1535
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-300 > td,
1536
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-300 > th,
1537
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-300 > td,
1538
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-300 > th {
1539
+ color: #FFFFFF;
1540
+ background-color: #E0BAF8;
1541
+ }
1542
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-300 > td.cell-hover:hover,
1543
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-300 > th.cell-hover:hover,
1544
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-300 > td.cell-hover:hover,
1545
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-300 > th.cell-hover:hover {
1546
+ background-color: rgb(207.3578947368, 148.9578947368, 244.2421052632);
1547
+ }
1548
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-300.hover:hover > td,
1549
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-300.hover:hover > th,
1550
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-300.hover:hover > td,
1551
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-300.hover:hover > th {
1552
+ color: #FFFFFF;
1553
+ background-color: rgb(207.3578947368, 148.9578947368, 244.2421052632);
1554
+ }
1555
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-400,
1556
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-400 {
1557
+ background-color: #CD8DF3;
1558
+ }
1559
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-400 > td,
1560
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-400 > th,
1561
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-400 > td,
1562
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-400 > th {
1563
+ color: #FFFFFF;
1564
+ background-color: #CD8DF3;
1565
+ }
1566
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-400 > td.cell-hover:hover,
1567
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-400 > th.cell-hover:hover,
1568
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-400 > td.cell-hover:hover,
1569
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-400 > th.cell-hover:hover {
1570
+ background-color: rgb(225.2380952381, 187.1428571429, 247.8571428571);
1571
+ }
1572
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-400.hover:hover > td,
1573
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-400.hover:hover > th,
1574
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-400.hover:hover > td,
1575
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-400.hover:hover > th {
1576
+ color: #FFFFFF;
1577
+ background-color: rgb(225.2380952381, 187.1428571429, 247.8571428571);
1578
+ }
1579
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-500,
1580
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-500 {
1581
+ background-color: #B961EB;
1582
+ }
1583
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-500 > td,
1584
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-500 > th,
1585
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-500 > td,
1586
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-500 > th {
1587
+ color: #FFFFFF;
1588
+ background-color: #B961EB;
1589
+ }
1590
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-500 > td.cell-hover:hover,
1591
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-500 > th.cell-hover:hover,
1592
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-500 > td.cell-hover:hover,
1593
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-500 > th.cell-hover:hover {
1594
+ background-color: rgb(205.0561797753, 142.2696629213, 240.7303370787);
1595
+ }
1596
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-500.hover:hover > td,
1597
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-500.hover:hover > th,
1598
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-500.hover:hover > td,
1599
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-500.hover:hover > th {
1600
+ color: #FFFFFF;
1601
+ background-color: rgb(205.0561797753, 142.2696629213, 240.7303370787);
1602
+ }
1603
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-600,
1604
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-600 {
1605
+ background-color: #A541DC;
1606
+ }
1607
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-600 > td,
1608
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-600 > th,
1609
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-600 > td,
1610
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-600 > th {
1611
+ color: #FFFFFF;
1612
+ background-color: #A541DC;
1613
+ }
1614
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-600 > td.cell-hover:hover,
1615
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-600 > th.cell-hover:hover,
1616
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-600 > td.cell-hover:hover,
1617
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-600 > th.cell-hover:hover {
1618
+ background-color: rgb(185.4, 108.0666666667, 227.9333333333);
1619
+ }
1620
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-600.hover:hover > td,
1621
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-600.hover:hover > th,
1622
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-600.hover:hover > td,
1623
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-600.hover:hover > th {
1624
+ color: #FFFFFF;
1625
+ background-color: rgb(185.4, 108.0666666667, 227.9333333333);
1626
+ }
1627
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-700,
1628
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-700 {
1629
+ background-color: #9230C5;
1630
+ }
1631
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-700 > td,
1632
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-700 > th,
1633
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-700 > td,
1634
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-700 > th {
1635
+ color: #FFFFFF;
1636
+ background-color: #9230C5;
1637
+ }
1638
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-700 > td.cell-hover:hover,
1639
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-700 > th.cell-hover:hover,
1640
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-700 > td.cell-hover:hover,
1641
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-700 > th.cell-hover:hover {
1642
+ background-color: rgb(168.5265306122, 82.9265306122, 213.0734693878);
1643
+ }
1644
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-700.hover:hover > td,
1645
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-700.hover:hover > th,
1646
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-700.hover:hover > td,
1647
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-700.hover:hover > th {
1648
+ color: #FFFFFF;
1649
+ background-color: rgb(168.5265306122, 82.9265306122, 213.0734693878);
1650
+ }
1651
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-800,
1652
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-800 {
1653
+ background-color: #782B9E;
1654
+ }
1655
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-800 > td,
1656
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-800 > th,
1657
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-800 > td,
1658
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-800 > th {
1659
+ color: #FFFFFF;
1660
+ background-color: #782B9E;
1661
+ }
1662
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-800 > td.cell-hover:hover,
1663
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-800 > th.cell-hover:hover,
1664
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-800 > td.cell-hover:hover,
1665
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-800 > th.cell-hover:hover {
1666
+ background-color: rgb(150.447761194, 53.9104477612, 198.0895522388);
1667
+ }
1668
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-800.hover:hover > td,
1669
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-800.hover:hover > th,
1670
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-800.hover:hover > td,
1671
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-800.hover:hover > th {
1672
+ color: #FFFFFF;
1673
+ background-color: rgb(150.447761194, 53.9104477612, 198.0895522388);
1674
+ }
1675
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-900,
1676
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-900 {
1677
+ background-color: #62247F;
1678
+ }
1679
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-900 > td,
1680
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-900 > th,
1681
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-900 > td,
1682
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-900 > th {
1683
+ color: #FFFFFF;
1684
+ background-color: #62247F;
1685
+ }
1686
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-900 > td.cell-hover:hover,
1687
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-900 > th.cell-hover:hover,
1688
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-900 > td.cell-hover:hover,
1689
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-900 > th.cell-hover:hover {
1690
+ background-color: rgb(128.6625766871, 47.263803681, 166.736196319);
1691
+ }
1692
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-900.hover:hover > td,
1693
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-purple-900.hover:hover > th,
1694
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-900.hover:hover > td,
1695
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-purple-900.hover:hover > th {
1696
+ color: #FFFFFF;
1697
+ background-color: rgb(128.6625766871, 47.263803681, 166.736196319);
1698
+ }
1699
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-50,
1700
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-50 {
1701
+ background-color: #FFF4FE;
1702
+ }
1703
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-50 > td,
1704
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-50 > th,
1705
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-50 > td,
1706
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-50 > th {
1707
+ color: #FFFFFF;
1708
+ background-color: #FFF4FE;
1709
+ }
1710
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-50 > td.cell-hover:hover,
1711
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-50 > th.cell-hover:hover,
1712
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-50 > td.cell-hover:hover,
1713
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-50 > th.cell-hover:hover {
1714
+ background-color: hsl(305.4545454545, 100%, 105.8431372549%);
1715
+ }
1716
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-50.hover:hover > td,
1717
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-50.hover:hover > th,
1718
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-50.hover:hover > td,
1719
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-50.hover:hover > th {
1720
+ color: #FFFFFF;
1721
+ background-color: hsl(305.4545454545, 100%, 105.8431372549%);
1722
+ }
1723
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-100,
1724
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-100 {
1725
+ background-color: #FFE7FD;
1726
+ }
1727
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-100 > td,
1728
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-100 > th,
1729
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-100 > td,
1730
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-100 > th {
1731
+ color: #FFFFFF;
1732
+ background-color: #FFE7FD;
1733
+ }
1734
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-100 > td.cell-hover:hover,
1735
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-100 > th.cell-hover:hover,
1736
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-100 > td.cell-hover:hover,
1737
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-100 > th.cell-hover:hover {
1738
+ background-color: hsl(305, 100%, 103.2941176471%);
1739
+ }
1740
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-100.hover:hover > td,
1741
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-100.hover:hover > th,
1742
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-100.hover:hover > td,
1743
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-100.hover:hover > th {
1744
+ color: #FFFFFF;
1745
+ background-color: hsl(305, 100%, 103.2941176471%);
1746
+ }
1747
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-200,
1748
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-200 {
1749
+ background-color: #FFCFFA;
1750
+ }
1751
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-200 > td,
1752
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-200 > th,
1753
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-200 > td,
1754
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-200 > th {
1755
+ color: #FFFFFF;
1756
+ background-color: #FFCFFA;
1757
+ }
1758
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-200 > td.cell-hover:hover,
1759
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-200 > th.cell-hover:hover,
1760
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-200 > td.cell-hover:hover,
1761
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-200 > th.cell-hover:hover {
1762
+ background-color: rgb(255, 247.8, 254.25);
1763
+ }
1764
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-200.hover:hover > td,
1765
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-200.hover:hover > th,
1766
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-200.hover:hover > td,
1767
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-200.hover:hover > th {
1768
+ color: #FFFFFF;
1769
+ background-color: rgb(255, 247.8, 254.25);
1770
+ }
1771
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-300,
1772
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-300 {
1773
+ background-color: #FEA9F1;
1774
+ }
1775
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-300 > td,
1776
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-300 > th,
1777
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-300 > td,
1778
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-300 > th {
1779
+ color: #FFFFFF;
1780
+ background-color: #FEA9F1;
1781
+ }
1782
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-300 > td.cell-hover:hover,
1783
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-300 > th.cell-hover:hover,
1784
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-300 > td.cell-hover:hover,
1785
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-300 > th.cell-hover:hover {
1786
+ background-color: rgb(253.5310344828, 128.6689655172, 234.4344827586);
1787
+ }
1788
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-300.hover:hover > td,
1789
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-300.hover:hover > th,
1790
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-300.hover:hover > td,
1791
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-300.hover:hover > th {
1792
+ color: #FFFFFF;
1793
+ background-color: rgb(253.5310344828, 128.6689655172, 234.4344827586);
1794
+ }
1795
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-400,
1796
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-400 {
1797
+ background-color: #FD75E7;
1798
+ }
1799
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-400 > td,
1800
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-400 > th,
1801
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-400 > td,
1802
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-400 > th {
1803
+ color: #FFFFFF;
1804
+ background-color: #FD75E7;
1805
+ }
1806
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-400 > td.cell-hover:hover,
1807
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-400 > th.cell-hover:hover,
1808
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-400 > td.cell-hover:hover,
1809
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-400 > th.cell-hover:hover {
1810
+ background-color: rgb(253.7285714286, 167.2714285714, 239.7428571429);
1811
+ }
1812
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-400.hover:hover > td,
1813
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-400.hover:hover > th,
1814
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-400.hover:hover > td,
1815
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-400.hover:hover > th {
1816
+ color: #FFFFFF;
1817
+ background-color: rgb(253.7285714286, 167.2714285714, 239.7428571429);
1818
+ }
1819
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-500,
1820
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-500 {
1821
+ background-color: #F553DA;
1822
+ }
1823
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-500 > td,
1824
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-500 > th,
1825
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-500 > td,
1826
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-500 > th {
1827
+ color: #FFFFFF;
1828
+ background-color: #F553DA;
1829
+ }
1830
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-500 > td.cell-hover:hover,
1831
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-500 > th.cell-hover:hover,
1832
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-500 > td.cell-hover:hover,
1833
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-500 > th.cell-hover:hover {
1834
+ background-color: rgb(247.8021978022, 131.1978021978, 228.3681318681);
1835
+ }
1836
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-500.hover:hover > td,
1837
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-500.hover:hover > th,
1838
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-500.hover:hover > td,
1839
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-500.hover:hover > th {
1840
+ color: #FFFFFF;
1841
+ background-color: rgb(247.8021978022, 131.1978021978, 228.3681318681);
1842
+ }
1843
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-600,
1844
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-600 {
1845
+ background-color: #D821B6;
1846
+ }
1847
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-600 > td,
1848
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-600 > th,
1849
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-600 > td,
1850
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-600 > th {
1851
+ color: #FFFFFF;
1852
+ background-color: #D821B6;
1853
+ }
1854
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-600 > td.cell-hover:hover,
1855
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-600 > th.cell-hover:hover,
1856
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-600 > td.cell-hover:hover,
1857
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-600 > th.cell-hover:hover {
1858
+ background-color: rgb(227.1686746988, 72.8313253012, 198.4939759036);
1859
+ }
1860
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-600.hover:hover > td,
1861
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-600.hover:hover > th,
1862
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-600.hover:hover > td,
1863
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-600.hover:hover > th {
1864
+ color: #FFFFFF;
1865
+ background-color: rgb(227.1686746988, 72.8313253012, 198.4939759036);
1866
+ }
1867
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-700,
1868
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-700 {
1869
+ background-color: #B31892;
1870
+ }
1871
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-700 > td,
1872
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-700 > th,
1873
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-700 > td,
1874
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-700 > th {
1875
+ color: #FFFFFF;
1876
+ background-color: #B31892;
1877
+ }
1878
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-700 > td.cell-hover:hover,
1879
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-700 > th.cell-hover:hover,
1880
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-700 > td.cell-hover:hover,
1881
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-700 > th.cell-hover:hover {
1882
+ background-color: rgb(223.9704433498, 30.0295566502, 182.6798029557);
1883
+ }
1884
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-700.hover:hover > td,
1885
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-700.hover:hover > th,
1886
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-700.hover:hover > td,
1887
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-700.hover:hover > th {
1888
+ color: #FFFFFF;
1889
+ background-color: rgb(223.9704433498, 30.0295566502, 182.6798029557);
1890
+ }
1891
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-800,
1892
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-800 {
1893
+ background-color: #921676;
1894
+ }
1895
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-800 > td,
1896
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-800 > th,
1897
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-800 > td,
1898
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-800 > th {
1899
+ color: #FFFFFF;
1900
+ background-color: #921676;
1901
+ }
1902
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-800 > td.cell-hover:hover,
1903
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-800 > th.cell-hover:hover,
1904
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-800 > td.cell-hover:hover,
1905
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-800 > th.cell-hover:hover {
1906
+ background-color: rgb(190.3214285714, 28.6785714286, 153.8214285714);
1907
+ }
1908
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-800.hover:hover > td,
1909
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-800.hover:hover > th,
1910
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-800.hover:hover > td,
1911
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-800.hover:hover > th {
1912
+ color: #FFFFFF;
1913
+ background-color: rgb(190.3214285714, 28.6785714286, 153.8214285714);
1914
+ }
1915
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-900,
1916
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-900 {
1917
+ background-color: #781761;
1918
+ }
1919
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-900 > td,
1920
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-900 > th,
1921
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-900 > td,
1922
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-900 > th {
1923
+ color: #FFFFFF;
1924
+ background-color: #781761;
1925
+ }
1926
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-900 > td.cell-hover:hover,
1927
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-900 > th.cell-hover:hover,
1928
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-900 > td.cell-hover:hover,
1929
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-900 > th.cell-hover:hover {
1930
+ background-color: rgb(162.7972027972, 31.2027972028, 131.5944055944);
1931
+ }
1932
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-900.hover:hover > td,
1933
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-pink-900.hover:hover > th,
1934
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-900.hover:hover > td,
1935
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-pink-900.hover:hover > th {
1936
+ color: #FFFFFF;
1937
+ background-color: rgb(162.7972027972, 31.2027972028, 131.5944055944);
1938
+ }
1939
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-50,
1940
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-50 {
1941
+ background-color: #FAFAFA;
1942
+ }
1943
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-50 > td,
1944
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-50 > th,
1945
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-50 > td,
1946
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-50 > th {
1947
+ color: #FFFFFF;
1948
+ background-color: #FAFAFA;
1949
+ }
1950
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-50 > td.cell-hover:hover,
1951
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-50 > th.cell-hover:hover,
1952
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-50 > td.cell-hover:hover,
1953
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-50 > th.cell-hover:hover {
1954
+ background-color: hsl(0, 0%, 106.0392156863%);
1955
+ }
1956
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-50.hover:hover > td,
1957
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-50.hover:hover > th,
1958
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-50.hover:hover > td,
1959
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-50.hover:hover > th {
1960
+ color: #FFFFFF;
1961
+ background-color: hsl(0, 0%, 106.0392156863%);
1962
+ }
1963
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-100,
1964
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-100 {
1965
+ background-color: #F5F5F5;
1966
+ }
1967
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-100 > td,
1968
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-100 > th,
1969
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-100 > td,
1970
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-100 > th {
1971
+ color: #FFFFFF;
1972
+ background-color: #F5F5F5;
1973
+ }
1974
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-100 > td.cell-hover:hover,
1975
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-100 > th.cell-hover:hover,
1976
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-100 > td.cell-hover:hover,
1977
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-100 > th.cell-hover:hover {
1978
+ background-color: hsl(0, 0%, 104.0784313725%);
1979
+ }
1980
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-100.hover:hover > td,
1981
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-100.hover:hover > th,
1982
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-100.hover:hover > td,
1983
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-100.hover:hover > th {
1984
+ color: #FFFFFF;
1985
+ background-color: hsl(0, 0%, 104.0784313725%);
1986
+ }
1987
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-200,
1988
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-200 {
1989
+ background-color: #E5E5E5;
1990
+ }
1991
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-200 > td,
1992
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-200 > th,
1993
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-200 > td,
1994
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-200 > th {
1995
+ color: #FFFFFF;
1996
+ background-color: #E5E5E5;
1997
+ }
1998
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-200 > td.cell-hover:hover,
1999
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-200 > th.cell-hover:hover,
2000
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-200 > td.cell-hover:hover,
2001
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-200 > th.cell-hover:hover {
2002
+ background-color: rgb(249.4, 249.4, 249.4);
2003
+ }
2004
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-200.hover:hover > td,
2005
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-200.hover:hover > th,
2006
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-200.hover:hover > td,
2007
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-200.hover:hover > th {
2008
+ color: #FFFFFF;
2009
+ background-color: rgb(249.4, 249.4, 249.4);
2010
+ }
2011
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-300,
2012
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-300 {
2013
+ background-color: #D4D4D4;
2014
+ }
2015
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-300 > td,
2016
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-300 > th,
2017
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-300 > td,
2018
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-300 > th {
2019
+ color: #FFFFFF;
2020
+ background-color: #D4D4D4;
2021
+ }
2022
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-300 > td.cell-hover:hover,
2023
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-300 > th.cell-hover:hover,
2024
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-300 > td.cell-hover:hover,
2025
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-300 > th.cell-hover:hover {
2026
+ background-color: rgb(191.6, 191.6, 191.6);
2027
+ }
2028
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-300.hover:hover > td,
2029
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-300.hover:hover > th,
2030
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-300.hover:hover > td,
2031
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-300.hover:hover > th {
2032
+ color: #FFFFFF;
2033
+ background-color: rgb(191.6, 191.6, 191.6);
2034
+ }
2035
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-400,
2036
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-400 {
2037
+ background-color: #A1A1A1;
2038
+ }
2039
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-400 > td,
2040
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-400 > th,
2041
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-400 > td,
2042
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-400 > th {
2043
+ color: #FFFFFF;
2044
+ background-color: #A1A1A1;
2045
+ }
2046
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-400 > td.cell-hover:hover,
2047
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-400 > th.cell-hover:hover,
2048
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-400 > td.cell-hover:hover,
2049
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-400 > th.cell-hover:hover {
2050
+ background-color: rgb(186.5, 186.5, 186.5);
2051
+ }
2052
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-400.hover:hover > td,
2053
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-400.hover:hover > th,
2054
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-400.hover:hover > td,
2055
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-400.hover:hover > th {
2056
+ color: #FFFFFF;
2057
+ background-color: rgb(186.5, 186.5, 186.5);
2058
+ }
2059
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-500,
2060
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-500 {
2061
+ background-color: #737373;
2062
+ }
2063
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-500 > td,
2064
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-500 > th,
2065
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-500 > td,
2066
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-500 > th {
2067
+ color: #FFFFFF;
2068
+ background-color: #737373;
2069
+ }
2070
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-500 > td.cell-hover:hover,
2071
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-500 > th.cell-hover:hover,
2072
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-500 > td.cell-hover:hover,
2073
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-500 > th.cell-hover:hover {
2074
+ background-color: rgb(140.5, 140.5, 140.5);
2075
+ }
2076
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-500.hover:hover > td,
2077
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-500.hover:hover > th,
2078
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-500.hover:hover > td,
2079
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-500.hover:hover > th {
2080
+ color: #FFFFFF;
2081
+ background-color: rgb(140.5, 140.5, 140.5);
2082
+ }
2083
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-600,
2084
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-600 {
2085
+ background-color: #525252;
2086
+ }
2087
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-600 > td,
2088
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-600 > th,
2089
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-600 > td,
2090
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-600 > th {
2091
+ color: #FFFFFF;
2092
+ background-color: #525252;
2093
+ }
2094
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-600 > td.cell-hover:hover,
2095
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-600 > th.cell-hover:hover,
2096
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-600 > td.cell-hover:hover,
2097
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-600 > th.cell-hover:hover {
2098
+ background-color: rgb(107.5, 107.5, 107.5);
2099
+ }
2100
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-600.hover:hover > td,
2101
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-600.hover:hover > th,
2102
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-600.hover:hover > td,
2103
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-600.hover:hover > th {
2104
+ color: #FFFFFF;
2105
+ background-color: rgb(107.5, 107.5, 107.5);
2106
+ }
2107
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-700,
2108
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-700 {
2109
+ background-color: #404040;
2110
+ }
2111
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-700 > td,
2112
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-700 > th,
2113
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-700 > td,
2114
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-700 > th {
2115
+ color: #FFFFFF;
2116
+ background-color: #404040;
2117
+ }
2118
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-700 > td.cell-hover:hover,
2119
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-700 > th.cell-hover:hover,
2120
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-700 > td.cell-hover:hover,
2121
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-700 > th.cell-hover:hover {
2122
+ background-color: rgb(89.5, 89.5, 89.5);
2123
+ }
2124
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-700.hover:hover > td,
2125
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-700.hover:hover > th,
2126
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-700.hover:hover > td,
2127
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-700.hover:hover > th {
2128
+ color: #FFFFFF;
2129
+ background-color: rgb(89.5, 89.5, 89.5);
2130
+ }
2131
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-800,
2132
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-800 {
2133
+ background-color: #262626;
2134
+ }
2135
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-800 > td,
2136
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-800 > th,
2137
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-800 > td,
2138
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-800 > th {
2139
+ color: #FFFFFF;
2140
+ background-color: #262626;
2141
+ }
2142
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-800 > td.cell-hover:hover,
2143
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-800 > th.cell-hover:hover,
2144
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-800 > td.cell-hover:hover,
2145
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-800 > th.cell-hover:hover {
2146
+ background-color: rgb(83.9, 83.9, 83.9);
2147
+ }
2148
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-800.hover:hover > td,
2149
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-800.hover:hover > th,
2150
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-800.hover:hover > td,
2151
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-800.hover:hover > th {
2152
+ color: #FFFFFF;
2153
+ background-color: rgb(83.9, 83.9, 83.9);
2154
+ }
2155
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-900,
2156
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-900 {
2157
+ background-color: #171717;
2158
+ }
2159
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-900 > td,
2160
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-900 > th,
2161
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-900 > td,
2162
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-900 > th {
2163
+ color: #FFFFFF;
2164
+ background-color: #171717;
2165
+ }
2166
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-900 > td.cell-hover:hover,
2167
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-900 > th.cell-hover:hover,
2168
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-900 > td.cell-hover:hover,
2169
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-900 > th.cell-hover:hover {
2170
+ background-color: rgb(68.9, 68.9, 68.9);
2171
+ }
2172
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-900.hover:hover > td,
2173
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-neutral-900.hover:hover > th,
2174
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-900.hover:hover > td,
2175
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-neutral-900.hover:hover > th {
2176
+ color: #FFFFFF;
2177
+ background-color: rgb(68.9, 68.9, 68.9);
2178
+ }
2179
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-black,
2180
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-black {
2181
+ background-color: #000000;
2182
+ }
2183
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-black > td,
2184
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-black > th,
2185
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-black > td,
2186
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-black > th {
2187
+ color: #FFFFFF;
2188
+ background-color: #000000;
2189
+ }
2190
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-black > td.cell-hover:hover,
2191
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-black > th.cell-hover:hover,
2192
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-black > td.cell-hover:hover,
2193
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-black > th.cell-hover:hover {
2194
+ background-color: rgb(45.9, 45.9, 45.9);
2195
+ }
2196
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-black.hover:hover > td,
2197
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-black.hover:hover > th,
2198
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-black.hover:hover > td,
2199
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-black.hover:hover > th {
2200
+ color: #FFFFFF;
2201
+ background-color: rgb(45.9, 45.9, 45.9);
2202
+ }
2203
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-white,
2204
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-white {
2205
+ background-color: #FFFFFF;
2206
+ }
2207
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-white > td,
2208
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-white > th,
2209
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-white > td,
2210
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-white > th {
2211
+ color: #FFFFFF;
2212
+ background-color: #FFFFFF;
2213
+ }
2214
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-white > td.cell-hover:hover,
2215
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-white > th.cell-hover:hover,
2216
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-white > td.cell-hover:hover,
2217
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-white > th.cell-hover:hover {
2218
+ background-color: hsl(0, 0%, 108%);
2219
+ }
2220
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-white.hover:hover > td,
2221
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.xplat-white.hover:hover > th,
2222
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-white.hover:hover > td,
2223
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.xplat-white.hover:hover > th {
2224
+ color: #FFFFFF;
2225
+ background-color: hsl(0, 0%, 108%);
2226
+ }
2227
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.test-default,
2228
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.test-default {
2229
+ background-color: #ffffff;
2230
+ }
2231
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.test-default > td,
2232
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.test-default > th,
2233
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.test-default > td,
2234
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.test-default > th {
2235
+ color: #FFFFFF;
2236
+ background-color: #ffffff;
2237
+ }
2238
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.test-default > td.cell-hover:hover,
2239
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.test-default > th.cell-hover:hover,
2240
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.test-default > td.cell-hover:hover,
2241
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.test-default > th.cell-hover:hover {
2242
+ background-color: hsl(0, 0%, 108%);
2243
+ }
2244
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.test-default.hover:hover > td,
2245
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.primary.test-default.hover:hover > th,
2246
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.test-default.hover:hover > td,
2247
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.primary.test-default.hover:hover > th {
2248
+ color: #FFFFFF;
2249
+ background-color: hsl(0, 0%, 108%);
2250
+ }
2251
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary,
2252
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary {
2253
+ background-color: #FFFFFF;
2254
+ }
2255
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-50 > td,
2256
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-50 > th,
2257
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-50 > td,
2258
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-50 > th {
2259
+ background-color: #FFFFFF;
2260
+ color: #FFF0F0;
2261
+ }
2262
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-50 > td.cell-hover:hover,
2263
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-50 > th.cell-hover:hover,
2264
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-50 > td.cell-hover:hover,
2265
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-50 > th.cell-hover:hover {
2266
+ background-color: rgb(255, 253.2, 253.2);
2267
+ }
2268
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-50.hover:hover > td,
2269
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-50.hover:hover > th,
2270
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-50.hover:hover > td,
2271
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-50.hover:hover > th {
2272
+ background-color: rgb(255, 253.2, 253.2);
2273
+ }
2274
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-100 > td,
2275
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-100 > th,
2276
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-100 > td,
2277
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-100 > th {
2278
+ background-color: #FFFFFF;
2279
+ color: #FFDDDE;
2280
+ }
2281
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-100 > td.cell-hover:hover,
2282
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-100 > th.cell-hover:hover,
2283
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-100 > td.cell-hover:hover,
2284
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-100 > th.cell-hover:hover {
2285
+ background-color: rgb(255, 250.92, 251.04);
2286
+ }
2287
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-100.hover:hover > td,
2288
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-100.hover:hover > th,
2289
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-100.hover:hover > td,
2290
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-100.hover:hover > th {
2291
+ background-color: rgb(255, 250.92, 251.04);
2292
+ }
2293
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-200 > td,
2294
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-200 > th,
2295
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-200 > td,
2296
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-200 > th {
2297
+ background-color: #FFFFFF;
2298
+ color: #FFC1C2;
2299
+ }
2300
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-200 > td.cell-hover:hover,
2301
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-200 > th.cell-hover:hover,
2302
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-200 > td.cell-hover:hover,
2303
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-200 > th.cell-hover:hover {
2304
+ background-color: rgb(255, 247.56, 247.68);
2305
+ }
2306
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-200.hover:hover > td,
2307
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-200.hover:hover > th,
2308
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-200.hover:hover > td,
2309
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-200.hover:hover > th {
2310
+ background-color: rgb(255, 247.56, 247.68);
2311
+ }
2312
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-300 > td,
2313
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-300 > th,
2314
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-300 > td,
2315
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-300 > th {
2316
+ background-color: #FFFFFF;
2317
+ color: #FF9698;
2318
+ }
2319
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-300 > td.cell-hover:hover,
2320
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-300 > th.cell-hover:hover,
2321
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-300 > td.cell-hover:hover,
2322
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-300 > th.cell-hover:hover {
2323
+ background-color: rgb(255, 242.4, 242.64);
2324
+ }
2325
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-300.hover:hover > td,
2326
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-300.hover:hover > th,
2327
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-300.hover:hover > td,
2328
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-300.hover:hover > th {
2329
+ background-color: rgb(255, 242.4, 242.64);
2330
+ }
2331
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-400 > td,
2332
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-400 > th,
2333
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-400 > td,
2334
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-400 > th {
2335
+ background-color: #FFFFFF;
2336
+ color: #FF5A5D;
2337
+ }
2338
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-400 > td.cell-hover:hover,
2339
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-400 > th.cell-hover:hover,
2340
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-400 > td.cell-hover:hover,
2341
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-400 > th.cell-hover:hover {
2342
+ background-color: rgb(255, 235.2, 235.56);
2343
+ }
2344
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-400.hover:hover > td,
2345
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-400.hover:hover > th,
2346
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-400.hover:hover > td,
2347
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-400.hover:hover > th {
2348
+ background-color: rgb(255, 235.2, 235.56);
2349
+ }
2350
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-500 > td,
2351
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-500 > th,
2352
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-500 > td,
2353
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-500 > th {
2354
+ background-color: #FFFFFF;
2355
+ color: #FF272B;
2356
+ }
2357
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-500 > td.cell-hover:hover,
2358
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-500 > th.cell-hover:hover,
2359
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-500 > td.cell-hover:hover,
2360
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-500 > th.cell-hover:hover {
2361
+ background-color: rgb(255, 229.08, 229.56);
2362
+ }
2363
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-500.hover:hover > td,
2364
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-500.hover:hover > th,
2365
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-500.hover:hover > td,
2366
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-500.hover:hover > th {
2367
+ background-color: rgb(255, 229.08, 229.56);
2368
+ }
2369
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-600 > td,
2370
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-600 > th,
2371
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-600 > td,
2372
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-600 > th {
2373
+ background-color: #FFFFFF;
2374
+ color: #F80409;
2375
+ }
2376
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-600 > td.cell-hover:hover,
2377
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-600 > th.cell-hover:hover,
2378
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-600 > td.cell-hover:hover,
2379
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-600 > th.cell-hover:hover {
2380
+ background-color: rgb(254.16, 224.88, 225.48);
2381
+ }
2382
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-600.hover:hover > td,
2383
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-600.hover:hover > th,
2384
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-600.hover:hover > td,
2385
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-600.hover:hover > th {
2386
+ background-color: rgb(254.16, 224.88, 225.48);
2387
+ }
2388
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-700 > td,
2389
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-700 > th,
2390
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-700 > td,
2391
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-700 > th {
2392
+ background-color: #FFFFFF;
2393
+ color: #D40105;
2394
+ }
2395
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-700 > td.cell-hover:hover,
2396
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-700 > th.cell-hover:hover,
2397
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-700 > td.cell-hover:hover,
2398
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-700 > th.cell-hover:hover {
2399
+ background-color: rgb(249.84, 224.52, 225);
2400
+ }
2401
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-700.hover:hover > td,
2402
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-700.hover:hover > th,
2403
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-700.hover:hover > td,
2404
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-700.hover:hover > th {
2405
+ background-color: rgb(249.84, 224.52, 225);
2406
+ }
2407
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-800 > td,
2408
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-800 > th,
2409
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-800 > td,
2410
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-800 > th {
2411
+ background-color: #FFFFFF;
2412
+ color: #AE0609;
2413
+ }
2414
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-800 > td.cell-hover:hover,
2415
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-800 > th.cell-hover:hover,
2416
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-800 > td.cell-hover:hover,
2417
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-800 > th.cell-hover:hover {
2418
+ background-color: rgb(245.28, 225.12, 225.48);
2419
+ }
2420
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-800.hover:hover > td,
2421
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-800.hover:hover > th,
2422
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-800.hover:hover > td,
2423
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-800.hover:hover > th {
2424
+ background-color: rgb(245.28, 225.12, 225.48);
2425
+ }
2426
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-900 > td,
2427
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-900 > th,
2428
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-900 > td,
2429
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-900 > th {
2430
+ background-color: #FFFFFF;
2431
+ color: #900C0F;
2432
+ }
2433
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-900 > td.cell-hover:hover,
2434
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-900 > th.cell-hover:hover,
2435
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-900 > td.cell-hover:hover,
2436
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-900 > th.cell-hover:hover {
2437
+ background-color: rgb(241.68, 225.84, 226.2);
2438
+ }
2439
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-900.hover:hover > td,
2440
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-red-900.hover:hover > th,
2441
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-900.hover:hover > td,
2442
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-red-900.hover:hover > th {
2443
+ background-color: rgb(241.68, 225.84, 226.2);
2444
+ }
2445
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-50 > td,
2446
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-50 > th,
2447
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-50 > td,
2448
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-50 > th {
2449
+ background-color: #FFFFFF;
2450
+ color: #E5F6EA;
2451
+ }
2452
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-50 > td.cell-hover:hover,
2453
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-50 > th.cell-hover:hover,
2454
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-50 > td.cell-hover:hover,
2455
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-50 > th.cell-hover:hover {
2456
+ background-color: rgb(251.88, 253.92, 252.48);
2457
+ }
2458
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-50.hover:hover > td,
2459
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-50.hover:hover > th,
2460
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-50.hover:hover > td,
2461
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-50.hover:hover > th {
2462
+ background-color: rgb(251.88, 253.92, 252.48);
2463
+ }
2464
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-100 > td,
2465
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-100 > th,
2466
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-100 > td,
2467
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-100 > th {
2468
+ background-color: #FFFFFF;
2469
+ color: #C1E7CC;
2470
+ }
2471
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-100 > td.cell-hover:hover,
2472
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-100 > th.cell-hover:hover,
2473
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-100 > td.cell-hover:hover,
2474
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-100 > th.cell-hover:hover {
2475
+ background-color: rgb(247.56, 252.12, 248.88);
2476
+ }
2477
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-100.hover:hover > td,
2478
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-100.hover:hover > th,
2479
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-100.hover:hover > td,
2480
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-100.hover:hover > th {
2481
+ background-color: rgb(247.56, 252.12, 248.88);
2482
+ }
2483
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-200 > td,
2484
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-200 > th,
2485
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-200 > td,
2486
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-200 > th {
2487
+ background-color: #FFFFFF;
2488
+ color: #98D8AC;
2489
+ }
2490
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-200 > td.cell-hover:hover,
2491
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-200 > th.cell-hover:hover,
2492
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-200 > td.cell-hover:hover,
2493
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-200 > th.cell-hover:hover {
2494
+ background-color: rgb(242.64, 250.32, 245.04);
2495
+ }
2496
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-200.hover:hover > td,
2497
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-200.hover:hover > th,
2498
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-200.hover:hover > td,
2499
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-200.hover:hover > th {
2500
+ background-color: rgb(242.64, 250.32, 245.04);
2501
+ }
2502
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-300 > td,
2503
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-300 > th,
2504
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-300 > td,
2505
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-300 > th {
2506
+ background-color: #FFFFFF;
2507
+ color: #6CCA8B;
2508
+ }
2509
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-300 > td.cell-hover:hover,
2510
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-300 > th.cell-hover:hover,
2511
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-300 > td.cell-hover:hover,
2512
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-300 > th.cell-hover:hover {
2513
+ background-color: rgb(237.36, 248.64, 241.08);
2514
+ }
2515
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-300.hover:hover > td,
2516
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-300.hover:hover > th,
2517
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-300.hover:hover > td,
2518
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-300.hover:hover > th {
2519
+ background-color: rgb(237.36, 248.64, 241.08);
2520
+ }
2521
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-400 > td,
2522
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-400 > th,
2523
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-400 > td,
2524
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-400 > th {
2525
+ background-color: #FFFFFF;
2526
+ color: #47BE72;
2527
+ }
2528
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-400 > td.cell-hover:hover,
2529
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-400 > th.cell-hover:hover,
2530
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-400 > td.cell-hover:hover,
2531
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-400 > th.cell-hover:hover {
2532
+ background-color: rgb(232.92, 247.2, 238.08);
2533
+ }
2534
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-400.hover:hover > td,
2535
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-400.hover:hover > th,
2536
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-400.hover:hover > td,
2537
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-400.hover:hover > th {
2538
+ background-color: rgb(232.92, 247.2, 238.08);
2539
+ }
2540
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-500 > td,
2541
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-500 > th,
2542
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-500 > td,
2543
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-500 > th {
2544
+ background-color: #FFFFFF;
2545
+ color: #10B259;
2546
+ }
2547
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-500 > td.cell-hover:hover,
2548
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-500 > th.cell-hover:hover,
2549
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-500 > td.cell-hover:hover,
2550
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-500 > th.cell-hover:hover {
2551
+ background-color: rgb(226.32, 245.76, 235.08);
2552
+ }
2553
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-500.hover:hover > td,
2554
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-500.hover:hover > th,
2555
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-500.hover:hover > td,
2556
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-500.hover:hover > th {
2557
+ background-color: rgb(226.32, 245.76, 235.08);
2558
+ }
2559
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-600 > td,
2560
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-600 > th,
2561
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-600 > td,
2562
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-600 > th {
2563
+ background-color: #FFFFFF;
2564
+ color: #00A34F;
2565
+ }
2566
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-600 > td.cell-hover:hover,
2567
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-600 > th.cell-hover:hover,
2568
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-600 > td.cell-hover:hover,
2569
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-600 > th.cell-hover:hover {
2570
+ background-color: rgb(224.4, 243.96, 233.88);
2571
+ }
2572
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-600.hover:hover > td,
2573
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-600.hover:hover > th,
2574
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-600.hover:hover > td,
2575
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-600.hover:hover > th {
2576
+ background-color: rgb(224.4, 243.96, 233.88);
2577
+ }
2578
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-700 > td,
2579
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-700 > th,
2580
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-700 > td,
2581
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-700 > th {
2582
+ background-color: #FFFFFF;
2583
+ color: #009143;
2584
+ }
2585
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-700 > td.cell-hover:hover,
2586
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-700 > th.cell-hover:hover,
2587
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-700 > td.cell-hover:hover,
2588
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-700 > th.cell-hover:hover {
2589
+ background-color: rgb(224.4, 241.8, 232.44);
2590
+ }
2591
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-700.hover:hover > td,
2592
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-700.hover:hover > th,
2593
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-700.hover:hover > td,
2594
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-700.hover:hover > th {
2595
+ background-color: rgb(224.4, 241.8, 232.44);
2596
+ }
2597
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-800 > td,
2598
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-800 > th,
2599
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-800 > td,
2600
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-800 > th {
2601
+ background-color: #FFFFFF;
2602
+ color: #007F38;
2603
+ }
2604
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-800 > td.cell-hover:hover,
2605
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-800 > th.cell-hover:hover,
2606
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-800 > td.cell-hover:hover,
2607
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-800 > th.cell-hover:hover {
2608
+ background-color: rgb(224.4, 239.64, 231.12);
2609
+ }
2610
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-800.hover:hover > td,
2611
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-800.hover:hover > th,
2612
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-800.hover:hover > td,
2613
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-800.hover:hover > th {
2614
+ background-color: rgb(224.4, 239.64, 231.12);
2615
+ }
2616
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-900 > td,
2617
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-900 > th,
2618
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-900 > td,
2619
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-900 > th {
2620
+ background-color: #FFFFFF;
2621
+ color: #006024;
2622
+ }
2623
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-900 > td.cell-hover:hover,
2624
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-900 > th.cell-hover:hover,
2625
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-900 > td.cell-hover:hover,
2626
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-900 > th.cell-hover:hover {
2627
+ background-color: rgb(224.4, 235.92, 228.72);
2628
+ }
2629
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-900.hover:hover > td,
2630
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-green-900.hover:hover > th,
2631
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-900.hover:hover > td,
2632
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-green-900.hover:hover > th {
2633
+ background-color: rgb(224.4, 235.92, 228.72);
2634
+ }
2635
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-50 > td,
2636
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-50 > th,
2637
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-50 > td,
2638
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-50 > th {
2639
+ background-color: #FFFFFF;
2640
+ color: #FFF8EC;
2641
+ }
2642
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-50 > td.cell-hover:hover,
2643
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-50 > th.cell-hover:hover,
2644
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-50 > td.cell-hover:hover,
2645
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-50 > th.cell-hover:hover {
2646
+ background-color: rgb(255, 254.16, 252.72);
2647
+ }
2648
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-50.hover:hover > td,
2649
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-50.hover:hover > th,
2650
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-50.hover:hover > td,
2651
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-50.hover:hover > th {
2652
+ background-color: rgb(255, 254.16, 252.72);
2653
+ }
2654
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-100 > td,
2655
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-100 > th,
2656
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-100 > td,
2657
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-100 > th {
2658
+ background-color: #FFFFFF;
2659
+ color: #FFF0D3;
2660
+ }
2661
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-100 > td.cell-hover:hover,
2662
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-100 > th.cell-hover:hover,
2663
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-100 > td.cell-hover:hover,
2664
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-100 > th.cell-hover:hover {
2665
+ background-color: rgb(255, 253.2, 249.72);
2666
+ }
2667
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-100.hover:hover > td,
2668
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-100.hover:hover > th,
2669
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-100.hover:hover > td,
2670
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-100.hover:hover > th {
2671
+ background-color: rgb(255, 253.2, 249.72);
2672
+ }
2673
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-200 > td,
2674
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-200 > th,
2675
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-200 > td,
2676
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-200 > th {
2677
+ background-color: #FFFFFF;
2678
+ color: #FFDDA5;
2679
+ }
2680
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-200 > td.cell-hover:hover,
2681
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-200 > th.cell-hover:hover,
2682
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-200 > td.cell-hover:hover,
2683
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-200 > th.cell-hover:hover {
2684
+ background-color: rgb(255, 250.92, 244.2);
2685
+ }
2686
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-200.hover:hover > td,
2687
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-200.hover:hover > th,
2688
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-200.hover:hover > td,
2689
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-200.hover:hover > th {
2690
+ background-color: rgb(255, 250.92, 244.2);
2691
+ }
2692
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-300 > td,
2693
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-300 > th,
2694
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-300 > td,
2695
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-300 > th {
2696
+ background-color: #FFFFFF;
2697
+ color: #FFC46D;
2698
+ }
2699
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-300 > td.cell-hover:hover,
2700
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-300 > th.cell-hover:hover,
2701
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-300 > td.cell-hover:hover,
2702
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-300 > th.cell-hover:hover {
2703
+ background-color: rgb(255, 247.92, 237.48);
2704
+ }
2705
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-300.hover:hover > td,
2706
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-300.hover:hover > th,
2707
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-300.hover:hover > td,
2708
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-300.hover:hover > th {
2709
+ background-color: rgb(255, 247.92, 237.48);
2710
+ }
2711
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-400 > td,
2712
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-400 > th,
2713
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-400 > td,
2714
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-400 > th {
2715
+ background-color: #FFFFFF;
2716
+ color: #FF9F32;
2717
+ }
2718
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-400 > td.cell-hover:hover,
2719
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-400 > th.cell-hover:hover,
2720
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-400 > td.cell-hover:hover,
2721
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-400 > th.cell-hover:hover {
2722
+ background-color: rgb(255, 243.48, 230.4);
2723
+ }
2724
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-400.hover:hover > td,
2725
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-400.hover:hover > th,
2726
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-400.hover:hover > td,
2727
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-400.hover:hover > th {
2728
+ background-color: rgb(255, 243.48, 230.4);
2729
+ }
2730
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-500 > td,
2731
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-500 > th,
2732
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-500 > td,
2733
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-500 > th {
2734
+ background-color: #FFFFFF;
2735
+ color: #FF820A;
2736
+ }
2737
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-500 > td.cell-hover:hover,
2738
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-500 > th.cell-hover:hover,
2739
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-500 > td.cell-hover:hover,
2740
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-500 > th.cell-hover:hover {
2741
+ background-color: rgb(255, 240, 225.6);
2742
+ }
2743
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-500.hover:hover > td,
2744
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-500.hover:hover > th,
2745
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-500.hover:hover > td,
2746
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-500.hover:hover > th {
2747
+ background-color: rgb(255, 240, 225.6);
2748
+ }
2749
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-600 > td,
2750
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-600 > th,
2751
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-600 > td,
2752
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-600 > th {
2753
+ background-color: #FFFFFF;
2754
+ color: #FF6900;
2755
+ }
2756
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-600 > td.cell-hover:hover,
2757
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-600 > th.cell-hover:hover,
2758
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-600 > td.cell-hover:hover,
2759
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-600 > th.cell-hover:hover {
2760
+ background-color: rgb(255, 237, 224.4);
2761
+ }
2762
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-600.hover:hover > td,
2763
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-600.hover:hover > th,
2764
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-600.hover:hover > td,
2765
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-600.hover:hover > th {
2766
+ background-color: rgb(255, 237, 224.4);
2767
+ }
2768
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-700 > td,
2769
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-700 > th,
2770
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-700 > td,
2771
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-700 > th {
2772
+ background-color: #FFFFFF;
2773
+ color: #CC4B02;
2774
+ }
2775
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-700 > td.cell-hover:hover,
2776
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-700 > th.cell-hover:hover,
2777
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-700 > td.cell-hover:hover,
2778
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-700 > th.cell-hover:hover {
2779
+ background-color: rgb(248.88, 233.4, 224.64);
2780
+ }
2781
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-700.hover:hover > td,
2782
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-700.hover:hover > th,
2783
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-700.hover:hover > td,
2784
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-700.hover:hover > th {
2785
+ background-color: rgb(248.88, 233.4, 224.64);
2786
+ }
2787
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-800 > td,
2788
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-800 > th,
2789
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-800 > td,
2790
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-800 > th {
2791
+ background-color: #FFFFFF;
2792
+ color: #A13A0B;
2793
+ }
2794
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-800 > td.cell-hover:hover,
2795
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-800 > th.cell-hover:hover,
2796
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-800 > td.cell-hover:hover,
2797
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-800 > th.cell-hover:hover {
2798
+ background-color: rgb(243.72, 231.36, 225.72);
2799
+ }
2800
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-800.hover:hover > td,
2801
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-800.hover:hover > th,
2802
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-800.hover:hover > td,
2803
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-800.hover:hover > th {
2804
+ background-color: rgb(243.72, 231.36, 225.72);
2805
+ }
2806
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-900 > td,
2807
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-900 > th,
2808
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-900 > td,
2809
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-900 > th {
2810
+ background-color: #FFFFFF;
2811
+ color: #82320C;
2812
+ }
2813
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-900 > td.cell-hover:hover,
2814
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-900 > th.cell-hover:hover,
2815
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-900 > td.cell-hover:hover,
2816
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-900 > th.cell-hover:hover {
2817
+ background-color: rgb(240, 230.4, 225.84);
2818
+ }
2819
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-900.hover:hover > td,
2820
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-orange-900.hover:hover > th,
2821
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-900.hover:hover > td,
2822
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-orange-900.hover:hover > th {
2823
+ background-color: rgb(240, 230.4, 225.84);
2824
+ }
2825
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-50 > td,
2826
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-50 > th,
2827
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-50 > td,
2828
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-50 > th {
2829
+ background-color: #FFFFFF;
2830
+ color: #FFFDE7;
2831
+ }
2832
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-50 > td.cell-hover:hover,
2833
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-50 > th.cell-hover:hover,
2834
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-50 > td.cell-hover:hover,
2835
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-50 > th.cell-hover:hover {
2836
+ background-color: rgb(255, 254.76, 252.12);
2837
+ }
2838
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-50.hover:hover > td,
2839
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-50.hover:hover > th,
2840
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-50.hover:hover > td,
2841
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-50.hover:hover > th {
2842
+ background-color: rgb(255, 254.76, 252.12);
2843
+ }
2844
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-100 > td,
2845
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-100 > th,
2846
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-100 > td,
2847
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-100 > th {
2848
+ background-color: #FFFFFF;
2849
+ color: #FFFAC1;
2850
+ }
2851
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-100 > td.cell-hover:hover,
2852
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-100 > th.cell-hover:hover,
2853
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-100 > td.cell-hover:hover,
2854
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-100 > th.cell-hover:hover {
2855
+ background-color: rgb(255, 254.4, 247.56);
2856
+ }
2857
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-100.hover:hover > td,
2858
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-100.hover:hover > th,
2859
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-100.hover:hover > td,
2860
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-100.hover:hover > th {
2861
+ background-color: rgb(255, 254.4, 247.56);
2862
+ }
2863
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-200 > td,
2864
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-200 > th,
2865
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-200 > td,
2866
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-200 > th {
2867
+ background-color: #FFFFFF;
2868
+ color: #FFF186;
2869
+ }
2870
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-200 > td.cell-hover:hover,
2871
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-200 > th.cell-hover:hover,
2872
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-200 > td.cell-hover:hover,
2873
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-200 > th.cell-hover:hover {
2874
+ background-color: rgb(255, 253.32, 240.48);
2875
+ }
2876
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-200.hover:hover > td,
2877
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-200.hover:hover > th,
2878
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-200.hover:hover > td,
2879
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-200.hover:hover > th {
2880
+ background-color: rgb(255, 253.32, 240.48);
2881
+ }
2882
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-300 > td,
2883
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-300 > th,
2884
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-300 > td,
2885
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-300 > th {
2886
+ background-color: #FFFFFF;
2887
+ color: #FFE041;
2888
+ }
2889
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-300 > td.cell-hover:hover,
2890
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-300 > th.cell-hover:hover,
2891
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-300 > td.cell-hover:hover,
2892
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-300 > th.cell-hover:hover {
2893
+ background-color: rgb(255, 251.28, 232.2);
2894
+ }
2895
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-300.hover:hover > td,
2896
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-300.hover:hover > th,
2897
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-300.hover:hover > td,
2898
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-300.hover:hover > th {
2899
+ background-color: rgb(255, 251.28, 232.2);
2900
+ }
2901
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-400 > td,
2902
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-400 > th,
2903
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-400 > td,
2904
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-400 > th {
2905
+ background-color: #FFFFFF;
2906
+ color: #FFCC0D;
2907
+ }
2908
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-400 > td.cell-hover:hover,
2909
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-400 > th.cell-hover:hover,
2910
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-400 > td.cell-hover:hover,
2911
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-400 > th.cell-hover:hover {
2912
+ background-color: rgb(255, 248.88, 225.96);
2913
+ }
2914
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-400.hover:hover > td,
2915
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-400.hover:hover > th,
2916
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-400.hover:hover > td,
2917
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-400.hover:hover > th {
2918
+ background-color: rgb(255, 248.88, 225.96);
2919
+ }
2920
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-500 > td,
2921
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-500 > th,
2922
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-500 > td,
2923
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-500 > th {
2924
+ background-color: #FFFFFF;
2925
+ color: #F0B100;
2926
+ }
2927
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-500 > td.cell-hover:hover,
2928
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-500 > th.cell-hover:hover,
2929
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-500 > td.cell-hover:hover,
2930
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-500 > th.cell-hover:hover {
2931
+ background-color: rgb(253.2, 245.64, 224.4);
2932
+ }
2933
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-500.hover:hover > td,
2934
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-500.hover:hover > th,
2935
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-500.hover:hover > td,
2936
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-500.hover:hover > th {
2937
+ background-color: rgb(253.2, 245.64, 224.4);
2938
+ }
2939
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-600 > td,
2940
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-600 > th,
2941
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-600 > td,
2942
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-600 > th {
2943
+ background-color: #FFFFFF;
2944
+ color: #D18800;
2945
+ }
2946
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-600 > td.cell-hover:hover,
2947
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-600 > th.cell-hover:hover,
2948
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-600 > td.cell-hover:hover,
2949
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-600 > th.cell-hover:hover {
2950
+ background-color: rgb(249.48, 240.72, 224.4);
2951
+ }
2952
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-600.hover:hover > td,
2953
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-600.hover:hover > th,
2954
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-600.hover:hover > td,
2955
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-600.hover:hover > th {
2956
+ background-color: rgb(249.48, 240.72, 224.4);
2957
+ }
2958
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-700 > td,
2959
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-700 > th,
2960
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-700 > td,
2961
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-700 > th {
2962
+ background-color: #FFFFFF;
2963
+ color: #A66002;
2964
+ }
2965
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-700 > td.cell-hover:hover,
2966
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-700 > th.cell-hover:hover,
2967
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-700 > td.cell-hover:hover,
2968
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-700 > th.cell-hover:hover {
2969
+ background-color: rgb(244.32, 235.92, 224.64);
2970
+ }
2971
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-700.hover:hover > td,
2972
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-700.hover:hover > th,
2973
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-700.hover:hover > td,
2974
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-700.hover:hover > th {
2975
+ background-color: rgb(244.32, 235.92, 224.64);
2976
+ }
2977
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-800 > td,
2978
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-800 > th,
2979
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-800 > td,
2980
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-800 > th {
2981
+ background-color: #FFFFFF;
2982
+ color: #894B0A;
2983
+ }
2984
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-800 > td.cell-hover:hover,
2985
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-800 > th.cell-hover:hover,
2986
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-800 > td.cell-hover:hover,
2987
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-800 > th.cell-hover:hover {
2988
+ background-color: rgb(240.84, 233.4, 225.6);
2989
+ }
2990
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-800.hover:hover > td,
2991
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-800.hover:hover > th,
2992
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-800.hover:hover > td,
2993
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-800.hover:hover > th {
2994
+ background-color: rgb(240.84, 233.4, 225.6);
2995
+ }
2996
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-900 > td,
2997
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-900 > th,
2998
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-900 > td,
2999
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-900 > th {
3000
+ background-color: #FFFFFF;
3001
+ color: #743D0F;
3002
+ }
3003
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-900 > td.cell-hover:hover,
3004
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-900 > th.cell-hover:hover,
3005
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-900 > td.cell-hover:hover,
3006
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-900 > th.cell-hover:hover {
3007
+ background-color: rgb(238.32, 231.72, 226.2);
3008
+ }
3009
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-900.hover:hover > td,
3010
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-yellow-900.hover:hover > th,
3011
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-900.hover:hover > td,
3012
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-yellow-900.hover:hover > th {
3013
+ background-color: rgb(238.32, 231.72, 226.2);
3014
+ }
3015
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-50 > td,
3016
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-50 > th,
3017
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-50 > td,
3018
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-50 > th {
3019
+ background-color: #FFFFFF;
3020
+ color: #F1F4FD;
3021
+ }
3022
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-50 > td.cell-hover:hover,
3023
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-50 > th.cell-hover:hover,
3024
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-50 > td.cell-hover:hover,
3025
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-50 > th.cell-hover:hover {
3026
+ background-color: rgb(253.32, 253.68, 254.76);
3027
+ }
3028
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-50.hover:hover > td,
3029
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-50.hover:hover > th,
3030
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-50.hover:hover > td,
3031
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-50.hover:hover > th {
3032
+ background-color: rgb(253.32, 253.68, 254.76);
3033
+ }
3034
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-100 > td,
3035
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-100 > th,
3036
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-100 > td,
3037
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-100 > th {
3038
+ background-color: #FFFFFF;
3039
+ color: #DFE7FA;
3040
+ }
3041
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-100 > td.cell-hover:hover,
3042
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-100 > th.cell-hover:hover,
3043
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-100 > td.cell-hover:hover,
3044
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-100 > th.cell-hover:hover {
3045
+ background-color: rgb(251.16, 252.12, 254.4);
3046
+ }
3047
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-100.hover:hover > td,
3048
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-100.hover:hover > th,
3049
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-100.hover:hover > td,
3050
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-100.hover:hover > th {
3051
+ background-color: rgb(251.16, 252.12, 254.4);
3052
+ }
3053
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-200 > td,
3054
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-200 > th,
3055
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-200 > td,
3056
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-200 > th {
3057
+ background-color: #FFFFFF;
3058
+ color: #C5D4F8;
3059
+ }
3060
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-200 > td.cell-hover:hover,
3061
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-200 > th.cell-hover:hover,
3062
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-200 > td.cell-hover:hover,
3063
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-200 > th.cell-hover:hover {
3064
+ background-color: rgb(248.04, 249.84, 254.16);
3065
+ }
3066
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-200.hover:hover > td,
3067
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-200.hover:hover > th,
3068
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-200.hover:hover > td,
3069
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-200.hover:hover > th {
3070
+ background-color: rgb(248.04, 249.84, 254.16);
3071
+ }
3072
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-300 > td,
3073
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-300 > th,
3074
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-300 > td,
3075
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-300 > th {
3076
+ background-color: #FFFFFF;
3077
+ color: #9EB8F2;
3078
+ }
3079
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-300 > td.cell-hover:hover,
3080
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-300 > th.cell-hover:hover,
3081
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-300 > td.cell-hover:hover,
3082
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-300 > th.cell-hover:hover {
3083
+ background-color: rgb(243.36, 246.48, 253.44);
3084
+ }
3085
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-300.hover:hover > td,
3086
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-300.hover:hover > th,
3087
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-300.hover:hover > td,
3088
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-300.hover:hover > th {
3089
+ background-color: rgb(243.36, 246.48, 253.44);
3090
+ }
3091
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-400 > td,
3092
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-400 > th,
3093
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-400 > td,
3094
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-400 > th {
3095
+ background-color: #FFFFFF;
3096
+ color: #7093EA;
3097
+ }
3098
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-400 > td.cell-hover:hover,
3099
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-400 > th.cell-hover:hover,
3100
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-400 > td.cell-hover:hover,
3101
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-400 > th.cell-hover:hover {
3102
+ background-color: rgb(237.84, 242.04, 252.48);
3103
+ }
3104
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-400.hover:hover > td,
3105
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-400.hover:hover > th,
3106
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-400.hover:hover > td,
3107
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-400.hover:hover > th {
3108
+ background-color: rgb(237.84, 242.04, 252.48);
3109
+ }
3110
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-500 > td,
3111
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-500 > th,
3112
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-500 > td,
3113
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-500 > th {
3114
+ background-color: #FFFFFF;
3115
+ color: #4D6DE3;
3116
+ }
3117
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-500 > td.cell-hover:hover,
3118
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-500 > th.cell-hover:hover,
3119
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-500 > td.cell-hover:hover,
3120
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-500 > th.cell-hover:hover {
3121
+ background-color: rgb(233.64, 237.48, 251.64);
3122
+ }
3123
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-500.hover:hover > td,
3124
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-500.hover:hover > th,
3125
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-500.hover:hover > td,
3126
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-500.hover:hover > th {
3127
+ background-color: rgb(233.64, 237.48, 251.64);
3128
+ }
3129
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-600 > td,
3130
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-600 > th,
3131
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-600 > td,
3132
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-600 > th {
3133
+ background-color: #FFFFFF;
3134
+ color: #3950D7;
3135
+ }
3136
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-600 > td.cell-hover:hover,
3137
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-600 > th.cell-hover:hover,
3138
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-600 > td.cell-hover:hover,
3139
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-600 > th.cell-hover:hover {
3140
+ background-color: rgb(231.24, 234, 250.2);
3141
+ }
3142
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-600.hover:hover > td,
3143
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-600.hover:hover > th,
3144
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-600.hover:hover > td,
3145
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-600.hover:hover > th {
3146
+ background-color: rgb(231.24, 234, 250.2);
3147
+ }
3148
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-700 > td,
3149
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-700 > th,
3150
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-700 > td,
3151
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-700 > th {
3152
+ background-color: #FFFFFF;
3153
+ color: #303EC5;
3154
+ }
3155
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-700 > td.cell-hover:hover,
3156
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-700 > th.cell-hover:hover,
3157
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-700 > td.cell-hover:hover,
3158
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-700 > th.cell-hover:hover {
3159
+ background-color: rgb(230.16, 231.84, 248.04);
3160
+ }
3161
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-700.hover:hover > td,
3162
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-700.hover:hover > th,
3163
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-700.hover:hover > td,
3164
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-700.hover:hover > th {
3165
+ background-color: rgb(230.16, 231.84, 248.04);
3166
+ }
3167
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-800 > td,
3168
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-800 > th,
3169
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-800 > td,
3170
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-800 > th {
3171
+ background-color: #FFFFFF;
3172
+ color: #2D35A0;
3173
+ }
3174
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-800 > td.cell-hover:hover,
3175
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-800 > th.cell-hover:hover,
3176
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-800 > td.cell-hover:hover,
3177
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-800 > th.cell-hover:hover {
3178
+ background-color: rgb(229.8, 230.76, 243.6);
3179
+ }
3180
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-800.hover:hover > td,
3181
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-800.hover:hover > th,
3182
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-800.hover:hover > td,
3183
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-800.hover:hover > th {
3184
+ background-color: rgb(229.8, 230.76, 243.6);
3185
+ }
3186
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-900 > td,
3187
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-900 > th,
3188
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-900 > td,
3189
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-900 > th {
3190
+ background-color: #FFFFFF;
3191
+ color: #29317F;
3192
+ }
3193
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-900 > td.cell-hover:hover,
3194
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-900 > th.cell-hover:hover,
3195
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-900 > td.cell-hover:hover,
3196
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-900 > th.cell-hover:hover {
3197
+ background-color: rgb(229.32, 230.28, 239.64);
3198
+ }
3199
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-900.hover:hover > td,
3200
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-blue-900.hover:hover > th,
3201
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-900.hover:hover > td,
3202
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-blue-900.hover:hover > th {
3203
+ background-color: rgb(229.32, 230.28, 239.64);
3204
+ }
3205
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-50 > td,
3206
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-50 > th,
3207
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-50 > td,
3208
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-50 > th {
3209
+ background-color: #FFFFFF;
3210
+ color: #EEFAFF;
3211
+ }
3212
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-50 > td.cell-hover:hover,
3213
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-50 > th.cell-hover:hover,
3214
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-50 > td.cell-hover:hover,
3215
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-50 > th.cell-hover:hover {
3216
+ background-color: rgb(252.96, 254.4, 255);
3217
+ }
3218
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-50.hover:hover > td,
3219
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-50.hover:hover > th,
3220
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-50.hover:hover > td,
3221
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-50.hover:hover > th {
3222
+ background-color: rgb(252.96, 254.4, 255);
3223
+ }
3224
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-100 > td,
3225
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-100 > th,
3226
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-100 > td,
3227
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-100 > th {
3228
+ background-color: #FFFFFF;
3229
+ color: #D9F4FF;
3230
+ }
3231
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-100 > td.cell-hover:hover,
3232
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-100 > th.cell-hover:hover,
3233
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-100 > td.cell-hover:hover,
3234
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-100 > th.cell-hover:hover {
3235
+ background-color: rgb(250.44, 253.68, 255);
3236
+ }
3237
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-100.hover:hover > td,
3238
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-100.hover:hover > th,
3239
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-100.hover:hover > td,
3240
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-100.hover:hover > th {
3241
+ background-color: rgb(250.44, 253.68, 255);
3242
+ }
3243
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-200 > td,
3244
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-200 > th,
3245
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-200 > td,
3246
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-200 > th {
3247
+ background-color: #FFFFFF;
3248
+ color: #BBEDFF;
3249
+ }
3250
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-200 > td.cell-hover:hover,
3251
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-200 > th.cell-hover:hover,
3252
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-200 > td.cell-hover:hover,
3253
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-200 > th.cell-hover:hover {
3254
+ background-color: rgb(246.84, 252.84, 255);
3255
+ }
3256
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-200.hover:hover > td,
3257
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-200.hover:hover > th,
3258
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-200.hover:hover > td,
3259
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-200.hover:hover > th {
3260
+ background-color: rgb(246.84, 252.84, 255);
3261
+ }
3262
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-300 > td,
3263
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-300 > th,
3264
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-300 > td,
3265
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-300 > th {
3266
+ background-color: #FFFFFF;
3267
+ color: #8DE3FF;
3268
+ }
3269
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-300 > td.cell-hover:hover,
3270
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-300 > th.cell-hover:hover,
3271
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-300 > td.cell-hover:hover,
3272
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-300 > th.cell-hover:hover {
3273
+ background-color: rgb(241.32, 251.64, 255);
3274
+ }
3275
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-300.hover:hover > td,
3276
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-300.hover:hover > th,
3277
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-300.hover:hover > td,
3278
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-300.hover:hover > th {
3279
+ background-color: rgb(241.32, 251.64, 255);
3280
+ }
3281
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-400 > td,
3282
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-400 > th,
3283
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-400 > td,
3284
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-400 > th {
3285
+ background-color: #FFFFFF;
3286
+ color: #57D0FF;
3287
+ }
3288
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-400 > td.cell-hover:hover,
3289
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-400 > th.cell-hover:hover,
3290
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-400 > td.cell-hover:hover,
3291
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-400 > th.cell-hover:hover {
3292
+ background-color: rgb(234.84, 249.36, 255);
3293
+ }
3294
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-400.hover:hover > td,
3295
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-400.hover:hover > th,
3296
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-400.hover:hover > td,
3297
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-400.hover:hover > th {
3298
+ background-color: rgb(234.84, 249.36, 255);
3299
+ }
3300
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-500 > td,
3301
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-500 > th,
3302
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-500 > td,
3303
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-500 > th {
3304
+ background-color: #FFFFFF;
3305
+ color: #30B6FF;
3306
+ }
3307
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-500 > td.cell-hover:hover,
3308
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-500 > th.cell-hover:hover,
3309
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-500 > td.cell-hover:hover,
3310
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-500 > th.cell-hover:hover {
3311
+ background-color: rgb(230.16, 246.24, 255);
3312
+ }
3313
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-500.hover:hover > td,
3314
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-500.hover:hover > th,
3315
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-500.hover:hover > td,
3316
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-500.hover:hover > th {
3317
+ background-color: rgb(230.16, 246.24, 255);
3318
+ }
3319
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-600 > td,
3320
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-600 > th,
3321
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-600 > td,
3322
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-600 > th {
3323
+ background-color: #FFFFFF;
3324
+ color: #1999F7;
3325
+ }
3326
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-600 > td.cell-hover:hover,
3327
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-600 > th.cell-hover:hover,
3328
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-600 > td.cell-hover:hover,
3329
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-600 > th.cell-hover:hover {
3330
+ background-color: rgb(227.4, 242.76, 254.04);
3331
+ }
3332
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-600.hover:hover > td,
3333
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-600.hover:hover > th,
3334
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-600.hover:hover > td,
3335
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-600.hover:hover > th {
3336
+ background-color: rgb(227.4, 242.76, 254.04);
3337
+ }
3338
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-700 > td,
3339
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-700 > th,
3340
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-700 > td,
3341
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-700 > th {
3342
+ background-color: #FFFFFF;
3343
+ color: #1280E3;
3344
+ }
3345
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-700 > td.cell-hover:hover,
3346
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-700 > th.cell-hover:hover,
3347
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-700 > td.cell-hover:hover,
3348
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-700 > th.cell-hover:hover {
3349
+ background-color: rgb(226.56, 239.76, 251.64);
3350
+ }
3351
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-700.hover:hover > td,
3352
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-700.hover:hover > th,
3353
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-700.hover:hover > td,
3354
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-700.hover:hover > th {
3355
+ background-color: rgb(226.56, 239.76, 251.64);
3356
+ }
3357
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-800 > td,
3358
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-800 > th,
3359
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-800 > td,
3360
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-800 > th {
3361
+ background-color: #FFFFFF;
3362
+ color: #1566B8;
3363
+ }
3364
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-800 > td.cell-hover:hover,
3365
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-800 > th.cell-hover:hover,
3366
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-800 > td.cell-hover:hover,
3367
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-800 > th.cell-hover:hover {
3368
+ background-color: rgb(226.92, 236.64, 246.48);
3369
+ }
3370
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-800.hover:hover > td,
3371
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-800.hover:hover > th,
3372
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-800.hover:hover > td,
3373
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-800.hover:hover > th {
3374
+ background-color: rgb(226.92, 236.64, 246.48);
3375
+ }
3376
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-900 > td,
3377
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-900 > th,
3378
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-900 > td,
3379
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-900 > th {
3380
+ background-color: #FFFFFF;
3381
+ color: #175791;
3382
+ }
3383
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-900 > td.cell-hover:hover,
3384
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-900 > th.cell-hover:hover,
3385
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-900 > td.cell-hover:hover,
3386
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-900 > th.cell-hover:hover {
3387
+ background-color: rgb(227.16, 234.84, 241.8);
3388
+ }
3389
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-900.hover:hover > td,
3390
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-lightblue-900.hover:hover > th,
3391
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-900.hover:hover > td,
3392
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-lightblue-900.hover:hover > th {
3393
+ background-color: rgb(227.16, 234.84, 241.8);
3394
+ }
3395
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-50 > td,
3396
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-50 > th,
3397
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-50 > td,
3398
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-50 > th {
3399
+ background-color: #FFFFFF;
3400
+ color: #FBF6FE;
3401
+ }
3402
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-50 > td.cell-hover:hover,
3403
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-50 > th.cell-hover:hover,
3404
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-50 > td.cell-hover:hover,
3405
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-50 > th.cell-hover:hover {
3406
+ background-color: rgb(254.52, 253.92, 254.88);
3407
+ }
3408
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-50.hover:hover > td,
3409
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-50.hover:hover > th,
3410
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-50.hover:hover > td,
3411
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-50.hover:hover > th {
3412
+ background-color: rgb(254.52, 253.92, 254.88);
3413
+ }
3414
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-100 > td,
3415
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-100 > th,
3416
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-100 > td,
3417
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-100 > th {
3418
+ background-color: #FFFFFF;
3419
+ color: #F5EAFD;
3420
+ }
3421
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-100 > td.cell-hover:hover,
3422
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-100 > th.cell-hover:hover,
3423
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-100 > td.cell-hover:hover,
3424
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-100 > th.cell-hover:hover {
3425
+ background-color: rgb(253.8, 252.48, 254.76);
3426
+ }
3427
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-100.hover:hover > td,
3428
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-100.hover:hover > th,
3429
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-100.hover:hover > td,
3430
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-100.hover:hover > th {
3431
+ background-color: rgb(253.8, 252.48, 254.76);
3432
+ }
3433
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-200 > td,
3434
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-200 > th,
3435
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-200 > td,
3436
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-200 > th {
3437
+ background-color: #FFFFFF;
3438
+ color: #EDD8FC;
3439
+ }
3440
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-200 > td.cell-hover:hover,
3441
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-200 > th.cell-hover:hover,
3442
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-200 > td.cell-hover:hover,
3443
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-200 > th.cell-hover:hover {
3444
+ background-color: rgb(252.84, 250.32, 254.64);
3445
+ }
3446
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-200.hover:hover > td,
3447
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-200.hover:hover > th,
3448
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-200.hover:hover > td,
3449
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-200.hover:hover > th {
3450
+ background-color: rgb(252.84, 250.32, 254.64);
3451
+ }
3452
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-300 > td,
3453
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-300 > th,
3454
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-300 > td,
3455
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-300 > th {
3456
+ background-color: #FFFFFF;
3457
+ color: #E0BAF8;
3458
+ }
3459
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-300 > td.cell-hover:hover,
3460
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-300 > th.cell-hover:hover,
3461
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-300 > td.cell-hover:hover,
3462
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-300 > th.cell-hover:hover {
3463
+ background-color: rgb(251.28, 246.72, 254.16);
3464
+ }
3465
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-300.hover:hover > td,
3466
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-300.hover:hover > th,
3467
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-300.hover:hover > td,
3468
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-300.hover:hover > th {
3469
+ background-color: rgb(251.28, 246.72, 254.16);
3470
+ }
3471
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-400 > td,
3472
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-400 > th,
3473
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-400 > td,
3474
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-400 > th {
3475
+ background-color: #FFFFFF;
3476
+ color: #CD8DF3;
3477
+ }
3478
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-400 > td.cell-hover:hover,
3479
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-400 > th.cell-hover:hover,
3480
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-400 > td.cell-hover:hover,
3481
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-400 > th.cell-hover:hover {
3482
+ background-color: rgb(249, 241.32, 253.56);
3483
+ }
3484
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-400.hover:hover > td,
3485
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-400.hover:hover > th,
3486
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-400.hover:hover > td,
3487
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-400.hover:hover > th {
3488
+ background-color: rgb(249, 241.32, 253.56);
3489
+ }
3490
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-500 > td,
3491
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-500 > th,
3492
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-500 > td,
3493
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-500 > th {
3494
+ background-color: #FFFFFF;
3495
+ color: #B961EB;
3496
+ }
3497
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-500 > td.cell-hover:hover,
3498
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-500 > th.cell-hover:hover,
3499
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-500 > td.cell-hover:hover,
3500
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-500 > th.cell-hover:hover {
3501
+ background-color: rgb(246.6, 236.04, 252.6);
3502
+ }
3503
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-500.hover:hover > td,
3504
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-500.hover:hover > th,
3505
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-500.hover:hover > td,
3506
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-500.hover:hover > th {
3507
+ background-color: rgb(246.6, 236.04, 252.6);
3508
+ }
3509
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-600 > td,
3510
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-600 > th,
3511
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-600 > td,
3512
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-600 > th {
3513
+ background-color: #FFFFFF;
3514
+ color: #A541DC;
3515
+ }
3516
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-600 > td.cell-hover:hover,
3517
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-600 > th.cell-hover:hover,
3518
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-600 > td.cell-hover:hover,
3519
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-600 > th.cell-hover:hover {
3520
+ background-color: rgb(244.2, 232.2, 250.8);
3521
+ }
3522
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-600.hover:hover > td,
3523
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-600.hover:hover > th,
3524
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-600.hover:hover > td,
3525
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-600.hover:hover > th {
3526
+ background-color: rgb(244.2, 232.2, 250.8);
3527
+ }
3528
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-700 > td,
3529
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-700 > th,
3530
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-700 > td,
3531
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-700 > th {
3532
+ background-color: #FFFFFF;
3533
+ color: #9230C5;
3534
+ }
3535
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-700 > td.cell-hover:hover,
3536
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-700 > th.cell-hover:hover,
3537
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-700 > td.cell-hover:hover,
3538
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-700 > th.cell-hover:hover {
3539
+ background-color: rgb(241.92, 230.16, 248.04);
3540
+ }
3541
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-700.hover:hover > td,
3542
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-700.hover:hover > th,
3543
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-700.hover:hover > td,
3544
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-700.hover:hover > th {
3545
+ background-color: rgb(241.92, 230.16, 248.04);
3546
+ }
3547
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-800 > td,
3548
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-800 > th,
3549
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-800 > td,
3550
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-800 > th {
3551
+ background-color: #FFFFFF;
3552
+ color: #782B9E;
3553
+ }
3554
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-800 > td.cell-hover:hover,
3555
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-800 > th.cell-hover:hover,
3556
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-800 > td.cell-hover:hover,
3557
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-800 > th.cell-hover:hover {
3558
+ background-color: rgb(238.8, 229.56, 243.36);
3559
+ }
3560
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-800.hover:hover > td,
3561
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-800.hover:hover > th,
3562
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-800.hover:hover > td,
3563
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-800.hover:hover > th {
3564
+ background-color: rgb(238.8, 229.56, 243.36);
3565
+ }
3566
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-900 > td,
3567
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-900 > th,
3568
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-900 > td,
3569
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-900 > th {
3570
+ background-color: #FFFFFF;
3571
+ color: #62247F;
3572
+ }
3573
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-900 > td.cell-hover:hover,
3574
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-900 > th.cell-hover:hover,
3575
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-900 > td.cell-hover:hover,
3576
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-900 > th.cell-hover:hover {
3577
+ background-color: rgb(236.16, 228.72, 239.64);
3578
+ }
3579
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-900.hover:hover > td,
3580
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-purple-900.hover:hover > th,
3581
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-900.hover:hover > td,
3582
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-purple-900.hover:hover > th {
3583
+ background-color: rgb(236.16, 228.72, 239.64);
3584
+ }
3585
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-50 > td,
3586
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-50 > th,
3587
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-50 > td,
3588
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-50 > th {
3589
+ background-color: #FFFFFF;
3590
+ color: #FFF4FE;
3591
+ }
3592
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-50 > td.cell-hover:hover,
3593
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-50 > th.cell-hover:hover,
3594
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-50 > td.cell-hover:hover,
3595
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-50 > th.cell-hover:hover {
3596
+ background-color: rgb(255, 253.68, 254.88);
3597
+ }
3598
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-50.hover:hover > td,
3599
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-50.hover:hover > th,
3600
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-50.hover:hover > td,
3601
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-50.hover:hover > th {
3602
+ background-color: rgb(255, 253.68, 254.88);
3603
+ }
3604
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-100 > td,
3605
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-100 > th,
3606
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-100 > td,
3607
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-100 > th {
3608
+ background-color: #FFFFFF;
3609
+ color: #FFE7FD;
3610
+ }
3611
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-100 > td.cell-hover:hover,
3612
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-100 > th.cell-hover:hover,
3613
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-100 > td.cell-hover:hover,
3614
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-100 > th.cell-hover:hover {
3615
+ background-color: rgb(255, 252.12, 254.76);
3616
+ }
3617
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-100.hover:hover > td,
3618
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-100.hover:hover > th,
3619
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-100.hover:hover > td,
3620
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-100.hover:hover > th {
3621
+ background-color: rgb(255, 252.12, 254.76);
3622
+ }
3623
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-200 > td,
3624
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-200 > th,
3625
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-200 > td,
3626
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-200 > th {
3627
+ background-color: #FFFFFF;
3628
+ color: #FFCFFA;
3629
+ }
3630
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-200 > td.cell-hover:hover,
3631
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-200 > th.cell-hover:hover,
3632
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-200 > td.cell-hover:hover,
3633
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-200 > th.cell-hover:hover {
3634
+ background-color: rgb(255, 249.24, 254.4);
3635
+ }
3636
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-200.hover:hover > td,
3637
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-200.hover:hover > th,
3638
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-200.hover:hover > td,
3639
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-200.hover:hover > th {
3640
+ background-color: rgb(255, 249.24, 254.4);
3641
+ }
3642
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-300 > td,
3643
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-300 > th,
3644
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-300 > td,
3645
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-300 > th {
3646
+ background-color: #FFFFFF;
3647
+ color: #FEA9F1;
3648
+ }
3649
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-300 > td.cell-hover:hover,
3650
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-300 > th.cell-hover:hover,
3651
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-300 > td.cell-hover:hover,
3652
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-300 > th.cell-hover:hover {
3653
+ background-color: rgb(254.88, 244.68, 253.32);
3654
+ }
3655
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-300.hover:hover > td,
3656
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-300.hover:hover > th,
3657
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-300.hover:hover > td,
3658
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-300.hover:hover > th {
3659
+ background-color: rgb(254.88, 244.68, 253.32);
3660
+ }
3661
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-400 > td,
3662
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-400 > th,
3663
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-400 > td,
3664
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-400 > th {
3665
+ background-color: #FFFFFF;
3666
+ color: #FD75E7;
3667
+ }
3668
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-400 > td.cell-hover:hover,
3669
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-400 > th.cell-hover:hover,
3670
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-400 > td.cell-hover:hover,
3671
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-400 > th.cell-hover:hover {
3672
+ background-color: rgb(254.76, 238.44, 252.12);
3673
+ }
3674
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-400.hover:hover > td,
3675
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-400.hover:hover > th,
3676
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-400.hover:hover > td,
3677
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-400.hover:hover > th {
3678
+ background-color: rgb(254.76, 238.44, 252.12);
3679
+ }
3680
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-500 > td,
3681
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-500 > th,
3682
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-500 > td,
3683
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-500 > th {
3684
+ background-color: #FFFFFF;
3685
+ color: #F553DA;
3686
+ }
3687
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-500 > td.cell-hover:hover,
3688
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-500 > th.cell-hover:hover,
3689
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-500 > td.cell-hover:hover,
3690
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-500 > th.cell-hover:hover {
3691
+ background-color: rgb(253.8, 234.36, 250.56);
3692
+ }
3693
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-500.hover:hover > td,
3694
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-500.hover:hover > th,
3695
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-500.hover:hover > td,
3696
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-500.hover:hover > th {
3697
+ background-color: rgb(253.8, 234.36, 250.56);
3698
+ }
3699
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-600 > td,
3700
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-600 > th,
3701
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-600 > td,
3702
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-600 > th {
3703
+ background-color: #FFFFFF;
3704
+ color: #D821B6;
3705
+ }
3706
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-600 > td.cell-hover:hover,
3707
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-600 > th.cell-hover:hover,
3708
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-600 > td.cell-hover:hover,
3709
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-600 > th.cell-hover:hover {
3710
+ background-color: rgb(250.32, 228.36, 246.24);
3711
+ }
3712
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-600.hover:hover > td,
3713
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-600.hover:hover > th,
3714
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-600.hover:hover > td,
3715
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-600.hover:hover > th {
3716
+ background-color: rgb(250.32, 228.36, 246.24);
3717
+ }
3718
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-700 > td,
3719
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-700 > th,
3720
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-700 > td,
3721
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-700 > th {
3722
+ background-color: #FFFFFF;
3723
+ color: #B31892;
3724
+ }
3725
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-700 > td.cell-hover:hover,
3726
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-700 > th.cell-hover:hover,
3727
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-700 > td.cell-hover:hover,
3728
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-700 > th.cell-hover:hover {
3729
+ background-color: rgb(245.88, 227.28, 241.92);
3730
+ }
3731
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-700.hover:hover > td,
3732
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-700.hover:hover > th,
3733
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-700.hover:hover > td,
3734
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-700.hover:hover > th {
3735
+ background-color: rgb(245.88, 227.28, 241.92);
3736
+ }
3737
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-800 > td,
3738
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-800 > th,
3739
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-800 > td,
3740
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-800 > th {
3741
+ background-color: #FFFFFF;
3742
+ color: #921676;
3743
+ }
3744
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-800 > td.cell-hover:hover,
3745
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-800 > th.cell-hover:hover,
3746
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-800 > td.cell-hover:hover,
3747
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-800 > th.cell-hover:hover {
3748
+ background-color: rgb(241.92, 227.04, 238.56);
3749
+ }
3750
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-800.hover:hover > td,
3751
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-800.hover:hover > th,
3752
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-800.hover:hover > td,
3753
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-800.hover:hover > th {
3754
+ background-color: rgb(241.92, 227.04, 238.56);
3755
+ }
3756
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-900 > td,
3757
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-900 > th,
3758
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-900 > td,
3759
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-900 > th {
3760
+ background-color: #FFFFFF;
3761
+ color: #781761;
3762
+ }
3763
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-900 > td.cell-hover:hover,
3764
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-900 > th.cell-hover:hover,
3765
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-900 > td.cell-hover:hover,
3766
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-900 > th.cell-hover:hover {
3767
+ background-color: rgb(238.8, 227.16, 236.04);
3768
+ }
3769
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-900.hover:hover > td,
3770
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-pink-900.hover:hover > th,
3771
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-900.hover:hover > td,
3772
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-pink-900.hover:hover > th {
3773
+ background-color: rgb(238.8, 227.16, 236.04);
3774
+ }
3775
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-50 > td,
3776
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-50 > th,
3777
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-50 > td,
3778
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-50 > th {
3779
+ background-color: #FFFFFF;
3780
+ color: #FAFAFA;
3781
+ }
3782
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-50 > td.cell-hover:hover,
3783
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-50 > th.cell-hover:hover,
3784
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-50 > td.cell-hover:hover,
3785
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-50 > th.cell-hover:hover {
3786
+ background-color: rgb(254.4, 254.4, 254.4);
3787
+ }
3788
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-50.hover:hover > td,
3789
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-50.hover:hover > th,
3790
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-50.hover:hover > td,
3791
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-50.hover:hover > th {
3792
+ background-color: rgb(254.4, 254.4, 254.4);
3793
+ }
3794
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-100 > td,
3795
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-100 > th,
3796
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-100 > td,
3797
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-100 > th {
3798
+ background-color: #FFFFFF;
3799
+ color: #F5F5F5;
3800
+ }
3801
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-100 > td.cell-hover:hover,
3802
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-100 > th.cell-hover:hover,
3803
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-100 > td.cell-hover:hover,
3804
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-100 > th.cell-hover:hover {
3805
+ background-color: rgb(253.8, 253.8, 253.8);
3806
+ }
3807
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-100.hover:hover > td,
3808
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-100.hover:hover > th,
3809
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-100.hover:hover > td,
3810
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-100.hover:hover > th {
3811
+ background-color: rgb(253.8, 253.8, 253.8);
3812
+ }
3813
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-200 > td,
3814
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-200 > th,
3815
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-200 > td,
3816
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-200 > th {
3817
+ background-color: #FFFFFF;
3818
+ color: #E5E5E5;
3819
+ }
3820
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-200 > td.cell-hover:hover,
3821
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-200 > th.cell-hover:hover,
3822
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-200 > td.cell-hover:hover,
3823
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-200 > th.cell-hover:hover {
3824
+ background-color: rgb(251.88, 251.88, 251.88);
3825
+ }
3826
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-200.hover:hover > td,
3827
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-200.hover:hover > th,
3828
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-200.hover:hover > td,
3829
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-200.hover:hover > th {
3830
+ background-color: rgb(251.88, 251.88, 251.88);
3831
+ }
3832
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-300 > td,
3833
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-300 > th,
3834
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-300 > td,
3835
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-300 > th {
3836
+ background-color: #FFFFFF;
3837
+ color: #D4D4D4;
3838
+ }
3839
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-300 > td.cell-hover:hover,
3840
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-300 > th.cell-hover:hover,
3841
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-300 > td.cell-hover:hover,
3842
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-300 > th.cell-hover:hover {
3843
+ background-color: rgb(249.84, 249.84, 249.84);
3844
+ }
3845
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-300.hover:hover > td,
3846
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-300.hover:hover > th,
3847
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-300.hover:hover > td,
3848
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-300.hover:hover > th {
3849
+ background-color: rgb(249.84, 249.84, 249.84);
3850
+ }
3851
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-400 > td,
3852
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-400 > th,
3853
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-400 > td,
3854
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-400 > th {
3855
+ background-color: #FFFFFF;
3856
+ color: #A1A1A1;
3857
+ }
3858
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-400 > td.cell-hover:hover,
3859
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-400 > th.cell-hover:hover,
3860
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-400 > td.cell-hover:hover,
3861
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-400 > th.cell-hover:hover {
3862
+ background-color: rgb(243.72, 243.72, 243.72);
3863
+ }
3864
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-400.hover:hover > td,
3865
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-400.hover:hover > th,
3866
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-400.hover:hover > td,
3867
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-400.hover:hover > th {
3868
+ background-color: rgb(243.72, 243.72, 243.72);
3869
+ }
3870
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-500 > td,
3871
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-500 > th,
3872
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-500 > td,
3873
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-500 > th {
3874
+ background-color: #FFFFFF;
3875
+ color: #737373;
3876
+ }
3877
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-500 > td.cell-hover:hover,
3878
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-500 > th.cell-hover:hover,
3879
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-500 > td.cell-hover:hover,
3880
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-500 > th.cell-hover:hover {
3881
+ background-color: rgb(238.2, 238.2, 238.2);
3882
+ }
3883
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-500.hover:hover > td,
3884
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-500.hover:hover > th,
3885
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-500.hover:hover > td,
3886
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-500.hover:hover > th {
3887
+ background-color: rgb(238.2, 238.2, 238.2);
3888
+ }
3889
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-600 > td,
3890
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-600 > th,
3891
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-600 > td,
3892
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-600 > th {
3893
+ background-color: #FFFFFF;
3894
+ color: #525252;
3895
+ }
3896
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-600 > td.cell-hover:hover,
3897
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-600 > th.cell-hover:hover,
3898
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-600 > td.cell-hover:hover,
3899
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-600 > th.cell-hover:hover {
3900
+ background-color: rgb(234.24, 234.24, 234.24);
3901
+ }
3902
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-600.hover:hover > td,
3903
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-600.hover:hover > th,
3904
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-600.hover:hover > td,
3905
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-600.hover:hover > th {
3906
+ background-color: rgb(234.24, 234.24, 234.24);
3907
+ }
3908
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-700 > td,
3909
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-700 > th,
3910
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-700 > td,
3911
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-700 > th {
3912
+ background-color: #FFFFFF;
3913
+ color: #404040;
3914
+ }
3915
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-700 > td.cell-hover:hover,
3916
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-700 > th.cell-hover:hover,
3917
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-700 > td.cell-hover:hover,
3918
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-700 > th.cell-hover:hover {
3919
+ background-color: rgb(232.08, 232.08, 232.08);
3920
+ }
3921
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-700.hover:hover > td,
3922
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-700.hover:hover > th,
3923
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-700.hover:hover > td,
3924
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-700.hover:hover > th {
3925
+ background-color: rgb(232.08, 232.08, 232.08);
3926
+ }
3927
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-800 > td,
3928
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-800 > th,
3929
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-800 > td,
3930
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-800 > th {
3931
+ background-color: #FFFFFF;
3932
+ color: #262626;
3933
+ }
3934
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-800 > td.cell-hover:hover,
3935
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-800 > th.cell-hover:hover,
3936
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-800 > td.cell-hover:hover,
3937
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-800 > th.cell-hover:hover {
3938
+ background-color: rgb(228.96, 228.96, 228.96);
3939
+ }
3940
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-800.hover:hover > td,
3941
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-800.hover:hover > th,
3942
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-800.hover:hover > td,
3943
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-800.hover:hover > th {
3944
+ background-color: rgb(228.96, 228.96, 228.96);
3945
+ }
3946
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-900 > td,
3947
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-900 > th,
3948
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-900 > td,
3949
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-900 > th {
3950
+ background-color: #FFFFFF;
3951
+ color: #171717;
3952
+ }
3953
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-900 > td.cell-hover:hover,
3954
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-900 > th.cell-hover:hover,
3955
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-900 > td.cell-hover:hover,
3956
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-900 > th.cell-hover:hover {
3957
+ background-color: rgb(227.16, 227.16, 227.16);
3958
+ }
3959
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-900.hover:hover > td,
3960
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-neutral-900.hover:hover > th,
3961
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-900.hover:hover > td,
3962
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-neutral-900.hover:hover > th {
3963
+ background-color: rgb(227.16, 227.16, 227.16);
3964
+ }
3965
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-black > td,
3966
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-black > th,
3967
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-black > td,
3968
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-black > th {
3969
+ background-color: #FFFFFF;
3970
+ color: #000000;
3971
+ }
3972
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-black > td.cell-hover:hover,
3973
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-black > th.cell-hover:hover,
3974
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-black > td.cell-hover:hover,
3975
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-black > th.cell-hover:hover {
3976
+ background-color: rgb(224.4, 224.4, 224.4);
3977
+ }
3978
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-black.hover:hover > td,
3979
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-black.hover:hover > th,
3980
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-black.hover:hover > td,
3981
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-black.hover:hover > th {
3982
+ background-color: rgb(224.4, 224.4, 224.4);
3983
+ }
3984
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-white > td,
3985
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-white > th,
3986
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-white > td,
3987
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-white > th {
3988
+ background-color: #FFFFFF;
3989
+ color: #FFFFFF;
3990
+ }
3991
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-white > td.cell-hover:hover,
3992
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-white > th.cell-hover:hover,
3993
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-white > td.cell-hover:hover,
3994
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-white > th.cell-hover:hover {
3995
+ background-color: white;
3996
+ }
3997
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-white.hover:hover > td,
3998
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.xplat-white.hover:hover > th,
3999
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-white.hover:hover > td,
4000
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.xplat-white.hover:hover > th {
4001
+ background-color: white;
4002
+ }
4003
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.test-default > td,
4004
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.test-default > th,
4005
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.test-default > td,
4006
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.test-default > th {
4007
+ background-color: #FFFFFF;
4008
+ color: #ffffff;
4009
+ }
4010
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.test-default > td.cell-hover:hover,
4011
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.test-default > th.cell-hover:hover,
4012
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.test-default > td.cell-hover:hover,
4013
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.test-default > th.cell-hover:hover {
4014
+ background-color: white;
4015
+ }
4016
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.test-default.hover:hover > td,
4017
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.secondary.test-default.hover:hover > th,
4018
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.test-default.hover:hover > td,
4019
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.secondary.test-default.hover:hover > th {
4020
+ background-color: white;
4021
+ }
4022
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr.clickable,
4023
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr.clickable {
4024
+ cursor: pointer;
4025
+ }
4026
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > td,
4027
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > th,
4028
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > td,
4029
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > th {
4030
+ min-width: 80px;
4031
+ padding: 0.5rem;
4032
+ vertical-align: middle;
4033
+ transition: background-color 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
4034
+ }
4035
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > td.clickable,
4036
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > th.clickable,
4037
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > td.clickable,
4038
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > th.clickable {
4039
+ cursor: pointer;
4040
+ }
4041
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > td.align-start,
4042
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > th.align-start,
4043
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > td.align-start,
4044
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > th.align-start {
4045
+ text-align: left;
4046
+ justify-items: start;
4047
+ }
4048
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > td.align-center,
4049
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > th.align-center,
4050
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > td.align-center,
4051
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > th.align-center {
4052
+ text-align: center;
4053
+ justify-items: center;
4054
+ }
4055
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > td.align-end,
4056
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > th.align-end,
4057
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > td.align-end,
4058
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > th.align-end {
4059
+ text-align: end;
4060
+ justify-items: end;
4061
+ }
4062
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > td.table-sticky,
4063
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > th.table-sticky,
4064
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > td.table-sticky,
4065
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > th.table-sticky {
4066
+ position: sticky;
4067
+ top: 0;
4068
+ z-index: 1;
4069
+ left: calc(var(--sticky-left) * 1px);
4070
+ }
4071
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > td.right-shadow,
4072
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > th.right-shadow,
4073
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > td.right-shadow,
4074
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > th.right-shadow {
4075
+ box-shadow: 8px 0 10px -5px rgba(0, 0, 0, 0.3);
4076
+ }
4077
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > td.right-shadow::after,
4078
+ .lib-xplat-table-wrapper > .lib-xplat-table > thead > tr > th.right-shadow::after,
4079
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > td.right-shadow::after,
4080
+ .lib-xplat-table-wrapper > .lib-xplat-table > tbody > tr > th.right-shadow::after {
4081
+ content: "";
4082
+ position: absolute;
4083
+ top: 0;
4084
+ right: -10px;
4085
+ width: 10px;
4086
+ height: 100%;
4087
+ background:
4088
+ linear-gradient(
4089
+ to right,
4090
+ rgba(0, 0, 0, 0.18),
4091
+ rgba(255, 255, 255, 0));
4092
+ pointer-events: none;
4093
+ }