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 | } |