global
1 year ago
addons_page.css
2 years ago
consent_mapping_table.css
1 year ago
cookiebot_admin_main.css
1 year ago
dashboard-old.css
9 months ago
dashboard.css
1 year ago
gtm_page.css
4 years ago
multiple_page.css
3 years ago
settings-page.css
1 year ago
support_page.css
1 year ago
settings-page.css
748 lines
| 1 | .cookiebot_fieldset_header { |
| 2 | cursor: pointer; |
| 3 | } |
| 4 | |
| 5 | .cookiebot_fieldset_header::after { |
| 6 | content: "\f140"; |
| 7 | font: normal 24px/1 dashicons; |
| 8 | position: relative; |
| 9 | top: 5px; |
| 10 | } |
| 11 | |
| 12 | .cookiebot_fieldset_header.active::after { |
| 13 | content: "\f142"; |
| 14 | } |
| 15 | |
| 16 | .cb-settings__header { |
| 17 | display: grid; |
| 18 | grid-template-columns: 3fr 1fr; |
| 19 | align-items: start; |
| 20 | } |
| 21 | |
| 22 | .cb-settings__header .cb-main__page_title { |
| 23 | margin: 0; |
| 24 | } |
| 25 | |
| 26 | .cb-settings__header p.submit { |
| 27 | text-align: right; |
| 28 | margin: 0; |
| 29 | padding: 0; |
| 30 | } |
| 31 | |
| 32 | .cb-settings__header p.submit #submit { |
| 33 | background-color: rgba(0, 0, 0, 0.16); |
| 34 | color: #666666; |
| 35 | padding: 10px 20px; |
| 36 | font-size: 16px; |
| 37 | border: none; |
| 38 | pointer-events: none; |
| 39 | } |
| 40 | |
| 41 | .cb-settings__header p.submit #submit.enabled{ |
| 42 | background-color: #076646; |
| 43 | color: #ffffff; |
| 44 | pointer-events: initial; |
| 45 | } |
| 46 | |
| 47 | .cb-settings__notabs { |
| 48 | margin-bottom: 60px; |
| 49 | } |
| 50 | |
| 51 | .cb-settings__tabs { |
| 52 | display: grid; |
| 53 | grid-template-columns: repeat(6, 1fr); |
| 54 | margin: 25px 0 50px; |
| 55 | border-bottom: 1px solid #e1e1e1; |
| 56 | } |
| 57 | |
| 58 | .cb-settings__tabs.cb-settings__tabs--uc { |
| 59 | grid-template-columns: repeat(5, 1fr); |
| 60 | } |
| 61 | |
| 62 | .cb-settings__tabs__item { |
| 63 | display: grid; |
| 64 | padding: 15px 10px; |
| 65 | align-items: center; |
| 66 | border-bottom: 3px solid transparent; |
| 67 | color: #141414; |
| 68 | font-size: 16px; |
| 69 | font-weight: 600; |
| 70 | text-align: center; |
| 71 | cursor: pointer; |
| 72 | } |
| 73 | |
| 74 | .cb-settings__tabs__item.active-item, .cb-settings__tabs__item:hover { |
| 75 | border-color: #1032cf; |
| 76 | } |
| 77 | |
| 78 | .cb-settings__tabs__content--item { |
| 79 | display: none; |
| 80 | } |
| 81 | |
| 82 | .cb-settings__tabs__content--item.active-item { |
| 83 | display: block; |
| 84 | } |
| 85 | |
| 86 | .cb-general__new__account, .cb-general__consent__mode, .cb-general__prior__consent { |
| 87 | background-color: #f1f1f1; |
| 88 | border-radius: 15px; |
| 89 | padding: 40px; |
| 90 | margin-bottom: 50px; |
| 91 | } |
| 92 | |
| 93 | .cb-general__new__account { |
| 94 | margin-top: 50px; |
| 95 | } |
| 96 | |
| 97 | .cb-general__info__title { |
| 98 | font-size: 27px; |
| 99 | font-weight: 700; |
| 100 | line-height: 30px; |
| 101 | margin: 0; |
| 102 | } |
| 103 | |
| 104 | .cb-general__info__text { |
| 105 | width: 100%; |
| 106 | max-width: 620px; |
| 107 | font-size: 16px; |
| 108 | line-height: 24px; |
| 109 | } |
| 110 | |
| 111 | .new-account-actions .cb-btn:first-of-type { |
| 112 | margin-right: 20px; |
| 113 | } |
| 114 | |
| 115 | .cb-settings__config__item { |
| 116 | display: grid; |
| 117 | grid-template-columns: 1fr 1fr; |
| 118 | grid-column-gap: 24px; |
| 119 | margin-bottom: 50px; |
| 120 | } |
| 121 | |
| 122 | .cb-settings__config__content { |
| 123 | padding-right: 40px; |
| 124 | } |
| 125 | |
| 126 | .cb-settings__config__subtitle { |
| 127 | font-size: 20px; |
| 128 | line-height: 25px; |
| 129 | margin: 0; |
| 130 | } |
| 131 | |
| 132 | .cb-settings__config__data__inner { |
| 133 | background-color: #f1f1f1; |
| 134 | border-radius: 15px; |
| 135 | padding: 30px; |
| 136 | } |
| 137 | |
| 138 | .cb-settings__data__subtitle { |
| 139 | font-size: 15px; |
| 140 | line-height: 20px; |
| 141 | margin: 0 0 15px; |
| 142 | } |
| 143 | |
| 144 | .cookiebot-cbid-container { |
| 145 | display: grid; |
| 146 | grid-template-columns: 1fr auto; |
| 147 | } |
| 148 | |
| 149 | .cookiebot-cbid-input { |
| 150 | position: relative; |
| 151 | } |
| 152 | |
| 153 | .cookiebot-cbid-container p.submit { |
| 154 | margin: 0; |
| 155 | padding: 0; |
| 156 | } |
| 157 | |
| 158 | .cookiebot-cbid-container p.submit #submit { |
| 159 | background-color: #1032cf; |
| 160 | color: #ffffff; |
| 161 | margin-top: 0; |
| 162 | font-size: 15px; |
| 163 | line-height: 2; |
| 164 | padding: 8px 15px; |
| 165 | font-weight: 500; |
| 166 | border-radius: 7px; |
| 167 | border-top-left-radius: 0; |
| 168 | border-bottom-left-radius: 0; |
| 169 | } |
| 170 | |
| 171 | .cookiebot-cbid-container p.submit #submit.disabled { |
| 172 | background: gray; |
| 173 | pointer-events: none; |
| 174 | } |
| 175 | |
| 176 | .cookiebot-cbid-input #cookiebot-cbid |
| 177 | { |
| 178 | border-top-right-radius: 0; |
| 179 | border-bottom-right-radius: 0; |
| 180 | text-overflow: ellipsis; |
| 181 | white-space: nowrap; |
| 182 | } |
| 183 | |
| 184 | .cookiebot-cbid-input #cookiebot-cbid.cbid-active |
| 185 | { |
| 186 | pointer-events: none; |
| 187 | background: rgba(255, 255, 255, .5); |
| 188 | color: rgba(44, 51, 56, .5); |
| 189 | } |
| 190 | |
| 191 | .cookiebot-cbid-input #cookiebot-cbid.check-progress |
| 192 | { |
| 193 | padding-right: 55px; |
| 194 | } |
| 195 | |
| 196 | .cookiebot-cbid-check { |
| 197 | position: absolute; |
| 198 | top: 50%; |
| 199 | right: 10px; |
| 200 | width: 35px; |
| 201 | height: 35px; |
| 202 | transform: translateY(-50%); |
| 203 | } |
| 204 | |
| 205 | .cookiebot-cbid-check.check-progress { |
| 206 | background-image: url(../../img/icons/loader.svg); |
| 207 | |
| 208 | } |
| 209 | |
| 210 | .cookiebot-cbid-check.check-pass { |
| 211 | background-color: #076646; |
| 212 | background-image: url(../../img/icons/check.svg); |
| 213 | border-radius: 50%; |
| 214 | background-size: auto; |
| 215 | background-position: center; |
| 216 | background-repeat: no-repeat; |
| 217 | } |
| 218 | |
| 219 | #cookiebot-cbid-reset-dialog { |
| 220 | margin-top: 0; |
| 221 | line-height: 2; |
| 222 | padding: 8px 15px; |
| 223 | border-top-left-radius: 0; |
| 224 | border-bottom-left-radius: 0; |
| 225 | cursor: pointer; |
| 226 | } |
| 227 | |
| 228 | #cookiebot-cbid-reset-dialog.disabled, #cookiebot-cbid-network-dialog { |
| 229 | background-color: #e1e1e1; |
| 230 | color: #666; |
| 231 | margin-top: 0; |
| 232 | pointer-events: none; |
| 233 | } |
| 234 | |
| 235 | #cb-network-id-override { |
| 236 | margin-top: 24px; |
| 237 | } |
| 238 | |
| 239 | #cookiebot-ruleset-id-selector.hidden { |
| 240 | display: none; |
| 241 | } |
| 242 | |
| 243 | .cb-settings__config__head-section { |
| 244 | margin-bottom: 50px; |
| 245 | } |
| 246 | |
| 247 | #embedding-shortcode { |
| 248 | display: inline-block; |
| 249 | width: 100%; |
| 250 | border: 2px solid #d3d3d3; |
| 251 | border-radius: 7px; |
| 252 | padding: 16px; |
| 253 | max-width: initial; |
| 254 | box-shadow: none; |
| 255 | background: #ffffff; |
| 256 | color: #242424; |
| 257 | font-weight: 600; |
| 258 | pointer-events: none; |
| 259 | } |
| 260 | |
| 261 | input#cookiebot-embedding { |
| 262 | width: 100%; |
| 263 | border: 2px solid #d3d3d3; |
| 264 | border-radius: 7px; |
| 265 | padding: 8px 15px; |
| 266 | max-width: initial; |
| 267 | } |
| 268 | |
| 269 | select#cookiebot-embedding, select#cookiebot-embedding-type { |
| 270 | width: 100%; |
| 271 | border: 2px solid #d3d3d3; |
| 272 | border-radius: 7px; |
| 273 | padding: 8px 15px; |
| 274 | max-width: initial; |
| 275 | } |
| 276 | |
| 277 | #cookiebot-embedding-type option.hide-option, |
| 278 | #cookiebot-embedding-single-service-container.hide-container, |
| 279 | #cookiebot-tcf-toggle-container.hide-container |
| 280 | { |
| 281 | display:none; |
| 282 | } |
| 283 | |
| 284 | #show_add_language_guide { |
| 285 | display: block; |
| 286 | } |
| 287 | |
| 288 | .cb-settings__config__data__inner label { |
| 289 | display: block; |
| 290 | font-size: 16px; |
| 291 | line-height: 20px; |
| 292 | font-weight: 500; |
| 293 | color: #141414; |
| 294 | } |
| 295 | |
| 296 | .cb-settings__config__data__inner label:not(.switch-checkbox) { |
| 297 | padding-left: 30px; |
| 298 | } |
| 299 | |
| 300 | .cb-settings__config__data__inner label.cb-settings__cookie-types { |
| 301 | display: inline-block; |
| 302 | padding: 0; |
| 303 | text-transform: capitalize; |
| 304 | line-height: 32px; |
| 305 | } |
| 306 | |
| 307 | .cb-settings__config__data__inner label.switch-checkbox { |
| 308 | display: flex; |
| 309 | } |
| 310 | |
| 311 | .cb-settings__config__data__inner label:not(:first-of-type) { |
| 312 | margin-top: 20px; |
| 313 | } |
| 314 | |
| 315 | .recommended-tag { |
| 316 | font-size: 13px; |
| 317 | background-color: #0e1848; |
| 318 | color: #ffffff; |
| 319 | padding: 3px 7px; |
| 320 | border-radius: 5px; |
| 321 | } |
| 322 | |
| 323 | .cb-settings__config__item.secondary__item { |
| 324 | border-left: 4px solid #1032cf; |
| 325 | } |
| 326 | |
| 327 | .cb-settings__config__item.secondary__item .cb-settings__config__content { |
| 328 | padding-left: 90px; |
| 329 | } |
| 330 | |
| 331 | .cb-general__info__note { |
| 332 | font-size: 13px; |
| 333 | font-style: oblique; |
| 334 | } |
| 335 | |
| 336 | .disabled__item { |
| 337 | display: none; |
| 338 | filter: grayscale(1); |
| 339 | opacity: .5; |
| 340 | pointer-events: none; |
| 341 | } |
| 342 | |
| 343 | .cb-prior__tab__selector { |
| 344 | position: relative; |
| 345 | display: grid; |
| 346 | grid-template-columns: 1fr 1fr; |
| 347 | align-items: center; |
| 348 | justify-items: center; |
| 349 | width: 100%; |
| 350 | max-width: 360px; |
| 351 | margin: 0 auto; |
| 352 | border: 2px solid #e3e3e3; |
| 353 | border-radius: 150px; |
| 354 | } |
| 355 | |
| 356 | .cb-prior__tab__selector:before { |
| 357 | position: absolute; |
| 358 | content: ''; |
| 359 | width: calc(50% - 6px); |
| 360 | height: calc(100% - 6px); |
| 361 | background: #1032cf; |
| 362 | border-radius: 150px; |
| 363 | left: 3px; |
| 364 | z-index: 0; |
| 365 | } |
| 366 | |
| 367 | .cb-prior__tab__item { |
| 368 | width: 100%; |
| 369 | text-align: center; |
| 370 | padding: 15px; |
| 371 | font-size: 15px; |
| 372 | font-weight: 500; |
| 373 | z-index: 1; |
| 374 | } |
| 375 | |
| 376 | .cb-prior__tab__item.active-item { |
| 377 | color: #ffffff; |
| 378 | } |
| 379 | |
| 380 | .cb-prior__tab__content__item { |
| 381 | display: none; |
| 382 | } |
| 383 | |
| 384 | .cb-prior__tab__content__item.active-item { |
| 385 | display: block; |
| 386 | } |
| 387 | |
| 388 | .cb-settings__vendor__config__item { |
| 389 | margin-bottom: 50px; |
| 390 | } |
| 391 | |
| 392 | .cb-settings__vendor__config__item.vendor-list-offline { |
| 393 | background-color: #f1f1f1; |
| 394 | padding: 24px; |
| 395 | border-radius: 16px; |
| 396 | border: 2px solid #de8e09; |
| 397 | } |
| 398 | |
| 399 | .cb-settings__vendor__config__item.vendor-list-offline .cb-general__info__text { |
| 400 | margin-bottom: 0; |
| 401 | } |
| 402 | |
| 403 | .cb-settings__vendor__config__item .cb-general__info__text { |
| 404 | max-width: initial; |
| 405 | } |
| 406 | .cb-settings__vendor__config__item .only-title { |
| 407 | margin-bottom: 24px; |
| 408 | } |
| 409 | |
| 410 | |
| 411 | .cb-vendor__setting--item { |
| 412 | position: relative; |
| 413 | width: 100%; |
| 414 | background-color: #ffffff; |
| 415 | color: #141414; |
| 416 | border: 2px solid #d3d3d3; |
| 417 | border-radius: 7px; |
| 418 | padding: 8px 15px; |
| 419 | box-sizing: border-box; |
| 420 | font-size: 15px; |
| 421 | font-weight: 600; |
| 422 | line-height: 27px; |
| 423 | min-height: 30px; |
| 424 | cursor: pointer; |
| 425 | } |
| 426 | |
| 427 | .cb-settings__config__data__inner.cb-vendor-settings { |
| 428 | display: flex; |
| 429 | flex-wrap: wrap; |
| 430 | column-gap: 16px; |
| 431 | } |
| 432 | |
| 433 | .cb-vendor-settings .checkbox-vendor-search { |
| 434 | width: auto; |
| 435 | flex: 6 1 auto; |
| 436 | } |
| 437 | |
| 438 | .cb-vendor-settings .cb-btn.cb-settings__selector-all { |
| 439 | margin: 0; |
| 440 | flex: 0 1 auto; |
| 441 | } |
| 442 | |
| 443 | .cb-vendor-settings .cb-btn.cb-settings__selector-none { |
| 444 | margin: 0; |
| 445 | flex: 0 1 auto; |
| 446 | } |
| 447 | |
| 448 | .vendor-selected-items-message { |
| 449 | flex: 1 1 100%; |
| 450 | margin-top: 20px; |
| 451 | } |
| 452 | |
| 453 | .vendor-selected-items-message span { |
| 454 | display: inline-block; |
| 455 | border-radius: 6px; |
| 456 | font-weight: 700; |
| 457 | color: #d63638; |
| 458 | } |
| 459 | |
| 460 | .cb-vendor-alert__msg, .cb-cbid-alert__msg, .cb-cbid-subsite-alert__msg { |
| 461 | box-sizing: border-box; |
| 462 | padding: 24px 34px; |
| 463 | font-size: 15px; |
| 464 | line-height: 24px; |
| 465 | font-weight: 600; |
| 466 | border-radius: 8px; |
| 467 | margin-bottom: 20px; |
| 468 | } |
| 469 | |
| 470 | .cb-vendor-alert__msg { |
| 471 | background-color: #de8e09; |
| 472 | color: #ffffff; |
| 473 | } |
| 474 | |
| 475 | .cb-cbid-alert__msg, .cb-cbid-subsite-alert__msg { |
| 476 | background-color: #fdedd3; |
| 477 | border: 4px solid #de8e09; |
| 478 | } |
| 479 | |
| 480 | .vendor-selected-items { |
| 481 | display: grid; |
| 482 | grid-template-columns: 1fr 1fr; |
| 483 | grid-row-gap: 5px; |
| 484 | grid-column-gap: 5px; |
| 485 | grid-auto-rows: minmax(30px, 1fr); |
| 486 | max-height: 400px; |
| 487 | overflow-y: auto; |
| 488 | margin-top: 32px; |
| 489 | } |
| 490 | |
| 491 | .vendor-selected-items label.switch-checkbox { |
| 492 | margin-top: 0; |
| 493 | align-items: flex-start; |
| 494 | } |
| 495 | |
| 496 | .vendor-selected-items label.switch-checkbox.hidden { |
| 497 | display: none; |
| 498 | } |
| 499 | |
| 500 | .vendor-selected-items .switch-checkbox .switcher { |
| 501 | width: 30px; |
| 502 | min-width: 30px; |
| 503 | height: 18px; |
| 504 | } |
| 505 | |
| 506 | .vendor-selected-items .switch-checkbox .switcher:after { |
| 507 | top: 2px; |
| 508 | left: 2px; |
| 509 | width: 14px; |
| 510 | height: 14px; |
| 511 | } |
| 512 | |
| 513 | .vendor-selected-items .switch-checkbox .switcher:active:after { |
| 514 | width: 14px; |
| 515 | } |
| 516 | |
| 517 | .vendor-selected-items .switch-checkbox input[type=checkbox]:checked + .switcher:after { |
| 518 | left: calc(100% - 2px); |
| 519 | transform: translateX(-100%); |
| 520 | } |
| 521 | |
| 522 | .vendor-selected-item { |
| 523 | display: inline-block; |
| 524 | padding: 1px 5px; |
| 525 | font-size: 13px; |
| 526 | line-height: initial; |
| 527 | background: blue; |
| 528 | color: #ffffff; |
| 529 | border-radius: 15px; |
| 530 | margin-right: 4px; |
| 531 | } |
| 532 | |
| 533 | .vendor-name-list { |
| 534 | max-height: 400px; |
| 535 | overflow-y: scroll; |
| 536 | } |
| 537 | |
| 538 | .cb-settings__vendor__restrictions { |
| 539 | margin-top: 24px; |
| 540 | } |
| 541 | |
| 542 | .cb-settings__vendor__restrictions > .cb-settings__config__data__inner { |
| 543 | position: relative; |
| 544 | display: grid; |
| 545 | grid-template-columns: 1fr auto auto; |
| 546 | grid-column-gap: 16px; |
| 547 | align-items: center; |
| 548 | } |
| 549 | |
| 550 | .cb-settings__vendor__restrictions .cb-main-btn { |
| 551 | margin-top: 0; |
| 552 | } |
| 553 | |
| 554 | .vendor-purposes-restrictions > .cb-settings__config__data__inner { |
| 555 | margin-top: 16px; |
| 556 | } |
| 557 | |
| 558 | .cb-settings__vendor__restrictions .remove__restriction { |
| 559 | cursor: pointer; |
| 560 | } |
| 561 | |
| 562 | @media (max-width: 1414px) { |
| 563 | .recommended-tag { |
| 564 | display: block; |
| 565 | width: -webkit-fit-content; |
| 566 | width: fit-content; |
| 567 | margin-top: 5px; |
| 568 | margin-bottom: 10px; |
| 569 | } |
| 570 | } |
| 571 | |
| 572 | .cb-general__new__account--double { |
| 573 | display: grid; |
| 574 | grid-template-columns: 1fr 1fr; |
| 575 | grid-column-gap: 24px; |
| 576 | margin-top: -26px; |
| 577 | margin-bottom: 50px; |
| 578 | } |
| 579 | |
| 580 | .cb-general__new__account--double .cb-main__card__inner.new_card { |
| 581 | display: grid; |
| 582 | align-self: stretch; |
| 583 | position: relative; |
| 584 | padding: 25px; |
| 585 | overflow: hidden; |
| 586 | background-color: #00C6FB; |
| 587 | color: #141414; |
| 588 | border-radius: 10px; |
| 589 | } |
| 590 | |
| 591 | .cb-main__card__inner.new_card .cb-main__card__content { |
| 592 | display: grid; |
| 593 | grid-template-columns: 1fr minmax(86px, auto); |
| 594 | grid-template-rows: minmax(120px, auto) auto; |
| 595 | grid-column-gap: 25px; |
| 596 | align-items: end; |
| 597 | } |
| 598 | |
| 599 | .cb-main__card__inner.new_card .cb-main__card__title { |
| 600 | font-size: 28px; |
| 601 | line-height: 30px; |
| 602 | margin-bottom: 25px; |
| 603 | } |
| 604 | |
| 605 | .cb-main__card__inner.new_card .cb-btn.cb-main-btn { |
| 606 | background-color: #000000; |
| 607 | color: #ffffff; |
| 608 | grid-row: 2; |
| 609 | grid-column: span 2; |
| 610 | text-align: center; |
| 611 | text-transform: uppercase; |
| 612 | margin-top: 0; |
| 613 | } |
| 614 | |
| 615 | .cb-main__card__inner.new_card .cb-bf-counter { |
| 616 | background-color: #000000; |
| 617 | border-bottom-left-radius: 500px; |
| 618 | border-bottom-right-radius: 500px; |
| 619 | text-align: center; |
| 620 | padding: 6px 6px 12px; |
| 621 | width: 74px; |
| 622 | position: relative; |
| 623 | top: -25px; |
| 624 | align-self: start; |
| 625 | } |
| 626 | |
| 627 | .cb-main__card__inner.new_card .cb-bf-counter-label { |
| 628 | color: #ffffff; |
| 629 | font-weight: 700; |
| 630 | } |
| 631 | |
| 632 | .cb-main__card__inner.new_card .cb-bf-counter-number { |
| 633 | color: #00a2ff; |
| 634 | font-size: 50px; |
| 635 | line-height: 50px; |
| 636 | font-weight: 700; |
| 637 | } |
| 638 | |
| 639 | .cb-main__card__inner.new_card .cb-bf-counter-last { |
| 640 | color: #00a2ff; |
| 641 | font-weight: 700; |
| 642 | text-transform: uppercase; |
| 643 | line-height: normal; |
| 644 | padding: 0 10px; |
| 645 | } |
| 646 | |
| 647 | /* Banner Container Meeting cb-wrapper */ |
| 648 | .banner-container { |
| 649 | max-width: 1366px; |
| 650 | width: 100%; |
| 651 | margin: -1.5rem auto 1.5rem; |
| 652 | } |
| 653 | |
| 654 | .header-top-banners { |
| 655 | display: flex; |
| 656 | background-position: center; |
| 657 | border-radius: 0.5rem; |
| 658 | align-items: center; |
| 659 | width: 100%; |
| 660 | margin-bottom: 1rem; |
| 661 | } |
| 662 | |
| 663 | .header-top-banners.trial-expired-banner { |
| 664 | background-color: #FDECCF; |
| 665 | justify-content: space-between; |
| 666 | } |
| 667 | |
| 668 | .header-top-banners.connected-banner { |
| 669 | background-color: rgba(245, 245, 247, 1); |
| 670 | } |
| 671 | |
| 672 | .header-top-banners.banner-live-banner { |
| 673 | background-color: #F5F5F7; |
| 674 | } |
| 675 | |
| 676 | .header-top-banners.banner-live-banner h3 { |
| 677 | color: black; |
| 678 | } |
| 679 | |
| 680 | .header-top-banners.banner-live-banner p { |
| 681 | color: black; |
| 682 | text-wrap: nowrap; |
| 683 | } |
| 684 | |
| 685 | .header-top-banners img { |
| 686 | width: 24px; |
| 687 | height: 24px; |
| 688 | flex-shrink: 0; |
| 689 | } |
| 690 | |
| 691 | .header-top-banners .banner-content { |
| 692 | display: flex; |
| 693 | align-items: flex-start; |
| 694 | gap: 1rem; |
| 695 | padding: 1.5rem 2rem; |
| 696 | flex: 1; |
| 697 | } |
| 698 | |
| 699 | .header-top-banners h3 { |
| 700 | margin: 0 0 0.25rem; |
| 701 | font-size: 1.125rem; |
| 702 | font-weight: 600; |
| 703 | color: #1D2327; |
| 704 | line-height: 1.3; |
| 705 | } |
| 706 | |
| 707 | .header-top-banners p { |
| 708 | margin: 0; |
| 709 | font-size: 0.875rem; |
| 710 | line-height: 1.4; |
| 711 | color: #4B5563; |
| 712 | max-width: 90%; |
| 713 | } |
| 714 | |
| 715 | .header-top-banners .upgrade-expired-trial { |
| 716 | display: flex; |
| 717 | align-items: center; |
| 718 | cursor: pointer; |
| 719 | padding: 1.5rem 2rem; |
| 720 | } |
| 721 | |
| 722 | |
| 723 | /* Banner Close Button */ |
| 724 | .banner-close-btn { |
| 725 | background: none; |
| 726 | border: none; |
| 727 | color: black; |
| 728 | font-size: 24px; |
| 729 | line-height: 1; |
| 730 | padding: 0 20px; |
| 731 | cursor: pointer; |
| 732 | opacity: 0.8; |
| 733 | transition: opacity 0.2s ease; |
| 734 | display: flex; |
| 735 | align-items: center; |
| 736 | justify-content: center; |
| 737 | height: 100%; |
| 738 | } |
| 739 | |
| 740 | .banner-close-btn:hover { |
| 741 | opacity: 1; |
| 742 | } |
| 743 | |
| 744 | .banner-close-btn span { |
| 745 | font-weight: lighter; |
| 746 | font-size: 28px; |
| 747 | } |
| 748 |