style.css
4893 lines
| 1 | /* @import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"); */ |
| 2 | |
| 3 | @font-face { |
| 4 | font-family: 'DMSans-Regular'; |
| 5 | src: url('./fonts/DMSans-Regular.svg#DMSans-Regular') format('svg'), |
| 6 | url('./fonts/DMSans-Regular.ttf') format('truetype'), |
| 7 | url('./fonts/DMSans-Regular.woff') format('woff'); |
| 8 | font-weight: normal; |
| 9 | font-style: normal; |
| 10 | } |
| 11 | |
| 12 | @font-face { |
| 13 | font-family: 'DMSans'; |
| 14 | src: url('./fonts/DMSans.eot'); |
| 15 | src: url('./fonts/DMSans.eot?#iefix') format('embedded-opentype'), |
| 16 | url('./fonts/DMSans.woff2') format('woff2'); |
| 17 | font-weight: normal; |
| 18 | font-style: normal; |
| 19 | } |
| 20 | |
| 21 | :root { |
| 22 | --base-gutter: 30px; |
| 23 | --md-gutter: 50px; |
| 24 | --lg-gutter: 70px; |
| 25 | --xl-gutter: 100px; |
| 26 | --base-spacer-x: 16px; |
| 27 | --base-spacer-y: 16px; |
| 28 | --b-radius-6: 25px; |
| 29 | --calendly-event-color: #3664ae; |
| 30 | --pro-upgrade-margin-bottom: 20px; |
| 31 | } |
| 32 | |
| 33 | @media (max-width: 1600px) { |
| 34 | :root { |
| 35 | --base-gutter: 20px; |
| 36 | --md-gutter: 30px; |
| 37 | --lg-gutter: 50px; |
| 38 | --xl-gutter: 70px; |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | @media (max-width: 1399px) { |
| 43 | :root { |
| 44 | --base-gutter: 20px; |
| 45 | --md-gutter: 30px; |
| 46 | --lg-gutter: 40px; |
| 47 | --xl-gutter: 50px; |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | @media (max-width: 1199px) { |
| 52 | :root { |
| 53 | --base-spacer-x: 10px; |
| 54 | --base-spacer-y: 10px; |
| 55 | --md-gutter: 20px; |
| 56 | --lg-gutter: 30px; |
| 57 | --xl-gutter: 40px; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | @media (max-width: 991px) { |
| 62 | :root { |
| 63 | --base-spacer-x: 5px; |
| 64 | --base-spacer-y: 5px; |
| 65 | --md-gutter: 20px; |
| 66 | --lg-gutter: 30px; |
| 67 | --xl-gutter: 40px; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | ::-moz-selection { |
| 72 | color: #ffffff; |
| 73 | background: rgba(91, 78, 150, 0.6); |
| 74 | } |
| 75 | |
| 76 | ::selection { |
| 77 | color: #ffffff; |
| 78 | background: rgba(91, 78, 150, 0.6); |
| 79 | } |
| 80 | |
| 81 | .template__wrapper { |
| 82 | /* font-family: "DM Sans", sans-serif; */ |
| 83 | font-family: 'DMSans'; |
| 84 | line-height: 1.7; |
| 85 | font-weight: 400; |
| 86 | min-height: 100vh; |
| 87 | background: #ffffff; |
| 88 | color: #000000; |
| 89 | -webkit-font-smoothing: antialiased; |
| 90 | -moz-font-smoothing: antialiased; |
| 91 | -ms-font-smoothing: antialiased; |
| 92 | -o-font-smoothing: antialiased; |
| 93 | font-smoothing: antialiased; |
| 94 | -webkit-text-rendering: optimizeLegibility; |
| 95 | -moz-text-rendering: optimizeLegibility; |
| 96 | -ms-text-rendering: optimizeLegibility; |
| 97 | -o-text-rendering: optimizeLegibility; |
| 98 | text-rendering: optimizeLegibility; |
| 99 | -webkit-scroll-behavior: smooth; |
| 100 | -moz-scroll-behavior: smooth; |
| 101 | -ms-scroll-behavior: smooth; |
| 102 | -o-scroll-behavior: smooth; |
| 103 | scroll-behavior: smooth; |
| 104 | font-size: 16px; |
| 105 | } |
| 106 | |
| 107 | @media (max-width: 1399px) { |
| 108 | .template__wrapper { |
| 109 | font-size: 14px; |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | @media (max-width: 991px) { |
| 114 | .template__wrapper { |
| 115 | font-size: 13px; |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | .template__wrapper * { |
| 120 | margin: 0; |
| 121 | padding: 0; |
| 122 | outline: none; |
| 123 | border: none; |
| 124 | -webkit-box-sizing: border-box; |
| 125 | box-sizing: border-box; |
| 126 | } |
| 127 | |
| 128 | .template__wrapper a { |
| 129 | color: inherit; |
| 130 | -webkit-transition: all 0.3s ease; |
| 131 | transition: all 0.3s ease; |
| 132 | text-decoration: none; |
| 133 | display: inline-block; |
| 134 | } |
| 135 | |
| 136 | .template__wrapper a:focus { |
| 137 | outline: none; |
| 138 | -webkit-box-shadow: none; |
| 139 | box-shadow: none; |
| 140 | } |
| 141 | |
| 142 | .template__wrapper label { |
| 143 | margin-bottom: 0; |
| 144 | } |
| 145 | |
| 146 | .template__wrapper h1, |
| 147 | .template__wrapper h2, |
| 148 | .template__wrapper h3, |
| 149 | .template__wrapper h4, |
| 150 | .template__wrapper h5, |
| 151 | .template__wrapper h6, |
| 152 | .template__wrapper p { |
| 153 | margin: 0; |
| 154 | padding: 0; |
| 155 | } |
| 156 | |
| 157 | .template__wrapper h1, |
| 158 | .template__wrapper h2, |
| 159 | .template__wrapper h3, |
| 160 | .template__wrapper h4, |
| 161 | .template__wrapper h5, |
| 162 | .template__wrapper h6 { |
| 163 | /* font-family: "DM Sans", sans-serif; */ |
| 164 | font-family: 'DMSans'; |
| 165 | font-weight: 700; |
| 166 | line-height: 1.3; |
| 167 | } |
| 168 | |
| 169 | .template__wrapper ul, |
| 170 | .template__wrapper ol { |
| 171 | padding: 0; |
| 172 | margin: 0; |
| 173 | list-style: none; |
| 174 | } |
| 175 | |
| 176 | .template__wrapper img, |
| 177 | .template__wrapper video { |
| 178 | max-width: 100%; |
| 179 | } |
| 180 | |
| 181 | .m50 { |
| 182 | margin: 50px; |
| 183 | } |
| 184 | |
| 185 | .p50 { |
| 186 | padding: 50px; |
| 187 | } |
| 188 | |
| 189 | .mt50 { |
| 190 | margin-top: 50px; |
| 191 | } |
| 192 | |
| 193 | .pt50 { |
| 194 | padding-top: 50px; |
| 195 | } |
| 196 | |
| 197 | .mb50 { |
| 198 | margin-bottom: 50px; |
| 199 | } |
| 200 | |
| 201 | .pb50 { |
| 202 | padding-bottom: 50px; |
| 203 | } |
| 204 | |
| 205 | .ml50 { |
| 206 | margin-left: 50px; |
| 207 | } |
| 208 | |
| 209 | .pl50 { |
| 210 | padding-left: 50px; |
| 211 | } |
| 212 | |
| 213 | .mr50 { |
| 214 | margin-right: 50px; |
| 215 | } |
| 216 | |
| 217 | .pr50 { |
| 218 | padding-right: 50px; |
| 219 | } |
| 220 | |
| 221 | .m40 { |
| 222 | margin: 40px; |
| 223 | } |
| 224 | |
| 225 | .p-24 { |
| 226 | padding: 24px; |
| 227 | } |
| 228 | |
| 229 | .p-32 { |
| 230 | padding: 32px; |
| 231 | } |
| 232 | |
| 233 | .p40 { |
| 234 | padding: 40px; |
| 235 | } |
| 236 | |
| 237 | .mt40 { |
| 238 | margin-top: 40px; |
| 239 | } |
| 240 | |
| 241 | .pt40 { |
| 242 | padding-top: 40px; |
| 243 | } |
| 244 | |
| 245 | .mb40 { |
| 246 | margin-bottom: 40px; |
| 247 | } |
| 248 | |
| 249 | .pb40 { |
| 250 | padding-bottom: 40px; |
| 251 | } |
| 252 | |
| 253 | .ml40 { |
| 254 | margin-left: 40px; |
| 255 | } |
| 256 | |
| 257 | .pl40 { |
| 258 | padding-left: 40px; |
| 259 | } |
| 260 | |
| 261 | .mr40 { |
| 262 | margin-right: 40px; |
| 263 | } |
| 264 | |
| 265 | .pr40 { |
| 266 | padding-right: 40px; |
| 267 | } |
| 268 | |
| 269 | .m30 { |
| 270 | margin: 30px; |
| 271 | } |
| 272 | |
| 273 | .p30 { |
| 274 | padding: 30px; |
| 275 | } |
| 276 | |
| 277 | .mt30 { |
| 278 | margin-top: 30px; |
| 279 | } |
| 280 | |
| 281 | .pt30 { |
| 282 | padding-top: 30px; |
| 283 | } |
| 284 | |
| 285 | .mb-20 { |
| 286 | margin-bottom: 20px; |
| 287 | } |
| 288 | |
| 289 | .mb30 { |
| 290 | margin-bottom: 30px; |
| 291 | } |
| 292 | |
| 293 | .pb30 { |
| 294 | padding-bottom: 30px; |
| 295 | } |
| 296 | |
| 297 | .ml30 { |
| 298 | margin-left: 30px; |
| 299 | } |
| 300 | |
| 301 | .pl30 { |
| 302 | padding-left: 30px; |
| 303 | } |
| 304 | |
| 305 | .mr30 { |
| 306 | margin-right: 30px; |
| 307 | } |
| 308 | |
| 309 | .pr30 { |
| 310 | padding-right: 30px; |
| 311 | } |
| 312 | |
| 313 | .m10 { |
| 314 | margin: 10px; |
| 315 | } |
| 316 | |
| 317 | .p10 { |
| 318 | padding: 10px; |
| 319 | } |
| 320 | |
| 321 | .mt10 { |
| 322 | margin-top: 10px; |
| 323 | } |
| 324 | |
| 325 | .pt10 { |
| 326 | padding-top: 10px; |
| 327 | } |
| 328 | |
| 329 | .mb10 { |
| 330 | margin-bottom: 10px; |
| 331 | } |
| 332 | |
| 333 | .pb10 { |
| 334 | padding-bottom: 10px; |
| 335 | } |
| 336 | |
| 337 | .ml10 { |
| 338 | margin-left: 10px; |
| 339 | } |
| 340 | |
| 341 | .pl10 { |
| 342 | padding-left: 10px; |
| 343 | } |
| 344 | |
| 345 | .mr10 { |
| 346 | margin-right: 10px; |
| 347 | } |
| 348 | |
| 349 | .pr10 { |
| 350 | padding-right: 10px; |
| 351 | } |
| 352 | |
| 353 | .m5 { |
| 354 | margin: 5px; |
| 355 | } |
| 356 | |
| 357 | .p5 { |
| 358 | padding: 5px; |
| 359 | } |
| 360 | |
| 361 | .mt5 { |
| 362 | margin-top: 5px; |
| 363 | } |
| 364 | |
| 365 | .pt5 { |
| 366 | padding-top: 5px; |
| 367 | } |
| 368 | |
| 369 | .mb5 { |
| 370 | margin-bottom: 5px; |
| 371 | } |
| 372 | |
| 373 | .pb5 { |
| 374 | padding-bottom: 5px; |
| 375 | } |
| 376 | |
| 377 | .ml5 { |
| 378 | margin-left: 5px; |
| 379 | } |
| 380 | |
| 381 | .pl5 { |
| 382 | padding-left: 5px; |
| 383 | } |
| 384 | |
| 385 | .mr5 { |
| 386 | margin-right: 5px; |
| 387 | } |
| 388 | |
| 389 | .pr5 { |
| 390 | padding-right: 5px; |
| 391 | } |
| 392 | |
| 393 | .embedpress-tab .nav__menu ul .nav__item, .template__wrapper label, .iframe__size__control__form .form__group .frame__unit, .iframe__size__control__wrap h3, .embedpress__settings__form .form__group .form__label, .embedpress__settings__form .form__group .form__control__wrap p, .upgrade__card .card__content h4, .upgrade__card .card__content p, .upgrage__card__tab__style h3, .upgrage__card__tab__style p, .embedpress-license__details .license__content .thumb__area h2, .embedpress-license__details .license__content p, .embedpress-license__details .license__content ol li, .embedpress-card h3, .embedpress-card p, .element__item h5, .element__item .pro__item, .embedpress--elements__wrap h3 { |
| 394 | /* font-family: "DM Sans", sans-serif; */ |
| 395 | font-family: 'DMSans'; |
| 396 | } |
| 397 | |
| 398 | .color__themeColor { |
| 399 | color: #5B4E96; |
| 400 | } |
| 401 | |
| 402 | a.color__themeColor:hover, a.color__themeColor:focus { |
| 403 | color: #473d74; |
| 404 | -webkit-box-shadow: none; |
| 405 | box-shadow: none; |
| 406 | } |
| 407 | |
| 408 | .color__primary { |
| 409 | color: #00CC76; |
| 410 | } |
| 411 | |
| 412 | a.color__primary:hover, a.color__primary:focus { |
| 413 | color: #009959; |
| 414 | -webkit-box-shadow: none; |
| 415 | box-shadow: none; |
| 416 | } |
| 417 | |
| 418 | .color__danger { |
| 419 | color: #FE504F; |
| 420 | } |
| 421 | |
| 422 | a.color__danger:hover, a.color__danger:focus { |
| 423 | color: #fe1e1c; |
| 424 | -webkit-box-shadow: none; |
| 425 | box-shadow: none; |
| 426 | } |
| 427 | |
| 428 | .color__warning { |
| 429 | color: #FFA53C; |
| 430 | } |
| 431 | |
| 432 | a.color__warning:hover, a.color__warning:focus { |
| 433 | color: #ff8d09; |
| 434 | -webkit-box-shadow: none; |
| 435 | box-shadow: none; |
| 436 | } |
| 437 | |
| 438 | .color__white { |
| 439 | color: #ffffff; |
| 440 | } |
| 441 | |
| 442 | a.color__white:hover, a.color__white:focus { |
| 443 | color: #e6e6e6; |
| 444 | -webkit-box-shadow: none; |
| 445 | box-shadow: none; |
| 446 | } |
| 447 | |
| 448 | .color__dark { |
| 449 | color: #222222; |
| 450 | } |
| 451 | |
| 452 | a.color__dark:hover, a.color__dark:focus { |
| 453 | color: #090909; |
| 454 | -webkit-box-shadow: none; |
| 455 | box-shadow: none; |
| 456 | } |
| 457 | |
| 458 | .color__grey { |
| 459 | color: #7C8DB5; |
| 460 | } |
| 461 | |
| 462 | a.color__grey:hover, a.color__grey:focus { |
| 463 | color: #5c71a2; |
| 464 | -webkit-box-shadow: none; |
| 465 | box-shadow: none; |
| 466 | } |
| 467 | |
| 468 | .color__liteGrey { |
| 469 | color: #F5F7FD; |
| 470 | } |
| 471 | |
| 472 | a.color__liteGrey:hover, a.color__liteGrey:focus { |
| 473 | color: #cbd5f5; |
| 474 | -webkit-box-shadow: none; |
| 475 | box-shadow: none; |
| 476 | } |
| 477 | |
| 478 | .color__black { |
| 479 | color: #000000; |
| 480 | } |
| 481 | |
| 482 | .color__twitter { |
| 483 | color: #1da1f2; |
| 484 | } |
| 485 | |
| 486 | a.color__twitter:hover, a.color__twitter:focus { |
| 487 | color: #0c85d0; |
| 488 | -webkit-box-shadow: none; |
| 489 | box-shadow: none; |
| 490 | } |
| 491 | |
| 492 | .color__linkedin { |
| 493 | color: #0077b5; |
| 494 | } |
| 495 | |
| 496 | a.color__linkedin:hover, a.color__linkedin:focus { |
| 497 | color: #005582; |
| 498 | -webkit-box-shadow: none; |
| 499 | box-shadow: none; |
| 500 | } |
| 501 | |
| 502 | .color__instagram { |
| 503 | color: #e1306c; |
| 504 | } |
| 505 | |
| 506 | a.color__instagram:hover, a.color__instagram:focus { |
| 507 | color: #c21c54; |
| 508 | -webkit-box-shadow: none; |
| 509 | box-shadow: none; |
| 510 | } |
| 511 | |
| 512 | .background__themeColor { |
| 513 | background-color: #5B4E96; |
| 514 | } |
| 515 | |
| 516 | .background__primary { |
| 517 | background-color: #00CC76; |
| 518 | } |
| 519 | |
| 520 | .background__danger { |
| 521 | background-color: #FE504F; |
| 522 | } |
| 523 | |
| 524 | .background__warning { |
| 525 | background-color: #FFA53C; |
| 526 | } |
| 527 | |
| 528 | .background__white { |
| 529 | background-color: #ffffff; |
| 530 | overflow-x: hidden; |
| 531 | } |
| 532 | |
| 533 | .background__dark { |
| 534 | background-color: #222222; |
| 535 | } |
| 536 | |
| 537 | .background__grey { |
| 538 | background-color: #7C8DB5; |
| 539 | } |
| 540 | |
| 541 | .background__liteGrey { |
| 542 | background-color: #F5F7FD; |
| 543 | } |
| 544 | |
| 545 | .background__black { |
| 546 | background-color: #000000; |
| 547 | } |
| 548 | |
| 549 | .background__twitter { |
| 550 | background-color: #1da1f2; |
| 551 | } |
| 552 | |
| 553 | .background__linkedin { |
| 554 | background-color: #0077b5; |
| 555 | } |
| 556 | |
| 557 | .background__instagram { |
| 558 | background-color: #e1306c; |
| 559 | } |
| 560 | |
| 561 | .gradient__themeColor { |
| 562 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 78, 150, 0.3)), to(rgba(91, 78, 150, 0.05))); |
| 563 | background-image: linear-gradient(180deg, rgba(91, 78, 150, 0.3), rgba(91, 78, 150, 0.05)); |
| 564 | color: #5B4E96; |
| 565 | } |
| 566 | |
| 567 | .gradient__primary { |
| 568 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 204, 118, 0.3)), to(rgba(0, 204, 118, 0.05))); |
| 569 | background-image: linear-gradient(180deg, rgba(0, 204, 118, 0.3), rgba(0, 204, 118, 0.05)); |
| 570 | color: #00CC76; |
| 571 | } |
| 572 | |
| 573 | .gradient__danger { |
| 574 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(254, 80, 79, 0.3)), to(rgba(254, 80, 79, 0.05))); |
| 575 | background-image: linear-gradient(180deg, rgba(254, 80, 79, 0.3), rgba(254, 80, 79, 0.05)); |
| 576 | color: #FE504F; |
| 577 | } |
| 578 | |
| 579 | .gradient__warning { |
| 580 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 165, 60, 0.3)), to(rgba(255, 165, 60, 0.05))); |
| 581 | background-image: linear-gradient(180deg, rgba(255, 165, 60, 0.3), rgba(255, 165, 60, 0.05)); |
| 582 | color: #FFA53C; |
| 583 | } |
| 584 | |
| 585 | .gradient__white { |
| 586 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.05))); |
| 587 | background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05)); |
| 588 | color: #ffffff; |
| 589 | } |
| 590 | |
| 591 | .gradient__dark { |
| 592 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 34, 34, 0.3)), to(rgba(34, 34, 34, 0.05))); |
| 593 | background-image: linear-gradient(180deg, rgba(34, 34, 34, 0.3), rgba(34, 34, 34, 0.05)); |
| 594 | color: #222222; |
| 595 | } |
| 596 | |
| 597 | .gradient__grey { |
| 598 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(124, 141, 181, 0.3)), to(rgba(124, 141, 181, 0.05))); |
| 599 | background-image: linear-gradient(180deg, rgba(124, 141, 181, 0.3), rgba(124, 141, 181, 0.05)); |
| 600 | color: #7C8DB5; |
| 601 | } |
| 602 | |
| 603 | .gradient__liteGrey { |
| 604 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 247, 253, 0.3)), to(rgba(245, 247, 253, 0.05))); |
| 605 | background-image: linear-gradient(180deg, rgba(245, 247, 253, 0.3), rgba(245, 247, 253, 0.05)); |
| 606 | color: #F5F7FD; |
| 607 | } |
| 608 | |
| 609 | .gradient__black { |
| 610 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.05))); |
| 611 | background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05)); |
| 612 | color: #000000; |
| 613 | } |
| 614 | |
| 615 | .gradient__twitter { |
| 616 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 161, 242, 0.3)), to(rgba(29, 161, 242, 0.05))); |
| 617 | background-image: linear-gradient(180deg, rgba(29, 161, 242, 0.3), rgba(29, 161, 242, 0.05)); |
| 618 | color: #1da1f2; |
| 619 | } |
| 620 | |
| 621 | .gradient__linkedin { |
| 622 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 119, 181, 0.3)), to(rgba(0, 119, 181, 0.05))); |
| 623 | background-image: linear-gradient(180deg, rgba(0, 119, 181, 0.3), rgba(0, 119, 181, 0.05)); |
| 624 | color: #0077b5; |
| 625 | } |
| 626 | |
| 627 | .gradient__instagram { |
| 628 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(225, 48, 108, 0.3)), to(rgba(225, 48, 108, 0.05))); |
| 629 | background-image: linear-gradient(180deg, rgba(225, 48, 108, 0.3), rgba(225, 48, 108, 0.05)); |
| 630 | color: #e1306c; |
| 631 | } |
| 632 | |
| 633 | .button__themeColor:not(.hover__highlight) { |
| 634 | background: #5B4E96; |
| 635 | color: white; |
| 636 | border-color: #5B4E96; |
| 637 | -webkit-transition-property: background, color, box-shadow, border; |
| 638 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 639 | transition-property: background, color, border, -webkit-box-shadow; |
| 640 | transition-property: background, color, box-shadow, border; |
| 641 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 642 | } |
| 643 | |
| 644 | .button__themeColor:not(.hover__highlight):disabled { |
| 645 | cursor: not-allowed; |
| 646 | background: #FE504F; |
| 647 | border-color: #FE504F; |
| 648 | } |
| 649 | |
| 650 | .button__themeColor:not(.hover__highlight) .icon { |
| 651 | color: #5B4E96; |
| 652 | background: white; |
| 653 | } |
| 654 | |
| 655 | .button__themeColor.hover__highlight { |
| 656 | color: #5B4E96; |
| 657 | border-color: transparent; |
| 658 | background: rgba(91, 78, 150, 0.1); |
| 659 | } |
| 660 | |
| 661 | .button__themeColor.hover__highlight .icon { |
| 662 | background: #00CC76; |
| 663 | color: #ffffff; |
| 664 | } |
| 665 | |
| 666 | .button__themeColor.hover__highlight:hover { |
| 667 | border-color: transparent; |
| 668 | } |
| 669 | |
| 670 | .button__themeColor.button__shadow { |
| 671 | -webkit-box-shadow: 0 10px 10px rgba(91, 78, 150, 0.2); |
| 672 | box-shadow: 0 10px 10px rgba(91, 78, 150, 0.2); |
| 673 | } |
| 674 | |
| 675 | a.button__themeColor.active, a.button__themeColor:hover, |
| 676 | button.button__themeColor.active, |
| 677 | button.button__themeColor:hover { |
| 678 | background: #514585; |
| 679 | color: white; |
| 680 | border-color: #514585; |
| 681 | } |
| 682 | |
| 683 | a.button__themeColor.active:disabled, a.button__themeColor:hover:disabled, |
| 684 | button.button__themeColor.active:disabled, |
| 685 | button.button__themeColor:hover:disabled { |
| 686 | cursor: not-allowed; |
| 687 | background: #FE504F; |
| 688 | -webkit-box-shadow: none; |
| 689 | box-shadow: none; |
| 690 | } |
| 691 | |
| 692 | a.button__themeColor.hover__highlight:hover .icon, |
| 693 | button.button__themeColor.hover__highlight:hover .icon { |
| 694 | background: white; |
| 695 | color: #5B4E96; |
| 696 | } |
| 697 | |
| 698 | .button__primary:not(.hover__highlight) { |
| 699 | background: #00CC76; |
| 700 | color: white; |
| 701 | border-color: #00CC76; |
| 702 | -webkit-transition-property: background, color, box-shadow, border; |
| 703 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 704 | transition-property: background, color, border, -webkit-box-shadow; |
| 705 | transition-property: background, color, box-shadow, border; |
| 706 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 707 | } |
| 708 | |
| 709 | .button__primary:not(.hover__highlight):disabled { |
| 710 | cursor: not-allowed; |
| 711 | background: #FE504F; |
| 712 | border-color: #FE504F; |
| 713 | } |
| 714 | |
| 715 | .button__primary:not(.hover__highlight) .icon { |
| 716 | color: #00CC76; |
| 717 | background: white; |
| 718 | } |
| 719 | |
| 720 | .button__primary.hover__highlight { |
| 721 | color: #00CC76; |
| 722 | border-color: transparent; |
| 723 | background: rgba(0, 204, 118, 0.1); |
| 724 | } |
| 725 | |
| 726 | .button__primary.hover__highlight .icon { |
| 727 | background: #00CC76; |
| 728 | color: #ffffff; |
| 729 | } |
| 730 | |
| 731 | .button__primary.hover__highlight:hover { |
| 732 | border-color: transparent; |
| 733 | } |
| 734 | |
| 735 | .button__primary.button__shadow { |
| 736 | -webkit-box-shadow: 0 10px 10px rgba(0, 204, 118, 0.2); |
| 737 | box-shadow: 0 10px 10px rgba(0, 204, 118, 0.2); |
| 738 | } |
| 739 | |
| 740 | a.button__primary.active, a.button__primary:hover, |
| 741 | button.button__primary.active, |
| 742 | button.button__primary:hover { |
| 743 | background: #00b367; |
| 744 | color: white; |
| 745 | border-color: #00b367; |
| 746 | } |
| 747 | |
| 748 | a.button__primary.active:disabled, a.button__primary:hover:disabled, |
| 749 | button.button__primary.active:disabled, |
| 750 | button.button__primary:hover:disabled { |
| 751 | cursor: not-allowed; |
| 752 | background: #FE504F; |
| 753 | -webkit-box-shadow: none; |
| 754 | box-shadow: none; |
| 755 | } |
| 756 | |
| 757 | a.button__primary.hover__highlight:hover .icon, |
| 758 | button.button__primary.hover__highlight:hover .icon { |
| 759 | background: white; |
| 760 | color: #00CC76; |
| 761 | } |
| 762 | |
| 763 | .button__danger:not(.hover__highlight) { |
| 764 | background: #FE504F; |
| 765 | color: white; |
| 766 | border-color: #FE504F; |
| 767 | -webkit-transition-property: background, color, box-shadow, border; |
| 768 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 769 | transition-property: background, color, border, -webkit-box-shadow; |
| 770 | transition-property: background, color, box-shadow, border; |
| 771 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 772 | } |
| 773 | |
| 774 | .button__danger:not(.hover__highlight):disabled { |
| 775 | cursor: not-allowed; |
| 776 | background: #FE504F; |
| 777 | border-color: #FE504F; |
| 778 | } |
| 779 | |
| 780 | .button__danger:not(.hover__highlight) .icon { |
| 781 | color: #FE504F; |
| 782 | background: white; |
| 783 | } |
| 784 | |
| 785 | .button__danger.hover__highlight { |
| 786 | color: #FE504F; |
| 787 | border-color: transparent; |
| 788 | background: rgba(254, 80, 79, 0.1); |
| 789 | } |
| 790 | |
| 791 | .button__danger.hover__highlight .icon { |
| 792 | background: #00CC76; |
| 793 | color: #ffffff; |
| 794 | } |
| 795 | |
| 796 | .button__danger.hover__highlight:hover { |
| 797 | border-color: transparent; |
| 798 | } |
| 799 | |
| 800 | .button__danger.button__shadow { |
| 801 | -webkit-box-shadow: 0 10px 10px rgba(254, 80, 79, 0.2); |
| 802 | box-shadow: 0 10px 10px rgba(254, 80, 79, 0.2); |
| 803 | } |
| 804 | |
| 805 | a.button__danger.active, a.button__danger:hover, |
| 806 | button.button__danger.active, |
| 807 | button.button__danger:hover { |
| 808 | background: #fe3736; |
| 809 | color: white; |
| 810 | border-color: #fe3736; |
| 811 | } |
| 812 | |
| 813 | a.button__danger.active:disabled, a.button__danger:hover:disabled, |
| 814 | button.button__danger.active:disabled, |
| 815 | button.button__danger:hover:disabled { |
| 816 | cursor: not-allowed; |
| 817 | background: #FE504F; |
| 818 | -webkit-box-shadow: none; |
| 819 | box-shadow: none; |
| 820 | } |
| 821 | |
| 822 | a.button__danger.hover__highlight:hover .icon, |
| 823 | button.button__danger.hover__highlight:hover .icon { |
| 824 | background: white; |
| 825 | color: #FE504F; |
| 826 | } |
| 827 | |
| 828 | .button__warning:not(.hover__highlight) { |
| 829 | background: #FFA53C; |
| 830 | color: white; |
| 831 | border-color: #FFA53C; |
| 832 | -webkit-transition-property: background, color, box-shadow, border; |
| 833 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 834 | transition-property: background, color, border, -webkit-box-shadow; |
| 835 | transition-property: background, color, box-shadow, border; |
| 836 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 837 | } |
| 838 | |
| 839 | .button__warning:not(.hover__highlight):disabled { |
| 840 | cursor: not-allowed; |
| 841 | background: #FE504F; |
| 842 | border-color: #FE504F; |
| 843 | } |
| 844 | |
| 845 | .button__warning:not(.hover__highlight) .icon { |
| 846 | color: #FFA53C; |
| 847 | background: white; |
| 848 | } |
| 849 | |
| 850 | .button__warning.hover__highlight { |
| 851 | color: #FFA53C; |
| 852 | border-color: transparent; |
| 853 | background: rgba(255, 165, 60, 0.1); |
| 854 | } |
| 855 | |
| 856 | .button__warning.hover__highlight .icon { |
| 857 | background: #00CC76; |
| 858 | color: #ffffff; |
| 859 | } |
| 860 | |
| 861 | .button__warning.hover__highlight:hover { |
| 862 | border-color: transparent; |
| 863 | } |
| 864 | |
| 865 | .button__warning.button__shadow { |
| 866 | -webkit-box-shadow: 0 10px 10px rgba(255, 165, 60, 0.2); |
| 867 | box-shadow: 0 10px 10px rgba(255, 165, 60, 0.2); |
| 868 | } |
| 869 | |
| 870 | a.button__warning.active, a.button__warning:hover, |
| 871 | button.button__warning.active, |
| 872 | button.button__warning:hover { |
| 873 | background: #ff9923; |
| 874 | color: white; |
| 875 | border-color: #ff9923; |
| 876 | } |
| 877 | |
| 878 | a.button__warning.active:disabled, a.button__warning:hover:disabled, |
| 879 | button.button__warning.active:disabled, |
| 880 | button.button__warning:hover:disabled { |
| 881 | cursor: not-allowed; |
| 882 | background: #FE504F; |
| 883 | -webkit-box-shadow: none; |
| 884 | box-shadow: none; |
| 885 | } |
| 886 | |
| 887 | a.button__warning.hover__highlight:hover .icon, |
| 888 | button.button__warning.hover__highlight:hover .icon { |
| 889 | background: white; |
| 890 | color: #FFA53C; |
| 891 | } |
| 892 | |
| 893 | .button__white:not(.hover__highlight) { |
| 894 | background: #ffffff; |
| 895 | color: #5b4e96; |
| 896 | border-color: #ffffff; |
| 897 | -webkit-transition-property: background, color, box-shadow, border; |
| 898 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 899 | transition-property: background, color, border, -webkit-box-shadow; |
| 900 | transition-property: background, color, box-shadow, border; |
| 901 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 902 | } |
| 903 | |
| 904 | .button__white:not(.hover__highlight):disabled { |
| 905 | cursor: not-allowed; |
| 906 | background: #FE504F; |
| 907 | border-color: #FE504F; |
| 908 | } |
| 909 | |
| 910 | .button__white:not(.hover__highlight) .icon { |
| 911 | color: #ffffff; |
| 912 | background: #5b4e96; |
| 913 | } |
| 914 | |
| 915 | .button__white.hover__highlight { |
| 916 | color: #ffffff; |
| 917 | border-color: transparent; |
| 918 | background: rgba(255, 255, 255, 0.1); |
| 919 | } |
| 920 | |
| 921 | .button__white.hover__highlight .icon { |
| 922 | background: #00CC76; |
| 923 | color: #ffffff; |
| 924 | } |
| 925 | |
| 926 | .button__white.hover__highlight:hover { |
| 927 | border-color: transparent; |
| 928 | } |
| 929 | |
| 930 | .button__white.button__shadow { |
| 931 | -webkit-box-shadow: 0 10px 10px rgba(255, 255, 255, 0.2); |
| 932 | box-shadow: 0 10px 10px rgba(255, 255, 255, 0.2); |
| 933 | } |
| 934 | |
| 935 | a.button__white.active, a.button__white:hover, |
| 936 | button.button__white.active, |
| 937 | button.button__white:hover { |
| 938 | background: #f2f2f2; |
| 939 | color: #5b4e96; |
| 940 | border-color: #f2f2f2; |
| 941 | } |
| 942 | |
| 943 | a.button__white.active:disabled, a.button__white:hover:disabled, |
| 944 | button.button__white.active:disabled, |
| 945 | button.button__white:hover:disabled { |
| 946 | cursor: not-allowed; |
| 947 | background: #FE504F; |
| 948 | -webkit-box-shadow: none; |
| 949 | box-shadow: none; |
| 950 | } |
| 951 | |
| 952 | a.button__white.hover__highlight:hover .icon, |
| 953 | button.button__white.hover__highlight:hover .icon { |
| 954 | background: #5b4e96; |
| 955 | color: #ffffff; |
| 956 | } |
| 957 | |
| 958 | .button__dark:not(.hover__highlight) { |
| 959 | background: #222222; |
| 960 | color: white; |
| 961 | border-color: #222222; |
| 962 | -webkit-transition-property: background, color, box-shadow, border; |
| 963 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 964 | transition-property: background, color, border, -webkit-box-shadow; |
| 965 | transition-property: background, color, box-shadow, border; |
| 966 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 967 | } |
| 968 | |
| 969 | .button__dark:not(.hover__highlight):disabled { |
| 970 | cursor: not-allowed; |
| 971 | background: #FE504F; |
| 972 | border-color: #FE504F; |
| 973 | } |
| 974 | |
| 975 | .button__dark:not(.hover__highlight) .icon { |
| 976 | color: #222222; |
| 977 | background: white; |
| 978 | } |
| 979 | |
| 980 | .button__dark.hover__highlight { |
| 981 | color: #222222; |
| 982 | border-color: transparent; |
| 983 | background: rgba(34, 34, 34, 0.1); |
| 984 | } |
| 985 | |
| 986 | .button__dark.hover__highlight .icon { |
| 987 | background: #00CC76; |
| 988 | color: #ffffff; |
| 989 | } |
| 990 | |
| 991 | .button__dark.hover__highlight:hover { |
| 992 | border-color: transparent; |
| 993 | } |
| 994 | |
| 995 | .button__dark.button__shadow { |
| 996 | -webkit-box-shadow: 0 10px 10px rgba(34, 34, 34, 0.2); |
| 997 | box-shadow: 0 10px 10px rgba(34, 34, 34, 0.2); |
| 998 | } |
| 999 | |
| 1000 | a.button__dark.active, a.button__dark:hover, |
| 1001 | button.button__dark.active, |
| 1002 | button.button__dark:hover { |
| 1003 | background: #151515; |
| 1004 | color: white; |
| 1005 | border-color: #151515; |
| 1006 | } |
| 1007 | |
| 1008 | a.button__dark.active:disabled, a.button__dark:hover:disabled, |
| 1009 | button.button__dark.active:disabled, |
| 1010 | button.button__dark:hover:disabled { |
| 1011 | cursor: not-allowed; |
| 1012 | background: #FE504F; |
| 1013 | -webkit-box-shadow: none; |
| 1014 | box-shadow: none; |
| 1015 | } |
| 1016 | |
| 1017 | a.button__dark.hover__highlight:hover .icon, |
| 1018 | button.button__dark.hover__highlight:hover .icon { |
| 1019 | background: white; |
| 1020 | color: #222222; |
| 1021 | } |
| 1022 | |
| 1023 | .button__grey:not(.hover__highlight) { |
| 1024 | background: #7C8DB5; |
| 1025 | color: white; |
| 1026 | border-color: #7C8DB5; |
| 1027 | -webkit-transition-property: background, color, box-shadow, border; |
| 1028 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1029 | transition-property: background, color, border, -webkit-box-shadow; |
| 1030 | transition-property: background, color, box-shadow, border; |
| 1031 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1032 | } |
| 1033 | |
| 1034 | .button__grey:not(.hover__highlight):disabled { |
| 1035 | cursor: not-allowed; |
| 1036 | background: #FE504F; |
| 1037 | border-color: #FE504F; |
| 1038 | } |
| 1039 | |
| 1040 | .button__grey:not(.hover__highlight) .icon { |
| 1041 | color: #7C8DB5; |
| 1042 | background: white; |
| 1043 | } |
| 1044 | |
| 1045 | .button__grey.hover__highlight { |
| 1046 | color: #7C8DB5; |
| 1047 | border-color: transparent; |
| 1048 | background: rgba(124, 141, 181, 0.1); |
| 1049 | } |
| 1050 | |
| 1051 | .button__grey.hover__highlight .icon { |
| 1052 | background: #00CC76; |
| 1053 | color: #ffffff; |
| 1054 | } |
| 1055 | |
| 1056 | .button__grey.hover__highlight:hover { |
| 1057 | border-color: transparent; |
| 1058 | } |
| 1059 | |
| 1060 | .button__grey.button__shadow { |
| 1061 | -webkit-box-shadow: 0 10px 10px rgba(124, 141, 181, 0.2); |
| 1062 | box-shadow: 0 10px 10px rgba(124, 141, 181, 0.2); |
| 1063 | } |
| 1064 | |
| 1065 | a.button__grey.active, a.button__grey:hover, |
| 1066 | button.button__grey.active, |
| 1067 | button.button__grey:hover { |
| 1068 | background: #6c7fac; |
| 1069 | color: white; |
| 1070 | border-color: #6c7fac; |
| 1071 | } |
| 1072 | |
| 1073 | a.button__grey.active:disabled, a.button__grey:hover:disabled, |
| 1074 | button.button__grey.active:disabled, |
| 1075 | button.button__grey:hover:disabled { |
| 1076 | cursor: not-allowed; |
| 1077 | background: #FE504F; |
| 1078 | -webkit-box-shadow: none; |
| 1079 | box-shadow: none; |
| 1080 | } |
| 1081 | |
| 1082 | a.button__grey.hover__highlight:hover .icon, |
| 1083 | button.button__grey.hover__highlight:hover .icon { |
| 1084 | background: white; |
| 1085 | color: #7C8DB5; |
| 1086 | } |
| 1087 | |
| 1088 | .button__liteGrey:not(.hover__highlight) { |
| 1089 | background: #F5F7FD; |
| 1090 | color: #5b4e96; |
| 1091 | border-color: #F5F7FD; |
| 1092 | -webkit-transition-property: background, color, box-shadow, border; |
| 1093 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1094 | transition-property: background, color, border, -webkit-box-shadow; |
| 1095 | transition-property: background, color, box-shadow, border; |
| 1096 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1097 | } |
| 1098 | |
| 1099 | .button__liteGrey:not(.hover__highlight):disabled { |
| 1100 | cursor: not-allowed; |
| 1101 | background: #FE504F; |
| 1102 | border-color: #FE504F; |
| 1103 | } |
| 1104 | |
| 1105 | .button__liteGrey:not(.hover__highlight) .icon { |
| 1106 | color: #F5F7FD; |
| 1107 | background: #5b4e96; |
| 1108 | } |
| 1109 | |
| 1110 | .button__liteGrey.hover__highlight { |
| 1111 | color: #F5F7FD; |
| 1112 | border-color: transparent; |
| 1113 | background: rgba(245, 247, 253, 0.1); |
| 1114 | } |
| 1115 | |
| 1116 | .button__liteGrey.hover__highlight .icon { |
| 1117 | background: #00CC76; |
| 1118 | color: #ffffff; |
| 1119 | } |
| 1120 | |
| 1121 | .button__liteGrey.hover__highlight:hover { |
| 1122 | border-color: transparent; |
| 1123 | } |
| 1124 | |
| 1125 | .button__liteGrey.button__shadow { |
| 1126 | -webkit-box-shadow: 0 10px 10px rgba(245, 247, 253, 0.2); |
| 1127 | box-shadow: 0 10px 10px rgba(245, 247, 253, 0.2); |
| 1128 | } |
| 1129 | |
| 1130 | a.button__liteGrey.active, a.button__liteGrey:hover, |
| 1131 | button.button__liteGrey.active, |
| 1132 | button.button__liteGrey:hover { |
| 1133 | background: #e0e6f9; |
| 1134 | color: #5b4e96; |
| 1135 | border-color: #e0e6f9; |
| 1136 | } |
| 1137 | |
| 1138 | a.button__liteGrey.active:disabled, a.button__liteGrey:hover:disabled, |
| 1139 | button.button__liteGrey.active:disabled, |
| 1140 | button.button__liteGrey:hover:disabled { |
| 1141 | cursor: not-allowed; |
| 1142 | background: #FE504F; |
| 1143 | -webkit-box-shadow: none; |
| 1144 | box-shadow: none; |
| 1145 | } |
| 1146 | |
| 1147 | a.button__liteGrey.hover__highlight:hover .icon, |
| 1148 | button.button__liteGrey.hover__highlight:hover .icon { |
| 1149 | background: #5b4e96; |
| 1150 | color: #F5F7FD; |
| 1151 | } |
| 1152 | |
| 1153 | .button__black:not(.hover__highlight) { |
| 1154 | background: #000000; |
| 1155 | color: white; |
| 1156 | border-color: #000000; |
| 1157 | -webkit-transition-property: background, color, box-shadow, border; |
| 1158 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1159 | transition-property: background, color, border, -webkit-box-shadow; |
| 1160 | transition-property: background, color, box-shadow, border; |
| 1161 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1162 | } |
| 1163 | |
| 1164 | .button__black:not(.hover__highlight):disabled { |
| 1165 | cursor: not-allowed; |
| 1166 | background: #FE504F; |
| 1167 | border-color: #FE504F; |
| 1168 | } |
| 1169 | |
| 1170 | .button__black:not(.hover__highlight) .icon { |
| 1171 | color: #000000; |
| 1172 | background: white; |
| 1173 | } |
| 1174 | |
| 1175 | .button__black.hover__highlight { |
| 1176 | color: #000000; |
| 1177 | border-color: transparent; |
| 1178 | background: rgba(0, 0, 0, 0.1); |
| 1179 | } |
| 1180 | |
| 1181 | .button__black.hover__highlight .icon { |
| 1182 | background: #00CC76; |
| 1183 | color: #ffffff; |
| 1184 | } |
| 1185 | |
| 1186 | .button__black.hover__highlight:hover { |
| 1187 | border-color: transparent; |
| 1188 | } |
| 1189 | |
| 1190 | .button__black.button__shadow { |
| 1191 | -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); |
| 1192 | box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); |
| 1193 | } |
| 1194 | |
| 1195 | a.button__black.active:disabled, a.button__black:hover:disabled, |
| 1196 | button.button__black.active:disabled, |
| 1197 | button.button__black:hover:disabled { |
| 1198 | cursor: not-allowed; |
| 1199 | background: #FE504F; |
| 1200 | -webkit-box-shadow: none; |
| 1201 | box-shadow: none; |
| 1202 | } |
| 1203 | |
| 1204 | a.button__black.hover__highlight:hover .icon, |
| 1205 | button.button__black.hover__highlight:hover .icon { |
| 1206 | background: white; |
| 1207 | color: #000000; |
| 1208 | } |
| 1209 | |
| 1210 | .button__twitter:not(.hover__highlight) { |
| 1211 | background: #1da1f2; |
| 1212 | color: white; |
| 1213 | border-color: #1da1f2; |
| 1214 | -webkit-transition-property: background, color, box-shadow, border; |
| 1215 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1216 | transition-property: background, color, border, -webkit-box-shadow; |
| 1217 | transition-property: background, color, box-shadow, border; |
| 1218 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1219 | } |
| 1220 | |
| 1221 | .button__twitter:not(.hover__highlight):disabled { |
| 1222 | cursor: not-allowed; |
| 1223 | background: #FE504F; |
| 1224 | border-color: #FE504F; |
| 1225 | } |
| 1226 | |
| 1227 | .button__twitter:not(.hover__highlight) .icon { |
| 1228 | color: #1da1f2; |
| 1229 | background: white; |
| 1230 | } |
| 1231 | |
| 1232 | .button__twitter.hover__highlight { |
| 1233 | color: #1da1f2; |
| 1234 | border-color: transparent; |
| 1235 | background: rgba(29, 161, 242, 0.1); |
| 1236 | } |
| 1237 | |
| 1238 | .button__twitter.hover__highlight .icon { |
| 1239 | background: #00CC76; |
| 1240 | color: #ffffff; |
| 1241 | } |
| 1242 | |
| 1243 | .button__twitter.hover__highlight:hover { |
| 1244 | border-color: transparent; |
| 1245 | } |
| 1246 | |
| 1247 | .button__twitter.button__shadow { |
| 1248 | -webkit-box-shadow: 0 10px 10px rgba(29, 161, 242, 0.2); |
| 1249 | box-shadow: 0 10px 10px rgba(29, 161, 242, 0.2); |
| 1250 | } |
| 1251 | |
| 1252 | a.button__twitter.active, a.button__twitter:hover, |
| 1253 | button.button__twitter.active, |
| 1254 | button.button__twitter:hover { |
| 1255 | background: #0d95e8; |
| 1256 | color: white; |
| 1257 | border-color: #0d95e8; |
| 1258 | } |
| 1259 | |
| 1260 | a.button__twitter.active:disabled, a.button__twitter:hover:disabled, |
| 1261 | button.button__twitter.active:disabled, |
| 1262 | button.button__twitter:hover:disabled { |
| 1263 | cursor: not-allowed; |
| 1264 | background: #FE504F; |
| 1265 | -webkit-box-shadow: none; |
| 1266 | box-shadow: none; |
| 1267 | } |
| 1268 | |
| 1269 | a.button__twitter.hover__highlight:hover .icon, |
| 1270 | button.button__twitter.hover__highlight:hover .icon { |
| 1271 | background: white; |
| 1272 | color: #1da1f2; |
| 1273 | } |
| 1274 | |
| 1275 | .button__linkedin:not(.hover__highlight) { |
| 1276 | background: #0077b5; |
| 1277 | color: white; |
| 1278 | border-color: #0077b5; |
| 1279 | -webkit-transition-property: background, color, box-shadow, border; |
| 1280 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1281 | transition-property: background, color, border, -webkit-box-shadow; |
| 1282 | transition-property: background, color, box-shadow, border; |
| 1283 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1284 | } |
| 1285 | |
| 1286 | .button__linkedin:not(.hover__highlight):disabled { |
| 1287 | cursor: not-allowed; |
| 1288 | background: #FE504F; |
| 1289 | border-color: #FE504F; |
| 1290 | } |
| 1291 | |
| 1292 | .button__linkedin:not(.hover__highlight) .icon { |
| 1293 | color: #0077b5; |
| 1294 | background: white; |
| 1295 | } |
| 1296 | |
| 1297 | .button__linkedin.hover__highlight { |
| 1298 | color: #0077b5; |
| 1299 | border-color: transparent; |
| 1300 | background: rgba(0, 119, 181, 0.1); |
| 1301 | } |
| 1302 | |
| 1303 | .button__linkedin.hover__highlight .icon { |
| 1304 | background: #00CC76; |
| 1305 | color: #ffffff; |
| 1306 | } |
| 1307 | |
| 1308 | .button__linkedin.hover__highlight:hover { |
| 1309 | border-color: transparent; |
| 1310 | } |
| 1311 | |
| 1312 | .button__linkedin.button__shadow { |
| 1313 | -webkit-box-shadow: 0 10px 10px rgba(0, 119, 181, 0.2); |
| 1314 | box-shadow: 0 10px 10px rgba(0, 119, 181, 0.2); |
| 1315 | } |
| 1316 | |
| 1317 | a.button__linkedin.active, a.button__linkedin:hover, |
| 1318 | button.button__linkedin.active, |
| 1319 | button.button__linkedin:hover { |
| 1320 | background: #00669c; |
| 1321 | color: white; |
| 1322 | border-color: #00669c; |
| 1323 | } |
| 1324 | |
| 1325 | a.button__linkedin.active:disabled, a.button__linkedin:hover:disabled, |
| 1326 | button.button__linkedin.active:disabled, |
| 1327 | button.button__linkedin:hover:disabled { |
| 1328 | cursor: not-allowed; |
| 1329 | background: #FE504F; |
| 1330 | -webkit-box-shadow: none; |
| 1331 | box-shadow: none; |
| 1332 | } |
| 1333 | |
| 1334 | a.button__linkedin.hover__highlight:hover .icon, |
| 1335 | button.button__linkedin.hover__highlight:hover .icon { |
| 1336 | background: white; |
| 1337 | color: #0077b5; |
| 1338 | } |
| 1339 | |
| 1340 | .button__instagram:not(.hover__highlight) { |
| 1341 | background: #e1306c; |
| 1342 | color: white; |
| 1343 | border-color: #e1306c; |
| 1344 | -webkit-transition-property: background, color, box-shadow, border; |
| 1345 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1346 | transition-property: background, color, border, -webkit-box-shadow; |
| 1347 | transition-property: background, color, box-shadow, border; |
| 1348 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1349 | } |
| 1350 | |
| 1351 | .button__instagram:not(.hover__highlight):disabled { |
| 1352 | cursor: not-allowed; |
| 1353 | background: #FE504F; |
| 1354 | border-color: #FE504F; |
| 1355 | } |
| 1356 | |
| 1357 | .button__instagram:not(.hover__highlight) .icon { |
| 1358 | color: #e1306c; |
| 1359 | background: white; |
| 1360 | } |
| 1361 | |
| 1362 | .button__instagram.hover__highlight { |
| 1363 | color: #e1306c; |
| 1364 | border-color: transparent; |
| 1365 | background: rgba(225, 48, 108, 0.1); |
| 1366 | } |
| 1367 | |
| 1368 | .button__instagram.hover__highlight .icon { |
| 1369 | background: #00CC76; |
| 1370 | color: #ffffff; |
| 1371 | } |
| 1372 | |
| 1373 | .button__instagram.hover__highlight:hover { |
| 1374 | border-color: transparent; |
| 1375 | } |
| 1376 | |
| 1377 | .button__instagram.button__shadow { |
| 1378 | -webkit-box-shadow: 0 10px 10px rgba(225, 48, 108, 0.2); |
| 1379 | box-shadow: 0 10px 10px rgba(225, 48, 108, 0.2); |
| 1380 | } |
| 1381 | |
| 1382 | a.button__instagram.active, a.button__instagram:hover, |
| 1383 | button.button__instagram.active, |
| 1384 | button.button__instagram:hover { |
| 1385 | background: #d81f5e; |
| 1386 | color: white; |
| 1387 | border-color: #d81f5e; |
| 1388 | } |
| 1389 | |
| 1390 | a.button__instagram.active:disabled, a.button__instagram:hover:disabled, |
| 1391 | button.button__instagram.active:disabled, |
| 1392 | button.button__instagram:hover:disabled { |
| 1393 | cursor: not-allowed; |
| 1394 | background: #FE504F; |
| 1395 | -webkit-box-shadow: none; |
| 1396 | box-shadow: none; |
| 1397 | } |
| 1398 | |
| 1399 | a.button__instagram.hover__highlight:hover .icon, |
| 1400 | button.button__instagram.hover__highlight:hover .icon { |
| 1401 | background: white; |
| 1402 | color: #e1306c; |
| 1403 | } |
| 1404 | |
| 1405 | .template__wrapper .button.button-pro-upgrade { |
| 1406 | font-weight: 700; |
| 1407 | color: #fff; |
| 1408 | background-color: #FF7369; |
| 1409 | border-color: #FF7369; |
| 1410 | } |
| 1411 | |
| 1412 | .template__wrapper .button { |
| 1413 | display: inline-flex; |
| 1414 | align-items: center; |
| 1415 | justify-content: center; |
| 1416 | gap: 8px; |
| 1417 | text-align: center; |
| 1418 | padding: 16px 30px; |
| 1419 | line-height: 1; |
| 1420 | color: #594E91; |
| 1421 | background: rgba(91, 78, 150, 0.1); |
| 1422 | border: 1px solid rgba(91, 78, 150, 0.1); |
| 1423 | font-size: 16px; |
| 1424 | font-weight: 500; |
| 1425 | font-family: 'DMSans'; |
| 1426 | cursor: pointer; |
| 1427 | -webkit-transition: all 0.3s ease-in-out 0s; |
| 1428 | transition: all 0.3s ease-in-out 0s; |
| 1429 | border-radius: 8px; |
| 1430 | } |
| 1431 | |
| 1432 | @media (max-width: 767px) { |
| 1433 | .template__wrapper .button { |
| 1434 | padding: 16px 25px; |
| 1435 | } |
| 1436 | } |
| 1437 | |
| 1438 | .template__wrapper .button:hover { |
| 1439 | background: #5B4E96 !important; |
| 1440 | color: #ffffff !important; |
| 1441 | border-color: #5B4E96 !important; |
| 1442 | } |
| 1443 | |
| 1444 | .template__wrapper .button:focus { |
| 1445 | outline: none; |
| 1446 | -webkit-box-shadow: none; |
| 1447 | box-shadow: none; |
| 1448 | border-color: #5B4E96; |
| 1449 | background-color: #5B4E96; |
| 1450 | color: #ffffff; |
| 1451 | } |
| 1452 | |
| 1453 | .template__wrapper .button .ss-icon { |
| 1454 | font-size: 14px; |
| 1455 | margin-right: 5px; |
| 1456 | } |
| 1457 | |
| 1458 | .template__wrapper .button--lg { |
| 1459 | padding: 20px 30px; |
| 1460 | } |
| 1461 | |
| 1462 | .template__wrapper .button__flex { |
| 1463 | display: -webkit-inline-box; |
| 1464 | display: -ms-inline-flexbox; |
| 1465 | display: inline-flex; |
| 1466 | -webkit-box-align: center; |
| 1467 | -ms-flex-align: center; |
| 1468 | align-items: center; |
| 1469 | } |
| 1470 | |
| 1471 | .button__group .button { |
| 1472 | margin-right: 13px; |
| 1473 | margin-bottom: 15px; |
| 1474 | } |
| 1475 | |
| 1476 | .button__group .button:last-child { |
| 1477 | margin-right: 0; |
| 1478 | } |
| 1479 | |
| 1480 | .template__wrapper .radius-10 { |
| 1481 | border-radius: 10px; |
| 1482 | } |
| 1483 | |
| 1484 | .template__wrapper .radius-12 { |
| 1485 | border-radius: 12px; |
| 1486 | } |
| 1487 | |
| 1488 | .template__wrapper .radius-16 { |
| 1489 | border-radius: 16px; |
| 1490 | overflow-x: hidden; |
| 1491 | } |
| 1492 | |
| 1493 | .template__wrapper .radius-20 { |
| 1494 | border-radius: 20px; |
| 1495 | } |
| 1496 | |
| 1497 | .template__wrapper .radius-24 { |
| 1498 | border-radius: 24px; |
| 1499 | } |
| 1500 | |
| 1501 | .template__wrapper .radius-25 { |
| 1502 | border-radius: 25px; |
| 1503 | } |
| 1504 | |
| 1505 | .template__wrapper .radius-50 { |
| 1506 | border-radius: 50px; |
| 1507 | } |
| 1508 | |
| 1509 | .template__wrapper { |
| 1510 | /* overflow: hidden; */ |
| 1511 | min-height: 100vh; |
| 1512 | -webkit-display: flex; |
| 1513 | -moz-display: flex; |
| 1514 | -ms-display: flex; |
| 1515 | -o-display: flex; |
| 1516 | display: -webkit-box; |
| 1517 | display: flex; |
| 1518 | -moz-flex-direction: column; |
| 1519 | -ms-flex-direction: column; |
| 1520 | -o-flex-direction: column; |
| 1521 | -webkit-box-orient: vertical; |
| 1522 | -webkit-box-direction: normal; |
| 1523 | flex-direction: column; |
| 1524 | } |
| 1525 | |
| 1526 | @media (max-width: 991px) { |
| 1527 | .template__wrapper.p30 { |
| 1528 | padding: 15px; |
| 1529 | } |
| 1530 | } |
| 1531 | |
| 1532 | .embedpress__container { |
| 1533 | width: 100%; |
| 1534 | margin: 0 auto; |
| 1535 | max-width: 1700px; |
| 1536 | overflow-x: hidden; |
| 1537 | } |
| 1538 | |
| 1539 | .o-hidden { |
| 1540 | overflow: hidden; |
| 1541 | } |
| 1542 | |
| 1543 | .text-center { |
| 1544 | text-align: center; |
| 1545 | } |
| 1546 | |
| 1547 | .h-100 { |
| 1548 | height: 100%; |
| 1549 | } |
| 1550 | |
| 1551 | .embedpress-body { |
| 1552 | display: -webkit-box; |
| 1553 | display: -ms-flexbox; |
| 1554 | display: flex; |
| 1555 | } |
| 1556 | |
| 1557 | @media (max-width: 991px) { |
| 1558 | .embedpress-body { |
| 1559 | display: block; |
| 1560 | } |
| 1561 | } |
| 1562 | |
| 1563 | /* |
| 1564 | .embedpress-body .embedpress-sidebar-wrapper { |
| 1565 | display: flex; |
| 1566 | flex-direction: column; |
| 1567 | } |
| 1568 | |
| 1569 | .embedpress-body .embedpress-sidebar-wrapper .sticky-sibling { |
| 1570 | flex-grow: 1; |
| 1571 | } */ |
| 1572 | |
| 1573 | .embedpress-sidebar-wrapper { |
| 1574 | position: relative; |
| 1575 | z-index: 1; |
| 1576 | } |
| 1577 | |
| 1578 | |
| 1579 | .embedpress-body .embedpress-sidebar { |
| 1580 | -webkit-box-flex: 0; |
| 1581 | -ms-flex: 0 0 240px; |
| 1582 | flex: 0 0 240px; |
| 1583 | min-width: 240px; |
| 1584 | margin-right: 24px; |
| 1585 | position: sticky; |
| 1586 | top: 40px; |
| 1587 | max-width: 240px; |
| 1588 | overflow: unset; |
| 1589 | } |
| 1590 | |
| 1591 | .embedpress-body .embedpress-content { |
| 1592 | -webkit-box-flex: 1; |
| 1593 | -ms-flex-positive: 1; |
| 1594 | flex-grow: 1; |
| 1595 | } |
| 1596 | |
| 1597 | .embedpress__row { |
| 1598 | display: -ms-grid; |
| 1599 | display: grid; |
| 1600 | gap: 20px; |
| 1601 | } |
| 1602 | |
| 1603 | .embedpress__row.grid__3 { |
| 1604 | -ms-grid-columns: 1fr 1fr 1fr; |
| 1605 | grid-template-columns: repeat(3, 1fr); |
| 1606 | } |
| 1607 | |
| 1608 | @media (max-width: 1199px) { |
| 1609 | .embedpress__row.grid__3 { |
| 1610 | -ms-grid-columns: 1fr 1fr; |
| 1611 | grid-template-columns: repeat(2, 1fr); |
| 1612 | } |
| 1613 | } |
| 1614 | |
| 1615 | @media (max-width: 575px) { |
| 1616 | .embedpress__row.grid__3 { |
| 1617 | -ms-grid-columns: 1fr; |
| 1618 | grid-template-columns: repeat(1, 1fr); |
| 1619 | } |
| 1620 | } |
| 1621 | |
| 1622 | .embedpress__row.grid__4 { |
| 1623 | -ms-grid-columns: 1fr 1fr 1fr 1fr; |
| 1624 | grid-template-columns: repeat(4, 1fr); |
| 1625 | } |
| 1626 | |
| 1627 | @media (max-width: 1199px) { |
| 1628 | .embedpress__row.grid__4 { |
| 1629 | -ms-grid-columns: 1fr 1fr 1fr; |
| 1630 | grid-template-columns: repeat(3, 1fr); |
| 1631 | } |
| 1632 | } |
| 1633 | |
| 1634 | .embedpress__notification { |
| 1635 | position: fixed; |
| 1636 | bottom: 50px; |
| 1637 | right: 50px; |
| 1638 | padding: 15px 25px; |
| 1639 | border-radius: 10px; |
| 1640 | max-width: 400px; |
| 1641 | z-index: 9999; |
| 1642 | } |
| 1643 | |
| 1644 | .embedpress__notification--success { |
| 1645 | background: #00CC76; |
| 1646 | } |
| 1647 | |
| 1648 | .embedpress__notification--error { |
| 1649 | background-color: #FE504F; |
| 1650 | } |
| 1651 | |
| 1652 | .embedpress__notification p { |
| 1653 | color: #ffffff; |
| 1654 | font-size: 14px; |
| 1655 | } |
| 1656 | |
| 1657 | #wpcontent { |
| 1658 | padding-left: 0; |
| 1659 | } |
| 1660 | |
| 1661 | @media all and (max-width: 782px) { |
| 1662 | .auto-fold #wpcontent { |
| 1663 | padding-left: 0; |
| 1664 | } |
| 1665 | } |
| 1666 | |
| 1667 | @media (max-width: 1199px) { |
| 1668 | .p50, .p40 { |
| 1669 | padding: 25px; |
| 1670 | } |
| 1671 | } |
| 1672 | |
| 1673 | .embedpress-header { |
| 1674 | display: flex; |
| 1675 | justify-content: space-between; |
| 1676 | align-items: center; |
| 1677 | column-gap: 15px; |
| 1678 | row-gap: 10px; |
| 1679 | background: #fff; |
| 1680 | padding: 15px 15px; |
| 1681 | margin-bottom: 15px; |
| 1682 | border-radius: 16px; |
| 1683 | } |
| 1684 | |
| 1685 | |
| 1686 | @media all and (max-width: 767px) { |
| 1687 | .embedpress-header { |
| 1688 | flex-direction: column; |
| 1689 | align-items: baseline; |
| 1690 | |
| 1691 | } |
| 1692 | } |
| 1693 | |
| 1694 | header.embedpress-header img { |
| 1695 | width: 150px; |
| 1696 | min-width: 150px; |
| 1697 | } |
| 1698 | |
| 1699 | header.embedpress-header p { |
| 1700 | font-size: 16px; |
| 1701 | color: #25396F; |
| 1702 | line-height: 1.1; |
| 1703 | text-align: center; |
| 1704 | } |
| 1705 | |
| 1706 | header.embedpress-header a { |
| 1707 | color: #FF7369 !important; |
| 1708 | } |
| 1709 | |
| 1710 | a.site__logo { |
| 1711 | display: inline-flex; |
| 1712 | } |
| 1713 | |
| 1714 | .embedpress-sidebar { |
| 1715 | padding: 10px; |
| 1716 | background: #ffffff; |
| 1717 | border-radius: 16px; |
| 1718 | position: relative; |
| 1719 | } |
| 1720 | |
| 1721 | .embedpress-version-wrapper li { |
| 1722 | font-size: 14px; |
| 1723 | font-weight: 600; |
| 1724 | color: #7C8DB5; |
| 1725 | text-align: right; |
| 1726 | line-height: 1.2; |
| 1727 | white-space: nowrap; |
| 1728 | } |
| 1729 | |
| 1730 | @media all and (max-width: 767px) { |
| 1731 | .embedpress-version-wrapper li { |
| 1732 | font-size: 14px; |
| 1733 | text-align: left; |
| 1734 | margin-bottom: 5px; |
| 1735 | } |
| 1736 | } |
| 1737 | |
| 1738 | |
| 1739 | @media all and (max-width: 575px) { |
| 1740 | .embedpress-header { |
| 1741 | display: block; |
| 1742 | } |
| 1743 | |
| 1744 | .embedpress-header .embedpress-version-wrapper { |
| 1745 | margin-top: 10px; |
| 1746 | } |
| 1747 | |
| 1748 | .embedpress-version-wrapper li { |
| 1749 | text-align: left; |
| 1750 | } |
| 1751 | } |
| 1752 | |
| 1753 | @media (max-width: 991px) { |
| 1754 | .embedpress-sidebar { |
| 1755 | padding: 0; |
| 1756 | border-radius: 5px; |
| 1757 | margin-bottom: 30px; |
| 1758 | } |
| 1759 | } |
| 1760 | |
| 1761 | .embedpress-sidebar .sidebar__toggler { |
| 1762 | display: none; |
| 1763 | } |
| 1764 | |
| 1765 | @media (max-width: 991px) { |
| 1766 | .embedpress-sidebar .sidebar__toggler { |
| 1767 | display: block; |
| 1768 | font-size: 24px; |
| 1769 | padding: 5px 10px; |
| 1770 | text-align: center; |
| 1771 | } |
| 1772 | } |
| 1773 | |
| 1774 | @media (max-width: 991px) { |
| 1775 | .embedpress-sidebar .sidebar__menu { |
| 1776 | display: none; |
| 1777 | position: absolute; |
| 1778 | top: calc(100% + 10px); |
| 1779 | z-index: 90; |
| 1780 | left: 0; |
| 1781 | background: #ffffff; |
| 1782 | min-width: 220px; |
| 1783 | border-radius: 10px; |
| 1784 | padding: 10px; |
| 1785 | -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2); |
| 1786 | box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2); |
| 1787 | } |
| 1788 | } |
| 1789 | |
| 1790 | .embedpress-sidebar .sidebar__menu .sidebar__item:not(:last-child) { |
| 1791 | margin-bottom: 10px; |
| 1792 | } |
| 1793 | |
| 1794 | .embedpress-sidebar .sidebar__menu .sidebar__item:hover .sidebar__link { |
| 1795 | background: #5B4E96; |
| 1796 | color: #ffffff; |
| 1797 | } |
| 1798 | |
| 1799 | .embedpress-sidebar .sidebar__menu .sidebar__item.show .sidebar__link { |
| 1800 | background: #5B4E96; |
| 1801 | color: #ffffff; |
| 1802 | } |
| 1803 | |
| 1804 | .embedpress-sidebar .sidebar__menu .sidebar__item.show .sidebar__link--toggler:before { |
| 1805 | -webkit-transform: rotate(180deg); |
| 1806 | transform: rotate(180deg); |
| 1807 | } |
| 1808 | |
| 1809 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link { |
| 1810 | padding: 10px 20px; |
| 1811 | width: 100%; |
| 1812 | font-size: 16px; |
| 1813 | font-weight: 500; |
| 1814 | color: #988FBD; |
| 1815 | border-radius: 8px; |
| 1816 | position: relative; |
| 1817 | display: flex; |
| 1818 | align-items: center; |
| 1819 | gap: 15px; |
| 1820 | |
| 1821 | } |
| 1822 | |
| 1823 | |
| 1824 | |
| 1825 | .embedpress-sidebar .sidebar__menu li.sidebar__item a svg { |
| 1826 | height: 20px; |
| 1827 | } |
| 1828 | |
| 1829 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link--toggler:before { |
| 1830 | content: '\e906'; |
| 1831 | font-family: icomoon; |
| 1832 | position: absolute; |
| 1833 | top: 18px; |
| 1834 | right: 15px; |
| 1835 | font-size: 10px; |
| 1836 | -webkit-transition: rotate .3s ease; |
| 1837 | transition: rotate .3s ease; |
| 1838 | } |
| 1839 | |
| 1840 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link.active+.dropdown__menu { |
| 1841 | display: block; |
| 1842 | } |
| 1843 | |
| 1844 | a.sidebar__link.active.general svg path, a.sidebar__link.active.elements svg path, a.sidebar__link.active.branding svg path { |
| 1845 | stroke: #fff; |
| 1846 | } |
| 1847 | |
| 1848 | .general.sidebar__link:hover svg path, .elements.sidebar__link:hover svg path, .branding.sidebar__link:hover svg path { |
| 1849 | stroke: #fff; |
| 1850 | } |
| 1851 | |
| 1852 | a.sidebar__link.active.sources svg path, a.sidebar__link.active.shortcode svg path { |
| 1853 | fill: #fff; |
| 1854 | } |
| 1855 | |
| 1856 | .sources.sidebar__link:hover svg path, .shortcode.sidebar__link:hover svg path { |
| 1857 | fill: #fff; |
| 1858 | } |
| 1859 | |
| 1860 | a.sidebar__link.ads-icon.active svg path { |
| 1861 | stroke: #fff; |
| 1862 | } |
| 1863 | |
| 1864 | a.sidebar__link.ads-icon svg path { |
| 1865 | stroke: #988FBD; |
| 1866 | } |
| 1867 | |
| 1868 | a.sidebar__link.ads-icon:hover svg path { |
| 1869 | stroke: #fff; |
| 1870 | } |
| 1871 | |
| 1872 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link span { |
| 1873 | display: inline-block; |
| 1874 | width: 20px; |
| 1875 | height: 19px; |
| 1876 | text-align: center; |
| 1877 | } |
| 1878 | |
| 1879 | a.sidebar__link.ads-icon span { |
| 1880 | display: flex !important; |
| 1881 | } |
| 1882 | |
| 1883 | a.sidebar__link.ads-icon { |
| 1884 | display: flex; |
| 1885 | align-items: center; |
| 1886 | } |
| 1887 | |
| 1888 | a.sidebar__link.ads-icon.active span svg path, a.sidebar__link.ads-icon:hover span svg path { |
| 1889 | fill: #fff; |
| 1890 | } |
| 1891 | |
| 1892 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu { |
| 1893 | margin-left: 35px; |
| 1894 | display: none; |
| 1895 | } |
| 1896 | |
| 1897 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item:not(:last-child) { |
| 1898 | margin-bottom: 5px; |
| 1899 | } |
| 1900 | |
| 1901 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link { |
| 1902 | padding: 5px; |
| 1903 | /* display: block; */ |
| 1904 | font-size: 16px; |
| 1905 | font-weight: 400; |
| 1906 | color: #7C8DB5; |
| 1907 | display: flex; |
| 1908 | } |
| 1909 | |
| 1910 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link img { |
| 1911 | max-width: 16px; |
| 1912 | margin-right: 7px; |
| 1913 | } |
| 1914 | |
| 1915 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link:hover { |
| 1916 | color: #5B4E96; |
| 1917 | } |
| 1918 | |
| 1919 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link.active { |
| 1920 | color: #5B4E96; |
| 1921 | font-weight: 500; |
| 1922 | } |
| 1923 | |
| 1924 | .embedpress-tab .nav__menu ul { |
| 1925 | display: -webkit-box; |
| 1926 | display: -ms-flexbox; |
| 1927 | display: flex; |
| 1928 | } |
| 1929 | |
| 1930 | .embedpress-tab .nav__menu ul.menu__grow .nav__item { |
| 1931 | -webkit-box-flex: 1; |
| 1932 | -ms-flex-positive: 1; |
| 1933 | flex-grow: 1; |
| 1934 | text-align: center; |
| 1935 | } |
| 1936 | |
| 1937 | .embedpress-tab .nav__menu ul.menu__grow .nav__item span { |
| 1938 | width: 100%; |
| 1939 | } |
| 1940 | |
| 1941 | @media (max-width: 767px) { |
| 1942 | .embedpress-tab .nav__menu ul.menu__grow .nav__item span { |
| 1943 | padding: 10px; |
| 1944 | } |
| 1945 | } |
| 1946 | |
| 1947 | @media (max-width: 479px) { |
| 1948 | .embedpress-tab .nav__menu ul:not(.menu__grow) { |
| 1949 | display: block; |
| 1950 | } |
| 1951 | |
| 1952 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item:not(:last-child) { |
| 1953 | margin-right: 0; |
| 1954 | } |
| 1955 | |
| 1956 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item:first-child span { |
| 1957 | border-top-right-radius: 10px; |
| 1958 | } |
| 1959 | |
| 1960 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item:last-child span { |
| 1961 | border-top-right-radius: 0; |
| 1962 | } |
| 1963 | } |
| 1964 | |
| 1965 | @media (max-width: 479px) and (max-width: 479px) { |
| 1966 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item span { |
| 1967 | width: 100%; |
| 1968 | } |
| 1969 | } |
| 1970 | |
| 1971 | .embedpress-tab .nav__menu ul .nav__item { |
| 1972 | margin-bottom: 5px; |
| 1973 | font-size: 20px; |
| 1974 | font-weight: 400; |
| 1975 | color: #5B4E96; |
| 1976 | display: -webkit-box; |
| 1977 | display: -ms-flexbox; |
| 1978 | display: flex; |
| 1979 | -webkit-box-pack: center; |
| 1980 | -ms-flex-pack: center; |
| 1981 | justify-content: center; |
| 1982 | -webkit-box-align: center; |
| 1983 | -ms-flex-align: center; |
| 1984 | align-items: center; |
| 1985 | } |
| 1986 | |
| 1987 | @media (max-width: 767px) { |
| 1988 | .embedpress-tab .nav__menu ul .nav__item { |
| 1989 | font-size: 16px; |
| 1990 | } |
| 1991 | } |
| 1992 | |
| 1993 | @media (max-width: 575px) { |
| 1994 | .embedpress-tab .nav__menu ul .nav__item { |
| 1995 | font-size: 14px; |
| 1996 | } |
| 1997 | } |
| 1998 | |
| 1999 | .embedpress-tab .nav__menu ul .nav__item i { |
| 2000 | margin-right: 10px; |
| 2001 | } |
| 2002 | |
| 2003 | .embedpress-tab .nav__menu ul .nav__item.active span { |
| 2004 | background: #5B4E96; |
| 2005 | color: #ffffff; |
| 2006 | } |
| 2007 | |
| 2008 | .embedpress-tab .nav__menu ul .nav__item span { |
| 2009 | padding: 16px 20px; |
| 2010 | cursor: pointer; |
| 2011 | background: #ffffff; |
| 2012 | } |
| 2013 | |
| 2014 | .embedpress-tab .nav__menu ul .nav__item:not(:last-child) { |
| 2015 | margin-right: 5px; |
| 2016 | } |
| 2017 | |
| 2018 | .embedpress-tab .nav__menu ul .nav__item:first-child span { |
| 2019 | border-top-left-radius: 10px; |
| 2020 | } |
| 2021 | |
| 2022 | .embedpress-tab .nav__menu ul .nav__item:last-child span { |
| 2023 | border-top-right-radius: 10px; |
| 2024 | } |
| 2025 | |
| 2026 | .embedpress-tab .tab__item { |
| 2027 | display: none; |
| 2028 | border-radius: 20px; |
| 2029 | border-top-left-radius: 0; |
| 2030 | overflow: hidden; |
| 2031 | } |
| 2032 | |
| 2033 | .embedpress-tab .tab__item.active { |
| 2034 | display: block; |
| 2035 | } |
| 2036 | |
| 2037 | .embedpress__settings { |
| 2038 | min-height: 100%; |
| 2039 | } |
| 2040 | |
| 2041 | .upgrade__card+.embedpress__settings { |
| 2042 | min-height: auto; |
| 2043 | } |
| 2044 | |
| 2045 | .embedpress__settings h3 { |
| 2046 | font-size: 24px; |
| 2047 | font-weight: 700; |
| 2048 | color: #131F4D; |
| 2049 | padding-bottom: 16px; |
| 2050 | margin-bottom: 24px; |
| 2051 | border-bottom: 1px solid #F5F7FC; |
| 2052 | } |
| 2053 | |
| 2054 | @media (max-width: 767px) { |
| 2055 | .embedpress__settings h3 { |
| 2056 | font-size: 24px; |
| 2057 | } |
| 2058 | } |
| 2059 | |
| 2060 | @media (max-width: 575px) { |
| 2061 | .embedpress__settings h3 { |
| 2062 | font-size: 20px; |
| 2063 | } |
| 2064 | } |
| 2065 | |
| 2066 | .template__wrapper input:focus, |
| 2067 | .template__wrapper select:focus { |
| 2068 | border-color: #E6EFFB; |
| 2069 | -webkit-box-shadow: none; |
| 2070 | box-shadow: none; |
| 2071 | outline: none; |
| 2072 | } |
| 2073 | |
| 2074 | .template__wrapper .form__control { |
| 2075 | height: 40px; |
| 2076 | padding: 0 20px; |
| 2077 | border-radius: 5px; |
| 2078 | border: 1px solid #E6EFFB; |
| 2079 | color: #25396F; |
| 2080 | width: 100%; |
| 2081 | outline: none; |
| 2082 | -webkit-box-shadow: none; |
| 2083 | box-shadow: none; |
| 2084 | } |
| 2085 | |
| 2086 | .template__wrapper .form__control::-webkit-input-placeholder { |
| 2087 | color: #7C8DB5; |
| 2088 | } |
| 2089 | |
| 2090 | .template__wrapper .form__control:-moz-placeholder { |
| 2091 | color: #7C8DB5; |
| 2092 | } |
| 2093 | |
| 2094 | .template__wrapper .form__control::-moz-placeholder { |
| 2095 | color: #7C8DB5; |
| 2096 | } |
| 2097 | |
| 2098 | .template__wrapper .form__control:-ms-input-placeholder { |
| 2099 | color: #7C8DB5; |
| 2100 | } |
| 2101 | |
| 2102 | .template__wrapper textarea.form__control { |
| 2103 | height: 120px; |
| 2104 | padding-top: 15px; |
| 2105 | } |
| 2106 | |
| 2107 | .template__wrapper .embedpress__select select[disabled] { |
| 2108 | background-image: none; |
| 2109 | } |
| 2110 | |
| 2111 | .template__wrapper label { |
| 2112 | font-size: 16px; |
| 2113 | font-weight: 400; |
| 2114 | color: #7C8DB5; |
| 2115 | margin-bottom: 8px; |
| 2116 | } |
| 2117 | |
| 2118 | .embedpress__select { |
| 2119 | position: relative; |
| 2120 | } |
| 2121 | |
| 2122 | .embedpress__select span { |
| 2123 | position: absolute; |
| 2124 | top: 12px; |
| 2125 | right: 15px; |
| 2126 | font-size: 12px; |
| 2127 | color: #25396F; |
| 2128 | pointer-events: none; |
| 2129 | } |
| 2130 | |
| 2131 | .embedpress__select select { |
| 2132 | height: 40px; |
| 2133 | padding: 0 20px; |
| 2134 | border-radius: 5px; |
| 2135 | background: #ffffff; |
| 2136 | border: 1px solid #E6EFFB; |
| 2137 | color: #25396F; |
| 2138 | width: 100%; |
| 2139 | -webkit-appearance: none; |
| 2140 | -moz-appearance: none; |
| 2141 | appearance: none; |
| 2142 | } |
| 2143 | |
| 2144 | .input__radio { |
| 2145 | position: relative; |
| 2146 | padding-left: 25px; |
| 2147 | } |
| 2148 | |
| 2149 | .input__radio input { |
| 2150 | display: none; |
| 2151 | } |
| 2152 | |
| 2153 | .input__radio input:checked~span:after { |
| 2154 | opacity: 1; |
| 2155 | } |
| 2156 | |
| 2157 | .input__radio span { |
| 2158 | cursor: pointer; |
| 2159 | } |
| 2160 | |
| 2161 | .input__radio span:before { |
| 2162 | position: absolute; |
| 2163 | top: 5px; |
| 2164 | left: 0; |
| 2165 | height: 16px; |
| 2166 | width: 16px; |
| 2167 | border-radius: 50%; |
| 2168 | border: 1px solid rgba(91, 78, 150, 0.1); |
| 2169 | content: ''; |
| 2170 | } |
| 2171 | |
| 2172 | .input__radio span:after { |
| 2173 | position: absolute; |
| 2174 | top: 8px; |
| 2175 | left: 3px; |
| 2176 | height: 12px; |
| 2177 | width: 12px; |
| 2178 | border-radius: 50%; |
| 2179 | background: #5B4E96; |
| 2180 | content: ''; |
| 2181 | opacity: 0; |
| 2182 | } |
| 2183 | |
| 2184 | .template__wrapper .input__switch { |
| 2185 | font-size: 0; |
| 2186 | cursor: pointer; |
| 2187 | } |
| 2188 | |
| 2189 | .template__wrapper .input__switch input { |
| 2190 | display: none; |
| 2191 | } |
| 2192 | |
| 2193 | .template__wrapper .input__switch input:checked~span { |
| 2194 | background: #5B4E96; |
| 2195 | } |
| 2196 | |
| 2197 | .template__wrapper .input__switch input:checked~span:before { |
| 2198 | left: 15px; |
| 2199 | } |
| 2200 | |
| 2201 | .template__wrapper .input__switch span { |
| 2202 | height: 17px; |
| 2203 | width: 30px; |
| 2204 | background: rgba(91, 78, 150, 0.3); |
| 2205 | display: inline-block; |
| 2206 | border-radius: 15px; |
| 2207 | position: relative; |
| 2208 | -webkit-transition: all .3s ease; |
| 2209 | transition: all .3s ease; |
| 2210 | } |
| 2211 | |
| 2212 | .template__wrapper .input__switch span:before { |
| 2213 | position: absolute; |
| 2214 | top: 2px; |
| 2215 | left: 2px; |
| 2216 | height: 13px; |
| 2217 | width: 13px; |
| 2218 | border-radius: 50%; |
| 2219 | background: #ffffff; |
| 2220 | content: ''; |
| 2221 | -webkit-transition: all .3s ease; |
| 2222 | transition: all .3s ease; |
| 2223 | } |
| 2224 | |
| 2225 | .template__wrapper .input__switch.switch__text { |
| 2226 | border: 1px solid #E6EFFB; |
| 2227 | display: inline-block; |
| 2228 | padding: 10px 50px; |
| 2229 | border-radius: 5px; |
| 2230 | position: relative; |
| 2231 | } |
| 2232 | |
| 2233 | .template__wrapper .input__switch.switch__text:before, .template__wrapper .input__switch.switch__text:after { |
| 2234 | font-size: 14px; |
| 2235 | font-weight: 400; |
| 2236 | color: #25396F; |
| 2237 | position: absolute; |
| 2238 | top: 7px; |
| 2239 | } |
| 2240 | |
| 2241 | .template__wrapper .input__switch.switch__text:before { |
| 2242 | content: 'OFF'; |
| 2243 | left: 10px; |
| 2244 | } |
| 2245 | |
| 2246 | .template__wrapper .input__switch.switch__text:after { |
| 2247 | content: 'ON'; |
| 2248 | right: 10px; |
| 2249 | } |
| 2250 | |
| 2251 | .input__file { |
| 2252 | display: block; |
| 2253 | border: 1px solid #E6EFFB; |
| 2254 | padding: 5px 20px; |
| 2255 | border-radius: 5px; |
| 2256 | cursor: pointer; |
| 2257 | } |
| 2258 | |
| 2259 | .input__file .form__control { |
| 2260 | display: none; |
| 2261 | } |
| 2262 | |
| 2263 | .form__group { |
| 2264 | margin-bottom: 25px; |
| 2265 | } |
| 2266 | |
| 2267 | .form__group.mb0 { |
| 2268 | margin-bottom: 0; |
| 2269 | } |
| 2270 | |
| 2271 | .iframe__size__control__form .form__group { |
| 2272 | display: -webkit-box; |
| 2273 | display: -ms-flexbox; |
| 2274 | display: flex; |
| 2275 | -webkit-box-align: center; |
| 2276 | -ms-flex-align: center; |
| 2277 | align-items: center; |
| 2278 | } |
| 2279 | |
| 2280 | @media (max-width: 575px) { |
| 2281 | .iframe__size__control__form .form__group { |
| 2282 | display: block; |
| 2283 | } |
| 2284 | } |
| 2285 | |
| 2286 | .iframe__size__control__form .form__group:last-child { |
| 2287 | margin-bottom: 0; |
| 2288 | } |
| 2289 | |
| 2290 | .iframe__size__control__form .form__group label { |
| 2291 | -webkit-box-flex: 0; |
| 2292 | -ms-flex: 0 0 240px; |
| 2293 | flex: 0 0 240px; |
| 2294 | margin-bottom: 0; |
| 2295 | } |
| 2296 | |
| 2297 | @media (max-width: 575px) { |
| 2298 | .iframe__size__control__form .form__group label { |
| 2299 | margin-bottom: 10px; |
| 2300 | font-weight: 700; |
| 2301 | margin-right: 15px; |
| 2302 | } |
| 2303 | |
| 2304 | .iframe__size__control__form .form__group label:after { |
| 2305 | content: ':'; |
| 2306 | } |
| 2307 | } |
| 2308 | |
| 2309 | @media (max-width: 479px) { |
| 2310 | .iframe__size__control__form .form__group label { |
| 2311 | display: block; |
| 2312 | } |
| 2313 | } |
| 2314 | |
| 2315 | .iframe__size__control__form .form__group .form__control { |
| 2316 | width: 80px; |
| 2317 | padding: 0 15px; |
| 2318 | margin-right: 20px; |
| 2319 | } |
| 2320 | |
| 2321 | .iframe__size__control__form .form__group .frame__unit { |
| 2322 | font-size: 16px; |
| 2323 | font-weight: 400; |
| 2324 | color: #7C8DB5; |
| 2325 | } |
| 2326 | |
| 2327 | .iframe__size__control__wrap { |
| 2328 | -webkit-box-flex: 0; |
| 2329 | -ms-flex: 0 0 40%; |
| 2330 | flex: 0 0 40%; |
| 2331 | } |
| 2332 | |
| 2333 | .iframe__size__control__wrap h3 { |
| 2334 | font-size: 30px; |
| 2335 | font-weight: 700; |
| 2336 | color: #131F4D; |
| 2337 | margin-bottom: 25px; |
| 2338 | } |
| 2339 | |
| 2340 | @media (max-width: 767px) { |
| 2341 | .iframe__size__control__wrap h3 { |
| 2342 | font-size: 24px; |
| 2343 | } |
| 2344 | } |
| 2345 | |
| 2346 | @media (max-width: 575px) { |
| 2347 | .iframe__size__control__wrap h3 { |
| 2348 | font-size: 20px; |
| 2349 | } |
| 2350 | } |
| 2351 | |
| 2352 | .embedpress__settings__form .form__group { |
| 2353 | display: -webkit-box; |
| 2354 | display: -ms-flexbox; |
| 2355 | display: flex; |
| 2356 | -webkit-box-align: start; |
| 2357 | -ms-flex-align: start; |
| 2358 | align-items: flex-start; |
| 2359 | } |
| 2360 | |
| 2361 | .embedpress__settings__form .form__group .form__label { |
| 2362 | -webkit-box-flex: 0; |
| 2363 | -ms-flex: 0 0 410px; |
| 2364 | flex: 0 0 410px; |
| 2365 | font-size: 16px; |
| 2366 | font-weight: 400; |
| 2367 | color: #7C8DB5; |
| 2368 | } |
| 2369 | |
| 2370 | .embedpress__settings__form .form__group .form__label .isPro { |
| 2371 | font-size: 10px; |
| 2372 | font-weight: 400; |
| 2373 | color: #ffffff; |
| 2374 | background: #5B4E96; |
| 2375 | border-radius: 20px; |
| 2376 | padding: 2px 5px; |
| 2377 | margin-left: 10px; |
| 2378 | text-transform: uppercase; |
| 2379 | } |
| 2380 | |
| 2381 | @media (max-width: 1399px) { |
| 2382 | .embedpress__settings__form .form__group .form__label { |
| 2383 | -webkit-box-flex: 0; |
| 2384 | -ms-flex: 0 0 300px; |
| 2385 | flex: 0 0 300px; |
| 2386 | } |
| 2387 | } |
| 2388 | |
| 2389 | @media (max-width: 1199px) { |
| 2390 | .embedpress__settings__form .form__group .form__label { |
| 2391 | -webkit-box-flex: 0; |
| 2392 | -ms-flex: 0 0 250px; |
| 2393 | flex: 0 0 250px; |
| 2394 | } |
| 2395 | } |
| 2396 | |
| 2397 | @media (max-width: 767px) { |
| 2398 | .embedpress__settings__form .form__group .form__label { |
| 2399 | margin-bottom: 10px; |
| 2400 | font-weight: 700; |
| 2401 | } |
| 2402 | |
| 2403 | .embedpress__settings__form .form__group .form__label:after { |
| 2404 | content: ':'; |
| 2405 | } |
| 2406 | } |
| 2407 | |
| 2408 | .embedpress__settings__form .form__group .form__control__wrap { |
| 2409 | -webkit-box-flex: 1; |
| 2410 | -ms-flex-positive: 1; |
| 2411 | flex-grow: 1; |
| 2412 | } |
| 2413 | |
| 2414 | .embedpress__settings__form .form__group .form__control__wrap--flex { |
| 2415 | display: -webkit-box; |
| 2416 | display: -ms-flexbox; |
| 2417 | display: flex; |
| 2418 | } |
| 2419 | |
| 2420 | .embedpress__settings__form .form__group .form__control__wrap .input__flex { |
| 2421 | display: -webkit-box; |
| 2422 | display: -ms-flexbox; |
| 2423 | display: flex; |
| 2424 | -webkit-box-align: center; |
| 2425 | -ms-flex-align: center; |
| 2426 | align-items: center; |
| 2427 | } |
| 2428 | |
| 2429 | .embedpress__settings__form .form__group .form__control__wrap .input__flex label:not(:last-child) { |
| 2430 | margin-right: 20px; |
| 2431 | } |
| 2432 | |
| 2433 | .embedpress__settings__form .form__group .form__control__wrap .input__flex .form__control[type="number"] { |
| 2434 | width: 80px; |
| 2435 | margin-right: 20px; |
| 2436 | padding: 0 15px; |
| 2437 | } |
| 2438 | |
| 2439 | .embedpress__settings__form .form__group .form__control__wrap .input__flex .frame__unit { |
| 2440 | line-height: 1; |
| 2441 | } |
| 2442 | |
| 2443 | .embedpress__settings__form .form__group .form__control__wrap .input__file, |
| 2444 | .embedpress__settings__form .form__group .form__control__wrap .form__control, |
| 2445 | .embedpress__settings__form .form__group .form__control__wrap .embedpress__select { |
| 2446 | max-width: 300px; |
| 2447 | } |
| 2448 | |
| 2449 | .embedpress__settings__form .form__group .form__control__wrap p { |
| 2450 | font-size: 14px; |
| 2451 | font-weight: 400; |
| 2452 | color: #7C8DB5; |
| 2453 | margin-top: 10px; |
| 2454 | } |
| 2455 | |
| 2456 | .embedpress__settings__form .form__group .form__control__wrap p.ep-note { |
| 2457 | font-size: 12px; |
| 2458 | } |
| 2459 | |
| 2460 | .embedpress__settings__form .form__group .form__control__wrap .isPro:not(.embedpress__select) { |
| 2461 | opacity: 0.3; |
| 2462 | } |
| 2463 | |
| 2464 | .embedpress-genral-settings-page { |
| 2465 | display: flex; |
| 2466 | } |
| 2467 | |
| 2468 | .embedpress_general_settings__form:not(:last-child), .embedpress__shortcode { |
| 2469 | margin-right: 24px; |
| 2470 | width: calc(100% - 300px); |
| 2471 | } |
| 2472 | |
| 2473 | .embedpress_general_settings__form:last-child { |
| 2474 | width: 100%; |
| 2475 | } |
| 2476 | |
| 2477 | .embedpress-upgrade-pro-sidebar { |
| 2478 | width: 300px; |
| 2479 | border-radius: 16px; |
| 2480 | background: linear-gradient(192deg, #FFE3E1 4%, #E9E4FF 98.26%); |
| 2481 | padding: 8px; |
| 2482 | margin-top: -70px; |
| 2483 | } |
| 2484 | |
| 2485 | .shortcode-settings-wrapper { |
| 2486 | display: flex; |
| 2487 | |
| 2488 | } |
| 2489 | |
| 2490 | |
| 2491 | .embedpress-upgrade-pro-sidebar .gradient-color { |
| 2492 | border-radius: 12px; |
| 2493 | background: white; |
| 2494 | padding: 15px; |
| 2495 | |
| 2496 | |
| 2497 | } |
| 2498 | |
| 2499 | .embedpress-upgrade-pro-sidebar img.embedpress-banner { |
| 2500 | margin-bottom: var(--pro-upgrade-margin-bottom); |
| 2501 | width: 100%; |
| 2502 | } |
| 2503 | |
| 2504 | .embedpress-upgrade-pro-sidebar h3 { |
| 2505 | color: #25396F; |
| 2506 | font-family: DMSans; |
| 2507 | font-size: 16px; |
| 2508 | font-style: normal; |
| 2509 | font-weight: 700; |
| 2510 | line-height: 120%; |
| 2511 | margin-bottom: var(--pro-upgrade-margin-bottom); |
| 2512 | } |
| 2513 | |
| 2514 | .embedpress-upgrade-pro-sidebar h3 span { |
| 2515 | color: #FF7369; |
| 2516 | } |
| 2517 | |
| 2518 | ul.feature-list { |
| 2519 | margin-bottom: var(--pro-upgrade-margin-bottom); |
| 2520 | } |
| 2521 | |
| 2522 | ul.feature-list li { |
| 2523 | display: flex; |
| 2524 | align-items: start; |
| 2525 | gap: 5px; |
| 2526 | margin-bottom: 6px; |
| 2527 | color: #25396fde; |
| 2528 | font-family: DMSans; |
| 2529 | font-size: 14px; |
| 2530 | font-style: normal; |
| 2531 | font-weight: 500; |
| 2532 | line-height: 18px; |
| 2533 | } |
| 2534 | |
| 2535 | ul.feature-list img { |
| 2536 | margin-top: 0px; |
| 2537 | width: 18px; |
| 2538 | height: 20px; |
| 2539 | } |
| 2540 | |
| 2541 | p.embedpress-tagline { |
| 2542 | color: #707070; |
| 2543 | font-family: DMSans; |
| 2544 | font-size: 12px; |
| 2545 | font-style: normal; |
| 2546 | font-weight: 400; |
| 2547 | line-height: 140%; |
| 2548 | text-align: center; |
| 2549 | margin-bottom: var(--pro-upgrade-margin-bottom); |
| 2550 | } |
| 2551 | |
| 2552 | .pro-upgrade-button { |
| 2553 | border-radius: 8px; |
| 2554 | background: #FF7369; |
| 2555 | padding: 12px 0px; |
| 2556 | color: #fff !important; |
| 2557 | text-align: center; |
| 2558 | font-size: 16px; |
| 2559 | font-style: normal; |
| 2560 | line-height: 120%; |
| 2561 | width: 100%; |
| 2562 | display: flex !important; |
| 2563 | gap: 5px; |
| 2564 | align-items: center; |
| 2565 | justify-content: center; |
| 2566 | } |
| 2567 | |
| 2568 | .frame__size__wrap { |
| 2569 | display: -webkit-box; |
| 2570 | display: -ms-flexbox; |
| 2571 | display: flex; |
| 2572 | } |
| 2573 | |
| 2574 | .template__wrapper .button.ep-settings-form-changed { |
| 2575 | background: #f11d1d; |
| 2576 | color: #fff; |
| 2577 | } |
| 2578 | |
| 2579 | @media (max-width: 1199px) { |
| 2580 | .frame__size__wrap { |
| 2581 | display: block; |
| 2582 | } |
| 2583 | } |
| 2584 | |
| 2585 | .form__inline .form-inner-field { |
| 2586 | display: -webkit-box; |
| 2587 | display: -ms-flexbox; |
| 2588 | display: flex; |
| 2589 | gap: 15px; |
| 2590 | } |
| 2591 | |
| 2592 | .form-inner-field button { |
| 2593 | height: 60px; |
| 2594 | } |
| 2595 | |
| 2596 | .form__inline .form__group { |
| 2597 | margin-bottom: 0; |
| 2598 | margin-right: 30px; |
| 2599 | } |
| 2600 | |
| 2601 | .logo__adjust__wrap { |
| 2602 | margin-top: 20px; |
| 2603 | display: none; |
| 2604 | } |
| 2605 | |
| 2606 | .form__control__wrap .input__switch .logo__adjust__toggler { |
| 2607 | position: absolute; |
| 2608 | top: 2px; |
| 2609 | left: calc(100% + 15px); |
| 2610 | background: #5B4E96; |
| 2611 | color: #fff; |
| 2612 | border-radius: 5px; |
| 2613 | padding: 5px 30px 5px 10px; |
| 2614 | font-size: 14px; |
| 2615 | opacity: 0; |
| 2616 | visibility: hidden; |
| 2617 | transition: all .3s ease; |
| 2618 | } |
| 2619 | |
| 2620 | .form__control__wrap .input__switch .logo__adjust__toggler i { |
| 2621 | font-size: 10px; |
| 2622 | margin-left: 8px; |
| 2623 | position: absolute; |
| 2624 | top: 11px; |
| 2625 | right: 10px; |
| 2626 | transition: all .3s ease; |
| 2627 | transform: rotate(0); |
| 2628 | } |
| 2629 | |
| 2630 | .form__control__wrap .input__switch .logo__adjust__toggler.show i { |
| 2631 | transform: rotate(-180deg); |
| 2632 | } |
| 2633 | |
| 2634 | .form__control__wrap .input__switch input[type="checkbox"]:checked~.logo__adjust__toggler { |
| 2635 | opacity: 1; |
| 2636 | visibility: visible; |
| 2637 | } |
| 2638 | |
| 2639 | .logo__adjust__wrap .logo__upload__wrap { |
| 2640 | display: flex; |
| 2641 | align-items: center; |
| 2642 | } |
| 2643 | |
| 2644 | .logo__adjust__wrap .logo__upload, |
| 2645 | .logo__adjust__wrap .logo__upload__preview { |
| 2646 | display: inline-block; |
| 2647 | width: 100%; |
| 2648 | max-width: 255px; |
| 2649 | border-radius: 10px; |
| 2650 | border: 2px dashed rgba(124, 141, 181, 0.3); |
| 2651 | background: #F5F7FD; |
| 2652 | padding: 40px 15px; |
| 2653 | text-align: center; |
| 2654 | position: relative; |
| 2655 | margin-bottom: 0; |
| 2656 | height: 172px; |
| 2657 | } |
| 2658 | |
| 2659 | #valid-license-key-message { |
| 2660 | font-weight: 500; |
| 2661 | } |
| 2662 | |
| 2663 | div#valid-license-key-message { |
| 2664 | margin-top: 10px; |
| 2665 | margin-bottom: 30px; |
| 2666 | } |
| 2667 | |
| 2668 | span#email-placeholder { |
| 2669 | font-weight: 700; |
| 2670 | } |
| 2671 | |
| 2672 | .form__inline .hidden, #otp-varify-form.hidden { |
| 2673 | display: none !important; |
| 2674 | } |
| 2675 | |
| 2676 | .short-description { |
| 2677 | margin-top: 10px; |
| 2678 | padding: 10px 15px; |
| 2679 | background: #f2f2f2; |
| 2680 | margin-bottom: 10px; |
| 2681 | border-radius: 5px; |
| 2682 | } |
| 2683 | |
| 2684 | div#invalid-license-key-message, #invalid-verification-key-message { |
| 2685 | padding: 10px; |
| 2686 | background: #f2f2f2; |
| 2687 | border-radius: 5px; |
| 2688 | margin-top: 10px; |
| 2689 | } |
| 2690 | |
| 2691 | .short-description a { |
| 2692 | color: #5b4e96; |
| 2693 | } |
| 2694 | |
| 2695 | div#resend-verification-key-message { |
| 2696 | margin-top: 10px; |
| 2697 | } |
| 2698 | |
| 2699 | div#resend-verification-key-message a { |
| 2700 | color: #5b4e96; |
| 2701 | } |
| 2702 | |
| 2703 | .show-toast { |
| 2704 | visibility: visible !important; |
| 2705 | opacity: 1 !important; |
| 2706 | } |
| 2707 | |
| 2708 | div#resend-verification-key-message span { |
| 2709 | font-weight: bold; |
| 2710 | color: #5b4e96; |
| 2711 | cursor: pointer; |
| 2712 | } |
| 2713 | |
| 2714 | div#resend-verification-key-message a { |
| 2715 | font-weight: 600; |
| 2716 | } |
| 2717 | |
| 2718 | .form-inner-field .form__group { |
| 2719 | margin-right: 0; |
| 2720 | } |
| 2721 | |
| 2722 | @media (max-width: 479px) { |
| 2723 | .logo__adjust__wrap .logo__upload { |
| 2724 | width: 225px; |
| 2725 | } |
| 2726 | } |
| 2727 | |
| 2728 | .logo__adjust__wrap .logo__upload .icon { |
| 2729 | margin-bottom: 10px; |
| 2730 | display: block; |
| 2731 | } |
| 2732 | |
| 2733 | .logo__adjust__wrap .logo__upload .icon i { |
| 2734 | font-size: 50px; |
| 2735 | opacity: .3; |
| 2736 | } |
| 2737 | |
| 2738 | .logo__adjust__wrap .logo__upload .text { |
| 2739 | display: block; |
| 2740 | font-size: 14px; |
| 2741 | } |
| 2742 | |
| 2743 | .logo__adjust__wrap .logo__upload input { |
| 2744 | opacity: 0; |
| 2745 | position: absolute; |
| 2746 | top: 0; |
| 2747 | left: 0; |
| 2748 | height: 100%; |
| 2749 | width: 100%; |
| 2750 | z-index: 9; |
| 2751 | cursor: pointer; |
| 2752 | } |
| 2753 | |
| 2754 | .logo__adjust__wrap .logo__upload__preview .instant__preview { |
| 2755 | position: absolute; |
| 2756 | top: 50%; |
| 2757 | left: 50%; |
| 2758 | transform: translate(-50%, -50%); |
| 2759 | font-size: 0; |
| 2760 | } |
| 2761 | |
| 2762 | .logo__adjust__wrap .logo__upload__preview .instant__preview .preview__remove { |
| 2763 | position: absolute; |
| 2764 | bottom: 100%; |
| 2765 | left: 100%; |
| 2766 | font-size: 7px; |
| 2767 | height: 20px; |
| 2768 | width: 20px; |
| 2769 | background: #5B4E96; |
| 2770 | color: #fff; |
| 2771 | line-height: 22px; |
| 2772 | border-radius: 50%; |
| 2773 | } |
| 2774 | |
| 2775 | .logo__adjust__wrap .logo__adjust { |
| 2776 | margin-top: 20px; |
| 2777 | display: -webkit-box; |
| 2778 | display: -ms-flexbox; |
| 2779 | display: flex; |
| 2780 | -ms-flex-wrap: wrap; |
| 2781 | flex-wrap: wrap; |
| 2782 | } |
| 2783 | |
| 2784 | @media (max-width: 1399px) { |
| 2785 | .logo__adjust__wrap .logo__adjust { |
| 2786 | display: block; |
| 2787 | } |
| 2788 | } |
| 2789 | |
| 2790 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller { |
| 2791 | -webkit-box-flex: 0; |
| 2792 | -ms-flex: 0 0 300px; |
| 2793 | flex: 0 0 300px; |
| 2794 | margin-right: 30px; |
| 2795 | } |
| 2796 | |
| 2797 | @media (max-width: 1399px) { |
| 2798 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller { |
| 2799 | width: 100%; |
| 2800 | margin-right: 0; |
| 2801 | } |
| 2802 | } |
| 2803 | |
| 2804 | @media (max-width: 479px) { |
| 2805 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller { |
| 2806 | -webkit-box-flex: 0; |
| 2807 | -ms-flex: 0 0 225px; |
| 2808 | flex: 0 0 225px; |
| 2809 | margin-right: 0; |
| 2810 | } |
| 2811 | } |
| 2812 | |
| 2813 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item:not(:last-child) { |
| 2814 | margin-bottom: 25px; |
| 2815 | } |
| 2816 | |
| 2817 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .controller__label { |
| 2818 | font-size: 16px; |
| 2819 | font-weight: 400; |
| 2820 | color: #7C8DB5; |
| 2821 | display: inline-block; |
| 2822 | } |
| 2823 | |
| 2824 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs { |
| 2825 | display: -webkit-box; |
| 2826 | display: -ms-flexbox; |
| 2827 | display: flex; |
| 2828 | -webkit-box-align: center; |
| 2829 | -ms-flex-align: center; |
| 2830 | align-items: center; |
| 2831 | } |
| 2832 | |
| 2833 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs input[type="range"] { |
| 2834 | margin-right: 20px; |
| 2835 | width: 200px; |
| 2836 | } |
| 2837 | |
| 2838 | @media (max-width: 1199px) { |
| 2839 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs input[type="range"] { |
| 2840 | width: 145px; |
| 2841 | } |
| 2842 | } |
| 2843 | |
| 2844 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs .form__control[type="number"] { |
| 2845 | width: 80px; |
| 2846 | padding: 0 15px; |
| 2847 | } |
| 2848 | |
| 2849 | @media (max-width: 1199px) { |
| 2850 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs .form__control[type="number"] { |
| 2851 | width: 55px; |
| 2852 | padding: 0 12px; |
| 2853 | } |
| 2854 | } |
| 2855 | |
| 2856 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview { |
| 2857 | -webkit-box-flex: 0; |
| 2858 | -ms-flex: 0 0 500px; |
| 2859 | flex: 0 0 500px; |
| 2860 | } |
| 2861 | |
| 2862 | @media (max-width: 1399px) { |
| 2863 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview { |
| 2864 | width: 100%; |
| 2865 | max-width: 400px; |
| 2866 | margin-top: 20px; |
| 2867 | } |
| 2868 | } |
| 2869 | |
| 2870 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .title { |
| 2871 | font-size: 16px; |
| 2872 | font-weight: 400; |
| 2873 | color: #7C8DB5; |
| 2874 | display: inline-block; |
| 2875 | margin-bottom: 10px; |
| 2876 | } |
| 2877 | |
| 2878 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .preview__box { |
| 2879 | position: relative; |
| 2880 | min-height: 300px; |
| 2881 | } |
| 2882 | |
| 2883 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .preview__box iframe { |
| 2884 | width: 100%; |
| 2885 | height: 100%; |
| 2886 | min-height: 300px; |
| 2887 | } |
| 2888 | |
| 2889 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .preview__box img { |
| 2890 | position: absolute; |
| 2891 | bottom: 10%; |
| 2892 | right: 6%; |
| 2893 | max-height: 40px; |
| 2894 | } |
| 2895 | |
| 2896 | .pro__alert__wrap, .tips__alert__wrap { |
| 2897 | position: fixed; |
| 2898 | top: 0; |
| 2899 | left: 0; |
| 2900 | height: 100%; |
| 2901 | width: 100%; |
| 2902 | background: rgb(0, 0, 0, 30%); |
| 2903 | z-index: 99999; |
| 2904 | display: none; |
| 2905 | } |
| 2906 | |
| 2907 | .pro__alert__wrap .pro__alert__card, .tips__alert__wrap .tips__alert__card { |
| 2908 | width: calc(100% - 30px); |
| 2909 | max-width: 500px; |
| 2910 | margin: 7% auto 0; |
| 2911 | background: #fff; |
| 2912 | border-radius: 20px; |
| 2913 | padding: 30px; |
| 2914 | display: flex; |
| 2915 | flex-direction: column; |
| 2916 | align-items: center; |
| 2917 | text-align: center; |
| 2918 | } |
| 2919 | |
| 2920 | .pro__alert__wrap .pro__alert__card img, .tips__alert__wrap .tips__alert__card img { |
| 2921 | height: 100px; |
| 2922 | margin-bottom: 20px; |
| 2923 | } |
| 2924 | |
| 2925 | .pro__alert__wrap .pro__alert__card h2, .tips__alert__wrap .tips__alert__card h2 { |
| 2926 | font-size: 32px; |
| 2927 | font-weight: 500; |
| 2928 | color: #131F4D; |
| 2929 | margin-bottom: 15px; |
| 2930 | } |
| 2931 | |
| 2932 | .pro__alert__wrap .pro__alert__card p, .tips__alert__wrap .tips__alert__card p { |
| 2933 | font-size: 14px; |
| 2934 | font-weight: 400; |
| 2935 | color: #7C8DB5; |
| 2936 | margin-bottom: 15px; |
| 2937 | } |
| 2938 | |
| 2939 | .pro__alert__wrap .pro__alert__card p a, .tips__alert__wrap .tips__alert__card a { |
| 2940 | text-decoration: underline; |
| 2941 | font-weight: 700; |
| 2942 | color: #131F4D; |
| 2943 | } |
| 2944 | |
| 2945 | .pro__alert__wrap .pro__alert__card .button, .tips__alert__wrap .tips__alert__card button { |
| 2946 | align-self: flex-end; |
| 2947 | margin-top: 20px; |
| 2948 | padding: 11px 30px; |
| 2949 | } |
| 2950 | |
| 2951 | .template__wrapper input[type=range] { |
| 2952 | height: 24px; |
| 2953 | -webkit-appearance: none; |
| 2954 | margin: 10px 0; |
| 2955 | width: 100%; |
| 2956 | } |
| 2957 | |
| 2958 | .template__wrapper input[type=range]:focus { |
| 2959 | outline: none; |
| 2960 | } |
| 2961 | |
| 2962 | .template__wrapper input[type=range]::-webkit-slider-runnable-track { |
| 2963 | width: 100%; |
| 2964 | height: 10px; |
| 2965 | cursor: pointer; |
| 2966 | animate: 0.2s; |
| 2967 | -webkit-box-shadow: 0px 0px 0px #000000; |
| 2968 | box-shadow: 0px 0px 0px #000000; |
| 2969 | background: #5B4E96; |
| 2970 | border-radius: 5px; |
| 2971 | border: 2px solid #F5F7FD; |
| 2972 | } |
| 2973 | |
| 2974 | .template__wrapper input[type=range]::-webkit-slider-thumb { |
| 2975 | -webkit-box-shadow: 0px 0px 0px #000000; |
| 2976 | box-shadow: 0px 0px 0px #000000; |
| 2977 | border: 2px solid #5B4E96; |
| 2978 | height: 16px; |
| 2979 | width: 16px; |
| 2980 | border-radius: 8px; |
| 2981 | background: #FFFFFF; |
| 2982 | cursor: pointer; |
| 2983 | -webkit-appearance: none; |
| 2984 | margin-top: -5px; |
| 2985 | } |
| 2986 | |
| 2987 | .template__wrapper input[type=range]:focus::-webkit-slider-runnable-track { |
| 2988 | background: #5B4E96; |
| 2989 | } |
| 2990 | |
| 2991 | .template__wrapper input[type=range]::-moz-range-track { |
| 2992 | width: 100%; |
| 2993 | height: 10px; |
| 2994 | cursor: pointer; |
| 2995 | animate: 0.2s; |
| 2996 | box-shadow: 0px 0px 0px #000000; |
| 2997 | background: #5B4E96; |
| 2998 | border-radius: 5px; |
| 2999 | border: 2px solid #F5F7FD; |
| 3000 | } |
| 3001 | |
| 3002 | .template__wrapper input[type=range]::-moz-range-thumb { |
| 3003 | box-shadow: 0px 0px 0px #000000; |
| 3004 | border: 2px solid #5B4E96; |
| 3005 | height: 16px; |
| 3006 | width: 16px; |
| 3007 | border-radius: 8px; |
| 3008 | background: #FFFFFF; |
| 3009 | cursor: pointer; |
| 3010 | } |
| 3011 | |
| 3012 | .template__wrapper input[type=range]::-ms-track { |
| 3013 | width: 100%; |
| 3014 | height: 10px; |
| 3015 | cursor: pointer; |
| 3016 | animate: 0.2s; |
| 3017 | background: transparent; |
| 3018 | border-color: transparent; |
| 3019 | color: transparent; |
| 3020 | } |
| 3021 | |
| 3022 | .template__wrapper input[type=range]::-ms-fill-lower { |
| 3023 | background: #5B4E96; |
| 3024 | border: 2px solid #F5F7FD; |
| 3025 | border-radius: 10px; |
| 3026 | box-shadow: 0px 0px 0px #000000; |
| 3027 | } |
| 3028 | |
| 3029 | .template__wrapper input[type=range]::-ms-fill-upper { |
| 3030 | background: #5B4E96; |
| 3031 | border: 2px solid #F5F7FD; |
| 3032 | border-radius: 10px; |
| 3033 | box-shadow: 0px 0px 0px #000000; |
| 3034 | } |
| 3035 | |
| 3036 | .template__wrapper input[type=range]::-ms-thumb { |
| 3037 | margin-top: 1px; |
| 3038 | box-shadow: 0px 0px 0px #000000; |
| 3039 | border: 2px solid #5B4E96; |
| 3040 | height: 16px; |
| 3041 | width: 16px; |
| 3042 | border-radius: 8px; |
| 3043 | background: #FFFFFF; |
| 3044 | cursor: pointer; |
| 3045 | } |
| 3046 | |
| 3047 | .template__wrapper input[type=range]:focus::-ms-fill-lower { |
| 3048 | background: #5B4E96; |
| 3049 | } |
| 3050 | |
| 3051 | .template__wrapper input[type=range]:focus::-ms-fill-upper { |
| 3052 | background: #5B4E96; |
| 3053 | } |
| 3054 | |
| 3055 | .upgrade__card { |
| 3056 | display: -webkit-box; |
| 3057 | display: -ms-flexbox; |
| 3058 | display: flex; |
| 3059 | -webkit-box-align: center; |
| 3060 | -ms-flex-align: center; |
| 3061 | align-items: center; |
| 3062 | background: #5B4E96; |
| 3063 | border-radius: 25px; |
| 3064 | padding: 40px; |
| 3065 | } |
| 3066 | |
| 3067 | @media (max-width: 1199px) { |
| 3068 | .upgrade__card { |
| 3069 | padding: 50px; |
| 3070 | } |
| 3071 | } |
| 3072 | |
| 3073 | .upgrade__card .icon { |
| 3074 | margin-right: 40px; |
| 3075 | min-width: 90px; |
| 3076 | } |
| 3077 | |
| 3078 | @media (max-width: 767px) { |
| 3079 | .upgrade__card .icon { |
| 3080 | margin-right: 0; |
| 3081 | margin-bottom: 20px; |
| 3082 | } |
| 3083 | } |
| 3084 | |
| 3085 | .upgrade__card .card__content { |
| 3086 | margin-right: 30px; |
| 3087 | } |
| 3088 | |
| 3089 | @media (max-width: 767px) { |
| 3090 | .upgrade__card .card__content { |
| 3091 | margin-bottom: 20px; |
| 3092 | margin-right: 0; |
| 3093 | } |
| 3094 | } |
| 3095 | |
| 3096 | .upgrade__card .card__content h4 { |
| 3097 | font-size: 26px; |
| 3098 | font-weight: 500; |
| 3099 | color: #ffffff; |
| 3100 | margin-bottom: 15px; |
| 3101 | } |
| 3102 | |
| 3103 | @media (max-width: 767px) { |
| 3104 | .upgrade__card .card__content h4 { |
| 3105 | font-size: 22px; |
| 3106 | } |
| 3107 | } |
| 3108 | |
| 3109 | .upgrade__card .card__content p { |
| 3110 | font-size: 14px; |
| 3111 | font-weight: 400; |
| 3112 | color: rgba(255, 255, 255, 0.5); |
| 3113 | max-width: 700px; |
| 3114 | } |
| 3115 | |
| 3116 | .upgrade__card .button { |
| 3117 | margin-left: auto; |
| 3118 | min-width: 177px; |
| 3119 | text-align: center; |
| 3120 | } |
| 3121 | |
| 3122 | @media (max-width: 767px) { |
| 3123 | .upgrade__card { |
| 3124 | display: block; |
| 3125 | padding: 25px; |
| 3126 | } |
| 3127 | } |
| 3128 | |
| 3129 | .upgrage__card__tab__list { |
| 3130 | max-width: 650px; |
| 3131 | width: 100%; |
| 3132 | display: grid; |
| 3133 | -ms-grid-columns: 1fr 1fr; |
| 3134 | grid-template-columns: repeat(2, 1fr); |
| 3135 | gap: 16px; |
| 3136 | margin-bottom: 50px !important; |
| 3137 | } |
| 3138 | |
| 3139 | .upgrage__card__tab__list .upgrage__card__tab__list__item { |
| 3140 | color: #5B4E96; |
| 3141 | font-size: 16px; |
| 3142 | font-weight: 500; |
| 3143 | line-height: 18px; |
| 3144 | display: inline-flex; |
| 3145 | align-items: center; |
| 3146 | gap: 8px; |
| 3147 | } |
| 3148 | |
| 3149 | @media (max-width: 575px) { |
| 3150 | .upgrage__card__tab__list { |
| 3151 | -ms-grid-columns: 1fr; |
| 3152 | grid-template-columns: repeat(1, 1fr); |
| 3153 | } |
| 3154 | } |
| 3155 | |
| 3156 | .upgrage__card__tab__list .upgrage__card__tab__list__item:before { |
| 3157 | content: "\e910"; |
| 3158 | font-family: 'icomoon'; |
| 3159 | color: #4AD750; |
| 3160 | } |
| 3161 | |
| 3162 | .upgrage__card__tab__style h3 { |
| 3163 | font-size: 30px; |
| 3164 | font-weight: 700; |
| 3165 | color: #131F4D; |
| 3166 | margin-bottom: 25px; |
| 3167 | } |
| 3168 | |
| 3169 | @media (max-width: 767px) { |
| 3170 | .upgrage__card__tab__style h3 { |
| 3171 | font-size: 24px; |
| 3172 | } |
| 3173 | } |
| 3174 | |
| 3175 | @media (max-width: 575px) { |
| 3176 | .upgrage__card__tab__style h3 { |
| 3177 | font-size: 20px; |
| 3178 | } |
| 3179 | } |
| 3180 | |
| 3181 | .upgrage__card__tab__style p { |
| 3182 | font-size: 14px; |
| 3183 | font-weight: 400; |
| 3184 | color: #7C8DB5; |
| 3185 | margin-bottom: 30px; |
| 3186 | max-width: 1320px; |
| 3187 | line-height: 1.85; |
| 3188 | } |
| 3189 | |
| 3190 | .embedpress-license__details { |
| 3191 | display: -ms-grid; |
| 3192 | display: grid; |
| 3193 | -ms-grid-columns: 3.5fr 2fr; |
| 3194 | grid-template-columns: 3.5fr 2fr; |
| 3195 | gap: 5px; |
| 3196 | } |
| 3197 | |
| 3198 | @media (max-width: 991px) { |
| 3199 | .embedpress-license__details { |
| 3200 | display: block; |
| 3201 | } |
| 3202 | } |
| 3203 | |
| 3204 | .embedpress-license__details .license__content { |
| 3205 | background: #ffffff; |
| 3206 | padding: 40px 100px 50px 50px; |
| 3207 | |
| 3208 | } |
| 3209 | |
| 3210 | @media (max-width: 1199px) { |
| 3211 | .embedpress-license__details .license__content { |
| 3212 | padding: 30px; |
| 3213 | } |
| 3214 | } |
| 3215 | |
| 3216 | @media (max-width: 991px) { |
| 3217 | .embedpress-license__details .license__content { |
| 3218 | margin-bottom: 5px; |
| 3219 | } |
| 3220 | } |
| 3221 | |
| 3222 | @media (max-width: 767px) { |
| 3223 | .embedpress-license__details .license__content { |
| 3224 | padding: 40px 30px; |
| 3225 | } |
| 3226 | } |
| 3227 | |
| 3228 | @media (max-width: 575px) { |
| 3229 | .embedpress-license__details .license__content .form__inline { |
| 3230 | display: block; |
| 3231 | } |
| 3232 | |
| 3233 | .embedpress-license__details .license__content .form__inline .form__group { |
| 3234 | margin-bottom: 25px; |
| 3235 | margin-right: 0; |
| 3236 | } |
| 3237 | } |
| 3238 | |
| 3239 | .embedpress-license__details .license__content .thumb__area { |
| 3240 | /* max-width: 350px; */ |
| 3241 | /* text-align: center; */ |
| 3242 | margin-bottom: 30px; |
| 3243 | } |
| 3244 | |
| 3245 | .embedpress-license__details .license__content .thumb__area img { |
| 3246 | max-width: 320px; |
| 3247 | } |
| 3248 | |
| 3249 | .embedpress-license__details .license__content .thumb__area h2 { |
| 3250 | font-size: 30px; |
| 3251 | font-weight: 400; |
| 3252 | color: #25396F; |
| 3253 | margin-top: 10px; |
| 3254 | } |
| 3255 | |
| 3256 | @media (max-width: 767px) { |
| 3257 | .embedpress-license__details .license__content .thumb__area h2 { |
| 3258 | font-size: 24px; |
| 3259 | } |
| 3260 | } |
| 3261 | |
| 3262 | .embedpress-license__details .license__content p { |
| 3263 | font-size: 16px; |
| 3264 | font-weight: 400; |
| 3265 | color: #25396F; |
| 3266 | margin-bottom: 30px; |
| 3267 | } |
| 3268 | |
| 3269 | @media (max-width: 767px) { |
| 3270 | .embedpress-license__details .license__content p { |
| 3271 | font-size: 16px; |
| 3272 | } |
| 3273 | } |
| 3274 | |
| 3275 | .embedpress-license__details .license__content p a { |
| 3276 | color: #5B4E96; |
| 3277 | text-decoration: underline; |
| 3278 | } |
| 3279 | |
| 3280 | .embedpress-license__details .license__content ol { |
| 3281 | list-style: decimal; |
| 3282 | padding-left: 19px; |
| 3283 | margin-bottom: 50px; |
| 3284 | } |
| 3285 | |
| 3286 | .embedpress-license__details .license__content ol li { |
| 3287 | font-size: 18px; |
| 3288 | font-weight: 400; |
| 3289 | color: #25396F; |
| 3290 | } |
| 3291 | |
| 3292 | .embedpress-license__details .license__content ol li:not(:last-child) { |
| 3293 | margin-bottom: 15px; |
| 3294 | } |
| 3295 | |
| 3296 | @media (max-width: 767px) { |
| 3297 | .embedpress-license__details .license__content ol li { |
| 3298 | font-size: 16px; |
| 3299 | } |
| 3300 | } |
| 3301 | |
| 3302 | .embedpress-license__details .license__content ol li a { |
| 3303 | color: #5B4E96; |
| 3304 | text-decoration: underline; |
| 3305 | } |
| 3306 | |
| 3307 | .embedpress-license__details .license__content .form__group { |
| 3308 | -webkit-box-flex: 1; |
| 3309 | -ms-flex-positive: 1; |
| 3310 | flex-grow: 1; |
| 3311 | position: relative; |
| 3312 | } |
| 3313 | |
| 3314 | |
| 3315 | |
| 3316 | .embedpress-license__details .license__content .form__group .input__icon { |
| 3317 | position: absolute; |
| 3318 | top: 20px; |
| 3319 | left: 20px; |
| 3320 | color: #7C8DB5; |
| 3321 | pointer-events: none; |
| 3322 | width: 20px; |
| 3323 | } |
| 3324 | |
| 3325 | .embedpress-license__details .license__content .form__group .input__icon i { |
| 3326 | font-size: 20px; |
| 3327 | } |
| 3328 | |
| 3329 | @media (max-width: 767px) { |
| 3330 | .embedpress-license__details .license__content .form__group .input__icon { |
| 3331 | top: 15px; |
| 3332 | left: 15px; |
| 3333 | } |
| 3334 | |
| 3335 | .embedpress-license__details .license__content .form__group .input__icon i { |
| 3336 | font-size: 16px; |
| 3337 | } |
| 3338 | } |
| 3339 | |
| 3340 | .embedpress-license__details .license__content .form__group .form__control { |
| 3341 | height: 60px; |
| 3342 | background: #F5F7FD; |
| 3343 | color: #7C8DB5; |
| 3344 | font-size: 20px; |
| 3345 | padding-left: 50px; |
| 3346 | } |
| 3347 | |
| 3348 | input#embedpress-pro-license-key::placeholder { |
| 3349 | font-size: 18px; |
| 3350 | } |
| 3351 | |
| 3352 | .embedpress-license__details .license__content .form__group .form__control::-webkit-input-placeholder { |
| 3353 | color: #7C8DB5; |
| 3354 | } |
| 3355 | |
| 3356 | .embedpress-license__details .license__content .form__group .form__control:-moz-placeholder { |
| 3357 | color: #7C8DB5; |
| 3358 | } |
| 3359 | |
| 3360 | .embedpress-license__details .license__content .form__group .form__control::-moz-placeholder { |
| 3361 | color: #7C8DB5; |
| 3362 | } |
| 3363 | |
| 3364 | .embedpress-license__details .license__content .form__group .form__control:-ms-input-placeholder { |
| 3365 | color: #7C8DB5; |
| 3366 | } |
| 3367 | |
| 3368 | @media (max-width: 1399px) { |
| 3369 | .embedpress-license__details .license__content .form__group .form__control { |
| 3370 | font-size: 16px; |
| 3371 | } |
| 3372 | } |
| 3373 | |
| 3374 | @media (max-width: 767px) { |
| 3375 | .embedpress-license__details .license__content .form__group .form__control { |
| 3376 | height: 50px; |
| 3377 | padding-left: 35px; |
| 3378 | font-size: 14px; |
| 3379 | } |
| 3380 | |
| 3381 | .form-inner-field button { |
| 3382 | height: 60px; |
| 3383 | } |
| 3384 | |
| 3385 | } |
| 3386 | |
| 3387 | .embedpress-license__details .license__manage { |
| 3388 | background: #ffffff; |
| 3389 | padding: 30px; |
| 3390 | display: -webkit-box; |
| 3391 | display: -ms-flexbox; |
| 3392 | display: flex; |
| 3393 | -webkit-box-pack: center; |
| 3394 | -ms-flex-pack: center; |
| 3395 | justify-content: center; |
| 3396 | -webkit-box-align: center; |
| 3397 | -ms-flex-align: center; |
| 3398 | align-items: center; |
| 3399 | -webkit-box-orient: vertical; |
| 3400 | -webkit-box-direction: normal; |
| 3401 | -ms-flex-direction: column; |
| 3402 | flex-direction: column; |
| 3403 | } |
| 3404 | |
| 3405 | .embedpress-license__details .license__manage .button { |
| 3406 | margin-top: 30px; |
| 3407 | } |
| 3408 | |
| 3409 | .embedpress-card { |
| 3410 | background: #F5F7FD; |
| 3411 | border-radius: 16px; |
| 3412 | padding: 24px; |
| 3413 | padding-left: 100px; |
| 3414 | border: 2px solid rgba(91, 78, 150, 0.1); |
| 3415 | position: relative; |
| 3416 | } |
| 3417 | |
| 3418 | @media (min-width: 1199px) and (max-width: 1399px) { |
| 3419 | .embedpress-card { |
| 3420 | padding-left: 24px !important; |
| 3421 | } |
| 3422 | } |
| 3423 | |
| 3424 | @media (max-width: 767px) { |
| 3425 | .embedpress-card { |
| 3426 | padding-left: 20px; |
| 3427 | padding: 20px; |
| 3428 | } |
| 3429 | } |
| 3430 | |
| 3431 | .embedpress-card .icon { |
| 3432 | position: absolute; |
| 3433 | top: 30px; |
| 3434 | left: 30px; |
| 3435 | height: 50px; |
| 3436 | width: 50px; |
| 3437 | border-radius: 10px; |
| 3438 | background: #F0EFF6; |
| 3439 | text-align: center; |
| 3440 | display: flex; |
| 3441 | align-items: center; |
| 3442 | justify-content: center; |
| 3443 | } |
| 3444 | |
| 3445 | @media (min-width: 1199px) and (max-width: 1399px) { |
| 3446 | .embedpress-card .icon { |
| 3447 | position: static; |
| 3448 | margin-bottom: 20px; |
| 3449 | } |
| 3450 | } |
| 3451 | |
| 3452 | @media (max-width: 767px) { |
| 3453 | .embedpress-card .icon { |
| 3454 | position: static; |
| 3455 | margin-bottom: 20px; |
| 3456 | } |
| 3457 | } |
| 3458 | |
| 3459 | .embedpress-card .icon i { |
| 3460 | color: #ffffff; |
| 3461 | font-size: 20px; |
| 3462 | line-height: 50px; |
| 3463 | } |
| 3464 | |
| 3465 | .embedpress-card h3 { |
| 3466 | font-size: 25px; |
| 3467 | font-weight: 5; |
| 3468 | color: #131F4D; |
| 3469 | margin-bottom: 10px; |
| 3470 | margin-top: 5px; |
| 3471 | } |
| 3472 | |
| 3473 | @media (max-width: 767px) { |
| 3474 | .embedpress-card h3 { |
| 3475 | font-size: 22px; |
| 3476 | } |
| 3477 | } |
| 3478 | |
| 3479 | .embedpress-card p { |
| 3480 | font-size: 14px; |
| 3481 | font-weight: 400; |
| 3482 | color: #7C8DB5; |
| 3483 | margin-bottom: 20px; |
| 3484 | } |
| 3485 | |
| 3486 | .element__item { |
| 3487 | background: #F5F7FD; |
| 3488 | border-radius: 10px; |
| 3489 | min-height: 80px; |
| 3490 | padding: 10px 24px; |
| 3491 | border: 2px solid rgba(91, 78, 150, 0.1); |
| 3492 | display: -webkit-box; |
| 3493 | display: -ms-flexbox; |
| 3494 | display: flex; |
| 3495 | -webkit-box-align: center; |
| 3496 | -ms-flex-align: center; |
| 3497 | align-items: center; |
| 3498 | /* overflow: hidden; */ |
| 3499 | } |
| 3500 | |
| 3501 | @media (max-width: 767px) { |
| 3502 | .element__item { |
| 3503 | padding: 20px; |
| 3504 | padding-right: 15px; |
| 3505 | } |
| 3506 | } |
| 3507 | |
| 3508 | /* .element__item.isPro .pro__item { |
| 3509 | display: block; }*/ |
| 3510 | |
| 3511 | .element__item h5 { |
| 3512 | font-size: 18px; |
| 3513 | font-weight: 700; |
| 3514 | color: #25396F; |
| 3515 | margin-right: 15px; |
| 3516 | } |
| 3517 | |
| 3518 | @media (max-width: 767px) { |
| 3519 | .element__item h5 { |
| 3520 | font-size: 16px; |
| 3521 | } |
| 3522 | } |
| 3523 | |
| 3524 | .element__item .has__question { |
| 3525 | color: rgba(124, 141, 181, 0.5); |
| 3526 | line-height: 1; |
| 3527 | margin-top: 2px; |
| 3528 | margin-right: 10px; |
| 3529 | position: relative; |
| 3530 | } |
| 3531 | |
| 3532 | .element__item .has__question .element__tooltip { |
| 3533 | position: absolute; |
| 3534 | bottom: calc(100% + 12px); |
| 3535 | left: -20px; |
| 3536 | /* transform: translateX(-50%); */ |
| 3537 | background: #5B4E96; |
| 3538 | color: #fff; |
| 3539 | padding: 20px; |
| 3540 | min-width: 200px; |
| 3541 | border-radius: 5px; |
| 3542 | font-size: 16px; |
| 3543 | transition: all .3s ease; |
| 3544 | opacity: 0; |
| 3545 | visibility: hidden; |
| 3546 | z-index: 9; |
| 3547 | } |
| 3548 | |
| 3549 | .element__item .has__question:hover .element__tooltip { |
| 3550 | visibility: visible; |
| 3551 | opacity: 1; |
| 3552 | } |
| 3553 | |
| 3554 | .element__item .has__question .element__tooltip:before { |
| 3555 | position: absolute; |
| 3556 | top: 100%; |
| 3557 | left: 18px; |
| 3558 | /* transform: translateX(-50%); */ |
| 3559 | border-left: 10px solid transparent; |
| 3560 | border-right: 10px solid transparent; |
| 3561 | border-top: 10px solid #5B4E96; |
| 3562 | content: ''; |
| 3563 | } |
| 3564 | |
| 3565 | .element__item .input__switch { |
| 3566 | margin-left: auto; |
| 3567 | margin-bottom: 0; |
| 3568 | } |
| 3569 | |
| 3570 | .element__item .pro__item { |
| 3571 | position: absolute; |
| 3572 | top: 5px; |
| 3573 | left: -16px; |
| 3574 | -webkit-transform: rotate(-45deg); |
| 3575 | transform: rotate(-45deg); |
| 3576 | font-size: 12px; |
| 3577 | font-weight: 400; |
| 3578 | color: #ffffff; |
| 3579 | background: #5B4E96; |
| 3580 | padding: 0 20px; |
| 3581 | text-transform: uppercase; |
| 3582 | display: none; |
| 3583 | } |
| 3584 | |
| 3585 | @media (max-width: 767px) { |
| 3586 | .element__item .pro__item { |
| 3587 | font-size: 9px; |
| 3588 | } |
| 3589 | } |
| 3590 | |
| 3591 | .embedpress--elements__wrap h3 { |
| 3592 | font-size: 24px; |
| 3593 | font-weight: 700; |
| 3594 | color: #131F4D; |
| 3595 | padding-bottom: 16px; |
| 3596 | margin-bottom: 24px; |
| 3597 | border-bottom: 1px solid #F5F7FC; |
| 3598 | } |
| 3599 | |
| 3600 | @media (max-width: 767px) { |
| 3601 | .embedpress--elements__wrap h3 { |
| 3602 | font-size: 24px; |
| 3603 | } |
| 3604 | } |
| 3605 | |
| 3606 | @media (max-width: 575px) { |
| 3607 | .embedpress--elements__wrap h3 { |
| 3608 | font-size: 20px; |
| 3609 | } |
| 3610 | } |
| 3611 | |
| 3612 | @media (max-width: 991px) { |
| 3613 | .embedpress--elements__wrap .embedpress__row.grid__4 { |
| 3614 | -ms-grid-columns: 1fr 1fr; |
| 3615 | grid-template-columns: repeat(2, 1fr); |
| 3616 | } |
| 3617 | } |
| 3618 | |
| 3619 | @media (max-width: 575px) { |
| 3620 | .embedpress--elements__wrap .embedpress__row.grid__4 { |
| 3621 | -ms-grid-columns: 1fr; |
| 3622 | grid-template-columns: repeat(1, 1fr); |
| 3623 | } |
| 3624 | } |
| 3625 | |
| 3626 | .valid-license-icon { |
| 3627 | max-width: 100%; |
| 3628 | width: 1.5rem; |
| 3629 | } |
| 3630 | |
| 3631 | |
| 3632 | |
| 3633 | .embedpress-toast__message { |
| 3634 | position: fixed; |
| 3635 | bottom: 50px; |
| 3636 | right: 50px; |
| 3637 | padding: 15px 25px; |
| 3638 | border-radius: 10px; |
| 3639 | max-width: 400px; |
| 3640 | z-index: 9999; |
| 3641 | display: flex; |
| 3642 | align-items: center; |
| 3643 | opacity: 0; |
| 3644 | visibility: hidden; |
| 3645 | transition: all .3s ease; |
| 3646 | } |
| 3647 | |
| 3648 | .embedpress-toast__message.show { |
| 3649 | opacity: 1; |
| 3650 | visibility: visible; |
| 3651 | } |
| 3652 | |
| 3653 | .embedpress-toast__message.toast__message--error { |
| 3654 | background: #FE504F; |
| 3655 | } |
| 3656 | |
| 3657 | .embedpress-toast__message.toast__message--attention { |
| 3658 | background: #FFA53C |
| 3659 | } |
| 3660 | |
| 3661 | .embedpress-toast__message.toast__message--success { |
| 3662 | background: #00CC76; |
| 3663 | } |
| 3664 | |
| 3665 | .embedpress-toast__message img { |
| 3666 | height: 40px; |
| 3667 | margin-right: 20px; |
| 3668 | } |
| 3669 | |
| 3670 | .embedpress-toast__message p { |
| 3671 | color: #ffffff; |
| 3672 | font-size: 14px; |
| 3673 | } |
| 3674 | |
| 3675 | .template__wrapper .wp-color-result-text { |
| 3676 | padding: 0 5px; |
| 3677 | } |
| 3678 | |
| 3679 | @media all and (max-width: 1600px) { |
| 3680 | .embedpress-license__details .license__content .form__inline { |
| 3681 | display: block; |
| 3682 | } |
| 3683 | |
| 3684 | .embedpress-license__details .license__content .form__group { |
| 3685 | margin-bottom: 25px; |
| 3686 | margin-right: 0; |
| 3687 | } |
| 3688 | |
| 3689 | .embedpress-license__details .license__content .form__group .form__control { |
| 3690 | height: 60px; |
| 3691 | font-size: 14px; |
| 3692 | } |
| 3693 | |
| 3694 | .embedpress-license__details .license__content .form__group .input__icon { |
| 3695 | width: 18px; |
| 3696 | top: 16px; |
| 3697 | } |
| 3698 | } |
| 3699 | |
| 3700 | .ep-coming-soon { |
| 3701 | color: #5b4e96; |
| 3702 | font-size: 12px; |
| 3703 | font-weight: 900; |
| 3704 | } |
| 3705 | |
| 3706 | .embedpress-card a, .template__wrapper .ep-link { |
| 3707 | color: #5b4e96; |
| 3708 | } |
| 3709 | |
| 3710 | .template__wrapper .ep-link { |
| 3711 | font-weight: 600; |
| 3712 | } |
| 3713 | |
| 3714 | .proOverlay { |
| 3715 | opacity: .3; |
| 3716 | position: relative; |
| 3717 | } |
| 3718 | |
| 3719 | .proOverlay::after { |
| 3720 | position: absolute; |
| 3721 | top: 0; |
| 3722 | left: 0; |
| 3723 | bottom: 0; |
| 3724 | content: ''; |
| 3725 | width: 100%; |
| 3726 | height: 100%; |
| 3727 | display: block; |
| 3728 | } |
| 3729 | |
| 3730 | .embedpress__shortcode .shortcode__text { |
| 3731 | margin-bottom: 40px; |
| 3732 | font-size: 16px; |
| 3733 | line-height: 1.6; |
| 3734 | color: #25396F; |
| 3735 | } |
| 3736 | |
| 3737 | .embedpress__shortcode .shortcode__form { |
| 3738 | width: 100%; |
| 3739 | max-width: 750px; |
| 3740 | box-sizing: border-box; |
| 3741 | background-color: #F5F7FC; |
| 3742 | border: 1px solid #D7DEEE; |
| 3743 | border-radius: 8px; |
| 3744 | padding: 12px; |
| 3745 | display: flex; |
| 3746 | } |
| 3747 | |
| 3748 | .embedpress__shortcode .shortcode__form .form__group { |
| 3749 | flex-grow: 1; |
| 3750 | } |
| 3751 | |
| 3752 | .embedpress__shortcode .shortcode__form .form__group .form__control { |
| 3753 | height: 50px; |
| 3754 | background-color: transparent; |
| 3755 | border: none; |
| 3756 | } |
| 3757 | |
| 3758 | .embedpress__shortcode .shortcode__form .button__redColor { |
| 3759 | background-color: #FF7369; |
| 3760 | border-color: #FF7369; |
| 3761 | color: #fff; |
| 3762 | } |
| 3763 | |
| 3764 | .embedpress__shortcode .shortcode__form .copy__button { |
| 3765 | background-color: #5B4E96; |
| 3766 | border-color: #5B4E96; |
| 3767 | color: #fff; |
| 3768 | } |
| 3769 | |
| 3770 | |
| 3771 | /* source page css */ |
| 3772 | .source-settings-page { |
| 3773 | background: #fff; |
| 3774 | padding: 24px; |
| 3775 | border-radius: 16px; |
| 3776 | } |
| 3777 | |
| 3778 | .source-settings-page.page-premium { |
| 3779 | padding: 24px 0; |
| 3780 | } |
| 3781 | |
| 3782 | .source-settings-page.page-premium .page-premium-text { |
| 3783 | margin-bottom: 20px; |
| 3784 | font-size: 16px; |
| 3785 | line-height: 1.6; |
| 3786 | color: #25396F; |
| 3787 | max-width: 80%; |
| 3788 | } |
| 3789 | |
| 3790 | h1.page-heading { |
| 3791 | color: #25396F; |
| 3792 | font-family: 'DMSans'; |
| 3793 | font-size: 24px; |
| 3794 | font-style: normal; |
| 3795 | font-weight: 600; |
| 3796 | line-height: 120%; |
| 3797 | padding-bottom: 16px; |
| 3798 | border-bottom: 1px solid #F5F7FC; |
| 3799 | } |
| 3800 | |
| 3801 | .upgrage__card__tab__style h3 { |
| 3802 | color: #25396F; |
| 3803 | font-family: 'DMSans'; |
| 3804 | font-size: 20px; |
| 3805 | font-style: normal; |
| 3806 | font-weight: 600; |
| 3807 | line-height: 1; |
| 3808 | /* 24px */ |
| 3809 | } |
| 3810 | |
| 3811 | .upgrage__card__tab__style p { |
| 3812 | color: #707070; |
| 3813 | font-family: 'DMSans'; |
| 3814 | font-size: 16px; |
| 3815 | font-style: normal; |
| 3816 | font-weight: 400; |
| 3817 | line-height: 160%; |
| 3818 | /* 25.6px */ |
| 3819 | } |
| 3820 | |
| 3821 | a.button.button__themeColor { |
| 3822 | border-radius: 8px; |
| 3823 | background: #EEEDF4; |
| 3824 | border: none; |
| 3825 | } |
| 3826 | |
| 3827 | ul.source-tab { |
| 3828 | margin-top: 10px; |
| 3829 | width: 100%; |
| 3830 | padding-right: 15px; |
| 3831 | padding-left: 15px; |
| 3832 | margin-top: 10px; |
| 3833 | max-height: 185px; |
| 3834 | overflow-y: scroll; |
| 3835 | } |
| 3836 | |
| 3837 | ul.source-tab::-webkit-scrollbar { |
| 3838 | width: 5px; |
| 3839 | } |
| 3840 | |
| 3841 | ul.source-tab::-webkit-scrollbar-track { |
| 3842 | background: #f5f7fd; |
| 3843 | border-radius: 5px; |
| 3844 | } |
| 3845 | |
| 3846 | ul.source-tab::-webkit-scrollbar-thumb { |
| 3847 | background: #988FBD; |
| 3848 | border-radius: 5px; |
| 3849 | } |
| 3850 | |
| 3851 | li.tab-button { |
| 3852 | display: inline-flex; |
| 3853 | align-items: center; |
| 3854 | gap: 5px; |
| 3855 | background-color: transparent; |
| 3856 | padding: 8px 15px; |
| 3857 | border-radius: 15px; |
| 3858 | cursor: pointer; |
| 3859 | width: 100%; |
| 3860 | font-size: 14px; |
| 3861 | margin-bottom: 2px; |
| 3862 | } |
| 3863 | |
| 3864 | li.tab-button:hover { |
| 3865 | background: #f5f7fd; |
| 3866 | } |
| 3867 | |
| 3868 | li.tab-button.active { |
| 3869 | background: #f5f7fd; |
| 3870 | } |
| 3871 | |
| 3872 | img.source-image { |
| 3873 | width: 14px; |
| 3874 | height: 14px; |
| 3875 | } |
| 3876 | |
| 3877 | .tab-content-section { |
| 3878 | display: grid; |
| 3879 | -ms-grid-columns: 1fr 1fr 1fr; |
| 3880 | grid-template-columns: repeat(3, 1fr); |
| 3881 | /* Three items per row */ |
| 3882 | gap: 30px; |
| 3883 | /* Adjust the gap between items as needed */ |
| 3884 | } |
| 3885 | |
| 3886 | @media (max-width: 1199px) { |
| 3887 | .tab-content-section { |
| 3888 | -ms-grid-columns: 1fr 1fr; |
| 3889 | grid-template-columns: repeat(2, 1fr); |
| 3890 | } |
| 3891 | } |
| 3892 | |
| 3893 | .source-item { |
| 3894 | padding: 15px; |
| 3895 | text-align: center; |
| 3896 | display: flex; |
| 3897 | align-items: center; |
| 3898 | justify-content: space-between; |
| 3899 | background: #f5f7fd; |
| 3900 | border-radius: 8px; |
| 3901 | position: relative; |
| 3902 | } |
| 3903 | |
| 3904 | .tab-button-section { |
| 3905 | display: none; |
| 3906 | } |
| 3907 | |
| 3908 | li.sidebar__item.show .tab-button-section { |
| 3909 | display: block; |
| 3910 | } |
| 3911 | |
| 3912 | .source-item div { |
| 3913 | display: flex; |
| 3914 | align-items: center; |
| 3915 | gap: 5px; |
| 3916 | color: #404040; |
| 3917 | font-family: 'DMSans'; |
| 3918 | font-size: 14px; |
| 3919 | font-style: normal; |
| 3920 | font-weight: 600; |
| 3921 | line-height: 120%; |
| 3922 | /* 16.8px */ |
| 3923 | letter-spacing: -0.28px; |
| 3924 | } |
| 3925 | |
| 3926 | .ribbon-container { |
| 3927 | position: absolute; |
| 3928 | top: -12px; |
| 3929 | left: 45px; |
| 3930 | background: #524cff; |
| 3931 | padding: 5px; |
| 3932 | border-radius: 4px; |
| 3933 | height: 22px; |
| 3934 | display: flex; |
| 3935 | align-items: center; |
| 3936 | justify-content: center; |
| 3937 | color: #fff !important; |
| 3938 | font-size: 12px !important; |
| 3939 | text-transform: capitalize; |
| 3940 | } |
| 3941 | |
| 3942 | .ribbon-container.new { |
| 3943 | background-color: #059862; |
| 3944 | } |
| 3945 | |
| 3946 | .ribbon-container.popular { |
| 3947 | background-color: #0064FF; |
| 3948 | } |
| 3949 | |
| 3950 | .ribbon-container.updated { |
| 3951 | background-color: #6C757D; |
| 3952 | border: none; |
| 3953 | } |
| 3954 | |
| 3955 | .source-left .icon { |
| 3956 | width: 32px; |
| 3957 | height: 32px; |
| 3958 | background: #fff; |
| 3959 | border-radius: 5px; |
| 3960 | display: flex; |
| 3961 | align-items: center; |
| 3962 | justify-content: center; |
| 3963 | } |
| 3964 | |
| 3965 | .source-left .icon img { |
| 3966 | width: 16px; |
| 3967 | height: auto; |
| 3968 | } |
| 3969 | |
| 3970 | .source-right a { |
| 3971 | width: 28px; |
| 3972 | height: 28px; |
| 3973 | background: #fff; |
| 3974 | border-radius: 5px; |
| 3975 | display: flex; |
| 3976 | align-items: center; |
| 3977 | justify-content: center; |
| 3978 | } |
| 3979 | |
| 3980 | .source-right a svg g { |
| 3981 | transition: 0.2s; |
| 3982 | |
| 3983 | } |
| 3984 | |
| 3985 | .source-right a svg { |
| 3986 | width: 18px; |
| 3987 | height: 18px; |
| 3988 | } |
| 3989 | |
| 3990 | .source-right a:hover svg g { |
| 3991 | stroke: #5B4E96; |
| 3992 | } |
| 3993 | |
| 3994 | .premium-button { |
| 3995 | text-align: center; |
| 3996 | display: flex; |
| 3997 | align-items: center; |
| 3998 | justify-content: center; |
| 3999 | width: 100%; |
| 4000 | margin-top: 20px; |
| 4001 | } |
| 4002 | |
| 4003 | .premium-button a { |
| 4004 | display: flex !important; |
| 4005 | align-items: center; |
| 4006 | gap: 8px; |
| 4007 | background: #EEEDF4; |
| 4008 | padding: 10px 25px; |
| 4009 | border-radius: 8px; |
| 4010 | width: 100%; |
| 4011 | justify-content: center; |
| 4012 | } |
| 4013 | |
| 4014 | .premium-button span { |
| 4015 | display: flex; |
| 4016 | align-items: center; |
| 4017 | justify-content: center; |
| 4018 | } |
| 4019 | |
| 4020 | .premium-button svg { |
| 4021 | width: 18px; |
| 4022 | height: 18px; |
| 4023 | } |
| 4024 | |
| 4025 | |
| 4026 | @media only screen and (max-width: 991px) { |
| 4027 | .tab-content-section { |
| 4028 | -ms-grid-columns: 1fr 1fr; |
| 4029 | grid-template-columns: repeat(2, 1fr); |
| 4030 | } |
| 4031 | } |
| 4032 | |
| 4033 | /* Instagram setting css */ |
| 4034 | /* Reset default table styles */ |
| 4035 | table { |
| 4036 | border-collapse: collapse; |
| 4037 | width: 100%; |
| 4038 | } |
| 4039 | |
| 4040 | table, th, td { |
| 4041 | border: 1px solid #ccc; |
| 4042 | } |
| 4043 | |
| 4044 | /* Apply custom styles for the 'emebedpress' class */ |
| 4045 | .emebedpress { |
| 4046 | border-collapse: collapse; |
| 4047 | width: 100%; |
| 4048 | } |
| 4049 | |
| 4050 | .emebedpress thead { |
| 4051 | background-color: #F5F7FD; |
| 4052 | } |
| 4053 | |
| 4054 | .emebedpress th, .emebedpress td { |
| 4055 | padding: 12px; |
| 4056 | text-align: left; |
| 4057 | position: relative; |
| 4058 | text-align: center; |
| 4059 | } |
| 4060 | |
| 4061 | table.emebedpress th { |
| 4062 | white-space: nowrap; |
| 4063 | width: 150px; |
| 4064 | font-weight: bold; |
| 4065 | |
| 4066 | } |
| 4067 | |
| 4068 | .emebedpress tbody tr:nth-child(even) { |
| 4069 | background-color: #f9f9f9; |
| 4070 | } |
| 4071 | |
| 4072 | .emebedpress img.user-avatar { |
| 4073 | width: 50px; |
| 4074 | height: 50px; |
| 4075 | border-radius: 50%; |
| 4076 | object-fit: cover; |
| 4077 | } |
| 4078 | |
| 4079 | .emebedpress input[type="text"] { |
| 4080 | width: 60%; |
| 4081 | box-sizing: border-box; |
| 4082 | border: none; |
| 4083 | background-color: transparent; |
| 4084 | margin: 0; |
| 4085 | padding: 0; |
| 4086 | } |
| 4087 | |
| 4088 | .emebedpress .button { |
| 4089 | background-color: #0073aa; |
| 4090 | color: #fff; |
| 4091 | border: none; |
| 4092 | padding: 6px; |
| 4093 | cursor: pointer; |
| 4094 | border-radius: 4px; |
| 4095 | } |
| 4096 | |
| 4097 | .emebedpress .button i { |
| 4098 | font-size: 18px; |
| 4099 | |
| 4100 | } |
| 4101 | |
| 4102 | .emebedpress .button-primary { |
| 4103 | background-color: #5b4e96; |
| 4104 | position: absolute; |
| 4105 | right: 20px; |
| 4106 | align-items: center; |
| 4107 | justify-content: center; |
| 4108 | } |
| 4109 | |
| 4110 | .emebedpress .button-secondary { |
| 4111 | background-color: #f44336 !important; |
| 4112 | } |
| 4113 | |
| 4114 | .emebedpress .button-secondary:focus i { |
| 4115 | color: white; |
| 4116 | } |
| 4117 | |
| 4118 | /* Styles for the account-section */ |
| 4119 | /* .account-wrap { |
| 4120 | max-width: 1200px; |
| 4121 | margin: 0 auto; |
| 4122 | } */ |
| 4123 | |
| 4124 | .user-image { |
| 4125 | display: flex; |
| 4126 | align-items: center; |
| 4127 | justify-content: center; |
| 4128 | width: 50px; |
| 4129 | } |
| 4130 | |
| 4131 | td.instagram-user-account .username { |
| 4132 | text-align: left; |
| 4133 | font-size: 16px; |
| 4134 | line-height: 1.4rem; |
| 4135 | } |
| 4136 | |
| 4137 | td.instagram-user-account .userid { |
| 4138 | text-align: left; |
| 4139 | font-size: 13px; |
| 4140 | line-height: 1.4rem; |
| 4141 | |
| 4142 | } |
| 4143 | |
| 4144 | .account-section p { |
| 4145 | margin-bottom: 10px; |
| 4146 | } |
| 4147 | |
| 4148 | .account-button { |
| 4149 | text-decoration: none !important; |
| 4150 | background-color: #0073aa !important; |
| 4151 | color: #fff !important; |
| 4152 | border: none; |
| 4153 | padding: 10px 15px; |
| 4154 | border-radius: 4px; |
| 4155 | margin-right: 10px; |
| 4156 | display: inline-flex !important; |
| 4157 | align-items: center; |
| 4158 | gap: 5px; |
| 4159 | font-size: 14px; |
| 4160 | cursor: pointer; |
| 4161 | margin-bottom: 15px; |
| 4162 | } |
| 4163 | |
| 4164 | .account-button svg { |
| 4165 | fill: currentColor; |
| 4166 | width: 20px; |
| 4167 | height: 20px; |
| 4168 | } |
| 4169 | |
| 4170 | .personal-account { |
| 4171 | background-color: #4caf50; |
| 4172 | } |
| 4173 | |
| 4174 | .business-account { |
| 4175 | background-color: #f44336; |
| 4176 | } |
| 4177 | |
| 4178 | .account-link { |
| 4179 | margin-left: 10px; |
| 4180 | color: #0073aa; |
| 4181 | text-decoration: none; |
| 4182 | } |
| 4183 | |
| 4184 | .premium-field { |
| 4185 | display: inline-block; |
| 4186 | margin-left: 10px; |
| 4187 | color: #999; |
| 4188 | } |
| 4189 | |
| 4190 | .premium-field small { |
| 4191 | font-size: 12px; |
| 4192 | } |
| 4193 | |
| 4194 | .description.hidden { |
| 4195 | display: none; |
| 4196 | } |
| 4197 | |
| 4198 | /* delete alrert box */ |
| 4199 | .custom-dialog { |
| 4200 | position: fixed; |
| 4201 | top: 50%; |
| 4202 | left: 50%; |
| 4203 | transform: translate(-50%, -50%); |
| 4204 | background-color: #fff; |
| 4205 | padding: 20px; |
| 4206 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 4207 | z-index: 9999; |
| 4208 | } |
| 4209 | |
| 4210 | .custom-dialog p { |
| 4211 | margin: 0 0 10px; |
| 4212 | } |
| 4213 | |
| 4214 | .custom-dialog button { |
| 4215 | margin-right: 10px; |
| 4216 | padding: 5px 10px; |
| 4217 | background-color: #007bff; |
| 4218 | color: #fff; |
| 4219 | border: none; |
| 4220 | cursor: pointer; |
| 4221 | } |
| 4222 | |
| 4223 | .custom-dialog button:hover { |
| 4224 | background-color: #0056b3; |
| 4225 | } |
| 4226 | |
| 4227 | .custom-dialog button:last-child { |
| 4228 | margin-right: 0; |
| 4229 | background-color: #ccc; |
| 4230 | } |
| 4231 | |
| 4232 | /* Optional: To make the buttons the same width */ |
| 4233 | .custom-dialog button { |
| 4234 | width: 80px; |
| 4235 | } |
| 4236 | |
| 4237 | .premium-button { |
| 4238 | margin-top: 10px !important; |
| 4239 | padding: 0 4px 0 0; |
| 4240 | } |
| 4241 | |
| 4242 | |
| 4243 | @media only screen and (max-width: 767px) { |
| 4244 | .tab-content-section { |
| 4245 | -ms-grid-columns: 1fr; |
| 4246 | grid-template-columns: repeat(1, 1fr); |
| 4247 | } |
| 4248 | |
| 4249 | header.embedpress-header p { |
| 4250 | margin: 10px 0; |
| 4251 | text-align: left; |
| 4252 | } |
| 4253 | } |
| 4254 | |
| 4255 | |
| 4256 | /* // Calendly settings page design */ |
| 4257 | .calendly-embedpress-authorize-button { |
| 4258 | display: flex; |
| 4259 | justify-content: space-between; |
| 4260 | margin-bottom: 15px; |
| 4261 | } |
| 4262 | |
| 4263 | .calendly-settings-title { |
| 4264 | margin-bottom: 30px !important; |
| 4265 | } |
| 4266 | |
| 4267 | a.calendly-connect-button { |
| 4268 | display: inline-flex; |
| 4269 | align-items: center; |
| 4270 | font-size: 15px; |
| 4271 | color: rgb(54, 100, 174); |
| 4272 | gap: 6px; |
| 4273 | border-width: 1px; |
| 4274 | border-style: solid; |
| 4275 | border-color: rgb(54, 100, 174); |
| 4276 | border-image: initial; |
| 4277 | padding: 8px 20px; |
| 4278 | border-radius: 10px; |
| 4279 | } |
| 4280 | |
| 4281 | a.calendly-connect-button:hover { |
| 4282 | color: #fff; |
| 4283 | background: rgb(54, 100, 174); |
| 4284 | } |
| 4285 | |
| 4286 | a.calendly-connected { |
| 4287 | /* pointer-events: none !important; */ |
| 4288 | background: rgba(54, 100, 174, 0.08); |
| 4289 | border-width: 1px; |
| 4290 | border-style: solid; |
| 4291 | border-color: rgba(54, 100, 174, 0.08); |
| 4292 | border-image: initial; |
| 4293 | } |
| 4294 | |
| 4295 | a.calendly-connect-button img { |
| 4296 | width: 20px; |
| 4297 | } |
| 4298 | |
| 4299 | |
| 4300 | /* Apply styles to the event-type-list container */ |
| 4301 | .event-type-list { |
| 4302 | font-family: Arial, sans-serif; |
| 4303 | } |
| 4304 | |
| 4305 | /* Apply styles to the list-header */ |
| 4306 | .list-header { |
| 4307 | background-color: #3664ae; |
| 4308 | color: #fff; |
| 4309 | padding: 10px; |
| 4310 | display: flex; |
| 4311 | align-items: center; |
| 4312 | gap: 10px; |
| 4313 | border-radius: 10px; |
| 4314 | } |
| 4315 | |
| 4316 | |
| 4317 | /* Apply styles to the user's avatar */ |
| 4318 | .calendly-user .bqa3nmp img { |
| 4319 | width: 50px; |
| 4320 | height: 50px; |
| 4321 | border-radius: 50%; |
| 4322 | margin-right: 10px; |
| 4323 | } |
| 4324 | |
| 4325 | /* Apply styles to the user's name */ |
| 4326 | .calendly-user .name p { |
| 4327 | font-weight: bold; |
| 4328 | font-size: 18px; |
| 4329 | } |
| 4330 | |
| 4331 | |
| 4332 | /* Apply styles to the event-type-card */ |
| 4333 | .event-type-card-list { |
| 4334 | display: grid; |
| 4335 | grid-template-columns: repeat(3, 1fr); |
| 4336 | gap: 20px; |
| 4337 | margin-top: 15px; |
| 4338 | } |
| 4339 | |
| 4340 | .calendly-data-placeholder .event-type-card-list { |
| 4341 | padding: 0 20px 20px; |
| 4342 | } |
| 4343 | |
| 4344 | .event-type-card-list-item { |
| 4345 | background-color: #ffffff; |
| 4346 | border: 1px solid #faf4f4; |
| 4347 | border-radius: 5px; |
| 4348 | border-top: 6px solid var(--calendly-event-color); |
| 4349 | } |
| 4350 | |
| 4351 | .event-type-card { |
| 4352 | padding: 10px; |
| 4353 | } |
| 4354 | |
| 4355 | .calendly-profile-avatar { |
| 4356 | width: 50px; |
| 4357 | height: 50px; |
| 4358 | } |
| 4359 | |
| 4360 | .calendly-profile-avatar img { |
| 4361 | border-radius: 50px; |
| 4362 | } |
| 4363 | |
| 4364 | .event-type-card-top { |
| 4365 | border-bottom: 1px solid #ebe1e1; |
| 4366 | padding-bottom: 10px; |
| 4367 | } |
| 4368 | |
| 4369 | .event-type-card-top h2 { |
| 4370 | font-size: 15px; |
| 4371 | font-weight: 500; |
| 4372 | margin-bottom: 8px; |
| 4373 | } |
| 4374 | |
| 4375 | .event-type-card-top p { |
| 4376 | font-size: 11px; |
| 4377 | color: #b19999; |
| 4378 | margin-bottom: 12px; |
| 4379 | } |
| 4380 | |
| 4381 | .event-type-card-top a { |
| 4382 | color: #3664ae; |
| 4383 | font-size: 12px; |
| 4384 | } |
| 4385 | |
| 4386 | .event-type-card-bottom { |
| 4387 | display: flex; |
| 4388 | align-items: center; |
| 4389 | justify-content: space-between; |
| 4390 | padding-top: 10px; |
| 4391 | } |
| 4392 | |
| 4393 | .event-status { |
| 4394 | font-size: 14px; |
| 4395 | } |
| 4396 | |
| 4397 | .event-status.Active { |
| 4398 | color: #008000c9; |
| 4399 | } |
| 4400 | |
| 4401 | .event-status.In-active { |
| 4402 | color: gray; |
| 4403 | } |
| 4404 | |
| 4405 | .calendly-event-copy-link { |
| 4406 | display: flex; |
| 4407 | align-items: center; |
| 4408 | gap: 5px; |
| 4409 | font-size: 14px; |
| 4410 | color: #3664ae; |
| 4411 | cursor: pointer; |
| 4412 | } |
| 4413 | |
| 4414 | [data-event-status="In-active"] .event-type-card-top a, [data-event-status="In-active"] .calendly-event-copy-link { |
| 4415 | color: gray; |
| 4416 | } |
| 4417 | |
| 4418 | [data-event-status="In-active"].event-type-card-list-item { |
| 4419 | border-top-color: #b2b2b2 !important; |
| 4420 | } |
| 4421 | |
| 4422 | [data-event-status="In-active"] .calendly-event-copy-link svg path { |
| 4423 | fill: gray; |
| 4424 | } |
| 4425 | |
| 4426 | .calendly-event-copy-link svg { |
| 4427 | width: 14px; |
| 4428 | height: 14px; |
| 4429 | } |
| 4430 | |
| 4431 | |
| 4432 | /* scheduled list table css */ |
| 4433 | |
| 4434 | |
| 4435 | .rwd-table { |
| 4436 | max-width: 100%; |
| 4437 | width: 100%; |
| 4438 | |
| 4439 | } |
| 4440 | |
| 4441 | .rwd-table tr:first-child { |
| 4442 | border-top: none; |
| 4443 | background: #3664ae; |
| 4444 | color: #fff; |
| 4445 | } |
| 4446 | |
| 4447 | .rwd-table tr { |
| 4448 | border-top: 1px dotted red; |
| 4449 | border-bottom: 1px dotted red; |
| 4450 | } |
| 4451 | |
| 4452 | |
| 4453 | .rwd-table th { |
| 4454 | display: none; |
| 4455 | } |
| 4456 | |
| 4457 | .rwd-table td { |
| 4458 | display: block; |
| 4459 | |
| 4460 | } |
| 4461 | |
| 4462 | .rwd-table td:before { |
| 4463 | content: attr(data-th) ": "; |
| 4464 | width: 120px; |
| 4465 | display: inline-block; |
| 4466 | color: #000; |
| 4467 | } |
| 4468 | |
| 4469 | .rwd-table th, .rwd-table td { |
| 4470 | padding-left: 30px !important; |
| 4471 | } |
| 4472 | |
| 4473 | .rwd-table { |
| 4474 | color: #333; |
| 4475 | border-radius: .4em; |
| 4476 | width: 100%; |
| 4477 | /* Set the table width to 100% */ |
| 4478 | /* table-layout: fixed; */ |
| 4479 | } |
| 4480 | |
| 4481 | .rwd-table tr { |
| 4482 | border-color: red; |
| 4483 | } |
| 4484 | |
| 4485 | |
| 4486 | .rwd-table td:before { |
| 4487 | display: none; |
| 4488 | } |
| 4489 | |
| 4490 | .rwd-table th, .rwd-table td { |
| 4491 | display: table-cell; |
| 4492 | padding: .5em .5em; |
| 4493 | text-align: left; |
| 4494 | font-family: Arial, sans-serif; |
| 4495 | font-size: 14px; |
| 4496 | white-space: nowrap; |
| 4497 | /* width: 25%; */ |
| 4498 | /* Divide the width evenly among the columns */ |
| 4499 | |
| 4500 | } |
| 4501 | |
| 4502 | .rwd-table th { |
| 4503 | font-size: 15px; |
| 4504 | padding: 1em .5em; |
| 4505 | font-weight: 500; |
| 4506 | } |
| 4507 | |
| 4508 | .rwd-table th:first-child { |
| 4509 | border-top-left-radius: 10px; |
| 4510 | border-bottom-left-radius: 10px; |
| 4511 | } |
| 4512 | |
| 4513 | .rwd-table th:last-child { |
| 4514 | border-top-right-radius: 10px; |
| 4515 | border-bottom-right-radius: 10px; |
| 4516 | } |
| 4517 | |
| 4518 | .rwd-table td { |
| 4519 | border-bottom: 1px dotted #ddd; |
| 4520 | /* border-radius: 10px; */ |
| 4521 | /* border-right: 1px dotted #ddd; */ |
| 4522 | } |
| 4523 | |
| 4524 | /* .rwd-table td:first-child { |
| 4525 | border-left: 1px dotted #ddd; |
| 4526 | } */ |
| 4527 | |
| 4528 | |
| 4529 | /* Tab container */ |
| 4530 | .tab-container { |
| 4531 | display: flex; |
| 4532 | gap: 5px; |
| 4533 | background: #fff7f7; |
| 4534 | padding: 8px 10px; |
| 4535 | border-radius: 10px; |
| 4536 | } |
| 4537 | |
| 4538 | /* Individual tab */ |
| 4539 | .tab-container .tab { |
| 4540 | padding: 8px 20px; |
| 4541 | cursor: pointer; |
| 4542 | background-color: #fff7f7; |
| 4543 | border-radius: 10px; |
| 4544 | font-size: 15px; |
| 4545 | |
| 4546 | } |
| 4547 | |
| 4548 | /* Active tab */ |
| 4549 | .tab-container .active-tab { |
| 4550 | background-color: #3664ae; |
| 4551 | color: #fff; |
| 4552 | } |
| 4553 | |
| 4554 | /* Content container */ |
| 4555 | .tab-content { |
| 4556 | display: none; |
| 4557 | width: 100%; |
| 4558 | } |
| 4559 | |
| 4560 | /* Show the active tab content */ |
| 4561 | .tab-content.active { |
| 4562 | display: block; |
| 4563 | } |
| 4564 | |
| 4565 | .calendly-data-placeholder { |
| 4566 | position: relative; |
| 4567 | margin-top: 15px; |
| 4568 | } |
| 4569 | |
| 4570 | .calendly-data-placeholder img { |
| 4571 | pointer-events: none; |
| 4572 | } |
| 4573 | |
| 4574 | .calendly-data-placeholder { |
| 4575 | position: relative; |
| 4576 | margin-top: 5px; |
| 4577 | padding-top: 5px; |
| 4578 | } |
| 4579 | |
| 4580 | .overlay { |
| 4581 | position: absolute; |
| 4582 | top: 0; |
| 4583 | left: 0; |
| 4584 | width: 100%; |
| 4585 | height: 100%; |
| 4586 | background-color: #3664ae26; |
| 4587 | text-align: center; |
| 4588 | display: flex; |
| 4589 | flex-direction: column; |
| 4590 | justify-content: center; |
| 4591 | border-radius: 10px; |
| 4592 | align-items: center; |
| 4593 | } |
| 4594 | |
| 4595 | .overlay-button { |
| 4596 | background-color: #006bff; |
| 4597 | color: #fff !important; |
| 4598 | padding: 10px 20px; |
| 4599 | border: none; |
| 4600 | cursor: pointer; |
| 4601 | max-width: 300px; |
| 4602 | font-weight: 500; |
| 4603 | border-radius: 10px; |
| 4604 | } |
| 4605 | |
| 4606 | .calendly-connector-container { |
| 4607 | display: flex; |
| 4608 | align-items: end; |
| 4609 | gap: 5px; |
| 4610 | } |
| 4611 | |
| 4612 | @media only screen and (max-width: 768px) { |
| 4613 | .calendly-connector-container { |
| 4614 | margin-bottom: 15px; |
| 4615 | } |
| 4616 | |
| 4617 | .calendly-embedpress-authorize-button { |
| 4618 | flex-direction: column; |
| 4619 | justify-content: center; |
| 4620 | } |
| 4621 | |
| 4622 | .tab-container { |
| 4623 | width: 100%; |
| 4624 | align-items: center; |
| 4625 | justify-content: center; |
| 4626 | } |
| 4627 | |
| 4628 | .tab-container .tab { |
| 4629 | padding: 8px 10px; |
| 4630 | font-size: 14px; |
| 4631 | width: 50%; |
| 4632 | text-align: center; |
| 4633 | } |
| 4634 | |
| 4635 | .calendly-data { |
| 4636 | overflow: auto; |
| 4637 | } |
| 4638 | |
| 4639 | .event-type-card-list { |
| 4640 | grid-template-columns: repeat(2, 1fr); |
| 4641 | } |
| 4642 | |
| 4643 | .rwd-table { |
| 4644 | min-width: 700px; |
| 4645 | overflow: auto; |
| 4646 | table-layout: auto; |
| 4647 | } |
| 4648 | |
| 4649 | .rwd-table th, .rwd-table td { |
| 4650 | padding: 10px; |
| 4651 | font-size: 13px; |
| 4652 | } |
| 4653 | |
| 4654 | .rwd-table th, .rwd-table td { |
| 4655 | padding-left: 20px !important; |
| 4656 | width: auto; |
| 4657 | } |
| 4658 | } |
| 4659 | |
| 4660 | |
| 4661 | @media only screen and (max-width: 480px) { |
| 4662 | .event-type-card-list { |
| 4663 | grid-template-columns: repeat(1, 1fr); |
| 4664 | } |
| 4665 | |
| 4666 | .tab-container { |
| 4667 | padding: 8px 6px; |
| 4668 | } |
| 4669 | |
| 4670 | .tab-container .tab { |
| 4671 | white-space: nowrap; |
| 4672 | padding: 8px 5px; |
| 4673 | font-size: 12px; |
| 4674 | text-align: center; |
| 4675 | } |
| 4676 | } |
| 4677 | |
| 4678 | form#instagram-form { |
| 4679 | width: 400px; |
| 4680 | padding: 20px; |
| 4681 | border-radius: 15px; |
| 4682 | } |
| 4683 | |
| 4684 | form#instagram-form select#account-option, form#instagram-form input#instagram-access-token { |
| 4685 | width: 100%; |
| 4686 | height: 45px; |
| 4687 | margin-bottom: 10px; |
| 4688 | border-radius: 5px; |
| 4689 | } |
| 4690 | |
| 4691 | /* Styling for overlay background */ |
| 4692 | .account-section .modal-overlay { |
| 4693 | position: fixed; |
| 4694 | top: 0; |
| 4695 | left: 0; |
| 4696 | width: 100%; |
| 4697 | height: 100%; |
| 4698 | background-color: rgba(0, 0, 0, 0.8); |
| 4699 | /* Semi-transparent black */ |
| 4700 | z-index: 9999; |
| 4701 | /* Ensure it's on top of everything */ |
| 4702 | display: none; |
| 4703 | /* Hide by default */ |
| 4704 | } |
| 4705 | |
| 4706 | /* Styling for the modal itself */ |
| 4707 | .account-section .modal { |
| 4708 | position: fixed; |
| 4709 | top: 50%; |
| 4710 | left: 50%; |
| 4711 | transform: translate(-50%, -50%); |
| 4712 | background-color: #fff; |
| 4713 | padding: 20px; |
| 4714 | border-radius: 8px; |
| 4715 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); |
| 4716 | /* Drop shadow effect */ |
| 4717 | z-index: 10000; |
| 4718 | /* Ensure it's on top of the overlay */ |
| 4719 | max-width: 80%; |
| 4720 | /* Adjust the maximum width as needed */ |
| 4721 | max-height: 80%; |
| 4722 | /* Adjust the maximum height as needed */ |
| 4723 | overflow-y: auto; |
| 4724 | /* Enable vertical scrolling if content overflows */ |
| 4725 | } |
| 4726 | |
| 4727 | /* Styling for close button */ |
| 4728 | form#instagram-form .close-btn { |
| 4729 | position: absolute; |
| 4730 | top: 5px; |
| 4731 | right: 5px; |
| 4732 | cursor: pointer; |
| 4733 | background: #f2f2f2; |
| 4734 | width: 25px; |
| 4735 | height: 25px; |
| 4736 | display: flex; |
| 4737 | align-items: center; |
| 4738 | justify-content: center; |
| 4739 | border-radius: 5px; |
| 4740 | } |
| 4741 | |
| 4742 | form#instagram-form button { |
| 4743 | background-color: #594E91; |
| 4744 | color: #fff; |
| 4745 | } |
| 4746 | |
| 4747 | .form-footer { |
| 4748 | display: flex; |
| 4749 | align-items: center; |
| 4750 | justify-content: space-between; |
| 4751 | margin-top: 10px; |
| 4752 | } |
| 4753 | |
| 4754 | form#instagram-form label { |
| 4755 | display: inline-block; |
| 4756 | } |
| 4757 | |
| 4758 | a.for-business, a.for-personal { |
| 4759 | display: inline-block; |
| 4760 | text-decoration: underline; |
| 4761 | font-size: 14px; |
| 4762 | font-weight: normal; |
| 4763 | color: inherit; |
| 4764 | margin-bottom: 10px; |
| 4765 | color: #2271b1; |
| 4766 | } |
| 4767 | |
| 4768 | .no-account-connected { |
| 4769 | text-align: center; |
| 4770 | margin: 45px; |
| 4771 | } |
| 4772 | |
| 4773 | #instagram-form .form-group { |
| 4774 | position: relative; |
| 4775 | } |
| 4776 | |
| 4777 | #instagram-form .form-group a { |
| 4778 | position: absolute; |
| 4779 | background: #f5f6ff; |
| 4780 | width: 20px; |
| 4781 | height: 20px; |
| 4782 | display: flex; |
| 4783 | align-items: center; |
| 4784 | justify-content: center; |
| 4785 | text-align: center; |
| 4786 | right: 0; |
| 4787 | top: 12px; |
| 4788 | right: 12px; |
| 4789 | border-radius: 5px; |
| 4790 | } |
| 4791 | |
| 4792 | .user-profile-link { |
| 4793 | padding: 5px 10px; |
| 4794 | background-color: #007bff; |
| 4795 | color: #fff; |
| 4796 | border: none; |
| 4797 | border-radius: 4px; |
| 4798 | cursor: pointer; |
| 4799 | transition: background-color 0.3s; |
| 4800 | font-size: 14px; |
| 4801 | cursor: pointer; |
| 4802 | } |
| 4803 | |
| 4804 | .user-profile-link:hover { |
| 4805 | background-color: #0056b3; |
| 4806 | } |
| 4807 | |
| 4808 | .emebedpress img.user-avatar { |
| 4809 | border: 2px solid #037bff; |
| 4810 | } |
| 4811 | |
| 4812 | td.instagram-user-account { |
| 4813 | display: flex; |
| 4814 | align-items: center; |
| 4815 | gap: 10px; |
| 4816 | } |
| 4817 | |
| 4818 | td.instagram-sync-data { |
| 4819 | cursor: pointer; |
| 4820 | } |
| 4821 | |
| 4822 | .sync-spin { |
| 4823 | animation: spin 1s linear infinite; |
| 4824 | /* Apply the spin animation */ |
| 4825 | } |
| 4826 | |
| 4827 | |
| 4828 | |
| 4829 | /* leon css */ |
| 4830 | h3.cart-title { |
| 4831 | font-size: 18px; |
| 4832 | font-weight: 700px; |
| 4833 | } |
| 4834 | |
| 4835 | ul.feature-list li { |
| 4836 | color: #25396F; |
| 4837 | } |
| 4838 | |
| 4839 | @keyframes spin { |
| 4840 | to { |
| 4841 | transform: rotate(360deg); |
| 4842 | /* Rotate the element 360 degrees */ |
| 4843 | } |
| 4844 | } |
| 4845 | |
| 4846 | |
| 4847 | @media (max-width: 1450px) { |
| 4848 | |
| 4849 | .pdf_custom_color_settings .form__control__wrap .input__switch .logo__adjust__toggler { |
| 4850 | top: calc(100% + 5px); |
| 4851 | left: 0; |
| 4852 | } |
| 4853 | |
| 4854 | .template__wrapper label { |
| 4855 | margin-bottom: 20px; |
| 4856 | } |
| 4857 | |
| 4858 | } |
| 4859 | |
| 4860 | @media (max-width: 1350px) { |
| 4861 | .embedpress_general_settings__form:not(:last-child), .embedpress__shortcode { |
| 4862 | width: 100%; |
| 4863 | margin-right: 0; |
| 4864 | } |
| 4865 | |
| 4866 | |
| 4867 | |
| 4868 | } |
| 4869 | |
| 4870 | @media (min-width: 991px) and (max-width:1120px) { |
| 4871 | .shortcode-settings-wrapper, .embedpress_general_settings__form:not(:last-child), .embedpress__shortcode { |
| 4872 | width: 100%; |
| 4873 | /* display: block; */ |
| 4874 | } |
| 4875 | |
| 4876 | .embedpress-upgrade-pro-sidebar { |
| 4877 | display: none; |
| 4878 | } |
| 4879 | |
| 4880 | |
| 4881 | } |
| 4882 | |
| 4883 | @media (max-width: 767px) { |
| 4884 | .embedpress_general_settings__form:not(:last-child) { |
| 4885 | width: 100%; |
| 4886 | margin-right: 0; |
| 4887 | } |
| 4888 | |
| 4889 | .embedpress-upgrade-pro-sidebar { |
| 4890 | display: none; |
| 4891 | } |
| 4892 | |
| 4893 | } |