-
diff --git a/static/css/styles.css b/static/css/styles.css
index f38597db..cd32fb8d 100644
--- a/static/css/styles.css
+++ b/static/css/styles.css
@@ -133,6 +133,10 @@ a {
display: none;
}
+.checkbox input[type="radio"] {
+ display: none;
+}
+
/* Create a new box */
.checkbox label {
padding-left: 32px;
@@ -157,6 +161,31 @@ a {
z-index: -1;
}
+.checkbox input[type="radio"] + label::before {
+ content: '';
+ position: absolute;
+ left: 0;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 20px;
+ height: 20px;
+ border: 1px solid #a3a3a3;
+ border-radius: 50%;
+ background-color: transparent;
+}
+
+.checkbox input[type="radio"]:checked + label::after {
+ content: '';
+ position: absolute;
+ left: 5px;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 10px;
+ height: 10px;
+ border-radius: 50%;
+ background-color: #a012c7;
+}
+
/* Display a checkmark when the checkbox is checked */
.checkbox input[type="checkbox"]:checked + .checkbox-shape::before {
content: "✓";
diff --git a/static/liquidity.html b/static/liquidity.html
index eb07a313..3a19ebf1 100644
--- a/static/liquidity.html
+++ b/static/liquidity.html
@@ -38,7 +38,6 @@
-