about.css
3 weeks ago
admin-notifications.css
3 weeks ago
callout.css
3 weeks ago
cff-admin-style.css
3 weeks ago
extensions.css
3 weeks ago
oembeds.css
3 weeks ago
settings.css
3 weeks ago
support.css
3 weeks ago
support.css
1031 lines
| 1 | /* |
| 2 | * SUPPORT PAGE CSS TABLE OF CONTENTS |
| 3 | * |
| 4 | * 1.0 - GLOBAL |
| 5 | * 2.0 - HEADER |
| 6 | * 3.0 - 3.0 - SUPPORT CONTAINER |
| 7 | * 3.1 - SECTION HEADER |
| 8 | * 3.2 - SUPPORT BLOCK |
| 9 | * 3.3 - CONTACT SUPPORT BLOCK |
| 10 | * 4.0 - STICKY WIDGET |
| 11 | * 5.0 - SB NOTIFICATION ELEMENT |
| 12 | * 6.0 - RESPONSIVENESS |
| 13 | */ |
| 14 | |
| 15 | /*** 1.0 - GLOBAL ***/ |
| 16 | .clearfix { display: inline-block; } |
| 17 | /* start commented backslash hack \*/ |
| 18 | * html .clearfix { height: 1%; } |
| 19 | .clearfix { display: block; } |
| 20 | #cff-support { |
| 21 | -webkit-font-smoothing: antialiased; |
| 22 | font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; |
| 23 | } |
| 24 | #wpcontent { |
| 25 | padding-left: 0px; |
| 26 | } |
| 27 | #wpbody-content { |
| 28 | padding-bottom: 40px; |
| 29 | } |
| 30 | .clearfix:after { |
| 31 | visibility: hidden; |
| 32 | display: block; |
| 33 | font-size: 0; |
| 34 | content: " "; |
| 35 | clear: both; |
| 36 | height: 0; |
| 37 | } |
| 38 | .sb-btn { |
| 39 | display: flex; |
| 40 | flex-direction: row; |
| 41 | justify-content: center; |
| 42 | align-items: center; |
| 43 | padding: 6px 12px; |
| 44 | gap: 8px; |
| 45 | background: #F3F4F5; |
| 46 | border: 1px solid #DCDDE1; |
| 47 | border-radius: 2px; |
| 48 | box-sizing: border-box; |
| 49 | transition: all .2s ease-in; |
| 50 | text-decoration: none; |
| 51 | } |
| 52 | |
| 53 | .sb-btn:hover { |
| 54 | background-color: #fdfdfd; |
| 55 | cursor: pointer; |
| 56 | } |
| 57 | .sb-btn-blue { |
| 58 | background: #0068A0 !important; |
| 59 | color: #fff !important; |
| 60 | } |
| 61 | |
| 62 | .sb-btn-blue:hover { |
| 63 | background: #0096CC !important; |
| 64 | border-color: #0096CC !important; |
| 65 | color: #fff !important; |
| 66 | } |
| 67 | |
| 68 | .sb-btn-blue:focus, |
| 69 | .sb-btn-blue:active { |
| 70 | background: #004D77 !important; |
| 71 | border-color: #004D77 !important; |
| 72 | color: #fff !important; |
| 73 | } |
| 74 | /*orange*/ |
| 75 | .sb-btn-orange{ |
| 76 | background: #FE544F!important; |
| 77 | color: #fff!important; |
| 78 | } |
| 79 | .sb-btn-orange:hover{ |
| 80 | background: #EC352F!important; |
| 81 | color: #fff!important; |
| 82 | } |
| 83 | .sb-btn-orange:focus, |
| 84 | .sb-btn-orange:active{ |
| 85 | background: #BC120E!important; |
| 86 | color: #fff!important; |
| 87 | } |
| 88 | /*red*/ |
| 89 | .sb-btn-red { |
| 90 | background: #D72C2C !important; |
| 91 | color: #fff !important; |
| 92 | } |
| 93 | |
| 94 | .sb-btn-red:hover { |
| 95 | background: #DF5757 !important; |
| 96 | color: #fff !important; |
| 97 | } |
| 98 | |
| 99 | .sb-btn-red:focus { |
| 100 | background: #841919 !important; |
| 101 | color: #fff !important; |
| 102 | } |
| 103 | .cff-fb-cp-clpboard{ |
| 104 | width: 0px; |
| 105 | height: 0px; |
| 106 | position: absolute; |
| 107 | left: -100000px; |
| 108 | } |
| 109 | .cff-fb-full-wrapper{ |
| 110 | padding: 0 53px; |
| 111 | padding-top: 82px; |
| 112 | } |
| 113 | .cff-fb-fs { |
| 114 | width: 100%; |
| 115 | position: relative; |
| 116 | float: left; |
| 117 | box-sizing: border-box; |
| 118 | } |
| 119 | |
| 120 | |
| 121 | .sb-btn-grey:not(:disabled){ |
| 122 | background: #F3F4F5!important; |
| 123 | color: #141B38!important; |
| 124 | border: 1px solid #D0D1D7!important; |
| 125 | } |
| 126 | .sb-btn-grey:not(:disabled):hover{ |
| 127 | background: #fff!important; |
| 128 | color: #141B38!important; |
| 129 | border: 1px solid #DCDDE1!important; |
| 130 | } |
| 131 | .sb-btn-grey:not(:disabled):focus, |
| 132 | .sb-btn-grey:not(:disabled):active{ |
| 133 | background: #E8E8EB!important; |
| 134 | color: #141B38!important; |
| 135 | border: 1px solid #D0D1D7!important; |
| 136 | } |
| 137 | |
| 138 | /*** 2.0 - HEADER ***/ |
| 139 | .cff-fb-create-ctn{ |
| 140 | margin-top: 90px; |
| 141 | } |
| 142 | .cff-fb-header{ |
| 143 | height: 64px; |
| 144 | position: absolute; |
| 145 | display: flex; |
| 146 | flex-direction: row; |
| 147 | justify-content: space-between; |
| 148 | align-items: center; |
| 149 | background: #fff; |
| 150 | padding: 0px 52px; |
| 151 | z-index: 2; |
| 152 | } |
| 153 | .cff-fb-header-left { |
| 154 | display: flex; |
| 155 | } |
| 156 | .cff-fb-header-left .sb-social-wall-link-wrap { |
| 157 | margin-left: 30px; |
| 158 | } |
| 159 | .sb-social-wall-link-wrap { |
| 160 | display: flex; |
| 161 | font-size: 14px; |
| 162 | margin: 10px 0 10px 30px; |
| 163 | } |
| 164 | .sb-social-wall-link:first-child { |
| 165 | padding-left: 0; |
| 166 | border-right: 1px solid #ccc; |
| 167 | color: #0068A0!important; |
| 168 | line-height: 1; |
| 169 | } |
| 170 | .sb-social-wall-link { |
| 171 | padding: 0 12px; |
| 172 | border-right: 1px solid #ccc; |
| 173 | color: #0068A0!important; |
| 174 | line-height: 1; |
| 175 | } |
| 176 | .sb-social-wall-link a { |
| 177 | text-decoration: none; |
| 178 | } |
| 179 | .sb-social-wall-link a:focus { |
| 180 | outline: none; |
| 181 | box-shadow: none; |
| 182 | } |
| 183 | .sb-social-wall-link:last-child { |
| 184 | border-right: none; |
| 185 | } |
| 186 | .cff-fb-hd-logo{ |
| 187 | display: flex; |
| 188 | vertical-align: middle; |
| 189 | align-items: center; |
| 190 | gap: 5px; |
| 191 | } |
| 192 | .cff-fb-hd-logo .sb-logo-letters-wrap { |
| 193 | transform: translate(0px, -2px); |
| 194 | } |
| 195 | .cff-fb-hd-logo .breadcrumb-title{ |
| 196 | font-size: 14px; |
| 197 | font-weight: 400; |
| 198 | line-height: 22px; |
| 199 | letter-spacing: 0em; |
| 200 | margin-left: 4px; |
| 201 | } |
| 202 | .cff-fb-hd-logo .separator{ |
| 203 | margin: 0 5px 0 10px; |
| 204 | } |
| 205 | .cff-fb-hd-btn{ |
| 206 | height: 38px; |
| 207 | cursor: pointer; |
| 208 | display: flex; |
| 209 | flex-direction: row; |
| 210 | justify-content: center; |
| 211 | align-items: center; |
| 212 | padding: 0px 15px 0px 13px; |
| 213 | font-weight: 600; |
| 214 | font-size: 14px; |
| 215 | color: #353A41; |
| 216 | background: #F3F4F5; |
| 217 | border-radius: 2px; |
| 218 | border: 1px solid #DCDDE1; |
| 219 | position: relative; |
| 220 | text-decoration: none; |
| 221 | transition: all 0.3s ease; |
| 222 | box-sizing: border-box; |
| 223 | } |
| 224 | .cff-fb-hd-btn svg { |
| 225 | margin-right: 10px; |
| 226 | width: 16px; |
| 227 | } |
| 228 | .cff-fb-hd-btn:focus { |
| 229 | outline: none; |
| 230 | box-shadow: none; |
| 231 | } |
| 232 | .cff-fb-hd-btn:hover { |
| 233 | color: inherit; |
| 234 | background-color: #fff; |
| 235 | } |
| 236 | .cff-fb-hd-btn i{ |
| 237 | margin: 0px 5px; |
| 238 | } |
| 239 | .cff-fb-hd-btn[data-icon="left"]{ |
| 240 | padding-right: 20px!important; |
| 241 | } |
| 242 | .cff-fb-full-wrapper .section-header h1 { |
| 243 | font-size: 32px; |
| 244 | line-height: 40px; |
| 245 | } |
| 246 | /*** 3.0 - SUPPORT CONTAINER ***/ |
| 247 | .cff-sb-container { |
| 248 | max-width: 885px; |
| 249 | position: relative; |
| 250 | margin: auto; |
| 251 | margin-top: 33px; |
| 252 | box-sizing: border-box; |
| 253 | } |
| 254 | |
| 255 | /*** 3.1 - SECTION HEADER ***/ |
| 256 | .cff-section-header { |
| 257 | display: flex; |
| 258 | justify-content: space-between; |
| 259 | align-items: center; |
| 260 | } |
| 261 | .cff-section-header h2{ |
| 262 | font-weight: 600; |
| 263 | font-size: 32px; |
| 264 | line-height: 40px; |
| 265 | color: #141B38; |
| 266 | margin: 0; |
| 267 | } |
| 268 | .cff-section-header .cff-search-doc .cff-search-doc-field { |
| 269 | position: relative; |
| 270 | background: #fff; |
| 271 | border: 1px solid #DCDDE1; |
| 272 | min-width: 283px; |
| 273 | box-sizing: border-box; |
| 274 | height: 38px; |
| 275 | padding: 0px 14px 0px 15px; |
| 276 | font-weight: 600; |
| 277 | font-size: 14px; |
| 278 | line-height: 22px; |
| 279 | color: #141B38; |
| 280 | text-decoration: none; |
| 281 | margin-right: 1px; |
| 282 | } |
| 283 | .cff-section-header .cff-search-doc .cff-search-doc-field .sb-btn-input { |
| 284 | height: 100%; |
| 285 | border: none; |
| 286 | outline: none; |
| 287 | background-color: transparent; |
| 288 | margin-left: 25px; |
| 289 | color: #141B38; |
| 290 | min-width: 200px; |
| 291 | transform: translateY(-1px); |
| 292 | } |
| 293 | .cff-section-header .cff-search-doc .cff-search-doc-field .sb-btn-input::placeholder { |
| 294 | color: #141B38; |
| 295 | } |
| 296 | .cff-section-header .cff-search-doc .cff-search-doc-field:focus, |
| 297 | .cff-section-header .cff-search-doc .cff-search-doc-field .sb-btn-input:focus { |
| 298 | outline: none; |
| 299 | box-shadow: none; |
| 300 | } |
| 301 | .cff-section-header .cff-search-doc .cff-search-doc-field .sb-btn-icon { |
| 302 | position: absolute; |
| 303 | left: 15px; |
| 304 | top: 9px; |
| 305 | cursor: pointer; |
| 306 | } |
| 307 | .cff-section-header .cff-search-doc .cff-search-doc-field .sb-btn-link-icon{ |
| 308 | cursor: pointer; |
| 309 | position: absolute; |
| 310 | right: 2px; |
| 311 | top: 0; |
| 312 | width: 35px; |
| 313 | text-align: center; |
| 314 | height: 100%; |
| 315 | padding-top: 9px; |
| 316 | box-sizing: border-box; |
| 317 | } |
| 318 | .cff-section-header .cff-search-doc a .sb-btn-link-icon{ |
| 319 | margin-left: 56px; |
| 320 | } |
| 321 | /*** 3.2 - SUPPORT BLOCK ***/ |
| 322 | .cff-support-blocks { |
| 323 | margin-top: 22px; |
| 324 | display: flex; |
| 325 | } |
| 326 | .cff-support-blocks .cff-support-block { |
| 327 | padding: 22px 18px; |
| 328 | background: #FFFFFF; |
| 329 | box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 4px 5px rgba(0, 0, 0, 0.05); |
| 330 | border-radius: 2px; |
| 331 | width: calc(33% - 7px); |
| 332 | box-sizing: border-box; |
| 333 | position: relative; |
| 334 | } |
| 335 | .cff-support-blocks .cff-support-block:not(:last-child) { |
| 336 | margin-right: 14px; |
| 337 | } |
| 338 | .cff-support-blocks .cff-support-block h3 { |
| 339 | font-style: normal; |
| 340 | font-weight: 600; |
| 341 | font-size: 18px; |
| 342 | line-height: 25px; |
| 343 | color: #141B38; |
| 344 | margin-top: 15px; |
| 345 | margin-bottom: 0; |
| 346 | } |
| 347 | .cff-support-blocks .cff-support-block p { |
| 348 | font-size: 12px; |
| 349 | line-height: 18px; |
| 350 | color: #64748B; |
| 351 | margin-top: 5px; |
| 352 | } |
| 353 | .sb-block-header img { |
| 354 | width: 56px; |
| 355 | height: 56px; |
| 356 | } |
| 357 | .sb-articles-list { |
| 358 | margin-top: 31px; |
| 359 | margin-bottom: 79px; |
| 360 | } |
| 361 | |
| 362 | .sb-articles-list ul li { |
| 363 | position: relative; |
| 364 | margin: 0px; |
| 365 | padding-right: 10px; |
| 366 | } |
| 367 | .sb-articles-list ul li:not(:last-child) { |
| 368 | border-bottom: 1px solid #E8E8EB; |
| 369 | position: relative; |
| 370 | } |
| 371 | .sb-articles-list ul li a { |
| 372 | font-size: 14px; |
| 373 | line-height: 22px; |
| 374 | color: #141B38; |
| 375 | text-decoration: none; |
| 376 | display: block; |
| 377 | padding: 13px 0; |
| 378 | } |
| 379 | .sb-articles-list ul li:not(:last-child):after { |
| 380 | content: ''; |
| 381 | position: absolute; |
| 382 | left: 0px; |
| 383 | bottom: -1px; |
| 384 | background-color: #0068A0; |
| 385 | height: 1px; |
| 386 | width: 0; |
| 387 | transition: all 0.25s ease-in-out; |
| 388 | } |
| 389 | .sb-articles-list ul li:not(:last-child):hover:after { |
| 390 | width: 100%; |
| 391 | } |
| 392 | .sb-articles-list ul li a:hover { |
| 393 | color: #0068A0; |
| 394 | } |
| 395 | .sb-articles-list ul li .sb-list-icon { |
| 396 | position: absolute; |
| 397 | right: 0; |
| 398 | top: calc(50% - 9px); |
| 399 | } |
| 400 | .sb-articles-list ul li .sb-list-icon svg { |
| 401 | width: 5px; |
| 402 | } |
| 403 | .sb-articles-list ul li .sb-list-icon svg path { |
| 404 | fill: #8C8F9A; |
| 405 | } |
| 406 | .cff-support-blocks .cff-sb-button { |
| 407 | margin-top: 50px; |
| 408 | position: absolute; |
| 409 | left: 0; |
| 410 | bottom: 20px; |
| 411 | width: calc(100% - 40px); |
| 412 | padding: 0 20px; |
| 413 | } |
| 414 | .cff-support-blocks .cff-sb-button .sb-btn-icon { |
| 415 | margin-left: 8px; |
| 416 | } |
| 417 | .cff-support-blocks .cff-sb-button .sb-btn-icon svg { |
| 418 | width: 5px; |
| 419 | transform: translateY(0px); |
| 420 | margin-left: 3px; |
| 421 | } |
| 422 | .cff-support-blocks .cff-sb-button a { |
| 423 | background: #F3F4F5; |
| 424 | border: 1px solid #DCDDE1; |
| 425 | box-sizing: border-box; |
| 426 | border-radius: 2px; |
| 427 | font-weight: 600; |
| 428 | font-size: 12px; |
| 429 | line-height: 19px; |
| 430 | color: #141B38; |
| 431 | display: block; |
| 432 | text-align: center; |
| 433 | text-decoration: none; |
| 434 | padding: 6px; |
| 435 | transition: all 0.15s ease-in-out; |
| 436 | } |
| 437 | .cff-support-blocks .cff-sb-button a:hover, |
| 438 | .cff-section-header .cff-search-doc a:hover { |
| 439 | background: #FFFFFF; |
| 440 | border: 1px solid #D0D1D7; |
| 441 | } |
| 442 | .cff-support-blocks .cff-sb-button a:focus, |
| 443 | .cff-support-blocks .cff-sb-button a:active, |
| 444 | .cff-section-header .cff-search-doc a:focus, |
| 445 | .cff-section-header .cff-search-doc a:active { |
| 446 | background: #E8E8EB; |
| 447 | border: 1px solid #D0D1D7; |
| 448 | } |
| 449 | |
| 450 | /*** 3.3 - CONTACT SUPPORT BLOCK ***/ |
| 451 | .cff-support-contact-block, |
| 452 | .cff-tempuser-settings-section { |
| 453 | background: #FFFFFF; |
| 454 | box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 4px 5px rgba(0, 0, 0, 0.05); |
| 455 | border-radius: 2px; |
| 456 | padding: 20px 20px 23px; |
| 457 | margin-top: 28px; |
| 458 | box-sizing: border-box; |
| 459 | margin-bottom: 12px; |
| 460 | display: flex; |
| 461 | } |
| 462 | .cff-support-contact-block .sb-cb-content h3{ |
| 463 | font-size: 24px; |
| 464 | line-height: 29px; |
| 465 | color: #141B38; |
| 466 | margin: 0; |
| 467 | margin-bottom: 16px; |
| 468 | } |
| 469 | .cff-support-contact-block .sb-cb-icon { |
| 470 | margin-right: 30px; |
| 471 | } |
| 472 | .cff-support-contact-block .sb-cb-icon span{ |
| 473 | background: #E8E8EB; |
| 474 | border-radius: 60px; |
| 475 | width: 68px; |
| 476 | height: 68px; |
| 477 | display: inline-block; |
| 478 | text-align: center; |
| 479 | padding-top: 22px; |
| 480 | box-sizing: border-box; |
| 481 | } |
| 482 | .cff-support-contact-block .sb-cb-btn{ |
| 483 | background: #FE544F; |
| 484 | border-radius: 2px; |
| 485 | color: #fff; |
| 486 | text-decoration: none; |
| 487 | display: inline-block; |
| 488 | padding: 8px 12px; |
| 489 | font-size: 14px; |
| 490 | } |
| 491 | .cff-support-contact-block .sb-cb-btn:hover { |
| 492 | background: #EC352F; |
| 493 | border-color: #EC352F; |
| 494 | } |
| 495 | |
| 496 | .cff-support-contact-block .sb-cb-btn:focus, |
| 497 | .cff-support-contact-block .sb-cb-btn:active { |
| 498 | background: #BC120E; |
| 499 | border-color: #BC120E; |
| 500 | outline: none; |
| 501 | box-shadow: none; |
| 502 | } |
| 503 | .cff-support-contact-block .sb-cb-btn span { |
| 504 | margin-left: 11px; |
| 505 | } |
| 506 | .cff-support-contact-block .sb-cb-btn svg { |
| 507 | width: 5px; |
| 508 | } |
| 509 | .cff-support-contact-block .sb-cb-btn path { |
| 510 | fill: #fff; |
| 511 | } |
| 512 | .cff-support-contact-block .sb-contact-block-left{ |
| 513 | flex-basis: 625px; |
| 514 | /* width: 625px; */ |
| 515 | /* float: left; */ |
| 516 | display: flex; |
| 517 | padding-top: 10px; |
| 518 | box-sizing: border-box; |
| 519 | } |
| 520 | .cff-support-contact-block .sb-contact-block-right { |
| 521 | flex-basis: 220px; |
| 522 | /* width: 220px; |
| 523 | float: left; */ |
| 524 | padding-top: 10px; |
| 525 | padding-left: 32px; |
| 526 | box-sizing: border-box; |
| 527 | border-left: 1px solid #DCDDE1; |
| 528 | } |
| 529 | .cff-support-contact-block .sb-contact-block-right p { |
| 530 | font-size: 12px; |
| 531 | line-height: 18px; |
| 532 | color: #141B38; |
| 533 | } |
| 534 | .cff-support-contact-block .sb-contact-block-right img { |
| 535 | max-width: 65px; |
| 536 | } |
| 537 | |
| 538 | /*** 3.4 - SYSTEM INFO BLOCK ***/ |
| 539 | .cff-system-info-section { |
| 540 | background: #FFFFFF; |
| 541 | box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 4px 5px rgba(0, 0, 0, 0.05); |
| 542 | border-radius: 2px; |
| 543 | } |
| 544 | .cff-system-info-section .cff-system-header{ |
| 545 | display: flex; |
| 546 | padding: 12px 20px 0; |
| 547 | justify-content: space-between; |
| 548 | } |
| 549 | .cff-system-info-section .cff-system-header h3 { |
| 550 | font-weight: 600; |
| 551 | font-size: 18px; |
| 552 | line-height: 25px; |
| 553 | color: #141B38; |
| 554 | margin-top: 9px; |
| 555 | } |
| 556 | .cff-system-info-section .cff-system-header .cff-copy-btn { |
| 557 | background: #F3F4F5; |
| 558 | border: 1px solid #DCDDE1; |
| 559 | box-sizing: border-box; |
| 560 | border-radius: 2px; |
| 561 | font-size: 14px; |
| 562 | font-weight: 600; |
| 563 | line-height: 22px; |
| 564 | color: #141B38; |
| 565 | height: 38px; |
| 566 | padding: 5px 20px 5px 12px; |
| 567 | cursor: pointer; |
| 568 | transition: all 0.15s ease-in-out; |
| 569 | } |
| 570 | .cff-system-info-section .cff-system-header .cff-copy-btn:hover { |
| 571 | background: #FFFFFF; |
| 572 | border: 1px solid #D0D1D7; |
| 573 | } |
| 574 | .cff-system-info-section .cff-system-header .cff-copy-btn:focus, |
| 575 | .cff-system-info-section .cff-system-header .cff-copy-btn:active { |
| 576 | background: #E8E8EB; |
| 577 | border: 1px solid #D0D1D7; |
| 578 | } |
| 579 | .cff-system-info-section .cff-system-header .cff-copy-btn svg { |
| 580 | height: 19px; |
| 581 | width: 19px; |
| 582 | transform: translate(0px, 4px); |
| 583 | margin-right: 5px; |
| 584 | } |
| 585 | .cff-system-info-section .cff-system-info { |
| 586 | padding: 0 20px 20px; |
| 587 | border-bottom: 1px solid #E8E8EB; |
| 588 | } |
| 589 | .cff-system-info-section .cff-system-info .system_info:focus { |
| 590 | outline: none; |
| 591 | box-shadow: none; |
| 592 | } |
| 593 | .cff-system-info-section .cff-system-info .system_info a { |
| 594 | color: #0068A0; |
| 595 | } |
| 596 | .cff-system-info-section .cff-system-info .system_info { |
| 597 | box-sizing: border-box; |
| 598 | background: #F9F9FA; |
| 599 | border: 1px solid #E8E8EB; |
| 600 | resize: none; |
| 601 | border-radius: 0; |
| 602 | padding: 20px 28px; |
| 603 | font-size: 12px; |
| 604 | line-height: 18px; |
| 605 | color: #141B38; |
| 606 | width: 100%; |
| 607 | height: 123px; |
| 608 | font-family: 'Fira Code', monospace; |
| 609 | word-break: break-all; |
| 610 | } |
| 611 | .cff-system-info-section .cff-system-info .system_info.expanded { |
| 612 | height: 600px; |
| 613 | overflow-x: hidden; |
| 614 | overflow-y: scroll; |
| 615 | } |
| 616 | .cff-system-info-section .cff-system-info .system_info.collapsed { |
| 617 | overflow: hidden; |
| 618 | } |
| 619 | .cff-system-info-section .cff-system-info .cff-expand-btn { |
| 620 | padding: 8px 12px 8px 8px; |
| 621 | background: #FFFFFF; |
| 622 | border: 1px solid #D0D1D7; |
| 623 | border-radius: 2px; |
| 624 | font-size: 12px; |
| 625 | line-height: 19px; |
| 626 | color: #141B38; |
| 627 | width: 100%; |
| 628 | margin-top: -5px; |
| 629 | z-index: 9; |
| 630 | position: relative; |
| 631 | font-weight: 500; |
| 632 | cursor: pointer; |
| 633 | transition: all .15s ease-in-out; |
| 634 | } |
| 635 | .cff-system-info-section .cff-system-info .cff-expand-btn:hover { |
| 636 | background: #F3F4F5; |
| 637 | border: 1px solid #DCDDE1; |
| 638 | } |
| 639 | .cff-system-info-section .cff-system-info .cff-expand-btn span { |
| 640 | margin-right: 10px; |
| 641 | } |
| 642 | .cff-system-info-section .cff-system-info .cff-expand-btn:focus, |
| 643 | .cff-system-info-section .cff-system-info .cff-expand-btn:active{ |
| 644 | background: #E8E8EB!important; |
| 645 | color: #141B38!important; |
| 646 | border: 1px solid #D0D1D7!important; |
| 647 | } |
| 648 | .cff-export-settings-section { |
| 649 | box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), 0px 4px 5px rgba(0, 0, 0, 0.05); |
| 650 | border-radius: 2px; |
| 651 | padding: 20px; |
| 652 | background: #FFFFFF; |
| 653 | display: flex; |
| 654 | justify-content: space-between; |
| 655 | } |
| 656 | .cff-export-settings-section .cff-export-right{ |
| 657 | display: flex; |
| 658 | } |
| 659 | .cff-export-settings-section .cff-export-left h3, |
| 660 | .cff-tempuser-left h3 { |
| 661 | font-style: normal; |
| 662 | font-weight: 600; |
| 663 | font-size: 18px; |
| 664 | line-height: 25px; |
| 665 | color: #141B38; |
| 666 | margin: 0 0 4px 0; |
| 667 | } |
| 668 | .cff-export-settings-section .cff-export-left p { |
| 669 | font-size: 12px; |
| 670 | line-height: 18px; |
| 671 | color: #141B38; |
| 672 | margin: 0; |
| 673 | } |
| 674 | .cff-export-settings-section .cff-select{ |
| 675 | min-width: 234px; |
| 676 | border: 1px solid #D0D1D7; |
| 677 | padding: 3px 15px; |
| 678 | height: 38px; |
| 679 | font-size: 14px; |
| 680 | color: #141B38; |
| 681 | -webkit-appearance: none; |
| 682 | appearance: none; |
| 683 | margin-right: 8px; |
| 684 | background: #fff url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAYAAAB8ZH1oAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABSSURBVHgBfc4hCkAhDAbgjV3slQcvvHuYDWY1G8zewyIWb6YuCCLqD4Pt5wtD54NBQA2XVKiWcorl/X7s+DkhJYUhPk54IN5plCue0Tb8M8/aNx/uIpRVqbbFAAAAAElFTkSuQmCC') no-repeat right 15px top 55%; |
| 685 | } |
| 686 | .cff-export-settings-section .cff-btn { |
| 687 | height: 38px; |
| 688 | font-size: 14px; |
| 689 | padding: 7px 20px 7px 16px; |
| 690 | display: flex; |
| 691 | align-items: center; |
| 692 | vertical-align: middle; |
| 693 | background: #F3F4F5; |
| 694 | border: 1px solid #DCDDE1; |
| 695 | border-radius: 2px; |
| 696 | font-weight: 500; |
| 697 | transition: all .15s ease-in-out; |
| 698 | cursor: pointer; |
| 699 | } |
| 700 | .cff-export-settings-section .cff-btn:disabled { |
| 701 | cursor: not-allowed; |
| 702 | color: #8C8F9A; |
| 703 | background: #F3F4F5; |
| 704 | } |
| 705 | .cff-export-settings-section .cff-btn:disabled:hover { |
| 706 | color: #8C8F9A; |
| 707 | } |
| 708 | .cff-export-settings-section .cff-btn span { |
| 709 | margin-right: 11px; |
| 710 | transform: translate(0px, 2px); |
| 711 | } |
| 712 | .cff-export-settings-section .cff-btn:disabled span path { |
| 713 | fill: #8C8F9A; |
| 714 | } |
| 715 | .cff-support-contact-block {} |
| 716 | |
| 717 | |
| 718 | /*** SB NOTIFICATION ELEMENT ***/ |
| 719 | .sb-notification-ctn{ |
| 720 | position: fixed; |
| 721 | bottom: -100px; |
| 722 | left: 200px; |
| 723 | z-index: 99999; |
| 724 | background: #fff; |
| 725 | display: flex; |
| 726 | justify-content: center; |
| 727 | align-items: center; |
| 728 | border-left: 3px solid #fff; |
| 729 | line-height: 1em; |
| 730 | padding: 10px 20px; |
| 731 | padding-left: 0px; |
| 732 | border-radius: 4px; |
| 733 | box-shadow: 0px 26.7377px 77.2886px rgba(0, 0, 0, 0.107828), 0px 14.2952px 41.3222px rgba(0, 0, 0, 0.0894161), 0px 8.01379px 23.1649px rgba(0, 0, 0, 0.075), 0px 4.25607px 12.3027px rgba(0, 0, 0, 0.0605839), 0px 1.77104px 5.11942px rgba(0, 0, 0, 0.0421718); |
| 734 | |
| 735 | } |
| 736 | .sb-notification-ctn[data-active="hidden"]{ |
| 737 | -webkit-animation: cff-notification-hide .5s forwards linear; |
| 738 | animation: cff-notification-hide .5s forwards linear; |
| 739 | } |
| 740 | .sb-notification-ctn[data-active="shown"]{ |
| 741 | -webkit-animation: cff-notification-show .5s forwards linear; |
| 742 | animation: cff-notification-show .5s forwards linear; |
| 743 | } |
| 744 | @-webkit-keyframes cff-notification-show { 0%{bottom: -100px;} 50%{bottom: 70px;} 70%{bottom: 60px;} 85%{bottom: 65px;} 100%{bottom: 50px;}} |
| 745 | @keyframes cff-notification-show { 0%{bottom: -100px;} 50%{bottom: 70px;} 70%{bottom: 60px;} 85%{bottom: 65px;} 100%{bottom: 50px;}} |
| 746 | |
| 747 | @-webkit-keyframes cff-notification-hide {0%{bottom: 50px;}55%{bottom: 65px;}70%{bottom: 60px;}85%{bottom: 70px;}100%{bottom: -100px;}} |
| 748 | @keyframes cff-notification-hide {0%{bottom: 50px;}55%{bottom: 65px;}70%{bottom: 60px;}85%{bottom: 70px;}100%{bottom: -100px;}} |
| 749 | |
| 750 | .sb-notification-ctn[data-type="success"]{ |
| 751 | border-color: #59AB46; |
| 752 | } |
| 753 | .sb-notification-ctn[data-type="error"]{ |
| 754 | border-color: #D72C2C; |
| 755 | } |
| 756 | .sb-notification-ctn[data-type="message"]{ |
| 757 | border-color: #141B38; |
| 758 | } |
| 759 | .sb-notification-icon{ |
| 760 | width: 25px; |
| 761 | height: 25px; |
| 762 | display: flex; |
| 763 | justify-content: center; |
| 764 | align-items: center; |
| 765 | margin-left: 10px; |
| 766 | margin-right: 15px; |
| 767 | } |
| 768 | .sb-notification-icon svg{ |
| 769 | width: 22px; |
| 770 | height: 22px; |
| 771 | float: left; |
| 772 | fill: currentColor; |
| 773 | } |
| 774 | |
| 775 | .sb-notification-ctn[data-type="success"] .sb-notification-icon{ |
| 776 | color: #59AB46; |
| 777 | } |
| 778 | .sb-notification-ctn[data-type="error"] .sb-notification-icon{ |
| 779 | color: #D72C2C; |
| 780 | } |
| 781 | .sb-notification-ctn[data-type="message"] .sb-notification-icon{ |
| 782 | color: #141B38; |
| 783 | } |
| 784 | |
| 785 | .sb-notification-ctn span{ |
| 786 | font-size: 14px; |
| 787 | color: #141B38; |
| 788 | font-weight:500; |
| 789 | } |
| 790 | |
| 791 | /*** 6.0 - RESPONSIVENESS ***/ |
| 792 | @media (max-width: 1024px) { |
| 793 | .cff-support-contact-block { |
| 794 | flex-direction: column; |
| 795 | } |
| 796 | .cff-support-contact-block .sb-contact-block-left, |
| 797 | .cff-support-contact-block .sb-contact-block-right { |
| 798 | flex-basis: auto; |
| 799 | } |
| 800 | .cff-support-contact-block .sb-contact-block-right { |
| 801 | padding-top: 42px; |
| 802 | padding-left: 0; |
| 803 | border-left: 0px solid #DCDDE1; |
| 804 | position: relative; |
| 805 | } |
| 806 | |
| 807 | .cff-support-contact-block .sb-contact-block-right:before { |
| 808 | top: 25px; |
| 809 | left: 0; |
| 810 | width: 65px; |
| 811 | height: 1px; |
| 812 | background: #DCDDE1; |
| 813 | position: absolute; |
| 814 | content: ''; |
| 815 | } |
| 816 | } |
| 817 | @media (max-width: 767px) { |
| 818 | .cff-support-blocks { |
| 819 | flex-direction: column; |
| 820 | } |
| 821 | .cff-support-blocks .cff-support-block { |
| 822 | width: 100%; |
| 823 | margin-bottom: 12px; |
| 824 | } |
| 825 | .auto-fold #wpcontent { |
| 826 | padding-left: 0; |
| 827 | } |
| 828 | .cff-fb-full-wrapper { |
| 829 | padding: 70px 20px 0 20px; |
| 830 | } |
| 831 | .cff-fb-hd-btn { |
| 832 | padding: 0px 15px 0px 7px; |
| 833 | } |
| 834 | .cff-fb-header { |
| 835 | padding: 0px 20px; |
| 836 | } |
| 837 | .cff-section-header, |
| 838 | .cff-export-settings-section { |
| 839 | flex-wrap: wrap; |
| 840 | } |
| 841 | .cff-section-header h2 { |
| 842 | margin-bottom: 30px; |
| 843 | } |
| 844 | .cff-section-header .cff-search-doc { |
| 845 | width: 100%; |
| 846 | } |
| 847 | .cff-export-settings-section .cff-export-left, |
| 848 | .cff-export-settings-section .cff-export-right{ |
| 849 | width: 100%; |
| 850 | } |
| 851 | .cff-export-settings-section .cff-export-left { |
| 852 | margin-bottom: 20px; |
| 853 | } |
| 854 | .cff-export-settings-section .cff-export-right { |
| 855 | flex-wrap: wrap; |
| 856 | } |
| 857 | .cff-export-settings-section .cff-select { |
| 858 | width: 100%; |
| 859 | margin-bottom: 10px; |
| 860 | } |
| 861 | .sb-notification-ctn { |
| 862 | left: 20px; |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | @media (max-width: 580px) { |
| 867 | .cff-support-contact-block .sb-contact-block-left { |
| 868 | flex-wrap: wrap; |
| 869 | } |
| 870 | .cff-support-contact-block .sb-contact-block-left .sb-cb-content { |
| 871 | margin-top: 20px; |
| 872 | } |
| 873 | } |
| 874 | |
| 875 | @media (max-width: 480px) { |
| 876 | .cff-fb-hd-btn { |
| 877 | padding: 0px 10px 0px 7px !important; |
| 878 | } |
| 879 | .cff-fb-hd-btn[data-icon="left"] { |
| 880 | padding-right: 10px!important; |
| 881 | } |
| 882 | } |
| 883 | |
| 884 | .cff-tempuser-settings-section { |
| 885 | display: grid; |
| 886 | grid-template-columns: 55% 45%; |
| 887 | } |
| 888 | |
| 889 | .cff-templogin-settings-section { |
| 890 | display: block; |
| 891 | } |
| 892 | |
| 893 | .cff-tempuser-left { |
| 894 | display: grid; |
| 895 | grid-template-columns: 85%; |
| 896 | } |
| 897 | |
| 898 | .cff-tempuser-settings-section:not(.cff-templogin-settings-section) .sb-btn { |
| 899 | padding: 12px 16px; |
| 900 | padding-top: 10px; |
| 901 | } |
| 902 | |
| 903 | .cff-tempuser-right { |
| 904 | display: flex; |
| 905 | justify-content: flex-end; |
| 906 | align-items: center; |
| 907 | column-gap: 10px; |
| 908 | } |
| 909 | |
| 910 | .cff-tempuser-list { |
| 911 | width: 100%; |
| 912 | border-collapse: collapse; |
| 913 | } |
| 914 | |
| 915 | .cff-tempuser-list tr:first-of-type { |
| 916 | border-bottom: 1px solid #E6E6EB; |
| 917 | background: linear-gradient(0deg, #F9F9FA, #F9F9FA), |
| 918 | linear-gradient(0deg, #E6E6EB, #E6E6EB); |
| 919 | color: #696D80; |
| 920 | } |
| 921 | |
| 922 | .cff-tempuser-list tr { |
| 923 | text-align: left; |
| 924 | } |
| 925 | |
| 926 | .cff-tempuser-list tr th { |
| 927 | padding: 5px 10px; |
| 928 | border-bottom: 1px solid #E6E6EB; |
| 929 | } |
| 930 | |
| 931 | .cff-tempuser-list tr td { |
| 932 | padding: 15px 10px; |
| 933 | } |
| 934 | |
| 935 | .sb-tempuser-btns { |
| 936 | display: flex; |
| 937 | justify-content: flex-end; |
| 938 | column-gap: 10px; |
| 939 | } |
| 940 | |
| 941 | .cff-tempuser-list .sb-tempuser-link { |
| 942 | font-size: 11px; |
| 943 | max-width: 396px; |
| 944 | white-space: nowrap; |
| 945 | overflow: hidden; |
| 946 | text-overflow: ellipsis; |
| 947 | display: block; |
| 948 | } |
| 949 | |
| 950 | .cff-tempuser-list .sb-tempuser-expires { |
| 951 | color: green; |
| 952 | font-weight: 600; |
| 953 | } |
| 954 | |
| 955 | .cff-fb-tempuser-icon-ctn { |
| 956 | display: flex; |
| 957 | align-items: center; |
| 958 | justify-content: center; |
| 959 | padding: 60px 40px; |
| 960 | background: #BFE8FF; |
| 961 | } |
| 962 | |
| 963 | .cff-fb-tempuser-icon { |
| 964 | display: flex; |
| 965 | width: 80px; |
| 966 | height: 80px; |
| 967 | background-color: #fff; |
| 968 | align-items: center; |
| 969 | justify-content: center; |
| 970 | box-shadow: 0px 4px 5px 0px #0000000D, |
| 971 | 0px 1px 2px 0px #0000000D; |
| 972 | border-radius: 50px; |
| 973 | } |
| 974 | |
| 975 | .cff-fb-tempuser-icon svg { |
| 976 | float: left; |
| 977 | } |
| 978 | |
| 979 | .cff-fb-tempuser-content-item { |
| 980 | padding: 20px 25px; |
| 981 | display: flex; |
| 982 | align-items: flex-start; |
| 983 | column-gap: 10px; |
| 984 | } |
| 985 | |
| 986 | .cff-fb-tempuser-item-num { |
| 987 | width: 28px; |
| 988 | height: 28px; |
| 989 | font-weight: 600; |
| 990 | color: #141B38; |
| 991 | background: #F3F4F5; |
| 992 | border-radius: 24px; |
| 993 | display: flex; |
| 994 | justify-content: center; |
| 995 | align-items: center; |
| 996 | flex-grow: 0; |
| 997 | flex-shrink: 0; |
| 998 | } |
| 999 | |
| 1000 | .cff-fb-tempuser-item-text strong { |
| 1001 | margin-top: 2px; |
| 1002 | } |
| 1003 | |
| 1004 | .cff-fb-tempuser-item-text p { |
| 1005 | margin: 0.1em 0; |
| 1006 | } |
| 1007 | |
| 1008 | .cff-fb-tempuser-footer-btn { |
| 1009 | display: flex; |
| 1010 | justify-content: flex-end; |
| 1011 | padding: 25px; |
| 1012 | border-top: 1px solid #eee; |
| 1013 | } |
| 1014 | |
| 1015 | .cff-fb-source-popup.cff-fb-tempuser-popup h3 { |
| 1016 | font-size: 21px; |
| 1017 | margin: 10px; |
| 1018 | } |
| 1019 | |
| 1020 | |
| 1021 | .cff-fb-popup-inside.cff-narrower-modal { |
| 1022 | max-width: 576px; |
| 1023 | } |
| 1024 | |
| 1025 | .cff-fb-source-popup.cff-fb-tempuser-popup { |
| 1026 | background-color: #fff; |
| 1027 | } |
| 1028 | |
| 1029 | .cff-fb-tempuser-footer-btn .sb-btn { |
| 1030 | padding: 10px 16px; |
| 1031 | } |