diff --git a/components/myportal/topthree_reps.js b/components/myportal/topthree_reps.js
index 5191c2aa..aa40f0de 100644
--- a/components/myportal/topthree_reps.js
+++ b/components/myportal/topthree_reps.js
@@ -234,13 +234,13 @@ const TopThree = (props) => {
{showSpinnerState == true ? (
diff --git a/locales/cy/case.json b/locales/cy/case.json
index e5dae20e..a0490f05 100644
--- a/locales/cy/case.json
+++ b/locales/cy/case.json
@@ -96,6 +96,7 @@
"trying-to-watch-case-redirect-label": "Fe'ch anogir nawr i fewngofnodi",
"you-have-stopped-watching-label": "Ydych chi am roi'r gorau i wylio achos ",
"do-you-want-to-delete-case-label": "Ydych chi am ddileu achos",
+ "do-you-want-to-delete-rep-label": "Ydych chi eisiau dileu cynrychiolaeth sy'n aros i'w chyflwyno",
"do-you-want-to-delete-case-disclaimer-label": "Ar ôl dileu, bydd yr holl wybodaeth a gyflwynwyd gennych yn cael ei cholli.",
"representation-date-passed-label": "Mae'r cyfnod cyflwyno sylwadau ar gyfer yr apêl hon rhwng {{startDate}} a {{endDate}}",
"representation-date-passed-additional-label": "Gallwch wneud sylw drwy e-bostio,",
diff --git a/locales/en/case.json b/locales/en/case.json
index 4d4c6be7..fac349c1 100644
--- a/locales/en/case.json
+++ b/locales/en/case.json
@@ -96,6 +96,7 @@
"trying-to-watch-case-redirect-label": "You will now be prompted to sign in",
"you-have-stopped-watching-label": "Do you want to stop watching case ",
"do-you-want-to-delete-case-label": "Do you want to delete case ",
+ "do-you-want-to-delete-rep-label": "Do you want to delete representation awaiting submission",
"do-you-want-to-delete-case-disclaimer-label": "Once deleted all information you have submited, will be lost.",
"representation-date-passed-label": "The representation period for this appeal is between {{startDate}} and {{endDate}}",
"representation-date-passed-additional-label": "You can make a representation by emailing,",
diff --git a/styles/sass/welshgov/_application.scss b/styles/sass/welshgov/_application.scss
index 9bf26103..b80401b7 100644
--- a/styles/sass/welshgov/_application.scss
+++ b/styles/sass/welshgov/_application.scss
@@ -2502,6 +2502,46 @@ ul#sharePageLinks.active {
top: 3px;
background-color: #aa1111;
}
+
+ & .cardModuleRemoveCase {
+ border: 1px solid $red;
+ padding: 5px;
+ height: 20px;
+ padding-top: 0px;
+ padding-bottom: 0px;
+ border-radius: 5px;
+ width: auto;
+ color: white !important;
+ font-weight: bold;
+ background-color: $red;
+ font-size: 15px;
+ cursor: pointer;
+
+ &:active {
+ top: 2px;
+ }
+
+ &:hover {
+ background-color: $lightred;
+ color: $white !important;
+ text-decoration: none;
+ }
+
+ &:focus {
+ border-color: #ffdd00;
+ outline: 3px solid transparent;
+ -webkit-box-shadow: inset 0 0 0 1px #ffdd00;
+ box-shadow: inset 0 0 0 1px #ffdd00;
+ }
+
+ &:focus:not(:active):not(:hover) {
+ border-color: #ffdd00;
+ color: #0b0c0c;
+ // background-color: #ffdd00;
+ // -webkit-box-shadow: 0 2px 0 #0b0c0c;
+ // box-shadow: 0 2px 0 #0b0c0c;
+ }
+ }
}