PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.3.12
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.3.12
4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.5 3.6.6 3.7.0 3.7.1 3.8.0 3.9.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.2.0 4.2.1 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.10 4.3.11 4.3.12 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.7.1 4.3.8 4.3.9 4.3.9.1 4.4.0 4.4.1 4.4.2 4.5.0 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.5 4.5.6 4.5.7 4.5.8 4.5.9 4.6.0 4.6.1 4.6.2 4.6.3 4.6.4 4.6.5 4.6.6 4.6.7 4.7.0
cookiebot / assets / css / backend / global / cookiebot_admin.css
cookiebot / assets / css / backend / global Last commit date
cookiebot_admin.css 1 year ago
cookiebot_admin.css
155 lines
1 .cookiebot-popup-container {
2 position: fixed;
3 display: none;
4 width: 100vw;
5 height: 100vh;
6 top: 0;
7 right: 0;
8 background: rgba(0,0,0,.5);
9 z-index: 9999;
10 }
11
12 .cookiebot-popup-container.cb-opened {
13 display: grid;
14 justify-content: center;
15 align-items: center;
16 }
17
18 #cookiebot-popup {
19 box-sizing: border-box;
20 background: #ffffff;
21 width: 565px;
22 padding: 20px;
23 border-radius: 25px;
24 }
25
26 #cookiebot-popup *{
27 box-sizing: border-box;
28 }
29
30 #cookiebot-popup .cb-review__logo img {
31 width: 100%;
32 height: auto;
33 }
34
35 .cb-review__header {
36 display: grid;
37 grid-template-columns: 50px 1fr 22px;
38 grid-column-gap: 5px;
39 }
40
41 #cb-review__close {
42 color: #424242;
43 width: 20px;
44 height: 20px;
45 text-align: center;
46 border-radius: 20px;
47 font-weight: 700;
48 margin-right: 0;
49 margin-left: auto;
50 cursor: pointer;
51 }
52
53 #cb-review__form p {
54 font-weight: normal;
55 font-size: 16px;
56 line-height: 24px;
57 color: #141414;
58 }
59
60 #cb-review__form > div {
61 padding: 0 20px;
62 }
63
64 .cb-review__form--item {
65 display: inline-block;
66 font-size: 15px;
67 margin-bottom: 15px;
68 }
69
70 #cb-review__other-description {
71 width: 100%;
72 }
73
74 #cb-review__form #cb-review__alert {
75 display: none;
76 padding: 15px 15px;
77 border-left: 5px solid #ffcc5f;
78 background: #f2f2f2;
79 margin: 15px 0;
80 color: #d69c20;
81 font-weight: bold;
82 }
83
84 #cb-review__form #cb-review__alert.show-alert {
85 display: block;
86 }
87
88 #cb-review__form .cb-review__actions {
89 display: grid;
90 padding: 15px;
91 grid-template-columns: 1fr 1fr;
92 grid-column-gap: 25px;
93 }
94
95 #cb-review__skip {
96 background-color: rgba(0, 0, 0, 0.16);
97 color: #333;
98 padding: 10px 20px;
99 font-size: 16px;
100 border: none;
101 border-radius: 7px;
102 text-decoration: none;
103 text-align: center;
104 }
105
106 #cb-review__submit {
107 padding: 10px 20px;
108 font-size: 16px;
109 font-weight: 500;
110 border-radius: 7px;
111 border: none;
112 cursor: pointer;
113 background-color: #1032cf;
114 color: #ffffff;
115 text-align: center;
116 }
117
118 #cb-review__form .cb-review__policy {
119 font-size: 14px;
120 text-align: right;
121 margin: 5px 0;
122 padding-right: 20px;
123 }
124
125 #cb-review__form .cb-review__policy a {
126 color: blue;
127 text-decoration: none;
128 }
129
130 .cb-review__form--item__custom {
131 margin-bottom: 20px;
132 }
133
134
135 .consent-item {
136 display: none;
137 }
138
139 .consent-item.show-consent {
140 display: block;
141 }
142
143 .consent-item .cb-review__form--item {
144 font-size: 13px;
145 margin-bottom: 0;
146 }
147
148 .consent-item .cb-review__form--item span b{
149 color: #1032cf;
150 }
151
152 .consent-item .cb-review__form--item span a{
153 color: #1032cf;
154 text-decoration: none;
155 }