diff --git a/framework/python/src/common/risk_profile.py b/framework/python/src/common/risk_profile.py
index 760f73d72..f50dffdde 100644
--- a/framework/python/src/common/risk_profile.py
+++ b/framework/python/src/common/risk_profile.py
@@ -409,6 +409,14 @@ def _generate_risk_questions(self):
content += ''
+ # Question risk label
+ if 'risk' in question:
+ if question['risk'] == 'High':
+ content += '
HIGH RISK
'
+ elif question['risk'] == 'Limited':
+ content += '''
+ LIMITED RISK
'''
+
content += ''''''
index += 1
@@ -635,6 +643,33 @@ def _generate_css(self):
ul {
margin-top: 0;
}
+
+ .risk-label{
+ position: absolute;
+ top: 0px;
+ right: 0px;
+ width: 52px;
+ height: 16px;
+ font-family: 'Google Sans', sans-serif;
+ font-size: 8px;
+ font-weight: 500;
+ line-height: 16px;
+ letter-spacing: 0.64px;
+ text-align: center;
+ font-weight: bold;
+ border-radius: 3px;
+ }
+
+ .risk-label-high{
+ background-color: #FCE8E6;
+ color: #C5221F;
+ }
+
+ .risk-label-limited{
+ width: 65px;
+ background-color:#E4F7FB;
+ color: #007B83;
+ }
'''
def to_pdf(self, device):