open_fresk 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 (97) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +64 -0
  3. data/Gemfile +12 -0
  4. data/Gemfile.lock +248 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +130 -0
  7. data/Rakefile +8 -0
  8. data/app/.DS_Store +0 -0
  9. data/app/assets/.DS_Store +0 -0
  10. data/app/assets/config/manifest.js +20 -0
  11. data/app/assets/images/open_fresk/.keep +0 -0
  12. data/app/assets/images/open_fresk/favicon.png +0 -0
  13. data/app/assets/images/open_fresk/logos/logo.png +0 -0
  14. data/app/assets/stylesheets/open_fresk/application.scss +90 -0
  15. data/app/assets/stylesheets/open_fresk/components/_accordion.scss +3 -0
  16. data/app/assets/stylesheets/open_fresk/components/_btn.scss +25 -0
  17. data/app/assets/stylesheets/open_fresk/components/_btn_toggle.scss +16 -0
  18. data/app/assets/stylesheets/open_fresk/components/_card.scss +6 -0
  19. data/app/assets/stylesheets/open_fresk/components/_checkout.scss +142 -0
  20. data/app/assets/stylesheets/open_fresk/components/_cursors.scss +35 -0
  21. data/app/assets/stylesheets/open_fresk/components/_dropdown_toggle.scss +9 -0
  22. data/app/assets/stylesheets/open_fresk/components/_form.scss +22 -0
  23. data/app/assets/stylesheets/open_fresk/components/_google_maps_autocomplete.scss +3 -0
  24. data/app/assets/stylesheets/open_fresk/components/_hamburger_button.scss +41 -0
  25. data/app/assets/stylesheets/open_fresk/components/_header.scss +57 -0
  26. data/app/assets/stylesheets/open_fresk/components/_iframe.scss +26 -0
  27. data/app/assets/stylesheets/open_fresk/components/_index.scss +22 -0
  28. data/app/assets/stylesheets/open_fresk/components/_nav_pills.scss +26 -0
  29. data/app/assets/stylesheets/open_fresk/components/_nps_progress_bar.scss +97 -0
  30. data/app/assets/stylesheets/open_fresk/components/_pagination.scss +11 -0
  31. data/app/assets/stylesheets/open_fresk/components/_progress_bar.scss +17 -0
  32. data/app/assets/stylesheets/open_fresk/components/_radio_button.scss +25 -0
  33. data/app/assets/stylesheets/open_fresk/components/_range.scss +253 -0
  34. data/app/assets/stylesheets/open_fresk/components/_select_input.scss +9 -0
  35. data/app/assets/stylesheets/open_fresk/components/_slider.scss +61 -0
  36. data/app/assets/stylesheets/open_fresk/components/_slim_select.scss +31 -0
  37. data/app/assets/stylesheets/open_fresk/components/_timeline.scss +165 -0
  38. data/app/assets/stylesheets/open_fresk/components/_tooltip.scss +20 -0
  39. data/app/assets/stylesheets/open_fresk/components/_transformation.scss +4 -0
  40. data/app/assets/stylesheets/open_fresk/config/_belts.scss +38 -0
  41. data/app/assets/stylesheets/open_fresk/config/_bg.scss +6 -0
  42. data/app/assets/stylesheets/open_fresk/config/_border.scss +15 -0
  43. data/app/assets/stylesheets/open_fresk/config/_colors.scss +42 -0
  44. data/app/assets/stylesheets/open_fresk/config/_index.scss +6 -0
  45. data/app/assets/stylesheets/open_fresk/config/_text.scss +24 -0
  46. data/app/assets/stylesheets/open_fresk/config/_typography.scss +26 -0
  47. data/app/assets/stylesheets/open_fresk/external_libraries/_actiontext.scss +30 -0
  48. data/app/assets/stylesheets/open_fresk/external_libraries/_slimselect.min.scss +1 -0
  49. data/app/assets/stylesheets/open_fresk/external_libraries/index.scss +2 -0
  50. data/app/assets/stylesheets/open_fresk/pages/_index.scss +1 -0
  51. data/app/assets/stylesheets/open_fresk/pages/_signin.scss +10 -0
  52. data/app/assets/stylesheets-original/open_fresk/application.css +90 -0
  53. data/app/controllers/.DS_Store +0 -0
  54. data/app/controllers/concerns/.keep +0 -0
  55. data/app/controllers/concerns/open_fresk/authentication.rb +18 -0
  56. data/app/controllers/open_fresk/application_controller.rb +5 -0
  57. data/app/controllers/open_fresk/sessions_controller.rb +38 -0
  58. data/app/controllers/open_fresk/training_sessions_controller.rb +17 -0
  59. data/app/extensions/open_fresk/core_extensions/string.rb +13 -0
  60. data/app/helpers/header_helper.rb +2 -0
  61. data/app/helpers/open_fresk/application_helper.rb +18 -0
  62. data/app/helpers/plateform_access/rights_helper.rb +15 -0
  63. data/app/javascript/manifest.json +15 -0
  64. data/app/javascript/open_fresk/application.js +7 -0
  65. data/app/javascript/open_fresk/controllers/hello_controller.js +7 -0
  66. data/app/jobs/open_fresk/application_job.rb +4 -0
  67. data/app/mailers/open_fresk/application_mailer.rb +6 -0
  68. data/app/models/.DS_Store +0 -0
  69. data/app/models/concerns/.keep +0 -0
  70. data/app/models/open_fresk/application_record.rb +10 -0
  71. data/app/models/open_fresk/training_session.rb +9 -0
  72. data/app/models/open_fresk/user.rb +9 -0
  73. data/app/services/open_fresk/extensions/string_enum.rb +201 -0
  74. data/app/views/layouts/header/_hamburger.html.erb +7 -0
  75. data/app/views/layouts/header/_logo.html.erb +5 -0
  76. data/app/views/layouts/open_fresk/_alert.html.erb +0 -0
  77. data/app/views/layouts/open_fresk/_footer.html.erb +0 -0
  78. data/app/views/layouts/open_fresk/_header.html.erb +12 -0
  79. data/app/views/layouts/open_fresk/_include.html.erb +24 -0
  80. data/app/views/layouts/open_fresk/_meta.html.erb +10 -0
  81. data/app/views/layouts/open_fresk/application.html.erb +23 -0
  82. data/app/views/open_fresk/sessions/_login.html.erb +16 -0
  83. data/app/views/open_fresk/sessions/new.html.erb +8 -0
  84. data/app/views/open_fresk/training_sessions/_card.html.erb +0 -0
  85. data/app/views/open_fresk/training_sessions/index.html.erb +22 -0
  86. data/bin/rails +14 -0
  87. data/config/importmap.rb +6 -0
  88. data/config/locales/en.yml +15 -0
  89. data/config/locales/fr.yml +15 -0
  90. data/config/routes.rb +8 -0
  91. data/lib/.DS_Store +0 -0
  92. data/lib/open_fresk/engine.rb +93 -0
  93. data/lib/open_fresk/version.rb +3 -0
  94. data/lib/open_fresk.rb +6 -0
  95. data/lib/tasks/open_fresk_tasks.rake +4 -0
  96. data/open_fresk.gemspec +29 -0
  97. metadata +250 -0
@@ -0,0 +1,142 @@
1
+ /* Variables */
2
+ * {
3
+ box-sizing: border-box;
4
+ }
5
+
6
+ body {
7
+ font-family: -apple-system, BlinkMacSystemFont, sans-serif;
8
+ font-size: 16px;
9
+ -webkit-font-smoothing: antialiased;
10
+ display: flex;
11
+ justify-content: center;
12
+ align-content: center;
13
+ height: 100vh;
14
+ width: 100vw;
15
+ }
16
+
17
+ form {
18
+ width: 30vw;
19
+ min-width: 500px;
20
+ align-self: center;
21
+ box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
22
+ 0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
23
+ border-radius: 7px;
24
+ padding: 40px;
25
+ }
26
+
27
+ .hidden {
28
+ display: none;
29
+ }
30
+
31
+ #payment-message {
32
+ color: rgb(105, 115, 134);
33
+ font-size: 16px;
34
+ line-height: 20px;
35
+ padding-top: 12px;
36
+ text-align: center;
37
+ }
38
+
39
+ #payment-element {
40
+ margin-bottom: 24px;
41
+ }
42
+
43
+ /* Buttons and links */
44
+ button {
45
+ background: #5469d4;
46
+ font-family: Arial, sans-serif;
47
+ color: #ffffff;
48
+ border-radius: 4px;
49
+ border: 0;
50
+ padding: 12px 16px;
51
+ font-size: 16px;
52
+ font-weight: 600;
53
+ cursor: pointer;
54
+ display: block;
55
+ transition: all 0.2s ease;
56
+ box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
57
+ width: 100%;
58
+ }
59
+ button:hover {
60
+ filter: contrast(115%);
61
+ }
62
+ button:disabled {
63
+ opacity: 0.5;
64
+ cursor: default;
65
+ }
66
+
67
+ /* spinner/processing state, errors */
68
+ .spinner,
69
+ .spinner:before,
70
+ .spinner:after {
71
+ border-radius: 50%;
72
+ }
73
+ .spinner {
74
+ color: #ffffff;
75
+ font-size: 22px;
76
+ text-indent: -99999px;
77
+ margin: 0px auto;
78
+ position: relative;
79
+ width: 20px;
80
+ height: 20px;
81
+ box-shadow: inset 0 0 0 2px;
82
+ -webkit-transform: translateZ(0);
83
+ -ms-transform: translateZ(0);
84
+ transform: translateZ(0);
85
+ }
86
+ .spinner:before,
87
+ .spinner:after {
88
+ position: absolute;
89
+ content: "";
90
+ }
91
+ .spinner:before {
92
+ width: 10.4px;
93
+ height: 20.4px;
94
+ background: #5469d4;
95
+ border-radius: 20.4px 0 0 20.4px;
96
+ top: -0.2px;
97
+ left: -0.2px;
98
+ -webkit-transform-origin: 10.4px 10.2px;
99
+ transform-origin: 10.4px 10.2px;
100
+ -webkit-animation: loading 2s infinite ease 1.5s;
101
+ animation: loading 2s infinite ease 1.5s;
102
+ }
103
+ .spinner:after {
104
+ width: 10.4px;
105
+ height: 10.2px;
106
+ background: #5469d4;
107
+ border-radius: 0 10.2px 10.2px 0;
108
+ top: -0.1px;
109
+ left: 10.2px;
110
+ -webkit-transform-origin: 0px 10.2px;
111
+ transform-origin: 0px 10.2px;
112
+ -webkit-animation: loading 2s infinite ease;
113
+ animation: loading 2s infinite ease;
114
+ }
115
+
116
+ @-webkit-keyframes loading {
117
+ 0% {
118
+ -webkit-transform: rotate(0deg);
119
+ transform: rotate(0deg);
120
+ }
121
+ 100% {
122
+ -webkit-transform: rotate(360deg);
123
+ transform: rotate(360deg);
124
+ }
125
+ }
126
+ @keyframes loading {
127
+ 0% {
128
+ -webkit-transform: rotate(0deg);
129
+ transform: rotate(0deg);
130
+ }
131
+ 100% {
132
+ -webkit-transform: rotate(360deg);
133
+ transform: rotate(360deg);
134
+ }
135
+ }
136
+
137
+ @media only screen and (max-width: 600px) {
138
+ form {
139
+ width: 80vw;
140
+ min-width: initial;
141
+ }
142
+ }
@@ -0,0 +1,35 @@
1
+ .cursor-alias {cursor: alias;}
2
+ .cursor-all-scroll {cursor: all-scroll;}
3
+ .cursor-auto {cursor: auto;}
4
+ .cursor-cell {cursor: cell;}
5
+ .cursor-context-menu {cursor: context-menu;}
6
+ .cursor-col-resize {cursor: col-resize;}
7
+ .cursor-copy {cursor: copy;}
8
+ .cursor-crosshair {cursor: crosshair;}
9
+ .cursor-default {cursor: default;}
10
+ .cursor-e-resize {cursor: e-resize;}
11
+ .cursor-ew-resize {cursor: ew-resize;}
12
+ .cursor-grab {cursor: -webkit-grab; cursor: grab;}
13
+ .cursor-grabbing {cursor: -webkit-grabbing; cursor: grabbing;}
14
+ .cursor-help {cursor: help;}
15
+ .cursor-move {cursor: move;}
16
+ .cursor-n-resize {cursor: n-resize;}
17
+ .cursor-ne-resize {cursor: ne-resize;}
18
+ .cursor-nesw-resize {cursor: nesw-resize;}
19
+ .cursor-ns-resize {cursor: ns-resize;}
20
+ .cursor-nw-resize {cursor: nw-resize;}
21
+ .cursor-nwse-resize {cursor: nwse-resize;}
22
+ .cursor-no-drop {cursor: no-drop;}
23
+ .cursor-none {cursor: none;}
24
+ .cursor-not-allowed {cursor: not-allowed;}
25
+ .cursor-pointer {cursor: pointer;}
26
+ .cursor-progress {cursor: progress;}
27
+ .cursor-row-resize {cursor: row-resize;}
28
+ .cursor-s-resize {cursor: s-resize;}
29
+ .cursor-se-resize {cursor: se-resize;}
30
+ .cursor-sw-resize {cursor: sw-resize;}
31
+ .cursor-text {cursor: text;}
32
+ .cursor-w-resize {cursor: w-resize;}
33
+ .cursor-wait {cursor: wait;}
34
+ .cursor-zoom-in {cursor: zoom-in;}
35
+ .cursor-zoom-out {cursor: zoom-out;}
@@ -0,0 +1,9 @@
1
+ .dropdown-toggle[aria-expanded="true"]:after {
2
+ transform: rotate(180deg);
3
+ }
4
+ .dropdown-toggle:after {
5
+ transition: 0.3s;
6
+ }
7
+ .dropdown-toggle::after {
8
+ content: "\25BC"; /* Unicode for a downward-pointing triangle */
9
+ }
@@ -0,0 +1,22 @@
1
+ .form-control {
2
+ border-radius: 12px !important;
3
+ background-color: #f1f1f1 !important;
4
+ padding: 0.7rem !important;
5
+ border: none !important;
6
+ }
7
+
8
+ .form-control-sm {
9
+ border-radius: 8px !important;
10
+ background-color: #f1f1f1 !important;
11
+ padding: 0.6rem 0.5rem !important;
12
+ border: none !important;
13
+ }
14
+
15
+ .border-right-0 {
16
+ border-top-right-radius: 0px !important;
17
+ border-bottom-right-radius: 0px !important;
18
+ }
19
+
20
+ .form-control:disabled, .form-control[readonly] {
21
+ color: $secondary;
22
+ }
@@ -0,0 +1,3 @@
1
+ .pac-container {
2
+ z-index: 10000 !important;
3
+ }
@@ -0,0 +1,41 @@
1
+ .navbar-toggler {
2
+ background-color: transparent;
3
+ border: none;
4
+ cursor: pointer;
5
+ display: flex;
6
+ padding: 0;
7
+ }
8
+ .line {
9
+ fill: none;
10
+ stroke: black;
11
+ stroke-width: 6;
12
+ transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
13
+ stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
14
+ }
15
+ .line1 {
16
+ stroke-dasharray: 60 207;
17
+ stroke-width: 6;
18
+ }
19
+ .line2 {
20
+ stroke-dasharray: 60 60;
21
+ stroke-width: 6;
22
+ }
23
+ .line3 {
24
+ stroke-dasharray: 60 207;
25
+ stroke-width: 6;
26
+ }
27
+ .opened .line1 {
28
+ stroke-dasharray: 90 207;
29
+ stroke-dashoffset: -134;
30
+ stroke-width: 6;
31
+ }
32
+ .opened .line2 {
33
+ stroke-dasharray: 1 60;
34
+ stroke-dashoffset: -30;
35
+ stroke-width: 6;
36
+ }
37
+ .opened .line3 {
38
+ stroke-dasharray: 90 207;
39
+ stroke-dashoffset: -134;
40
+ stroke-width: 6;
41
+ }
@@ -0,0 +1,57 @@
1
+ @media (max-width: 991.98px) {
2
+ .offcanvas-collapse {
3
+ position: fixed;
4
+ top: 50px; /* Height of navbar */
5
+ bottom: 0;
6
+ right: 100%;
7
+ width: 100%;
8
+ padding-right: 1rem;
9
+ padding-left: 1rem;
10
+ padding-top: 1rem;
11
+ overflow-y: auto;
12
+ visibility: hidden;
13
+ background-color: #ffffff;
14
+ border-top: 1px solid #e9ecef;
15
+ transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
16
+ z-index: 100;
17
+ }
18
+ .offcanvas-collapse.open {
19
+ visibility: visible;
20
+ transform: translateX(100%);
21
+ }
22
+ }
23
+
24
+ .nav-scroller {
25
+ position: relative;
26
+ z-index: 2;
27
+ height: 2.75rem;
28
+ overflow-y: hidden;
29
+ }
30
+
31
+ .nav-scroller .nav {
32
+ display: flex;
33
+ flex-wrap: nowrap;
34
+ padding-bottom: 1rem;
35
+ margin-top: -1px;
36
+ overflow-x: auto;
37
+ color: rgba(255, 255, 255, 0.75);
38
+ text-align: center;
39
+ white-space: nowrap;
40
+ -webkit-overflow-scrolling: touch;
41
+ }
42
+
43
+ .nav-underline .nav-link {
44
+ padding-top: 0.75rem;
45
+ padding-bottom: 0.75rem;
46
+ font-size: 0.875rem;
47
+ color: #6c757d;
48
+ }
49
+
50
+ .nav-underline .nav-link:hover {
51
+ color: #007bff;
52
+ }
53
+
54
+ .nav-underline .active {
55
+ font-weight: 500;
56
+ color: #343a40;
57
+ }
@@ -0,0 +1,26 @@
1
+ .iframe_fullscreen {
2
+ position:fixed;
3
+ left:0;
4
+ bottom: 0px;
5
+ right:0;
6
+ width:100%;
7
+ border:none;
8
+ margin: 0;
9
+ padding: 0;
10
+ overflow:hidden;
11
+ z-index:999;
12
+ }
13
+
14
+ .iframe-top-60 {
15
+ top: 60px;
16
+ height: calc(100% - 60px);
17
+ }
18
+
19
+ .iframe-top-160 {
20
+ top: 160px;
21
+ height: calc(100% - 160px);
22
+ }
23
+
24
+ .on_top_of_iframe {
25
+ z-index: 1000;
26
+ }
@@ -0,0 +1,22 @@
1
+ @import "accordion";
2
+ @import "btn";
3
+ @import "btn_toggle";
4
+ @import "card";
5
+ @import "cursors";
6
+ @import "dropdown_toggle";
7
+ @import "form";
8
+ @import "hamburger_button";
9
+ @import "header";
10
+ @import "iframe";
11
+ @import "nav_pills";
12
+ @import "pagination";
13
+ @import "progress_bar";
14
+ @import "slider";
15
+ @import "slim_select";
16
+ @import "timeline";
17
+ @import "tooltip";
18
+ @import "transformation";
19
+ @import "range";
20
+ @import "nps_progress_bar";
21
+ @import "select_input";
22
+ @import "radio_button";
@@ -0,0 +1,26 @@
1
+ .nav,
2
+ .nav-pills {
3
+ font-weight: 700;
4
+ .nav-link.active {
5
+ margin: 0px 5px;
6
+ color: $primary !important;
7
+ background-color: #fff !important;
8
+ border-bottom: 2px solid $primary;
9
+ border-radius: 0px !important;
10
+ }
11
+ .nav-link.active:hover {
12
+ background-color: $primary !important;
13
+ color: #fff !important;
14
+ }
15
+ .nav-link:not(.active) {
16
+ margin: 0px 5px;
17
+ background-color: #fff;
18
+ color: rgba($secondary, 0.8) !important;
19
+ border-bottom: 2px solid rgba($secondary, 0.8);
20
+ border-radius: 0px !important;
21
+ }
22
+ .nav-link:not(.active):hover {
23
+ background-color: rgba($secondary, 0.2) !important;
24
+ color: $secondary !important;
25
+ }
26
+ }
@@ -0,0 +1,97 @@
1
+ .wrapper-nps {
2
+ height: 1em;
3
+ width: 100%;
4
+ }
5
+
6
+ .progress-nps {
7
+ height: 1em;
8
+ width: 100%;
9
+ background-color: $primary;
10
+ box-sizing: border-box;
11
+ position: relative;
12
+ overflow: hidden;
13
+ border-radius: 15px;
14
+ }
15
+
16
+ .nps-score {
17
+ background-color: $primary;
18
+ border-radius: 5px;
19
+ color: white;
20
+ display: inline-block;
21
+ position: relative;
22
+ transform: translateX(-50%);
23
+ }
24
+
25
+ .nps-score::after {
26
+ content: "";
27
+ position: absolute;
28
+ left: 43%;
29
+ display : inline-block;
30
+ height : 0;
31
+ width : 0;
32
+ border-top : 14px solid $primary;
33
+ border-right : 8px solid transparent;
34
+ border-left : 7px solid transparent;
35
+ top: 75%;
36
+ z-index: 2;
37
+ }
38
+
39
+ .nps-middle {
40
+ content: "";
41
+ position: absolute;
42
+ height: 2em;
43
+ width: 3.5px;
44
+ border-radius: 15px;
45
+ background-color: $secondary;
46
+ left: 50%;
47
+ z-index: 1;
48
+ }
49
+
50
+ .blind {
51
+ background-color: #CACED2;
52
+ height: 100%;
53
+ position: absolute;
54
+ top: 0;
55
+ min-width: 50%;
56
+ }
57
+
58
+ .blind.right {
59
+ left: 50%;
60
+ transform-origin: left top;
61
+ border-top-right-radius: 15px;
62
+ border-bottom-right-radius: 15px;
63
+ &::before {
64
+ content: "";
65
+ position: absolute;
66
+ top: 0;
67
+ left: -1%;
68
+ width: 2%;
69
+ height: 100%;
70
+ background-color: $primary;
71
+ border-top-right-radius: 15px;
72
+ border-bottom-right-radius: 15px;
73
+ }
74
+ &.no-before::before{
75
+ display:none;
76
+ }
77
+ }
78
+
79
+ .blind.left {
80
+ transform-origin: left top;
81
+ border-top-left-radius: 15px;
82
+ border-bottom-left-radius: 15px;
83
+ &::before {
84
+ content: "";
85
+ position: absolute;
86
+ top: 0;
87
+ left: 99%;
88
+ width: 2%;
89
+ height: 100%;
90
+ background-color: $primary;
91
+ border-top-left-radius: 15px;
92
+ border-bottom-left-radius: 15px;
93
+ }
94
+ &.no-before::before{
95
+ display:none;
96
+ }
97
+ }
@@ -0,0 +1,11 @@
1
+ .pagination {
2
+ .page-link {
3
+ color: $primary;
4
+ }
5
+ .page-item.active .page-link {
6
+ z-index: 3;
7
+ color: #fff;
8
+ background-color: $primary;
9
+ border-color: $primary;
10
+ }
11
+ }
@@ -0,0 +1,17 @@
1
+ .progress {
2
+ #first-section {
3
+ border-right: solid white;
4
+ border-width: medium;
5
+ }
6
+
7
+ #last-section {
8
+ border-left: solid white;
9
+ border-width: medium;
10
+ }
11
+
12
+ .middle-section {
13
+ border-right: solid white;
14
+ border-left: solid white;
15
+ border-width: medium;
16
+ }
17
+ }
@@ -0,0 +1,25 @@
1
+ input[type="radio"].checked_radio_button:checked + label {
2
+ background-color: $primary;
3
+ color: #fff;
4
+ display: flex;
5
+ align-items: center;
6
+ justify-content: center;
7
+ }
8
+
9
+ input[type="radio"].checked_radio_button:not(:checked) + label {
10
+ background-color: #fff;
11
+ color: $secondary;
12
+ border-color: $secondary;
13
+ display: flex;
14
+ align-items: center;
15
+ justify-content: center;
16
+ }
17
+
18
+ input[type="radio"].checked_radio_button:disabled + label {
19
+ background-color: #fff;
20
+ color: $secondary;
21
+ border-color: $secondary;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: center;
25
+ }