PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.5.1
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.5.1
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
159 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 label span {
31 font-size: 15px;
32 }
33
34 #cookiebot-popup .cb-review__logo img {
35 width: 100%;
36 height: auto;
37 }
38
39 .cb-review__header {
40 display: grid;
41 grid-template-columns: 50px 1fr 22px;
42 grid-column-gap: 5px;
43 }
44
45 #cb-review__close {
46 color: #424242;
47 width: 20px;
48 height: 20px;
49 text-align: center;
50 border-radius: 20px;
51 font-weight: 700;
52 margin-right: 0;
53 margin-left: auto;
54 cursor: pointer;
55 }
56
57 #cb-review__form p {
58 font-weight: normal;
59 font-size: 16px;
60 line-height: 24px;
61 color: #141414;
62 }
63
64 #cb-review__form > div {
65 padding: 0 20px;
66 }
67
68 .cb-review__form--item {
69 display: inline-block;
70 font-size: 15px;
71 margin-bottom: 15px;
72 }
73
74 #cb-review__other-description {
75 width: 100%;
76 }
77
78 #cb-review__form #cb-review__alert {
79 display: none;
80 padding: 15px 15px;
81 border-left: 5px solid #ffcc5f;
82 background: #f2f2f2;
83 margin: 15px 0;
84 color: #d69c20;
85 font-weight: bold;
86 }
87
88 #cb-review__form #cb-review__alert.show-alert {
89 display: block;
90 }
91
92 #cb-review__form .cb-review__actions {
93 display: grid;
94 padding: 15px;
95 grid-template-columns: 1fr 1fr;
96 grid-column-gap: 25px;
97 }
98
99 #cb-review__skip {
100 background-color: rgba(0, 0, 0, 0.16);
101 color: #333;
102 padding: 10px 20px;
103 font-size: 16px;
104 border: none;
105 border-radius: 7px;
106 text-decoration: none;
107 text-align: center;
108 }
109
110 #cb-review__submit {
111 padding: 10px 20px;
112 font-size: 16px;
113 font-weight: 500;
114 border-radius: 7px;
115 border: none;
116 cursor: pointer;
117 background-color: #1032cf;
118 color: #ffffff;
119 text-align: center;
120 }
121
122 #cb-review__form .cb-review__policy {
123 font-size: 14px;
124 text-align: right;
125 margin: 5px 0;
126 padding-right: 20px;
127 }
128
129 #cb-review__form .cb-review__policy a {
130 color: blue;
131 text-decoration: none;
132 }
133
134 .cb-review__form--item__custom {
135 margin-bottom: 20px;
136 }
137
138
139 .consent-item {
140 display: none;
141 }
142
143 .consent-item.show-consent {
144 display: block;
145 }
146
147 .consent-item .cb-review__form--item {
148 font-size: 13px;
149 margin-bottom: 0;
150 }
151
152 .consent-item .cb-review__form--item span b{
153 color: #1032cf;
154 }
155
156 .consent-item .cb-review__form--item span a{
157 color: #1032cf;
158 text-decoration: none;
159 }