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