style.css
4411 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 | } |
| 531 | |
| 532 | .background__dark { |
| 533 | background-color: #222222; |
| 534 | } |
| 535 | |
| 536 | .background__grey { |
| 537 | background-color: #7C8DB5; |
| 538 | } |
| 539 | |
| 540 | .background__liteGrey { |
| 541 | background-color: #F5F7FD; |
| 542 | } |
| 543 | |
| 544 | .background__black { |
| 545 | background-color: #000000; |
| 546 | } |
| 547 | |
| 548 | .background__twitter { |
| 549 | background-color: #1da1f2; |
| 550 | } |
| 551 | |
| 552 | .background__linkedin { |
| 553 | background-color: #0077b5; |
| 554 | } |
| 555 | |
| 556 | .background__instagram { |
| 557 | background-color: #e1306c; |
| 558 | } |
| 559 | |
| 560 | .gradient__themeColor { |
| 561 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 78, 150, 0.3)), to(rgba(91, 78, 150, 0.05))); |
| 562 | background-image: linear-gradient(180deg, rgba(91, 78, 150, 0.3), rgba(91, 78, 150, 0.05)); |
| 563 | color: #5B4E96; |
| 564 | } |
| 565 | |
| 566 | .gradient__primary { |
| 567 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 204, 118, 0.3)), to(rgba(0, 204, 118, 0.05))); |
| 568 | background-image: linear-gradient(180deg, rgba(0, 204, 118, 0.3), rgba(0, 204, 118, 0.05)); |
| 569 | color: #00CC76; |
| 570 | } |
| 571 | |
| 572 | .gradient__danger { |
| 573 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(254, 80, 79, 0.3)), to(rgba(254, 80, 79, 0.05))); |
| 574 | background-image: linear-gradient(180deg, rgba(254, 80, 79, 0.3), rgba(254, 80, 79, 0.05)); |
| 575 | color: #FE504F; |
| 576 | } |
| 577 | |
| 578 | .gradient__warning { |
| 579 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 165, 60, 0.3)), to(rgba(255, 165, 60, 0.05))); |
| 580 | background-image: linear-gradient(180deg, rgba(255, 165, 60, 0.3), rgba(255, 165, 60, 0.05)); |
| 581 | color: #FFA53C; |
| 582 | } |
| 583 | |
| 584 | .gradient__white { |
| 585 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.05))); |
| 586 | background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05)); |
| 587 | color: #ffffff; |
| 588 | } |
| 589 | |
| 590 | .gradient__dark { |
| 591 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 34, 34, 0.3)), to(rgba(34, 34, 34, 0.05))); |
| 592 | background-image: linear-gradient(180deg, rgba(34, 34, 34, 0.3), rgba(34, 34, 34, 0.05)); |
| 593 | color: #222222; |
| 594 | } |
| 595 | |
| 596 | .gradient__grey { |
| 597 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(124, 141, 181, 0.3)), to(rgba(124, 141, 181, 0.05))); |
| 598 | background-image: linear-gradient(180deg, rgba(124, 141, 181, 0.3), rgba(124, 141, 181, 0.05)); |
| 599 | color: #7C8DB5; |
| 600 | } |
| 601 | |
| 602 | .gradient__liteGrey { |
| 603 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 247, 253, 0.3)), to(rgba(245, 247, 253, 0.05))); |
| 604 | background-image: linear-gradient(180deg, rgba(245, 247, 253, 0.3), rgba(245, 247, 253, 0.05)); |
| 605 | color: #F5F7FD; |
| 606 | } |
| 607 | |
| 608 | .gradient__black { |
| 609 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.05))); |
| 610 | background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05)); |
| 611 | color: #000000; |
| 612 | } |
| 613 | |
| 614 | .gradient__twitter { |
| 615 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 161, 242, 0.3)), to(rgba(29, 161, 242, 0.05))); |
| 616 | background-image: linear-gradient(180deg, rgba(29, 161, 242, 0.3), rgba(29, 161, 242, 0.05)); |
| 617 | color: #1da1f2; |
| 618 | } |
| 619 | |
| 620 | .gradient__linkedin { |
| 621 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 119, 181, 0.3)), to(rgba(0, 119, 181, 0.05))); |
| 622 | background-image: linear-gradient(180deg, rgba(0, 119, 181, 0.3), rgba(0, 119, 181, 0.05)); |
| 623 | color: #0077b5; |
| 624 | } |
| 625 | |
| 626 | .gradient__instagram { |
| 627 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(225, 48, 108, 0.3)), to(rgba(225, 48, 108, 0.05))); |
| 628 | background-image: linear-gradient(180deg, rgba(225, 48, 108, 0.3), rgba(225, 48, 108, 0.05)); |
| 629 | color: #e1306c; |
| 630 | } |
| 631 | |
| 632 | .button__themeColor:not(.hover__highlight) { |
| 633 | background: #5B4E96; |
| 634 | color: white; |
| 635 | border-color: #5B4E96; |
| 636 | -webkit-transition-property: background, color, box-shadow, border; |
| 637 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 638 | transition-property: background, color, border, -webkit-box-shadow; |
| 639 | transition-property: background, color, box-shadow, border; |
| 640 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 641 | } |
| 642 | |
| 643 | .button__themeColor:not(.hover__highlight):disabled { |
| 644 | cursor: not-allowed; |
| 645 | background: #FE504F; |
| 646 | border-color: #FE504F; |
| 647 | } |
| 648 | |
| 649 | .button__themeColor:not(.hover__highlight) .icon { |
| 650 | color: #5B4E96; |
| 651 | background: white; |
| 652 | } |
| 653 | |
| 654 | .button__themeColor.hover__highlight { |
| 655 | color: #5B4E96; |
| 656 | border-color: transparent; |
| 657 | background: rgba(91, 78, 150, 0.1); |
| 658 | } |
| 659 | |
| 660 | .button__themeColor.hover__highlight .icon { |
| 661 | background: #00CC76; |
| 662 | color: #ffffff; |
| 663 | } |
| 664 | |
| 665 | .button__themeColor.hover__highlight:hover { |
| 666 | border-color: transparent; |
| 667 | } |
| 668 | |
| 669 | .button__themeColor.button__shadow { |
| 670 | -webkit-box-shadow: 0 10px 10px rgba(91, 78, 150, 0.2); |
| 671 | box-shadow: 0 10px 10px rgba(91, 78, 150, 0.2); |
| 672 | } |
| 673 | |
| 674 | a.button__themeColor.active, a.button__themeColor:hover, |
| 675 | button.button__themeColor.active, |
| 676 | button.button__themeColor:hover { |
| 677 | background: #514585; |
| 678 | color: white; |
| 679 | border-color: #514585; |
| 680 | } |
| 681 | |
| 682 | a.button__themeColor.active:disabled, a.button__themeColor:hover:disabled, |
| 683 | button.button__themeColor.active:disabled, |
| 684 | button.button__themeColor:hover:disabled { |
| 685 | cursor: not-allowed; |
| 686 | background: #FE504F; |
| 687 | -webkit-box-shadow: none; |
| 688 | box-shadow: none; |
| 689 | } |
| 690 | |
| 691 | a.button__themeColor.hover__highlight:hover .icon, |
| 692 | button.button__themeColor.hover__highlight:hover .icon { |
| 693 | background: white; |
| 694 | color: #5B4E96; |
| 695 | } |
| 696 | |
| 697 | .button__primary:not(.hover__highlight) { |
| 698 | background: #00CC76; |
| 699 | color: white; |
| 700 | border-color: #00CC76; |
| 701 | -webkit-transition-property: background, color, box-shadow, border; |
| 702 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 703 | transition-property: background, color, border, -webkit-box-shadow; |
| 704 | transition-property: background, color, box-shadow, border; |
| 705 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 706 | } |
| 707 | |
| 708 | .button__primary:not(.hover__highlight):disabled { |
| 709 | cursor: not-allowed; |
| 710 | background: #FE504F; |
| 711 | border-color: #FE504F; |
| 712 | } |
| 713 | |
| 714 | .button__primary:not(.hover__highlight) .icon { |
| 715 | color: #00CC76; |
| 716 | background: white; |
| 717 | } |
| 718 | |
| 719 | .button__primary.hover__highlight { |
| 720 | color: #00CC76; |
| 721 | border-color: transparent; |
| 722 | background: rgba(0, 204, 118, 0.1); |
| 723 | } |
| 724 | |
| 725 | .button__primary.hover__highlight .icon { |
| 726 | background: #00CC76; |
| 727 | color: #ffffff; |
| 728 | } |
| 729 | |
| 730 | .button__primary.hover__highlight:hover { |
| 731 | border-color: transparent; |
| 732 | } |
| 733 | |
| 734 | .button__primary.button__shadow { |
| 735 | -webkit-box-shadow: 0 10px 10px rgba(0, 204, 118, 0.2); |
| 736 | box-shadow: 0 10px 10px rgba(0, 204, 118, 0.2); |
| 737 | } |
| 738 | |
| 739 | a.button__primary.active, a.button__primary:hover, |
| 740 | button.button__primary.active, |
| 741 | button.button__primary:hover { |
| 742 | background: #00b367; |
| 743 | color: white; |
| 744 | border-color: #00b367; |
| 745 | } |
| 746 | |
| 747 | a.button__primary.active:disabled, a.button__primary:hover:disabled, |
| 748 | button.button__primary.active:disabled, |
| 749 | button.button__primary:hover:disabled { |
| 750 | cursor: not-allowed; |
| 751 | background: #FE504F; |
| 752 | -webkit-box-shadow: none; |
| 753 | box-shadow: none; |
| 754 | } |
| 755 | |
| 756 | a.button__primary.hover__highlight:hover .icon, |
| 757 | button.button__primary.hover__highlight:hover .icon { |
| 758 | background: white; |
| 759 | color: #00CC76; |
| 760 | } |
| 761 | |
| 762 | .button__danger:not(.hover__highlight) { |
| 763 | background: #FE504F; |
| 764 | color: white; |
| 765 | border-color: #FE504F; |
| 766 | -webkit-transition-property: background, color, box-shadow, border; |
| 767 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 768 | transition-property: background, color, border, -webkit-box-shadow; |
| 769 | transition-property: background, color, box-shadow, border; |
| 770 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 771 | } |
| 772 | |
| 773 | .button__danger:not(.hover__highlight):disabled { |
| 774 | cursor: not-allowed; |
| 775 | background: #FE504F; |
| 776 | border-color: #FE504F; |
| 777 | } |
| 778 | |
| 779 | .button__danger:not(.hover__highlight) .icon { |
| 780 | color: #FE504F; |
| 781 | background: white; |
| 782 | } |
| 783 | |
| 784 | .button__danger.hover__highlight { |
| 785 | color: #FE504F; |
| 786 | border-color: transparent; |
| 787 | background: rgba(254, 80, 79, 0.1); |
| 788 | } |
| 789 | |
| 790 | .button__danger.hover__highlight .icon { |
| 791 | background: #00CC76; |
| 792 | color: #ffffff; |
| 793 | } |
| 794 | |
| 795 | .button__danger.hover__highlight:hover { |
| 796 | border-color: transparent; |
| 797 | } |
| 798 | |
| 799 | .button__danger.button__shadow { |
| 800 | -webkit-box-shadow: 0 10px 10px rgba(254, 80, 79, 0.2); |
| 801 | box-shadow: 0 10px 10px rgba(254, 80, 79, 0.2); |
| 802 | } |
| 803 | |
| 804 | a.button__danger.active, a.button__danger:hover, |
| 805 | button.button__danger.active, |
| 806 | button.button__danger:hover { |
| 807 | background: #fe3736; |
| 808 | color: white; |
| 809 | border-color: #fe3736; |
| 810 | } |
| 811 | |
| 812 | a.button__danger.active:disabled, a.button__danger:hover:disabled, |
| 813 | button.button__danger.active:disabled, |
| 814 | button.button__danger:hover:disabled { |
| 815 | cursor: not-allowed; |
| 816 | background: #FE504F; |
| 817 | -webkit-box-shadow: none; |
| 818 | box-shadow: none; |
| 819 | } |
| 820 | |
| 821 | a.button__danger.hover__highlight:hover .icon, |
| 822 | button.button__danger.hover__highlight:hover .icon { |
| 823 | background: white; |
| 824 | color: #FE504F; |
| 825 | } |
| 826 | |
| 827 | .button__warning:not(.hover__highlight) { |
| 828 | background: #FFA53C; |
| 829 | color: white; |
| 830 | border-color: #FFA53C; |
| 831 | -webkit-transition-property: background, color, box-shadow, border; |
| 832 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 833 | transition-property: background, color, border, -webkit-box-shadow; |
| 834 | transition-property: background, color, box-shadow, border; |
| 835 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 836 | } |
| 837 | |
| 838 | .button__warning:not(.hover__highlight):disabled { |
| 839 | cursor: not-allowed; |
| 840 | background: #FE504F; |
| 841 | border-color: #FE504F; |
| 842 | } |
| 843 | |
| 844 | .button__warning:not(.hover__highlight) .icon { |
| 845 | color: #FFA53C; |
| 846 | background: white; |
| 847 | } |
| 848 | |
| 849 | .button__warning.hover__highlight { |
| 850 | color: #FFA53C; |
| 851 | border-color: transparent; |
| 852 | background: rgba(255, 165, 60, 0.1); |
| 853 | } |
| 854 | |
| 855 | .button__warning.hover__highlight .icon { |
| 856 | background: #00CC76; |
| 857 | color: #ffffff; |
| 858 | } |
| 859 | |
| 860 | .button__warning.hover__highlight:hover { |
| 861 | border-color: transparent; |
| 862 | } |
| 863 | |
| 864 | .button__warning.button__shadow { |
| 865 | -webkit-box-shadow: 0 10px 10px rgba(255, 165, 60, 0.2); |
| 866 | box-shadow: 0 10px 10px rgba(255, 165, 60, 0.2); |
| 867 | } |
| 868 | |
| 869 | a.button__warning.active, a.button__warning:hover, |
| 870 | button.button__warning.active, |
| 871 | button.button__warning:hover { |
| 872 | background: #ff9923; |
| 873 | color: white; |
| 874 | border-color: #ff9923; |
| 875 | } |
| 876 | |
| 877 | a.button__warning.active:disabled, a.button__warning:hover:disabled, |
| 878 | button.button__warning.active:disabled, |
| 879 | button.button__warning:hover:disabled { |
| 880 | cursor: not-allowed; |
| 881 | background: #FE504F; |
| 882 | -webkit-box-shadow: none; |
| 883 | box-shadow: none; |
| 884 | } |
| 885 | |
| 886 | a.button__warning.hover__highlight:hover .icon, |
| 887 | button.button__warning.hover__highlight:hover .icon { |
| 888 | background: white; |
| 889 | color: #FFA53C; |
| 890 | } |
| 891 | |
| 892 | .button__white:not(.hover__highlight) { |
| 893 | background: #ffffff; |
| 894 | color: #5b4e96; |
| 895 | border-color: #ffffff; |
| 896 | -webkit-transition-property: background, color, box-shadow, border; |
| 897 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 898 | transition-property: background, color, border, -webkit-box-shadow; |
| 899 | transition-property: background, color, box-shadow, border; |
| 900 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 901 | } |
| 902 | |
| 903 | .button__white:not(.hover__highlight):disabled { |
| 904 | cursor: not-allowed; |
| 905 | background: #FE504F; |
| 906 | border-color: #FE504F; |
| 907 | } |
| 908 | |
| 909 | .button__white:not(.hover__highlight) .icon { |
| 910 | color: #ffffff; |
| 911 | background: #5b4e96; |
| 912 | } |
| 913 | |
| 914 | .button__white.hover__highlight { |
| 915 | color: #ffffff; |
| 916 | border-color: transparent; |
| 917 | background: rgba(255, 255, 255, 0.1); |
| 918 | } |
| 919 | |
| 920 | .button__white.hover__highlight .icon { |
| 921 | background: #00CC76; |
| 922 | color: #ffffff; |
| 923 | } |
| 924 | |
| 925 | .button__white.hover__highlight:hover { |
| 926 | border-color: transparent; |
| 927 | } |
| 928 | |
| 929 | .button__white.button__shadow { |
| 930 | -webkit-box-shadow: 0 10px 10px rgba(255, 255, 255, 0.2); |
| 931 | box-shadow: 0 10px 10px rgba(255, 255, 255, 0.2); |
| 932 | } |
| 933 | |
| 934 | a.button__white.active, a.button__white:hover, |
| 935 | button.button__white.active, |
| 936 | button.button__white:hover { |
| 937 | background: #f2f2f2; |
| 938 | color: #5b4e96; |
| 939 | border-color: #f2f2f2; |
| 940 | } |
| 941 | |
| 942 | a.button__white.active:disabled, a.button__white:hover:disabled, |
| 943 | button.button__white.active:disabled, |
| 944 | button.button__white:hover:disabled { |
| 945 | cursor: not-allowed; |
| 946 | background: #FE504F; |
| 947 | -webkit-box-shadow: none; |
| 948 | box-shadow: none; |
| 949 | } |
| 950 | |
| 951 | a.button__white.hover__highlight:hover .icon, |
| 952 | button.button__white.hover__highlight:hover .icon { |
| 953 | background: #5b4e96; |
| 954 | color: #ffffff; |
| 955 | } |
| 956 | |
| 957 | .button__dark:not(.hover__highlight) { |
| 958 | background: #222222; |
| 959 | color: white; |
| 960 | border-color: #222222; |
| 961 | -webkit-transition-property: background, color, box-shadow, border; |
| 962 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 963 | transition-property: background, color, border, -webkit-box-shadow; |
| 964 | transition-property: background, color, box-shadow, border; |
| 965 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 966 | } |
| 967 | |
| 968 | .button__dark:not(.hover__highlight):disabled { |
| 969 | cursor: not-allowed; |
| 970 | background: #FE504F; |
| 971 | border-color: #FE504F; |
| 972 | } |
| 973 | |
| 974 | .button__dark:not(.hover__highlight) .icon { |
| 975 | color: #222222; |
| 976 | background: white; |
| 977 | } |
| 978 | |
| 979 | .button__dark.hover__highlight { |
| 980 | color: #222222; |
| 981 | border-color: transparent; |
| 982 | background: rgba(34, 34, 34, 0.1); |
| 983 | } |
| 984 | |
| 985 | .button__dark.hover__highlight .icon { |
| 986 | background: #00CC76; |
| 987 | color: #ffffff; |
| 988 | } |
| 989 | |
| 990 | .button__dark.hover__highlight:hover { |
| 991 | border-color: transparent; |
| 992 | } |
| 993 | |
| 994 | .button__dark.button__shadow { |
| 995 | -webkit-box-shadow: 0 10px 10px rgba(34, 34, 34, 0.2); |
| 996 | box-shadow: 0 10px 10px rgba(34, 34, 34, 0.2); |
| 997 | } |
| 998 | |
| 999 | a.button__dark.active, a.button__dark:hover, |
| 1000 | button.button__dark.active, |
| 1001 | button.button__dark:hover { |
| 1002 | background: #151515; |
| 1003 | color: white; |
| 1004 | border-color: #151515; |
| 1005 | } |
| 1006 | |
| 1007 | a.button__dark.active:disabled, a.button__dark:hover:disabled, |
| 1008 | button.button__dark.active:disabled, |
| 1009 | button.button__dark:hover:disabled { |
| 1010 | cursor: not-allowed; |
| 1011 | background: #FE504F; |
| 1012 | -webkit-box-shadow: none; |
| 1013 | box-shadow: none; |
| 1014 | } |
| 1015 | |
| 1016 | a.button__dark.hover__highlight:hover .icon, |
| 1017 | button.button__dark.hover__highlight:hover .icon { |
| 1018 | background: white; |
| 1019 | color: #222222; |
| 1020 | } |
| 1021 | |
| 1022 | .button__grey:not(.hover__highlight) { |
| 1023 | background: #7C8DB5; |
| 1024 | color: white; |
| 1025 | border-color: #7C8DB5; |
| 1026 | -webkit-transition-property: background, color, box-shadow, border; |
| 1027 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1028 | transition-property: background, color, border, -webkit-box-shadow; |
| 1029 | transition-property: background, color, box-shadow, border; |
| 1030 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1031 | } |
| 1032 | |
| 1033 | .button__grey:not(.hover__highlight):disabled { |
| 1034 | cursor: not-allowed; |
| 1035 | background: #FE504F; |
| 1036 | border-color: #FE504F; |
| 1037 | } |
| 1038 | |
| 1039 | .button__grey:not(.hover__highlight) .icon { |
| 1040 | color: #7C8DB5; |
| 1041 | background: white; |
| 1042 | } |
| 1043 | |
| 1044 | .button__grey.hover__highlight { |
| 1045 | color: #7C8DB5; |
| 1046 | border-color: transparent; |
| 1047 | background: rgba(124, 141, 181, 0.1); |
| 1048 | } |
| 1049 | |
| 1050 | .button__grey.hover__highlight .icon { |
| 1051 | background: #00CC76; |
| 1052 | color: #ffffff; |
| 1053 | } |
| 1054 | |
| 1055 | .button__grey.hover__highlight:hover { |
| 1056 | border-color: transparent; |
| 1057 | } |
| 1058 | |
| 1059 | .button__grey.button__shadow { |
| 1060 | -webkit-box-shadow: 0 10px 10px rgba(124, 141, 181, 0.2); |
| 1061 | box-shadow: 0 10px 10px rgba(124, 141, 181, 0.2); |
| 1062 | } |
| 1063 | |
| 1064 | a.button__grey.active, a.button__grey:hover, |
| 1065 | button.button__grey.active, |
| 1066 | button.button__grey:hover { |
| 1067 | background: #6c7fac; |
| 1068 | color: white; |
| 1069 | border-color: #6c7fac; |
| 1070 | } |
| 1071 | |
| 1072 | a.button__grey.active:disabled, a.button__grey:hover:disabled, |
| 1073 | button.button__grey.active:disabled, |
| 1074 | button.button__grey:hover:disabled { |
| 1075 | cursor: not-allowed; |
| 1076 | background: #FE504F; |
| 1077 | -webkit-box-shadow: none; |
| 1078 | box-shadow: none; |
| 1079 | } |
| 1080 | |
| 1081 | a.button__grey.hover__highlight:hover .icon, |
| 1082 | button.button__grey.hover__highlight:hover .icon { |
| 1083 | background: white; |
| 1084 | color: #7C8DB5; |
| 1085 | } |
| 1086 | |
| 1087 | .button__liteGrey:not(.hover__highlight) { |
| 1088 | background: #F5F7FD; |
| 1089 | color: #5b4e96; |
| 1090 | border-color: #F5F7FD; |
| 1091 | -webkit-transition-property: background, color, box-shadow, border; |
| 1092 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1093 | transition-property: background, color, border, -webkit-box-shadow; |
| 1094 | transition-property: background, color, box-shadow, border; |
| 1095 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1096 | } |
| 1097 | |
| 1098 | .button__liteGrey:not(.hover__highlight):disabled { |
| 1099 | cursor: not-allowed; |
| 1100 | background: #FE504F; |
| 1101 | border-color: #FE504F; |
| 1102 | } |
| 1103 | |
| 1104 | .button__liteGrey:not(.hover__highlight) .icon { |
| 1105 | color: #F5F7FD; |
| 1106 | background: #5b4e96; |
| 1107 | } |
| 1108 | |
| 1109 | .button__liteGrey.hover__highlight { |
| 1110 | color: #F5F7FD; |
| 1111 | border-color: transparent; |
| 1112 | background: rgba(245, 247, 253, 0.1); |
| 1113 | } |
| 1114 | |
| 1115 | .button__liteGrey.hover__highlight .icon { |
| 1116 | background: #00CC76; |
| 1117 | color: #ffffff; |
| 1118 | } |
| 1119 | |
| 1120 | .button__liteGrey.hover__highlight:hover { |
| 1121 | border-color: transparent; |
| 1122 | } |
| 1123 | |
| 1124 | .button__liteGrey.button__shadow { |
| 1125 | -webkit-box-shadow: 0 10px 10px rgba(245, 247, 253, 0.2); |
| 1126 | box-shadow: 0 10px 10px rgba(245, 247, 253, 0.2); |
| 1127 | } |
| 1128 | |
| 1129 | a.button__liteGrey.active, a.button__liteGrey:hover, |
| 1130 | button.button__liteGrey.active, |
| 1131 | button.button__liteGrey:hover { |
| 1132 | background: #e0e6f9; |
| 1133 | color: #5b4e96; |
| 1134 | border-color: #e0e6f9; |
| 1135 | } |
| 1136 | |
| 1137 | a.button__liteGrey.active:disabled, a.button__liteGrey:hover:disabled, |
| 1138 | button.button__liteGrey.active:disabled, |
| 1139 | button.button__liteGrey:hover:disabled { |
| 1140 | cursor: not-allowed; |
| 1141 | background: #FE504F; |
| 1142 | -webkit-box-shadow: none; |
| 1143 | box-shadow: none; |
| 1144 | } |
| 1145 | |
| 1146 | a.button__liteGrey.hover__highlight:hover .icon, |
| 1147 | button.button__liteGrey.hover__highlight:hover .icon { |
| 1148 | background: #5b4e96; |
| 1149 | color: #F5F7FD; |
| 1150 | } |
| 1151 | |
| 1152 | .button__black:not(.hover__highlight) { |
| 1153 | background: #000000; |
| 1154 | color: white; |
| 1155 | border-color: #000000; |
| 1156 | -webkit-transition-property: background, color, box-shadow, border; |
| 1157 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1158 | transition-property: background, color, border, -webkit-box-shadow; |
| 1159 | transition-property: background, color, box-shadow, border; |
| 1160 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1161 | } |
| 1162 | |
| 1163 | .button__black:not(.hover__highlight):disabled { |
| 1164 | cursor: not-allowed; |
| 1165 | background: #FE504F; |
| 1166 | border-color: #FE504F; |
| 1167 | } |
| 1168 | |
| 1169 | .button__black:not(.hover__highlight) .icon { |
| 1170 | color: #000000; |
| 1171 | background: white; |
| 1172 | } |
| 1173 | |
| 1174 | .button__black.hover__highlight { |
| 1175 | color: #000000; |
| 1176 | border-color: transparent; |
| 1177 | background: rgba(0, 0, 0, 0.1); |
| 1178 | } |
| 1179 | |
| 1180 | .button__black.hover__highlight .icon { |
| 1181 | background: #00CC76; |
| 1182 | color: #ffffff; |
| 1183 | } |
| 1184 | |
| 1185 | .button__black.hover__highlight:hover { |
| 1186 | border-color: transparent; |
| 1187 | } |
| 1188 | |
| 1189 | .button__black.button__shadow { |
| 1190 | -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); |
| 1191 | box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); |
| 1192 | } |
| 1193 | |
| 1194 | a.button__black.active:disabled, a.button__black:hover:disabled, |
| 1195 | button.button__black.active:disabled, |
| 1196 | button.button__black:hover:disabled { |
| 1197 | cursor: not-allowed; |
| 1198 | background: #FE504F; |
| 1199 | -webkit-box-shadow: none; |
| 1200 | box-shadow: none; |
| 1201 | } |
| 1202 | |
| 1203 | a.button__black.hover__highlight:hover .icon, |
| 1204 | button.button__black.hover__highlight:hover .icon { |
| 1205 | background: white; |
| 1206 | color: #000000; |
| 1207 | } |
| 1208 | |
| 1209 | .button__twitter:not(.hover__highlight) { |
| 1210 | background: #1da1f2; |
| 1211 | color: white; |
| 1212 | border-color: #1da1f2; |
| 1213 | -webkit-transition-property: background, color, box-shadow, border; |
| 1214 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1215 | transition-property: background, color, border, -webkit-box-shadow; |
| 1216 | transition-property: background, color, box-shadow, border; |
| 1217 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1218 | } |
| 1219 | |
| 1220 | .button__twitter:not(.hover__highlight):disabled { |
| 1221 | cursor: not-allowed; |
| 1222 | background: #FE504F; |
| 1223 | border-color: #FE504F; |
| 1224 | } |
| 1225 | |
| 1226 | .button__twitter:not(.hover__highlight) .icon { |
| 1227 | color: #1da1f2; |
| 1228 | background: white; |
| 1229 | } |
| 1230 | |
| 1231 | .button__twitter.hover__highlight { |
| 1232 | color: #1da1f2; |
| 1233 | border-color: transparent; |
| 1234 | background: rgba(29, 161, 242, 0.1); |
| 1235 | } |
| 1236 | |
| 1237 | .button__twitter.hover__highlight .icon { |
| 1238 | background: #00CC76; |
| 1239 | color: #ffffff; |
| 1240 | } |
| 1241 | |
| 1242 | .button__twitter.hover__highlight:hover { |
| 1243 | border-color: transparent; |
| 1244 | } |
| 1245 | |
| 1246 | .button__twitter.button__shadow { |
| 1247 | -webkit-box-shadow: 0 10px 10px rgba(29, 161, 242, 0.2); |
| 1248 | box-shadow: 0 10px 10px rgba(29, 161, 242, 0.2); |
| 1249 | } |
| 1250 | |
| 1251 | a.button__twitter.active, a.button__twitter:hover, |
| 1252 | button.button__twitter.active, |
| 1253 | button.button__twitter:hover { |
| 1254 | background: #0d95e8; |
| 1255 | color: white; |
| 1256 | border-color: #0d95e8; |
| 1257 | } |
| 1258 | |
| 1259 | a.button__twitter.active:disabled, a.button__twitter:hover:disabled, |
| 1260 | button.button__twitter.active:disabled, |
| 1261 | button.button__twitter:hover:disabled { |
| 1262 | cursor: not-allowed; |
| 1263 | background: #FE504F; |
| 1264 | -webkit-box-shadow: none; |
| 1265 | box-shadow: none; |
| 1266 | } |
| 1267 | |
| 1268 | a.button__twitter.hover__highlight:hover .icon, |
| 1269 | button.button__twitter.hover__highlight:hover .icon { |
| 1270 | background: white; |
| 1271 | color: #1da1f2; |
| 1272 | } |
| 1273 | |
| 1274 | .button__linkedin:not(.hover__highlight) { |
| 1275 | background: #0077b5; |
| 1276 | color: white; |
| 1277 | border-color: #0077b5; |
| 1278 | -webkit-transition-property: background, color, box-shadow, border; |
| 1279 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1280 | transition-property: background, color, border, -webkit-box-shadow; |
| 1281 | transition-property: background, color, box-shadow, border; |
| 1282 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1283 | } |
| 1284 | |
| 1285 | .button__linkedin:not(.hover__highlight):disabled { |
| 1286 | cursor: not-allowed; |
| 1287 | background: #FE504F; |
| 1288 | border-color: #FE504F; |
| 1289 | } |
| 1290 | |
| 1291 | .button__linkedin:not(.hover__highlight) .icon { |
| 1292 | color: #0077b5; |
| 1293 | background: white; |
| 1294 | } |
| 1295 | |
| 1296 | .button__linkedin.hover__highlight { |
| 1297 | color: #0077b5; |
| 1298 | border-color: transparent; |
| 1299 | background: rgba(0, 119, 181, 0.1); |
| 1300 | } |
| 1301 | |
| 1302 | .button__linkedin.hover__highlight .icon { |
| 1303 | background: #00CC76; |
| 1304 | color: #ffffff; |
| 1305 | } |
| 1306 | |
| 1307 | .button__linkedin.hover__highlight:hover { |
| 1308 | border-color: transparent; |
| 1309 | } |
| 1310 | |
| 1311 | .button__linkedin.button__shadow { |
| 1312 | -webkit-box-shadow: 0 10px 10px rgba(0, 119, 181, 0.2); |
| 1313 | box-shadow: 0 10px 10px rgba(0, 119, 181, 0.2); |
| 1314 | } |
| 1315 | |
| 1316 | a.button__linkedin.active, a.button__linkedin:hover, |
| 1317 | button.button__linkedin.active, |
| 1318 | button.button__linkedin:hover { |
| 1319 | background: #00669c; |
| 1320 | color: white; |
| 1321 | border-color: #00669c; |
| 1322 | } |
| 1323 | |
| 1324 | a.button__linkedin.active:disabled, a.button__linkedin:hover:disabled, |
| 1325 | button.button__linkedin.active:disabled, |
| 1326 | button.button__linkedin:hover:disabled { |
| 1327 | cursor: not-allowed; |
| 1328 | background: #FE504F; |
| 1329 | -webkit-box-shadow: none; |
| 1330 | box-shadow: none; |
| 1331 | } |
| 1332 | |
| 1333 | a.button__linkedin.hover__highlight:hover .icon, |
| 1334 | button.button__linkedin.hover__highlight:hover .icon { |
| 1335 | background: white; |
| 1336 | color: #0077b5; |
| 1337 | } |
| 1338 | |
| 1339 | .button__instagram:not(.hover__highlight) { |
| 1340 | background: #e1306c; |
| 1341 | color: white; |
| 1342 | border-color: #e1306c; |
| 1343 | -webkit-transition-property: background, color, box-shadow, border; |
| 1344 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1345 | transition-property: background, color, border, -webkit-box-shadow; |
| 1346 | transition-property: background, color, box-shadow, border; |
| 1347 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1348 | } |
| 1349 | |
| 1350 | .button__instagram:not(.hover__highlight):disabled { |
| 1351 | cursor: not-allowed; |
| 1352 | background: #FE504F; |
| 1353 | border-color: #FE504F; |
| 1354 | } |
| 1355 | |
| 1356 | .button__instagram:not(.hover__highlight) .icon { |
| 1357 | color: #e1306c; |
| 1358 | background: white; |
| 1359 | } |
| 1360 | |
| 1361 | .button__instagram.hover__highlight { |
| 1362 | color: #e1306c; |
| 1363 | border-color: transparent; |
| 1364 | background: rgba(225, 48, 108, 0.1); |
| 1365 | } |
| 1366 | |
| 1367 | .button__instagram.hover__highlight .icon { |
| 1368 | background: #00CC76; |
| 1369 | color: #ffffff; |
| 1370 | } |
| 1371 | |
| 1372 | .button__instagram.hover__highlight:hover { |
| 1373 | border-color: transparent; |
| 1374 | } |
| 1375 | |
| 1376 | .button__instagram.button__shadow { |
| 1377 | -webkit-box-shadow: 0 10px 10px rgba(225, 48, 108, 0.2); |
| 1378 | box-shadow: 0 10px 10px rgba(225, 48, 108, 0.2); |
| 1379 | } |
| 1380 | |
| 1381 | a.button__instagram.active, a.button__instagram:hover, |
| 1382 | button.button__instagram.active, |
| 1383 | button.button__instagram:hover { |
| 1384 | background: #d81f5e; |
| 1385 | color: white; |
| 1386 | border-color: #d81f5e; |
| 1387 | } |
| 1388 | |
| 1389 | a.button__instagram.active:disabled, a.button__instagram:hover:disabled, |
| 1390 | button.button__instagram.active:disabled, |
| 1391 | button.button__instagram:hover:disabled { |
| 1392 | cursor: not-allowed; |
| 1393 | background: #FE504F; |
| 1394 | -webkit-box-shadow: none; |
| 1395 | box-shadow: none; |
| 1396 | } |
| 1397 | |
| 1398 | a.button__instagram.hover__highlight:hover .icon, |
| 1399 | button.button__instagram.hover__highlight:hover .icon { |
| 1400 | background: white; |
| 1401 | color: #e1306c; |
| 1402 | } |
| 1403 | |
| 1404 | .template__wrapper .button.button-pro-upgrade { |
| 1405 | font-weight: 700; |
| 1406 | color: #fff; |
| 1407 | background-color: #FF7369; |
| 1408 | border-color: #FF7369; |
| 1409 | } |
| 1410 | |
| 1411 | .template__wrapper .button { |
| 1412 | display: inline-flex; |
| 1413 | align-items: center; |
| 1414 | justify-content: center; |
| 1415 | gap: 8px; |
| 1416 | text-align: center; |
| 1417 | padding: 16px 30px; |
| 1418 | line-height: 1; |
| 1419 | color: #594E91; |
| 1420 | background: rgba(91, 78, 150, 0.1); |
| 1421 | border: 1px solid rgba(91, 78, 150, 0.1); |
| 1422 | font-size: 16px; |
| 1423 | font-weight: 500; |
| 1424 | font-family: 'DMSans'; |
| 1425 | cursor: pointer; |
| 1426 | -webkit-transition: all 0.3s ease-in-out 0s; |
| 1427 | transition: all 0.3s ease-in-out 0s; |
| 1428 | border-radius: 8px; |
| 1429 | } |
| 1430 | |
| 1431 | @media (max-width: 767px) { |
| 1432 | .template__wrapper .button { |
| 1433 | padding: 16px 25px; |
| 1434 | } |
| 1435 | } |
| 1436 | |
| 1437 | .template__wrapper .button:hover { |
| 1438 | background: #5B4E96 !important; |
| 1439 | color: #ffffff !important; |
| 1440 | border-color: #5B4E96 !important; |
| 1441 | } |
| 1442 | |
| 1443 | .template__wrapper .button:focus { |
| 1444 | outline: none; |
| 1445 | -webkit-box-shadow: none; |
| 1446 | box-shadow: none; |
| 1447 | border-color: #5B4E96; |
| 1448 | background-color: #5B4E96; |
| 1449 | color: #ffffff; |
| 1450 | } |
| 1451 | |
| 1452 | .template__wrapper .button .ss-icon { |
| 1453 | font-size: 14px; |
| 1454 | margin-right: 5px; |
| 1455 | } |
| 1456 | |
| 1457 | .template__wrapper .button--lg { |
| 1458 | padding: 20px 30px; |
| 1459 | } |
| 1460 | |
| 1461 | .template__wrapper .button__flex { |
| 1462 | display: -webkit-inline-box; |
| 1463 | display: -ms-inline-flexbox; |
| 1464 | display: inline-flex; |
| 1465 | -webkit-box-align: center; |
| 1466 | -ms-flex-align: center; |
| 1467 | align-items: center; |
| 1468 | } |
| 1469 | |
| 1470 | .button__group .button { |
| 1471 | margin-right: 13px; |
| 1472 | margin-bottom: 15px; |
| 1473 | } |
| 1474 | |
| 1475 | .button__group .button:last-child { |
| 1476 | margin-right: 0; |
| 1477 | } |
| 1478 | |
| 1479 | .template__wrapper .radius-10 { |
| 1480 | border-radius: 10px; |
| 1481 | } |
| 1482 | |
| 1483 | .template__wrapper .radius-12 { |
| 1484 | border-radius: 12px; |
| 1485 | } |
| 1486 | |
| 1487 | .template__wrapper .radius-16 { |
| 1488 | border-radius: 16px; |
| 1489 | } |
| 1490 | |
| 1491 | .template__wrapper .radius-20 { |
| 1492 | border-radius: 20px; |
| 1493 | } |
| 1494 | |
| 1495 | .template__wrapper .radius-24 { |
| 1496 | border-radius: 24px; |
| 1497 | } |
| 1498 | |
| 1499 | .template__wrapper .radius-25 { |
| 1500 | border-radius: 25px; |
| 1501 | } |
| 1502 | |
| 1503 | .template__wrapper .radius-50 { |
| 1504 | border-radius: 50px; |
| 1505 | } |
| 1506 | |
| 1507 | .template__wrapper { |
| 1508 | /* overflow: hidden; */ |
| 1509 | min-height: 100vh; |
| 1510 | -webkit-display: flex; |
| 1511 | -moz-display: flex; |
| 1512 | -ms-display: flex; |
| 1513 | -o-display: flex; |
| 1514 | display: -webkit-box; |
| 1515 | display: flex; |
| 1516 | -moz-flex-direction: column; |
| 1517 | -ms-flex-direction: column; |
| 1518 | -o-flex-direction: column; |
| 1519 | -webkit-box-orient: vertical; |
| 1520 | -webkit-box-direction: normal; |
| 1521 | flex-direction: column; |
| 1522 | } |
| 1523 | |
| 1524 | @media (max-width: 991px) { |
| 1525 | .template__wrapper.p30 { |
| 1526 | padding: 15px; |
| 1527 | } |
| 1528 | } |
| 1529 | |
| 1530 | .embedpress__container { |
| 1531 | width: 100%; |
| 1532 | margin: 0 auto; |
| 1533 | max-width: 1700px; |
| 1534 | } |
| 1535 | |
| 1536 | .o-hidden { |
| 1537 | overflow: hidden; |
| 1538 | } |
| 1539 | |
| 1540 | .text-center { |
| 1541 | text-align: center; |
| 1542 | } |
| 1543 | |
| 1544 | .h-100 { |
| 1545 | height: 100%; |
| 1546 | } |
| 1547 | |
| 1548 | .embedpress-body { |
| 1549 | display: -webkit-box; |
| 1550 | display: -ms-flexbox; |
| 1551 | display: flex; |
| 1552 | } |
| 1553 | |
| 1554 | @media (max-width: 991px) { |
| 1555 | .embedpress-body { |
| 1556 | display: block; |
| 1557 | } |
| 1558 | } |
| 1559 | |
| 1560 | /* |
| 1561 | .embedpress-body .embedpress-sidebar-wrapper { |
| 1562 | display: flex; |
| 1563 | flex-direction: column; |
| 1564 | } |
| 1565 | |
| 1566 | .embedpress-body .embedpress-sidebar-wrapper .sticky-sibling { |
| 1567 | flex-grow: 1; |
| 1568 | } */ |
| 1569 | |
| 1570 | .embedpress-body .embedpress-sidebar { |
| 1571 | -webkit-box-flex: 0; |
| 1572 | -ms-flex: 0 0 240px; |
| 1573 | flex: 0 0 240px; |
| 1574 | min-width: 240px; |
| 1575 | margin-right: 24px; |
| 1576 | position: sticky; |
| 1577 | top: 40px; |
| 1578 | max-width: 240px; |
| 1579 | overflow: unset; |
| 1580 | } |
| 1581 | |
| 1582 | .embedpress-body .embedpress-content { |
| 1583 | -webkit-box-flex: 1; |
| 1584 | -ms-flex-positive: 1; |
| 1585 | flex-grow: 1; |
| 1586 | } |
| 1587 | |
| 1588 | .embedpress__row { |
| 1589 | display: -ms-grid; |
| 1590 | display: grid; |
| 1591 | gap: 20px; |
| 1592 | } |
| 1593 | |
| 1594 | .embedpress__row.grid__3 { |
| 1595 | -ms-grid-columns: 1fr 1fr 1fr; |
| 1596 | grid-template-columns: repeat(3, 1fr); |
| 1597 | } |
| 1598 | |
| 1599 | @media (max-width: 1199px) { |
| 1600 | .embedpress__row.grid__3 { |
| 1601 | -ms-grid-columns: 1fr 1fr; |
| 1602 | grid-template-columns: repeat(2, 1fr); |
| 1603 | } |
| 1604 | } |
| 1605 | |
| 1606 | @media (max-width: 575px) { |
| 1607 | .embedpress__row.grid__3 { |
| 1608 | -ms-grid-columns: 1fr; |
| 1609 | grid-template-columns: repeat(1, 1fr); |
| 1610 | } |
| 1611 | } |
| 1612 | |
| 1613 | .embedpress__row.grid__4 { |
| 1614 | -ms-grid-columns: 1fr 1fr 1fr 1fr; |
| 1615 | grid-template-columns: repeat(4, 1fr); |
| 1616 | } |
| 1617 | |
| 1618 | @media (max-width: 1199px) { |
| 1619 | .embedpress__row.grid__4 { |
| 1620 | -ms-grid-columns: 1fr 1fr 1fr; |
| 1621 | grid-template-columns: repeat(3, 1fr); |
| 1622 | } |
| 1623 | } |
| 1624 | |
| 1625 | .embedpress__notification { |
| 1626 | position: fixed; |
| 1627 | bottom: 50px; |
| 1628 | right: 50px; |
| 1629 | padding: 15px 25px; |
| 1630 | border-radius: 10px; |
| 1631 | max-width: 400px; |
| 1632 | z-index: 9999; |
| 1633 | } |
| 1634 | |
| 1635 | .embedpress__notification--success { |
| 1636 | background: #00CC76; |
| 1637 | } |
| 1638 | |
| 1639 | .embedpress__notification--error { |
| 1640 | background-color: #FE504F; |
| 1641 | } |
| 1642 | |
| 1643 | .embedpress__notification p { |
| 1644 | color: #ffffff; |
| 1645 | font-size: 14px; |
| 1646 | } |
| 1647 | |
| 1648 | #wpcontent { |
| 1649 | padding-left: 0; |
| 1650 | } |
| 1651 | |
| 1652 | @media all and (max-width: 782px) { |
| 1653 | .auto-fold #wpcontent { |
| 1654 | padding-left: 0; |
| 1655 | } |
| 1656 | } |
| 1657 | |
| 1658 | @media (max-width: 1199px) { |
| 1659 | .p50, .p40 { |
| 1660 | padding: 25px; |
| 1661 | } |
| 1662 | } |
| 1663 | |
| 1664 | .embedpress-header { |
| 1665 | display: flex; |
| 1666 | justify-content: space-between; |
| 1667 | align-items: center; |
| 1668 | column-gap: 15px; |
| 1669 | row-gap: 10px; |
| 1670 | background: #fff; |
| 1671 | padding: 15px 15px; |
| 1672 | margin-bottom: 15px; |
| 1673 | border-radius: 16px; |
| 1674 | } |
| 1675 | |
| 1676 | |
| 1677 | @media all and (max-width: 767px) { |
| 1678 | .embedpress-header { |
| 1679 | flex-direction: column; |
| 1680 | align-items: baseline; |
| 1681 | |
| 1682 | } |
| 1683 | } |
| 1684 | |
| 1685 | header.embedpress-header img { |
| 1686 | width: 150px; |
| 1687 | min-width: 150px; |
| 1688 | } |
| 1689 | |
| 1690 | header.embedpress-header p { |
| 1691 | font-size: 16px; |
| 1692 | color: #25396F; |
| 1693 | line-height: 1.1; |
| 1694 | text-align: center; |
| 1695 | } |
| 1696 | |
| 1697 | header.embedpress-header a { |
| 1698 | color: #FF7369 !important; |
| 1699 | } |
| 1700 | |
| 1701 | a.site__logo { |
| 1702 | display: inline-flex; |
| 1703 | } |
| 1704 | |
| 1705 | .embedpress-sidebar { |
| 1706 | padding: 10px; |
| 1707 | background: #ffffff; |
| 1708 | border-radius: 16px; |
| 1709 | position: relative; |
| 1710 | } |
| 1711 | |
| 1712 | .embedpress-version-wrapper li { |
| 1713 | font-size: 14px; |
| 1714 | font-weight: 600; |
| 1715 | color: #7C8DB5; |
| 1716 | text-align: right; |
| 1717 | line-height: 1.2; |
| 1718 | white-space: nowrap; |
| 1719 | } |
| 1720 | |
| 1721 | @media all and (max-width: 767px) { |
| 1722 | .embedpress-version-wrapper li { |
| 1723 | font-size: 14px; |
| 1724 | } |
| 1725 | } |
| 1726 | |
| 1727 | |
| 1728 | @media all and (max-width: 575px) { |
| 1729 | .embedpress-header { |
| 1730 | display: block; |
| 1731 | } |
| 1732 | |
| 1733 | .embedpress-header .embedpress-version-wrapper { |
| 1734 | margin-top: 10px; |
| 1735 | } |
| 1736 | |
| 1737 | .embedpress-version-wrapper li { |
| 1738 | text-align: left; |
| 1739 | } |
| 1740 | } |
| 1741 | |
| 1742 | @media (max-width: 991px) { |
| 1743 | .embedpress-sidebar { |
| 1744 | padding: 0; |
| 1745 | border-radius: 5px; |
| 1746 | margin-bottom: 30px; |
| 1747 | } |
| 1748 | } |
| 1749 | |
| 1750 | .embedpress-sidebar .sidebar__toggler { |
| 1751 | display: none; |
| 1752 | } |
| 1753 | |
| 1754 | @media (max-width: 991px) { |
| 1755 | .embedpress-sidebar .sidebar__toggler { |
| 1756 | display: block; |
| 1757 | font-size: 24px; |
| 1758 | padding: 5px 10px; |
| 1759 | text-align: center; |
| 1760 | } |
| 1761 | } |
| 1762 | |
| 1763 | @media (max-width: 991px) { |
| 1764 | .embedpress-sidebar .sidebar__menu { |
| 1765 | display: none; |
| 1766 | position: absolute; |
| 1767 | top: calc(100% + 10px); |
| 1768 | z-index: 90; |
| 1769 | left: 0; |
| 1770 | background: #ffffff; |
| 1771 | min-width: 220px; |
| 1772 | border-radius: 10px; |
| 1773 | padding: 10px; |
| 1774 | -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2); |
| 1775 | box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2); |
| 1776 | } |
| 1777 | } |
| 1778 | |
| 1779 | .embedpress-sidebar .sidebar__menu .sidebar__item:not(:last-child) { |
| 1780 | margin-bottom: 10px; |
| 1781 | } |
| 1782 | |
| 1783 | .embedpress-sidebar .sidebar__menu .sidebar__item:hover .sidebar__link { |
| 1784 | background: #5B4E96; |
| 1785 | color: #ffffff; |
| 1786 | } |
| 1787 | |
| 1788 | .embedpress-sidebar .sidebar__menu .sidebar__item.show .sidebar__link { |
| 1789 | background: #5B4E96; |
| 1790 | color: #ffffff; |
| 1791 | } |
| 1792 | |
| 1793 | .embedpress-sidebar .sidebar__menu .sidebar__item.show .sidebar__link--toggler:before { |
| 1794 | -webkit-transform: rotate(180deg); |
| 1795 | transform: rotate(180deg); |
| 1796 | } |
| 1797 | |
| 1798 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link { |
| 1799 | padding: 10px 20px; |
| 1800 | width: 100%; |
| 1801 | font-size: 16px; |
| 1802 | font-weight: 500; |
| 1803 | color: #25396F; |
| 1804 | border-radius: 8px; |
| 1805 | position: relative; |
| 1806 | } |
| 1807 | |
| 1808 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link--toggler:before { |
| 1809 | content: '\e906'; |
| 1810 | font-family: icomoon; |
| 1811 | position: absolute; |
| 1812 | top: 18px; |
| 1813 | right: 15px; |
| 1814 | font-size: 10px; |
| 1815 | -webkit-transition: rotate .3s ease; |
| 1816 | transition: rotate .3s ease; |
| 1817 | } |
| 1818 | |
| 1819 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link.active+.dropdown__menu { |
| 1820 | display: block; |
| 1821 | } |
| 1822 | |
| 1823 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link span { |
| 1824 | display: inline-block; |
| 1825 | margin-right: 10px; |
| 1826 | width: 20px; |
| 1827 | text-align: center; |
| 1828 | } |
| 1829 | a.sidebar__link.ads-icon span { |
| 1830 | display: flex!important; |
| 1831 | } |
| 1832 | a.sidebar__link.ads-icon { |
| 1833 | display: flex; |
| 1834 | align-items: center; |
| 1835 | } |
| 1836 | a.sidebar__link.ads-icon.active span svg path, a.sidebar__link.ads-icon:hover span svg path{ |
| 1837 | fill: #fff; |
| 1838 | } |
| 1839 | |
| 1840 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu { |
| 1841 | margin-left: 35px; |
| 1842 | display: none; |
| 1843 | } |
| 1844 | |
| 1845 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item:not(:last-child) { |
| 1846 | margin-bottom: 5px; |
| 1847 | } |
| 1848 | |
| 1849 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link { |
| 1850 | padding: 5px; |
| 1851 | /* display: block; */ |
| 1852 | font-size: 16px; |
| 1853 | font-weight: 400; |
| 1854 | color: #7C8DB5; |
| 1855 | display: flex; |
| 1856 | } |
| 1857 | |
| 1858 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link img { |
| 1859 | max-width: 16px; |
| 1860 | margin-right: 7px; |
| 1861 | } |
| 1862 | |
| 1863 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link:hover { |
| 1864 | color: #5B4E96; |
| 1865 | } |
| 1866 | |
| 1867 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link.active { |
| 1868 | color: #5B4E96; |
| 1869 | font-weight: 500; |
| 1870 | } |
| 1871 | |
| 1872 | .embedpress-tab .nav__menu ul { |
| 1873 | display: -webkit-box; |
| 1874 | display: -ms-flexbox; |
| 1875 | display: flex; |
| 1876 | } |
| 1877 | |
| 1878 | .embedpress-tab .nav__menu ul.menu__grow .nav__item { |
| 1879 | -webkit-box-flex: 1; |
| 1880 | -ms-flex-positive: 1; |
| 1881 | flex-grow: 1; |
| 1882 | text-align: center; |
| 1883 | } |
| 1884 | |
| 1885 | .embedpress-tab .nav__menu ul.menu__grow .nav__item span { |
| 1886 | width: 100%; |
| 1887 | } |
| 1888 | |
| 1889 | @media (max-width: 767px) { |
| 1890 | .embedpress-tab .nav__menu ul.menu__grow .nav__item span { |
| 1891 | padding: 10px; |
| 1892 | } |
| 1893 | } |
| 1894 | |
| 1895 | @media (max-width: 479px) { |
| 1896 | .embedpress-tab .nav__menu ul:not(.menu__grow) { |
| 1897 | display: block; |
| 1898 | } |
| 1899 | |
| 1900 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item:not(:last-child) { |
| 1901 | margin-right: 0; |
| 1902 | } |
| 1903 | |
| 1904 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item:first-child span { |
| 1905 | border-top-right-radius: 10px; |
| 1906 | } |
| 1907 | |
| 1908 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item:last-child span { |
| 1909 | border-top-right-radius: 0; |
| 1910 | } |
| 1911 | } |
| 1912 | |
| 1913 | @media (max-width: 479px) and (max-width: 479px) { |
| 1914 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item span { |
| 1915 | width: 100%; |
| 1916 | } |
| 1917 | } |
| 1918 | |
| 1919 | .embedpress-tab .nav__menu ul .nav__item { |
| 1920 | margin-bottom: 5px; |
| 1921 | font-size: 20px; |
| 1922 | font-weight: 400; |
| 1923 | color: #5B4E96; |
| 1924 | display: -webkit-box; |
| 1925 | display: -ms-flexbox; |
| 1926 | display: flex; |
| 1927 | -webkit-box-pack: center; |
| 1928 | -ms-flex-pack: center; |
| 1929 | justify-content: center; |
| 1930 | -webkit-box-align: center; |
| 1931 | -ms-flex-align: center; |
| 1932 | align-items: center; |
| 1933 | } |
| 1934 | |
| 1935 | @media (max-width: 767px) { |
| 1936 | .embedpress-tab .nav__menu ul .nav__item { |
| 1937 | font-size: 16px; |
| 1938 | } |
| 1939 | } |
| 1940 | |
| 1941 | @media (max-width: 575px) { |
| 1942 | .embedpress-tab .nav__menu ul .nav__item { |
| 1943 | font-size: 14px; |
| 1944 | } |
| 1945 | } |
| 1946 | |
| 1947 | .embedpress-tab .nav__menu ul .nav__item i { |
| 1948 | margin-right: 10px; |
| 1949 | } |
| 1950 | |
| 1951 | .embedpress-tab .nav__menu ul .nav__item.active span { |
| 1952 | background: #5B4E96; |
| 1953 | color: #ffffff; |
| 1954 | } |
| 1955 | |
| 1956 | .embedpress-tab .nav__menu ul .nav__item span { |
| 1957 | padding: 16px 20px; |
| 1958 | cursor: pointer; |
| 1959 | background: #ffffff; |
| 1960 | } |
| 1961 | |
| 1962 | .embedpress-tab .nav__menu ul .nav__item:not(:last-child) { |
| 1963 | margin-right: 5px; |
| 1964 | } |
| 1965 | |
| 1966 | .embedpress-tab .nav__menu ul .nav__item:first-child span { |
| 1967 | border-top-left-radius: 10px; |
| 1968 | } |
| 1969 | |
| 1970 | .embedpress-tab .nav__menu ul .nav__item:last-child span { |
| 1971 | border-top-right-radius: 10px; |
| 1972 | } |
| 1973 | |
| 1974 | .embedpress-tab .tab__item { |
| 1975 | display: none; |
| 1976 | border-radius: 20px; |
| 1977 | border-top-left-radius: 0; |
| 1978 | overflow: hidden; |
| 1979 | } |
| 1980 | |
| 1981 | .embedpress-tab .tab__item.active { |
| 1982 | display: block; |
| 1983 | } |
| 1984 | |
| 1985 | .embedpress__settings { |
| 1986 | min-height: 100%; |
| 1987 | } |
| 1988 | |
| 1989 | .upgrade__card+.embedpress__settings { |
| 1990 | min-height: auto; |
| 1991 | } |
| 1992 | |
| 1993 | .embedpress__settings h3 { |
| 1994 | font-size: 24px; |
| 1995 | font-weight: 700; |
| 1996 | color: #131F4D; |
| 1997 | padding-bottom: 16px; |
| 1998 | margin-bottom: 24px; |
| 1999 | border-bottom: 1px solid #F5F7FC; |
| 2000 | } |
| 2001 | |
| 2002 | @media (max-width: 767px) { |
| 2003 | .embedpress__settings h3 { |
| 2004 | font-size: 24px; |
| 2005 | } |
| 2006 | } |
| 2007 | |
| 2008 | @media (max-width: 575px) { |
| 2009 | .embedpress__settings h3 { |
| 2010 | font-size: 20px; |
| 2011 | } |
| 2012 | } |
| 2013 | |
| 2014 | .template__wrapper input:focus, |
| 2015 | .template__wrapper select:focus { |
| 2016 | border-color: #E6EFFB; |
| 2017 | -webkit-box-shadow: none; |
| 2018 | box-shadow: none; |
| 2019 | outline: none; |
| 2020 | } |
| 2021 | |
| 2022 | .template__wrapper .form__control { |
| 2023 | height: 40px; |
| 2024 | padding: 0 20px; |
| 2025 | border-radius: 5px; |
| 2026 | background: #ffffff; |
| 2027 | border: 1px solid #E6EFFB; |
| 2028 | color: #25396F; |
| 2029 | width: 100%; |
| 2030 | outline: none; |
| 2031 | -webkit-box-shadow: none; |
| 2032 | box-shadow: none; |
| 2033 | } |
| 2034 | |
| 2035 | .template__wrapper .form__control::-webkit-input-placeholder { |
| 2036 | color: #7C8DB5; |
| 2037 | } |
| 2038 | |
| 2039 | .template__wrapper .form__control:-moz-placeholder { |
| 2040 | color: #7C8DB5; |
| 2041 | } |
| 2042 | |
| 2043 | .template__wrapper .form__control::-moz-placeholder { |
| 2044 | color: #7C8DB5; |
| 2045 | } |
| 2046 | |
| 2047 | .template__wrapper .form__control:-ms-input-placeholder { |
| 2048 | color: #7C8DB5; |
| 2049 | } |
| 2050 | |
| 2051 | .template__wrapper textarea.form__control { |
| 2052 | height: 120px; |
| 2053 | padding-top: 15px; |
| 2054 | } |
| 2055 | |
| 2056 | .template__wrapper .embedpress__select select[disabled] { |
| 2057 | background-image: none; |
| 2058 | } |
| 2059 | |
| 2060 | .template__wrapper label { |
| 2061 | font-size: 16px; |
| 2062 | font-weight: 400; |
| 2063 | color: #7C8DB5; |
| 2064 | margin-bottom: 8px; |
| 2065 | } |
| 2066 | |
| 2067 | .embedpress__select { |
| 2068 | position: relative; |
| 2069 | } |
| 2070 | |
| 2071 | .embedpress__select span { |
| 2072 | position: absolute; |
| 2073 | top: 12px; |
| 2074 | right: 15px; |
| 2075 | font-size: 12px; |
| 2076 | color: #25396F; |
| 2077 | pointer-events: none; |
| 2078 | } |
| 2079 | |
| 2080 | .embedpress__select select { |
| 2081 | height: 40px; |
| 2082 | padding: 0 20px; |
| 2083 | border-radius: 5px; |
| 2084 | background: #ffffff; |
| 2085 | border: 1px solid #E6EFFB; |
| 2086 | color: #25396F; |
| 2087 | width: 100%; |
| 2088 | -webkit-appearance: none; |
| 2089 | -moz-appearance: none; |
| 2090 | appearance: none; |
| 2091 | } |
| 2092 | |
| 2093 | .input__radio { |
| 2094 | position: relative; |
| 2095 | padding-left: 25px; |
| 2096 | } |
| 2097 | |
| 2098 | .input__radio input { |
| 2099 | display: none; |
| 2100 | } |
| 2101 | |
| 2102 | .input__radio input:checked~span:after { |
| 2103 | opacity: 1; |
| 2104 | } |
| 2105 | |
| 2106 | .input__radio span { |
| 2107 | cursor: pointer; |
| 2108 | } |
| 2109 | |
| 2110 | .input__radio span:before { |
| 2111 | position: absolute; |
| 2112 | top: 5px; |
| 2113 | left: 0; |
| 2114 | height: 16px; |
| 2115 | width: 16px; |
| 2116 | border-radius: 50%; |
| 2117 | border: 1px solid rgba(91, 78, 150, 0.1); |
| 2118 | content: ''; |
| 2119 | } |
| 2120 | |
| 2121 | .input__radio span:after { |
| 2122 | position: absolute; |
| 2123 | top: 8px; |
| 2124 | left: 3px; |
| 2125 | height: 12px; |
| 2126 | width: 12px; |
| 2127 | border-radius: 50%; |
| 2128 | background: #5B4E96; |
| 2129 | content: ''; |
| 2130 | opacity: 0; |
| 2131 | } |
| 2132 | |
| 2133 | .template__wrapper .input__switch { |
| 2134 | font-size: 0; |
| 2135 | cursor: pointer; |
| 2136 | } |
| 2137 | |
| 2138 | .template__wrapper .input__switch input { |
| 2139 | display: none; |
| 2140 | } |
| 2141 | |
| 2142 | .template__wrapper .input__switch input:checked~span { |
| 2143 | background: #5B4E96; |
| 2144 | } |
| 2145 | |
| 2146 | .template__wrapper .input__switch input:checked~span:before { |
| 2147 | left: 15px; |
| 2148 | } |
| 2149 | |
| 2150 | .template__wrapper .input__switch span { |
| 2151 | height: 17px; |
| 2152 | width: 30px; |
| 2153 | background: rgba(91, 78, 150, 0.3); |
| 2154 | display: inline-block; |
| 2155 | border-radius: 15px; |
| 2156 | position: relative; |
| 2157 | -webkit-transition: all .3s ease; |
| 2158 | transition: all .3s ease; |
| 2159 | } |
| 2160 | |
| 2161 | .template__wrapper .input__switch span:before { |
| 2162 | position: absolute; |
| 2163 | top: 2px; |
| 2164 | left: 2px; |
| 2165 | height: 13px; |
| 2166 | width: 13px; |
| 2167 | border-radius: 50%; |
| 2168 | background: #ffffff; |
| 2169 | content: ''; |
| 2170 | -webkit-transition: all .3s ease; |
| 2171 | transition: all .3s ease; |
| 2172 | } |
| 2173 | |
| 2174 | .template__wrapper .input__switch.switch__text { |
| 2175 | border: 1px solid #E6EFFB; |
| 2176 | display: inline-block; |
| 2177 | padding: 10px 50px; |
| 2178 | border-radius: 5px; |
| 2179 | position: relative; |
| 2180 | } |
| 2181 | |
| 2182 | .template__wrapper .input__switch.switch__text:before, .template__wrapper .input__switch.switch__text:after { |
| 2183 | font-size: 14px; |
| 2184 | font-weight: 400; |
| 2185 | color: #25396F; |
| 2186 | position: absolute; |
| 2187 | top: 7px; |
| 2188 | } |
| 2189 | |
| 2190 | .template__wrapper .input__switch.switch__text:before { |
| 2191 | content: 'OFF'; |
| 2192 | left: 10px; |
| 2193 | } |
| 2194 | |
| 2195 | .template__wrapper .input__switch.switch__text:after { |
| 2196 | content: 'ON'; |
| 2197 | right: 10px; |
| 2198 | } |
| 2199 | |
| 2200 | .input__file { |
| 2201 | display: block; |
| 2202 | border: 1px solid #E6EFFB; |
| 2203 | padding: 5px 20px; |
| 2204 | border-radius: 5px; |
| 2205 | cursor: pointer; |
| 2206 | } |
| 2207 | |
| 2208 | .input__file .form__control { |
| 2209 | display: none; |
| 2210 | } |
| 2211 | |
| 2212 | .form__group { |
| 2213 | margin-bottom: 25px; |
| 2214 | } |
| 2215 | |
| 2216 | .form__group.mb0 { |
| 2217 | margin-bottom: 0; |
| 2218 | } |
| 2219 | |
| 2220 | .iframe__size__control__form .form__group { |
| 2221 | display: -webkit-box; |
| 2222 | display: -ms-flexbox; |
| 2223 | display: flex; |
| 2224 | -webkit-box-align: center; |
| 2225 | -ms-flex-align: center; |
| 2226 | align-items: center; |
| 2227 | } |
| 2228 | |
| 2229 | @media (max-width: 575px) { |
| 2230 | .iframe__size__control__form .form__group { |
| 2231 | display: block; |
| 2232 | } |
| 2233 | } |
| 2234 | |
| 2235 | .iframe__size__control__form .form__group:last-child { |
| 2236 | margin-bottom: 0; |
| 2237 | } |
| 2238 | |
| 2239 | .iframe__size__control__form .form__group label { |
| 2240 | -webkit-box-flex: 0; |
| 2241 | -ms-flex: 0 0 240px; |
| 2242 | flex: 0 0 240px; |
| 2243 | margin-bottom: 0; |
| 2244 | } |
| 2245 | |
| 2246 | @media (max-width: 575px) { |
| 2247 | .iframe__size__control__form .form__group label { |
| 2248 | margin-bottom: 10px; |
| 2249 | font-weight: 700; |
| 2250 | margin-right: 15px; |
| 2251 | } |
| 2252 | |
| 2253 | .iframe__size__control__form .form__group label:after { |
| 2254 | content: ':'; |
| 2255 | } |
| 2256 | } |
| 2257 | |
| 2258 | @media (max-width: 479px) { |
| 2259 | .iframe__size__control__form .form__group label { |
| 2260 | display: block; |
| 2261 | } |
| 2262 | } |
| 2263 | |
| 2264 | .iframe__size__control__form .form__group .form__control { |
| 2265 | width: 80px; |
| 2266 | padding: 0 15px; |
| 2267 | margin-right: 20px; |
| 2268 | } |
| 2269 | |
| 2270 | .iframe__size__control__form .form__group .frame__unit { |
| 2271 | font-size: 16px; |
| 2272 | font-weight: 400; |
| 2273 | color: #7C8DB5; |
| 2274 | } |
| 2275 | |
| 2276 | .iframe__size__control__wrap { |
| 2277 | -webkit-box-flex: 0; |
| 2278 | -ms-flex: 0 0 40%; |
| 2279 | flex: 0 0 40%; |
| 2280 | } |
| 2281 | |
| 2282 | .iframe__size__control__wrap h3 { |
| 2283 | font-size: 30px; |
| 2284 | font-weight: 700; |
| 2285 | color: #131F4D; |
| 2286 | margin-bottom: 25px; |
| 2287 | } |
| 2288 | |
| 2289 | @media (max-width: 767px) { |
| 2290 | .iframe__size__control__wrap h3 { |
| 2291 | font-size: 24px; |
| 2292 | } |
| 2293 | } |
| 2294 | |
| 2295 | @media (max-width: 575px) { |
| 2296 | .iframe__size__control__wrap h3 { |
| 2297 | font-size: 20px; |
| 2298 | } |
| 2299 | } |
| 2300 | |
| 2301 | .embedpress__settings__form .form__group { |
| 2302 | display: -webkit-box; |
| 2303 | display: -ms-flexbox; |
| 2304 | display: flex; |
| 2305 | -webkit-box-align: start; |
| 2306 | -ms-flex-align: start; |
| 2307 | align-items: flex-start; |
| 2308 | } |
| 2309 | |
| 2310 | .embedpress__settings__form .form__group .form__label { |
| 2311 | -webkit-box-flex: 0; |
| 2312 | -ms-flex: 0 0 410px; |
| 2313 | flex: 0 0 410px; |
| 2314 | font-size: 16px; |
| 2315 | font-weight: 400; |
| 2316 | color: #7C8DB5; |
| 2317 | } |
| 2318 | |
| 2319 | .embedpress__settings__form .form__group .form__label .isPro { |
| 2320 | font-size: 10px; |
| 2321 | font-weight: 400; |
| 2322 | color: #ffffff; |
| 2323 | background: #5B4E96; |
| 2324 | border-radius: 20px; |
| 2325 | padding: 2px 5px; |
| 2326 | margin-left: 10px; |
| 2327 | text-transform: uppercase; |
| 2328 | } |
| 2329 | |
| 2330 | @media (max-width: 1399px) { |
| 2331 | .embedpress__settings__form .form__group .form__label { |
| 2332 | -webkit-box-flex: 0; |
| 2333 | -ms-flex: 0 0 300px; |
| 2334 | flex: 0 0 300px; |
| 2335 | } |
| 2336 | } |
| 2337 | |
| 2338 | @media (max-width: 1199px) { |
| 2339 | .embedpress__settings__form .form__group .form__label { |
| 2340 | -webkit-box-flex: 0; |
| 2341 | -ms-flex: 0 0 250px; |
| 2342 | flex: 0 0 250px; |
| 2343 | } |
| 2344 | } |
| 2345 | |
| 2346 | @media (max-width: 767px) { |
| 2347 | .embedpress__settings__form .form__group .form__label { |
| 2348 | margin-bottom: 10px; |
| 2349 | font-weight: 700; |
| 2350 | } |
| 2351 | |
| 2352 | .embedpress__settings__form .form__group .form__label:after { |
| 2353 | content: ':'; |
| 2354 | } |
| 2355 | } |
| 2356 | |
| 2357 | .embedpress__settings__form .form__group .form__control__wrap { |
| 2358 | -webkit-box-flex: 1; |
| 2359 | -ms-flex-positive: 1; |
| 2360 | flex-grow: 1; |
| 2361 | } |
| 2362 | |
| 2363 | .embedpress__settings__form .form__group .form__control__wrap--flex { |
| 2364 | display: -webkit-box; |
| 2365 | display: -ms-flexbox; |
| 2366 | display: flex; |
| 2367 | } |
| 2368 | |
| 2369 | .embedpress__settings__form .form__group .form__control__wrap .input__flex { |
| 2370 | display: -webkit-box; |
| 2371 | display: -ms-flexbox; |
| 2372 | display: flex; |
| 2373 | -webkit-box-align: center; |
| 2374 | -ms-flex-align: center; |
| 2375 | align-items: center; |
| 2376 | } |
| 2377 | |
| 2378 | .embedpress__settings__form .form__group .form__control__wrap .input__flex label:not(:last-child) { |
| 2379 | margin-right: 20px; |
| 2380 | } |
| 2381 | |
| 2382 | .embedpress__settings__form .form__group .form__control__wrap .input__flex .form__control[type="number"] { |
| 2383 | width: 80px; |
| 2384 | margin-right: 20px; |
| 2385 | padding: 0 15px; |
| 2386 | } |
| 2387 | |
| 2388 | .embedpress__settings__form .form__group .form__control__wrap .input__flex .frame__unit { |
| 2389 | line-height: 1; |
| 2390 | } |
| 2391 | |
| 2392 | .embedpress__settings__form .form__group .form__control__wrap .input__file, |
| 2393 | .embedpress__settings__form .form__group .form__control__wrap .form__control, |
| 2394 | .embedpress__settings__form .form__group .form__control__wrap .embedpress__select { |
| 2395 | max-width: 300px; |
| 2396 | } |
| 2397 | |
| 2398 | .embedpress__settings__form .form__group .form__control__wrap p { |
| 2399 | font-size: 14px; |
| 2400 | font-weight: 400; |
| 2401 | color: #7C8DB5; |
| 2402 | margin-top: 10px; |
| 2403 | } |
| 2404 | |
| 2405 | .embedpress__settings__form .form__group .form__control__wrap p.ep-note { |
| 2406 | font-size: 12px; |
| 2407 | } |
| 2408 | |
| 2409 | .embedpress__settings__form .form__group .form__control__wrap .isPro:not(.embedpress__select) { |
| 2410 | opacity: 0.3; |
| 2411 | } |
| 2412 | |
| 2413 | .embedpress-genral-settings-page { |
| 2414 | display: flex; |
| 2415 | } |
| 2416 | |
| 2417 | .embedpress_general_settings__form:not(:last-child), .embedpress__shortcode { |
| 2418 | margin-right: 24px; |
| 2419 | width: calc(100% - 300px); |
| 2420 | } |
| 2421 | |
| 2422 | .embedpress_general_settings__form:last-child { |
| 2423 | width: 100%; |
| 2424 | } |
| 2425 | |
| 2426 | .embedpress-upgrade-pro-sidebar { |
| 2427 | width: 300px; |
| 2428 | border-radius: 16px; |
| 2429 | background: linear-gradient(192deg, #FFE3E1 4%, #E9E4FF 98.26%); |
| 2430 | padding: 8px; |
| 2431 | margin-top: -70px; |
| 2432 | } |
| 2433 | |
| 2434 | .shortcode-settings-wrapper { |
| 2435 | display: flex; |
| 2436 | |
| 2437 | } |
| 2438 | |
| 2439 | |
| 2440 | @media (min-width: 992px) and (max-width: 1199px) { |
| 2441 | .embedpress_general_settings__form:not(:last-child), .embedpress__shortcode { |
| 2442 | width: 100%; |
| 2443 | margin-right: 0; |
| 2444 | } |
| 2445 | |
| 2446 | } |
| 2447 | |
| 2448 | @media (max-width:1024px) { |
| 2449 | .shortcode-settings-wrapper, .embedpress_general_settings__form:not(:last-child), .embedpress__shortcode { |
| 2450 | width: 100%; |
| 2451 | display: block; |
| 2452 | } |
| 2453 | |
| 2454 | .embedpress-upgrade-pro-sidebar { |
| 2455 | display: none; |
| 2456 | } |
| 2457 | |
| 2458 | } |
| 2459 | |
| 2460 | @media (max-width: 767px) { |
| 2461 | .embedpress_general_settings__form:not(:last-child) { |
| 2462 | width: 100%; |
| 2463 | margin-right: 0; |
| 2464 | } |
| 2465 | |
| 2466 | } |
| 2467 | |
| 2468 | .embedpress-upgrade-pro-sidebar .gradient-color { |
| 2469 | border-radius: 12px; |
| 2470 | background: white; |
| 2471 | padding: 15px; |
| 2472 | |
| 2473 | |
| 2474 | } |
| 2475 | |
| 2476 | .embedpress-upgrade-pro-sidebar img.embedpress-banner { |
| 2477 | margin-bottom: var(--pro-upgrade-margin-bottom); |
| 2478 | width: 100%; |
| 2479 | } |
| 2480 | |
| 2481 | .embedpress-upgrade-pro-sidebar h3 { |
| 2482 | color: #25396F; |
| 2483 | font-family: DMSans; |
| 2484 | font-size: 16px; |
| 2485 | font-style: normal; |
| 2486 | font-weight: 700; |
| 2487 | line-height: 120%; |
| 2488 | margin-bottom: var(--pro-upgrade-margin-bottom); |
| 2489 | } |
| 2490 | |
| 2491 | .embedpress-upgrade-pro-sidebar h3 span { |
| 2492 | color: #FF7369; |
| 2493 | } |
| 2494 | |
| 2495 | ul.feature-list { |
| 2496 | margin-bottom: var(--pro-upgrade-margin-bottom); |
| 2497 | } |
| 2498 | |
| 2499 | ul.feature-list li { |
| 2500 | display: flex; |
| 2501 | align-items: start; |
| 2502 | gap: 5px; |
| 2503 | margin-bottom: 6px; |
| 2504 | color: #25396fde; |
| 2505 | font-family: DMSans; |
| 2506 | font-size: 14px; |
| 2507 | font-style: normal; |
| 2508 | font-weight: 500; |
| 2509 | line-height: 18px; |
| 2510 | } |
| 2511 | |
| 2512 | ul.feature-list img { |
| 2513 | margin-top: 0px; |
| 2514 | width: 18px; |
| 2515 | height: 20px; |
| 2516 | } |
| 2517 | |
| 2518 | p.embedpress-tagline { |
| 2519 | color: #707070; |
| 2520 | font-family: DMSans; |
| 2521 | font-size: 12px; |
| 2522 | font-style: normal; |
| 2523 | font-weight: 400; |
| 2524 | line-height: 140%; |
| 2525 | text-align: center; |
| 2526 | margin-bottom: var(--pro-upgrade-margin-bottom); |
| 2527 | } |
| 2528 | |
| 2529 | .pro-upgrade-button { |
| 2530 | border-radius: 8px; |
| 2531 | background: #FF7369; |
| 2532 | padding: 16px 20px; |
| 2533 | color: #fff !important; |
| 2534 | text-align: center; |
| 2535 | font-size: 16px; |
| 2536 | font-style: normal; |
| 2537 | line-height: 120%; |
| 2538 | width: 100%; |
| 2539 | display: flex !important; |
| 2540 | gap: 5px; |
| 2541 | align-items: center; |
| 2542 | justify-content: center; |
| 2543 | } |
| 2544 | |
| 2545 | .frame__size__wrap { |
| 2546 | display: -webkit-box; |
| 2547 | display: -ms-flexbox; |
| 2548 | display: flex; |
| 2549 | } |
| 2550 | |
| 2551 | .template__wrapper .button.ep-settings-form-changed { |
| 2552 | background: #f11d1d; |
| 2553 | color: #fff; |
| 2554 | } |
| 2555 | |
| 2556 | @media (max-width: 1199px) { |
| 2557 | .frame__size__wrap { |
| 2558 | display: block; |
| 2559 | } |
| 2560 | } |
| 2561 | |
| 2562 | .form__inline .form-inner-field { |
| 2563 | display: -webkit-box; |
| 2564 | display: -ms-flexbox; |
| 2565 | display: flex; |
| 2566 | gap: 15px; |
| 2567 | } |
| 2568 | .form-inner-field button { |
| 2569 | height: 60px; |
| 2570 | } |
| 2571 | |
| 2572 | .form__inline .form__group { |
| 2573 | margin-bottom: 0; |
| 2574 | margin-right: 30px; |
| 2575 | } |
| 2576 | |
| 2577 | .logo__adjust__wrap { |
| 2578 | margin-top: 20px; |
| 2579 | display: none; |
| 2580 | } |
| 2581 | |
| 2582 | .form__control__wrap .input__switch .logo__adjust__toggler { |
| 2583 | position: absolute; |
| 2584 | top: 2px; |
| 2585 | left: calc(100% + 15px); |
| 2586 | background: #5B4E96; |
| 2587 | color: #fff; |
| 2588 | border-radius: 5px; |
| 2589 | padding: 5px 30px 5px 10px; |
| 2590 | font-size: 14px; |
| 2591 | opacity: 0; |
| 2592 | visibility: hidden; |
| 2593 | transition: all .3s ease; |
| 2594 | } |
| 2595 | |
| 2596 | .form__control__wrap .input__switch .logo__adjust__toggler i { |
| 2597 | font-size: 10px; |
| 2598 | margin-left: 8px; |
| 2599 | position: absolute; |
| 2600 | top: 11px; |
| 2601 | right: 10px; |
| 2602 | transition: all .3s ease; |
| 2603 | transform: rotate(0); |
| 2604 | } |
| 2605 | |
| 2606 | .form__control__wrap .input__switch .logo__adjust__toggler.show i { |
| 2607 | transform: rotate(-180deg); |
| 2608 | } |
| 2609 | |
| 2610 | .form__control__wrap .input__switch input[type="checkbox"]:checked~.logo__adjust__toggler { |
| 2611 | opacity: 1; |
| 2612 | visibility: visible; |
| 2613 | } |
| 2614 | |
| 2615 | .logo__adjust__wrap .logo__upload__wrap { |
| 2616 | display: flex; |
| 2617 | align-items: center; |
| 2618 | } |
| 2619 | |
| 2620 | .logo__adjust__wrap .logo__upload, |
| 2621 | .logo__adjust__wrap .logo__upload__preview { |
| 2622 | display: inline-block; |
| 2623 | width: 100%; |
| 2624 | max-width: 255px; |
| 2625 | border-radius: 10px; |
| 2626 | border: 2px dashed rgba(124, 141, 181, 0.3); |
| 2627 | background: #F5F7FD; |
| 2628 | padding: 40px 15px; |
| 2629 | text-align: center; |
| 2630 | position: relative; |
| 2631 | margin-bottom: 0; |
| 2632 | height: 172px; |
| 2633 | } |
| 2634 | |
| 2635 | #valid-license-key-message { |
| 2636 | font-weight: 500; |
| 2637 | } |
| 2638 | |
| 2639 | div#valid-license-key-message { |
| 2640 | margin-top: 10px; |
| 2641 | margin-bottom: 30px; |
| 2642 | } |
| 2643 | |
| 2644 | span#email-placeholder { |
| 2645 | font-weight: 700; |
| 2646 | } |
| 2647 | |
| 2648 | .form__inline .hidden, #otp-varify-form.hidden { |
| 2649 | display: none !important; |
| 2650 | } |
| 2651 | |
| 2652 | .short-description { |
| 2653 | margin-top: 10px; |
| 2654 | padding: 10px 15px; |
| 2655 | background: #f2f2f2; |
| 2656 | margin-bottom: 10px; |
| 2657 | border-radius: 5px; |
| 2658 | } |
| 2659 | div#invalid-license-key-message, #invalid-verification-key-message { |
| 2660 | padding: 10px; |
| 2661 | background: #f2f2f2; |
| 2662 | border-radius: 5px; |
| 2663 | margin-top: 10px; |
| 2664 | } |
| 2665 | .short-description a { |
| 2666 | color: #5b4e96; |
| 2667 | } |
| 2668 | div#resend-verification-key-message { |
| 2669 | margin-top: 10px; |
| 2670 | } |
| 2671 | div#resend-verification-key-message a{ |
| 2672 | color: #5b4e96; |
| 2673 | } |
| 2674 | .show-toast{ |
| 2675 | visibility: visible!important; |
| 2676 | opacity: 1!important; |
| 2677 | } |
| 2678 | div#resend-verification-key-message span { |
| 2679 | font-weight: bold; |
| 2680 | color: #5b4e96; |
| 2681 | cursor: pointer; |
| 2682 | } |
| 2683 | div#resend-verification-key-message a { |
| 2684 | font-weight: 600; |
| 2685 | } |
| 2686 | .form-inner-field .form__group { |
| 2687 | margin-right: 0; |
| 2688 | } |
| 2689 | @media (max-width: 479px) { |
| 2690 | .logo__adjust__wrap .logo__upload { |
| 2691 | width: 225px; |
| 2692 | } |
| 2693 | } |
| 2694 | |
| 2695 | .logo__adjust__wrap .logo__upload .icon { |
| 2696 | margin-bottom: 10px; |
| 2697 | display: block; |
| 2698 | } |
| 2699 | |
| 2700 | .logo__adjust__wrap .logo__upload .icon i { |
| 2701 | font-size: 50px; |
| 2702 | opacity: .3; |
| 2703 | } |
| 2704 | |
| 2705 | .logo__adjust__wrap .logo__upload .text { |
| 2706 | display: block; |
| 2707 | font-size: 14px; |
| 2708 | } |
| 2709 | |
| 2710 | .logo__adjust__wrap .logo__upload input { |
| 2711 | opacity: 0; |
| 2712 | position: absolute; |
| 2713 | top: 0; |
| 2714 | left: 0; |
| 2715 | height: 100%; |
| 2716 | width: 100%; |
| 2717 | z-index: 9; |
| 2718 | cursor: pointer; |
| 2719 | } |
| 2720 | |
| 2721 | .logo__adjust__wrap .logo__upload__preview .instant__preview { |
| 2722 | position: absolute; |
| 2723 | top: 50%; |
| 2724 | left: 50%; |
| 2725 | transform: translate(-50%, -50%); |
| 2726 | font-size: 0; |
| 2727 | } |
| 2728 | |
| 2729 | .logo__adjust__wrap .logo__upload__preview .instant__preview .preview__remove { |
| 2730 | position: absolute; |
| 2731 | bottom: 100%; |
| 2732 | left: 100%; |
| 2733 | font-size: 7px; |
| 2734 | height: 20px; |
| 2735 | width: 20px; |
| 2736 | background: #5B4E96; |
| 2737 | color: #fff; |
| 2738 | line-height: 22px; |
| 2739 | border-radius: 50%; |
| 2740 | } |
| 2741 | |
| 2742 | .logo__adjust__wrap .logo__adjust { |
| 2743 | margin-top: 20px; |
| 2744 | display: -webkit-box; |
| 2745 | display: -ms-flexbox; |
| 2746 | display: flex; |
| 2747 | -ms-flex-wrap: wrap; |
| 2748 | flex-wrap: wrap; |
| 2749 | } |
| 2750 | |
| 2751 | @media (max-width: 1399px) { |
| 2752 | .logo__adjust__wrap .logo__adjust { |
| 2753 | display: block; |
| 2754 | } |
| 2755 | } |
| 2756 | |
| 2757 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller { |
| 2758 | -webkit-box-flex: 0; |
| 2759 | -ms-flex: 0 0 300px; |
| 2760 | flex: 0 0 300px; |
| 2761 | margin-right: 30px; |
| 2762 | } |
| 2763 | |
| 2764 | @media (max-width: 1399px) { |
| 2765 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller { |
| 2766 | width: 100%; |
| 2767 | margin-right: 0; |
| 2768 | } |
| 2769 | } |
| 2770 | |
| 2771 | @media (max-width: 479px) { |
| 2772 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller { |
| 2773 | -webkit-box-flex: 0; |
| 2774 | -ms-flex: 0 0 225px; |
| 2775 | flex: 0 0 225px; |
| 2776 | margin-right: 0; |
| 2777 | } |
| 2778 | } |
| 2779 | |
| 2780 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item:not(:last-child) { |
| 2781 | margin-bottom: 25px; |
| 2782 | } |
| 2783 | |
| 2784 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .controller__label { |
| 2785 | font-size: 16px; |
| 2786 | font-weight: 400; |
| 2787 | color: #7C8DB5; |
| 2788 | display: inline-block; |
| 2789 | } |
| 2790 | |
| 2791 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs { |
| 2792 | display: -webkit-box; |
| 2793 | display: -ms-flexbox; |
| 2794 | display: flex; |
| 2795 | -webkit-box-align: center; |
| 2796 | -ms-flex-align: center; |
| 2797 | align-items: center; |
| 2798 | } |
| 2799 | |
| 2800 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs input[type="range"] { |
| 2801 | margin-right: 20px; |
| 2802 | width: 200px; |
| 2803 | } |
| 2804 | |
| 2805 | @media (max-width: 1199px) { |
| 2806 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs input[type="range"] { |
| 2807 | width: 145px; |
| 2808 | } |
| 2809 | } |
| 2810 | |
| 2811 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs .form__control[type="number"] { |
| 2812 | width: 80px; |
| 2813 | padding: 0 15px; |
| 2814 | } |
| 2815 | |
| 2816 | @media (max-width: 1199px) { |
| 2817 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs .form__control[type="number"] { |
| 2818 | width: 55px; |
| 2819 | padding: 0 12px; |
| 2820 | } |
| 2821 | } |
| 2822 | |
| 2823 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview { |
| 2824 | -webkit-box-flex: 0; |
| 2825 | -ms-flex: 0 0 500px; |
| 2826 | flex: 0 0 500px; |
| 2827 | } |
| 2828 | |
| 2829 | @media (max-width: 1399px) { |
| 2830 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview { |
| 2831 | width: 100%; |
| 2832 | max-width: 400px; |
| 2833 | margin-top: 20px; |
| 2834 | } |
| 2835 | } |
| 2836 | |
| 2837 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .title { |
| 2838 | font-size: 16px; |
| 2839 | font-weight: 400; |
| 2840 | color: #7C8DB5; |
| 2841 | display: inline-block; |
| 2842 | margin-bottom: 10px; |
| 2843 | } |
| 2844 | |
| 2845 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .preview__box { |
| 2846 | position: relative; |
| 2847 | min-height: 300px; |
| 2848 | } |
| 2849 | |
| 2850 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .preview__box iframe { |
| 2851 | width: 100%; |
| 2852 | height: 100%; |
| 2853 | min-height: 300px; |
| 2854 | } |
| 2855 | |
| 2856 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .preview__box img { |
| 2857 | position: absolute; |
| 2858 | bottom: 10%; |
| 2859 | right: 6%; |
| 2860 | max-height: 40px; |
| 2861 | } |
| 2862 | |
| 2863 | .pro__alert__wrap, .tips__alert__wrap { |
| 2864 | position: fixed; |
| 2865 | top: 0; |
| 2866 | left: 0; |
| 2867 | height: 100%; |
| 2868 | width: 100%; |
| 2869 | background: rgb(0, 0, 0, 30%); |
| 2870 | z-index: 99999; |
| 2871 | display: none; |
| 2872 | } |
| 2873 | |
| 2874 | .pro__alert__wrap .pro__alert__card, .tips__alert__wrap .tips__alert__card { |
| 2875 | width: calc(100% - 30px); |
| 2876 | max-width: 500px; |
| 2877 | margin: 7% auto 0; |
| 2878 | background: #fff; |
| 2879 | border-radius: 20px; |
| 2880 | padding: 30px; |
| 2881 | display: flex; |
| 2882 | flex-direction: column; |
| 2883 | align-items: center; |
| 2884 | text-align: center; |
| 2885 | } |
| 2886 | |
| 2887 | .pro__alert__wrap .pro__alert__card img, .tips__alert__wrap .tips__alert__card img { |
| 2888 | height: 100px; |
| 2889 | margin-bottom: 20px; |
| 2890 | } |
| 2891 | |
| 2892 | .pro__alert__wrap .pro__alert__card h2, .tips__alert__wrap .tips__alert__card h2 { |
| 2893 | font-size: 32px; |
| 2894 | font-weight: 500; |
| 2895 | color: #131F4D; |
| 2896 | margin-bottom: 15px; |
| 2897 | } |
| 2898 | |
| 2899 | .pro__alert__wrap .pro__alert__card p, .tips__alert__wrap .tips__alert__card p { |
| 2900 | font-size: 14px; |
| 2901 | font-weight: 400; |
| 2902 | color: #7C8DB5; |
| 2903 | margin-bottom: 15px; |
| 2904 | } |
| 2905 | |
| 2906 | .pro__alert__wrap .pro__alert__card p a, .tips__alert__wrap .tips__alert__card a { |
| 2907 | text-decoration: underline; |
| 2908 | font-weight: 700; |
| 2909 | color: #131F4D; |
| 2910 | } |
| 2911 | |
| 2912 | .pro__alert__wrap .pro__alert__card .button, .tips__alert__wrap .tips__alert__card button { |
| 2913 | align-self: flex-end; |
| 2914 | margin-top: 20px; |
| 2915 | padding: 11px 30px; |
| 2916 | } |
| 2917 | |
| 2918 | .template__wrapper input[type=range] { |
| 2919 | height: 24px; |
| 2920 | -webkit-appearance: none; |
| 2921 | margin: 10px 0; |
| 2922 | width: 100%; |
| 2923 | } |
| 2924 | |
| 2925 | .template__wrapper input[type=range]:focus { |
| 2926 | outline: none; |
| 2927 | } |
| 2928 | |
| 2929 | .template__wrapper input[type=range]::-webkit-slider-runnable-track { |
| 2930 | width: 100%; |
| 2931 | height: 10px; |
| 2932 | cursor: pointer; |
| 2933 | animate: 0.2s; |
| 2934 | -webkit-box-shadow: 0px 0px 0px #000000; |
| 2935 | box-shadow: 0px 0px 0px #000000; |
| 2936 | background: #5B4E96; |
| 2937 | border-radius: 5px; |
| 2938 | border: 2px solid #F5F7FD; |
| 2939 | } |
| 2940 | |
| 2941 | .template__wrapper input[type=range]::-webkit-slider-thumb { |
| 2942 | -webkit-box-shadow: 0px 0px 0px #000000; |
| 2943 | box-shadow: 0px 0px 0px #000000; |
| 2944 | border: 2px solid #5B4E96; |
| 2945 | height: 16px; |
| 2946 | width: 16px; |
| 2947 | border-radius: 8px; |
| 2948 | background: #FFFFFF; |
| 2949 | cursor: pointer; |
| 2950 | -webkit-appearance: none; |
| 2951 | margin-top: -5px; |
| 2952 | } |
| 2953 | |
| 2954 | .template__wrapper input[type=range]:focus::-webkit-slider-runnable-track { |
| 2955 | background: #5B4E96; |
| 2956 | } |
| 2957 | |
| 2958 | .template__wrapper input[type=range]::-moz-range-track { |
| 2959 | width: 100%; |
| 2960 | height: 10px; |
| 2961 | cursor: pointer; |
| 2962 | animate: 0.2s; |
| 2963 | box-shadow: 0px 0px 0px #000000; |
| 2964 | background: #5B4E96; |
| 2965 | border-radius: 5px; |
| 2966 | border: 2px solid #F5F7FD; |
| 2967 | } |
| 2968 | |
| 2969 | .template__wrapper input[type=range]::-moz-range-thumb { |
| 2970 | box-shadow: 0px 0px 0px #000000; |
| 2971 | border: 2px solid #5B4E96; |
| 2972 | height: 16px; |
| 2973 | width: 16px; |
| 2974 | border-radius: 8px; |
| 2975 | background: #FFFFFF; |
| 2976 | cursor: pointer; |
| 2977 | } |
| 2978 | |
| 2979 | .template__wrapper input[type=range]::-ms-track { |
| 2980 | width: 100%; |
| 2981 | height: 10px; |
| 2982 | cursor: pointer; |
| 2983 | animate: 0.2s; |
| 2984 | background: transparent; |
| 2985 | border-color: transparent; |
| 2986 | color: transparent; |
| 2987 | } |
| 2988 | |
| 2989 | .template__wrapper input[type=range]::-ms-fill-lower { |
| 2990 | background: #5B4E96; |
| 2991 | border: 2px solid #F5F7FD; |
| 2992 | border-radius: 10px; |
| 2993 | box-shadow: 0px 0px 0px #000000; |
| 2994 | } |
| 2995 | |
| 2996 | .template__wrapper input[type=range]::-ms-fill-upper { |
| 2997 | background: #5B4E96; |
| 2998 | border: 2px solid #F5F7FD; |
| 2999 | border-radius: 10px; |
| 3000 | box-shadow: 0px 0px 0px #000000; |
| 3001 | } |
| 3002 | |
| 3003 | .template__wrapper input[type=range]::-ms-thumb { |
| 3004 | margin-top: 1px; |
| 3005 | box-shadow: 0px 0px 0px #000000; |
| 3006 | border: 2px solid #5B4E96; |
| 3007 | height: 16px; |
| 3008 | width: 16px; |
| 3009 | border-radius: 8px; |
| 3010 | background: #FFFFFF; |
| 3011 | cursor: pointer; |
| 3012 | } |
| 3013 | |
| 3014 | .template__wrapper input[type=range]:focus::-ms-fill-lower { |
| 3015 | background: #5B4E96; |
| 3016 | } |
| 3017 | |
| 3018 | .template__wrapper input[type=range]:focus::-ms-fill-upper { |
| 3019 | background: #5B4E96; |
| 3020 | } |
| 3021 | |
| 3022 | .upgrade__card { |
| 3023 | display: -webkit-box; |
| 3024 | display: -ms-flexbox; |
| 3025 | display: flex; |
| 3026 | -webkit-box-align: center; |
| 3027 | -ms-flex-align: center; |
| 3028 | align-items: center; |
| 3029 | background: #5B4E96; |
| 3030 | border-radius: 25px; |
| 3031 | padding: 40px; |
| 3032 | } |
| 3033 | |
| 3034 | @media (max-width: 1199px) { |
| 3035 | .upgrade__card { |
| 3036 | padding: 50px; |
| 3037 | } |
| 3038 | } |
| 3039 | |
| 3040 | .upgrade__card .icon { |
| 3041 | margin-right: 40px; |
| 3042 | min-width: 90px; |
| 3043 | } |
| 3044 | |
| 3045 | @media (max-width: 767px) { |
| 3046 | .upgrade__card .icon { |
| 3047 | margin-right: 0; |
| 3048 | margin-bottom: 20px; |
| 3049 | } |
| 3050 | } |
| 3051 | |
| 3052 | .upgrade__card .card__content { |
| 3053 | margin-right: 30px; |
| 3054 | } |
| 3055 | |
| 3056 | @media (max-width: 767px) { |
| 3057 | .upgrade__card .card__content { |
| 3058 | margin-bottom: 20px; |
| 3059 | margin-right: 0; |
| 3060 | } |
| 3061 | } |
| 3062 | |
| 3063 | .upgrade__card .card__content h4 { |
| 3064 | font-size: 26px; |
| 3065 | font-weight: 500; |
| 3066 | color: #ffffff; |
| 3067 | margin-bottom: 15px; |
| 3068 | } |
| 3069 | |
| 3070 | @media (max-width: 767px) { |
| 3071 | .upgrade__card .card__content h4 { |
| 3072 | font-size: 22px; |
| 3073 | } |
| 3074 | } |
| 3075 | |
| 3076 | .upgrade__card .card__content p { |
| 3077 | font-size: 14px; |
| 3078 | font-weight: 400; |
| 3079 | color: rgba(255, 255, 255, 0.5); |
| 3080 | max-width: 700px; |
| 3081 | } |
| 3082 | |
| 3083 | .upgrade__card .button { |
| 3084 | margin-left: auto; |
| 3085 | min-width: 177px; |
| 3086 | text-align: center; |
| 3087 | } |
| 3088 | |
| 3089 | @media (max-width: 767px) { |
| 3090 | .upgrade__card { |
| 3091 | display: block; |
| 3092 | padding: 25px; |
| 3093 | } |
| 3094 | } |
| 3095 | |
| 3096 | .upgrage__card__tab__list { |
| 3097 | max-width: 650px; |
| 3098 | width: 100%; |
| 3099 | display: grid; |
| 3100 | -ms-grid-columns: 1fr 1fr; |
| 3101 | grid-template-columns: repeat(2, 1fr); |
| 3102 | gap: 16px; |
| 3103 | margin-bottom: 50px !important; |
| 3104 | } |
| 3105 | |
| 3106 | .upgrage__card__tab__list .upgrage__card__tab__list__item { |
| 3107 | color: #5B4E96; |
| 3108 | font-size: 16px; |
| 3109 | font-weight: 500; |
| 3110 | line-height: 18px; |
| 3111 | display: inline-flex; |
| 3112 | align-items: center; |
| 3113 | gap: 8px; |
| 3114 | } |
| 3115 | |
| 3116 | @media (max-width: 575px) { |
| 3117 | .upgrage__card__tab__list { |
| 3118 | -ms-grid-columns: 1fr; |
| 3119 | grid-template-columns: repeat(1, 1fr); |
| 3120 | } |
| 3121 | } |
| 3122 | |
| 3123 | .upgrage__card__tab__list .upgrage__card__tab__list__item:before { |
| 3124 | content: "\e910"; |
| 3125 | font-family: 'icomoon'; |
| 3126 | color: #4AD750; |
| 3127 | } |
| 3128 | |
| 3129 | .upgrage__card__tab__style h3 { |
| 3130 | font-size: 30px; |
| 3131 | font-weight: 700; |
| 3132 | color: #131F4D; |
| 3133 | margin-bottom: 25px; |
| 3134 | } |
| 3135 | |
| 3136 | @media (max-width: 767px) { |
| 3137 | .upgrage__card__tab__style h3 { |
| 3138 | font-size: 24px; |
| 3139 | } |
| 3140 | } |
| 3141 | |
| 3142 | @media (max-width: 575px) { |
| 3143 | .upgrage__card__tab__style h3 { |
| 3144 | font-size: 20px; |
| 3145 | } |
| 3146 | } |
| 3147 | |
| 3148 | .upgrage__card__tab__style p { |
| 3149 | font-size: 14px; |
| 3150 | font-weight: 400; |
| 3151 | color: #7C8DB5; |
| 3152 | margin-bottom: 30px; |
| 3153 | max-width: 1320px; |
| 3154 | line-height: 1.85; |
| 3155 | } |
| 3156 | |
| 3157 | .embedpress-license__details { |
| 3158 | display: -ms-grid; |
| 3159 | display: grid; |
| 3160 | -ms-grid-columns: 3.5fr 2fr; |
| 3161 | grid-template-columns: 3.5fr 2fr; |
| 3162 | gap: 5px; |
| 3163 | } |
| 3164 | |
| 3165 | @media (max-width: 991px) { |
| 3166 | .embedpress-license__details { |
| 3167 | display: block; |
| 3168 | } |
| 3169 | } |
| 3170 | |
| 3171 | .embedpress-license__details .license__content { |
| 3172 | background: #ffffff; |
| 3173 | padding: 40px 100px 50px 50px; |
| 3174 | |
| 3175 | } |
| 3176 | |
| 3177 | @media (max-width: 1199px) { |
| 3178 | .embedpress-license__details .license__content { |
| 3179 | padding: 30px; |
| 3180 | } |
| 3181 | } |
| 3182 | |
| 3183 | @media (max-width: 991px) { |
| 3184 | .embedpress-license__details .license__content { |
| 3185 | margin-bottom: 5px; |
| 3186 | } |
| 3187 | } |
| 3188 | |
| 3189 | @media (max-width: 767px) { |
| 3190 | .embedpress-license__details .license__content { |
| 3191 | padding: 40px 30px; |
| 3192 | } |
| 3193 | } |
| 3194 | |
| 3195 | @media (max-width: 575px) { |
| 3196 | .embedpress-license__details .license__content .form__inline { |
| 3197 | display: block; |
| 3198 | } |
| 3199 | |
| 3200 | .embedpress-license__details .license__content .form__inline .form__group { |
| 3201 | margin-bottom: 25px; |
| 3202 | margin-right: 0; |
| 3203 | } |
| 3204 | } |
| 3205 | |
| 3206 | .embedpress-license__details .license__content .thumb__area { |
| 3207 | /* max-width: 350px; */ |
| 3208 | /* text-align: center; */ |
| 3209 | margin-bottom: 30px; |
| 3210 | } |
| 3211 | |
| 3212 | .embedpress-license__details .license__content .thumb__area img { |
| 3213 | max-width: 320px; |
| 3214 | } |
| 3215 | |
| 3216 | .embedpress-license__details .license__content .thumb__area h2 { |
| 3217 | font-size: 30px; |
| 3218 | font-weight: 400; |
| 3219 | color: #25396F; |
| 3220 | margin-top: 10px; |
| 3221 | } |
| 3222 | |
| 3223 | @media (max-width: 767px) { |
| 3224 | .embedpress-license__details .license__content .thumb__area h2 { |
| 3225 | font-size: 24px; |
| 3226 | } |
| 3227 | } |
| 3228 | |
| 3229 | .embedpress-license__details .license__content p { |
| 3230 | font-size: 16px; |
| 3231 | font-weight: 400; |
| 3232 | color: #25396F; |
| 3233 | margin-bottom: 30px; |
| 3234 | } |
| 3235 | |
| 3236 | @media (max-width: 767px) { |
| 3237 | .embedpress-license__details .license__content p { |
| 3238 | font-size: 16px; |
| 3239 | } |
| 3240 | } |
| 3241 | |
| 3242 | .embedpress-license__details .license__content p a { |
| 3243 | color: #5B4E96; |
| 3244 | text-decoration: underline; |
| 3245 | } |
| 3246 | |
| 3247 | .embedpress-license__details .license__content ol { |
| 3248 | list-style: decimal; |
| 3249 | padding-left: 19px; |
| 3250 | margin-bottom: 50px; |
| 3251 | } |
| 3252 | |
| 3253 | .embedpress-license__details .license__content ol li { |
| 3254 | font-size: 18px; |
| 3255 | font-weight: 400; |
| 3256 | color: #25396F; |
| 3257 | } |
| 3258 | |
| 3259 | .embedpress-license__details .license__content ol li:not(:last-child) { |
| 3260 | margin-bottom: 15px; |
| 3261 | } |
| 3262 | |
| 3263 | @media (max-width: 767px) { |
| 3264 | .embedpress-license__details .license__content ol li { |
| 3265 | font-size: 16px; |
| 3266 | } |
| 3267 | } |
| 3268 | |
| 3269 | .embedpress-license__details .license__content ol li a { |
| 3270 | color: #5B4E96; |
| 3271 | text-decoration: underline; |
| 3272 | } |
| 3273 | |
| 3274 | .embedpress-license__details .license__content .form__group { |
| 3275 | -webkit-box-flex: 1; |
| 3276 | -ms-flex-positive: 1; |
| 3277 | flex-grow: 1; |
| 3278 | position: relative; |
| 3279 | } |
| 3280 | |
| 3281 | |
| 3282 | |
| 3283 | .embedpress-license__details .license__content .form__group .input__icon { |
| 3284 | position: absolute; |
| 3285 | top: 20px; |
| 3286 | left: 20px; |
| 3287 | color: #7C8DB5; |
| 3288 | pointer-events: none; |
| 3289 | width: 20px; |
| 3290 | } |
| 3291 | |
| 3292 | .embedpress-license__details .license__content .form__group .input__icon i { |
| 3293 | font-size: 20px; |
| 3294 | } |
| 3295 | |
| 3296 | @media (max-width: 767px) { |
| 3297 | .embedpress-license__details .license__content .form__group .input__icon { |
| 3298 | top: 15px; |
| 3299 | left: 15px; |
| 3300 | } |
| 3301 | |
| 3302 | .embedpress-license__details .license__content .form__group .input__icon i { |
| 3303 | font-size: 16px; |
| 3304 | } |
| 3305 | } |
| 3306 | |
| 3307 | .embedpress-license__details .license__content .form__group .form__control { |
| 3308 | height: 60px; |
| 3309 | background: #F5F7FD; |
| 3310 | color: #7C8DB5; |
| 3311 | font-size: 20px; |
| 3312 | padding-left: 50px; |
| 3313 | } |
| 3314 | |
| 3315 | input#embedpress-pro-license-key::placeholder { |
| 3316 | font-size: 18px; |
| 3317 | } |
| 3318 | |
| 3319 | .embedpress-license__details .license__content .form__group .form__control::-webkit-input-placeholder { |
| 3320 | color: #7C8DB5; |
| 3321 | } |
| 3322 | |
| 3323 | .embedpress-license__details .license__content .form__group .form__control:-moz-placeholder { |
| 3324 | color: #7C8DB5; |
| 3325 | } |
| 3326 | |
| 3327 | .embedpress-license__details .license__content .form__group .form__control::-moz-placeholder { |
| 3328 | color: #7C8DB5; |
| 3329 | } |
| 3330 | |
| 3331 | .embedpress-license__details .license__content .form__group .form__control:-ms-input-placeholder { |
| 3332 | color: #7C8DB5; |
| 3333 | } |
| 3334 | |
| 3335 | @media (max-width: 1399px) { |
| 3336 | .embedpress-license__details .license__content .form__group .form__control { |
| 3337 | font-size: 16px; |
| 3338 | } |
| 3339 | } |
| 3340 | |
| 3341 | @media (max-width: 767px) { |
| 3342 | .embedpress-license__details .license__content .form__group .form__control { |
| 3343 | height: 50px; |
| 3344 | padding-left: 35px; |
| 3345 | font-size: 14px; |
| 3346 | } |
| 3347 | .form-inner-field button { |
| 3348 | height: 60px; |
| 3349 | } |
| 3350 | |
| 3351 | } |
| 3352 | |
| 3353 | .embedpress-license__details .license__manage { |
| 3354 | background: #ffffff; |
| 3355 | padding: 30px; |
| 3356 | display: -webkit-box; |
| 3357 | display: -ms-flexbox; |
| 3358 | display: flex; |
| 3359 | -webkit-box-pack: center; |
| 3360 | -ms-flex-pack: center; |
| 3361 | justify-content: center; |
| 3362 | -webkit-box-align: center; |
| 3363 | -ms-flex-align: center; |
| 3364 | align-items: center; |
| 3365 | -webkit-box-orient: vertical; |
| 3366 | -webkit-box-direction: normal; |
| 3367 | -ms-flex-direction: column; |
| 3368 | flex-direction: column; |
| 3369 | } |
| 3370 | |
| 3371 | .embedpress-license__details .license__manage .button { |
| 3372 | margin-top: 30px; |
| 3373 | } |
| 3374 | |
| 3375 | .embedpress-card { |
| 3376 | background: #F5F7FD; |
| 3377 | border-radius: 16px; |
| 3378 | padding: 24px; |
| 3379 | padding-left: 100px; |
| 3380 | border: 2px solid rgba(91, 78, 150, 0.1); |
| 3381 | position: relative; |
| 3382 | } |
| 3383 | |
| 3384 | @media (min-width: 1199px) and (max-width: 1399px) { |
| 3385 | .embedpress-card { |
| 3386 | padding-left: 24px; |
| 3387 | } |
| 3388 | } |
| 3389 | |
| 3390 | @media (max-width: 767px) { |
| 3391 | .embedpress-card { |
| 3392 | padding-left: 20px; |
| 3393 | padding: 20px; |
| 3394 | } |
| 3395 | } |
| 3396 | |
| 3397 | .embedpress-card .icon { |
| 3398 | position: absolute; |
| 3399 | top: 30px; |
| 3400 | left: 30px; |
| 3401 | height: 50px; |
| 3402 | width: 50px; |
| 3403 | border-radius: 10px; |
| 3404 | background: #5B4E96; |
| 3405 | text-align: center; |
| 3406 | } |
| 3407 | |
| 3408 | @media (min-width: 1199px) and (max-width: 1399px) { |
| 3409 | .embedpress-card .icon { |
| 3410 | position: static; |
| 3411 | margin-bottom: 20px; |
| 3412 | } |
| 3413 | } |
| 3414 | |
| 3415 | @media (max-width: 767px) { |
| 3416 | .embedpress-card .icon { |
| 3417 | position: static; |
| 3418 | margin-bottom: 20px; |
| 3419 | } |
| 3420 | } |
| 3421 | |
| 3422 | .embedpress-card .icon i { |
| 3423 | color: #ffffff; |
| 3424 | font-size: 20px; |
| 3425 | line-height: 50px; |
| 3426 | } |
| 3427 | |
| 3428 | .embedpress-card h3 { |
| 3429 | font-size: 26px; |
| 3430 | font-weight: 500; |
| 3431 | color: #131F4D; |
| 3432 | margin-bottom: 10px; |
| 3433 | } |
| 3434 | |
| 3435 | @media (max-width: 767px) { |
| 3436 | .embedpress-card h3 { |
| 3437 | font-size: 22px; |
| 3438 | } |
| 3439 | } |
| 3440 | |
| 3441 | .embedpress-card p { |
| 3442 | font-size: 14px; |
| 3443 | font-weight: 400; |
| 3444 | color: #7C8DB5; |
| 3445 | margin-bottom: 20px; |
| 3446 | } |
| 3447 | |
| 3448 | .element__item { |
| 3449 | background: #F5F7FD; |
| 3450 | border-radius: 10px; |
| 3451 | min-height: 80px; |
| 3452 | padding: 10px 24px; |
| 3453 | border: 2px solid rgba(91, 78, 150, 0.1); |
| 3454 | display: -webkit-box; |
| 3455 | display: -ms-flexbox; |
| 3456 | display: flex; |
| 3457 | -webkit-box-align: center; |
| 3458 | -ms-flex-align: center; |
| 3459 | align-items: center; |
| 3460 | /* overflow: hidden; */ |
| 3461 | } |
| 3462 | |
| 3463 | @media (max-width: 767px) { |
| 3464 | .element__item { |
| 3465 | padding: 20px; |
| 3466 | padding-right: 15px; |
| 3467 | } |
| 3468 | } |
| 3469 | |
| 3470 | .element__item.isPro .pro__item { |
| 3471 | /* display: block; */ |
| 3472 | } |
| 3473 | |
| 3474 | .element__item h5 { |
| 3475 | font-size: 18px; |
| 3476 | font-weight: 700; |
| 3477 | color: #25396F; |
| 3478 | margin-right: 15px; |
| 3479 | } |
| 3480 | |
| 3481 | @media (max-width: 767px) { |
| 3482 | .element__item h5 { |
| 3483 | font-size: 16px; |
| 3484 | } |
| 3485 | } |
| 3486 | |
| 3487 | .element__item .has__question { |
| 3488 | color: rgba(124, 141, 181, 0.5); |
| 3489 | line-height: 1; |
| 3490 | margin-top: 2px; |
| 3491 | margin-right: 10px; |
| 3492 | position: relative; |
| 3493 | } |
| 3494 | |
| 3495 | .element__item .has__question .element__tooltip { |
| 3496 | position: absolute; |
| 3497 | bottom: calc(100% + 12px); |
| 3498 | left: -20px; |
| 3499 | /* transform: translateX(-50%); */ |
| 3500 | background: #5B4E96; |
| 3501 | color: #fff; |
| 3502 | padding: 20px; |
| 3503 | min-width: 200px; |
| 3504 | border-radius: 5px; |
| 3505 | font-size: 16px; |
| 3506 | transition: all .3s ease; |
| 3507 | opacity: 0; |
| 3508 | visibility: hidden; |
| 3509 | z-index: 9; |
| 3510 | } |
| 3511 | |
| 3512 | .element__item .has__question:hover .element__tooltip { |
| 3513 | visibility: visible; |
| 3514 | opacity: 1; |
| 3515 | } |
| 3516 | |
| 3517 | .element__item .has__question .element__tooltip:before { |
| 3518 | position: absolute; |
| 3519 | top: 100%; |
| 3520 | left: 18px; |
| 3521 | /* transform: translateX(-50%); */ |
| 3522 | border-left: 10px solid transparent; |
| 3523 | border-right: 10px solid transparent; |
| 3524 | border-top: 10px solid #5B4E96; |
| 3525 | content: ''; |
| 3526 | } |
| 3527 | |
| 3528 | .element__item .input__switch { |
| 3529 | margin-left: auto; |
| 3530 | margin-bottom: 0; |
| 3531 | } |
| 3532 | |
| 3533 | .element__item .pro__item { |
| 3534 | position: absolute; |
| 3535 | top: 5px; |
| 3536 | left: -16px; |
| 3537 | -webkit-transform: rotate(-45deg); |
| 3538 | transform: rotate(-45deg); |
| 3539 | font-size: 12px; |
| 3540 | font-weight: 400; |
| 3541 | color: #ffffff; |
| 3542 | background: #5B4E96; |
| 3543 | padding: 0 20px; |
| 3544 | text-transform: uppercase; |
| 3545 | display: none; |
| 3546 | } |
| 3547 | |
| 3548 | @media (max-width: 767px) { |
| 3549 | .element__item .pro__item { |
| 3550 | font-size: 9px; |
| 3551 | } |
| 3552 | } |
| 3553 | |
| 3554 | .embedpress--elements__wrap h3 { |
| 3555 | font-size: 24px; |
| 3556 | font-weight: 700; |
| 3557 | color: #131F4D; |
| 3558 | padding-bottom: 16px; |
| 3559 | margin-bottom: 24px; |
| 3560 | border-bottom: 1px solid #F5F7FC; |
| 3561 | } |
| 3562 | |
| 3563 | @media (max-width: 767px) { |
| 3564 | .embedpress--elements__wrap h3 { |
| 3565 | font-size: 24px; |
| 3566 | } |
| 3567 | } |
| 3568 | |
| 3569 | @media (max-width: 575px) { |
| 3570 | .embedpress--elements__wrap h3 { |
| 3571 | font-size: 20px; |
| 3572 | } |
| 3573 | } |
| 3574 | |
| 3575 | @media (max-width: 991px) { |
| 3576 | .embedpress--elements__wrap .embedpress__row.grid__4 { |
| 3577 | -ms-grid-columns: 1fr 1fr; |
| 3578 | grid-template-columns: repeat(2, 1fr); |
| 3579 | } |
| 3580 | } |
| 3581 | |
| 3582 | @media (max-width: 575px) { |
| 3583 | .embedpress--elements__wrap .embedpress__row.grid__4 { |
| 3584 | -ms-grid-columns: 1fr; |
| 3585 | grid-template-columns: repeat(1, 1fr); |
| 3586 | } |
| 3587 | } |
| 3588 | |
| 3589 | .valid-license-icon { |
| 3590 | max-width: 100%; |
| 3591 | width: 1.5rem; |
| 3592 | } |
| 3593 | |
| 3594 | |
| 3595 | |
| 3596 | .embedpress-toast__message { |
| 3597 | position: fixed; |
| 3598 | bottom: 50px; |
| 3599 | right: 50px; |
| 3600 | padding: 15px 25px; |
| 3601 | border-radius: 10px; |
| 3602 | max-width: 400px; |
| 3603 | z-index: 9999; |
| 3604 | display: flex; |
| 3605 | align-items: center; |
| 3606 | opacity: 0; |
| 3607 | visibility: hidden; |
| 3608 | transition: all .3s ease; |
| 3609 | } |
| 3610 | |
| 3611 | .embedpress-toast__message.show { |
| 3612 | opacity: 1; |
| 3613 | visibility: visible; |
| 3614 | } |
| 3615 | |
| 3616 | .embedpress-toast__message.toast__message--error { |
| 3617 | background: #FE504F; |
| 3618 | } |
| 3619 | |
| 3620 | .embedpress-toast__message.toast__message--attention { |
| 3621 | background: #FFA53C |
| 3622 | } |
| 3623 | |
| 3624 | .embedpress-toast__message.toast__message--success { |
| 3625 | background: #00CC76; |
| 3626 | } |
| 3627 | |
| 3628 | .embedpress-toast__message img { |
| 3629 | height: 40px; |
| 3630 | margin-right: 20px; |
| 3631 | } |
| 3632 | |
| 3633 | .embedpress-toast__message p { |
| 3634 | color: #ffffff; |
| 3635 | font-size: 14px; |
| 3636 | } |
| 3637 | |
| 3638 | .template__wrapper .wp-color-result-text { |
| 3639 | padding: 0 5px; |
| 3640 | } |
| 3641 | |
| 3642 | @media all and (max-width: 1600px) { |
| 3643 | .embedpress-license__details .license__content .form__inline { |
| 3644 | display: block; |
| 3645 | } |
| 3646 | |
| 3647 | .embedpress-license__details .license__content .form__group { |
| 3648 | margin-bottom: 25px; |
| 3649 | margin-right: 0; |
| 3650 | } |
| 3651 | |
| 3652 | .embedpress-license__details .license__content .form__group .form__control { |
| 3653 | height: 60px; |
| 3654 | font-size: 14px; |
| 3655 | } |
| 3656 | |
| 3657 | .embedpress-license__details .license__content .form__group .input__icon { |
| 3658 | width: 18px; |
| 3659 | top: 16px; |
| 3660 | } |
| 3661 | } |
| 3662 | |
| 3663 | .ep-coming-soon { |
| 3664 | color: #5b4e96; |
| 3665 | font-size: 12px; |
| 3666 | font-weight: 900; |
| 3667 | } |
| 3668 | |
| 3669 | .embedpress-card a, .template__wrapper .ep-link { |
| 3670 | color: #5b4e96; |
| 3671 | } |
| 3672 | |
| 3673 | .template__wrapper .ep-link { |
| 3674 | font-weight: 600; |
| 3675 | } |
| 3676 | |
| 3677 | .proOverlay { |
| 3678 | opacity: .3; |
| 3679 | position: relative; |
| 3680 | } |
| 3681 | |
| 3682 | .proOverlay::after { |
| 3683 | position: absolute; |
| 3684 | top: 0; |
| 3685 | left: 0; |
| 3686 | bottom: 0; |
| 3687 | content: ''; |
| 3688 | width: 100%; |
| 3689 | height: 100%; |
| 3690 | display: block; |
| 3691 | } |
| 3692 | |
| 3693 | .embedpress__shortcode .shortcode__text { |
| 3694 | margin-bottom: 40px; |
| 3695 | font-size: 16px; |
| 3696 | line-height: 1.6; |
| 3697 | color: #25396F; |
| 3698 | } |
| 3699 | |
| 3700 | .embedpress__shortcode .shortcode__form { |
| 3701 | width: 100%; |
| 3702 | max-width: 750px; |
| 3703 | box-sizing: border-box; |
| 3704 | background-color: #F5F7FC; |
| 3705 | border: 1px solid #D7DEEE; |
| 3706 | border-radius: 8px; |
| 3707 | padding: 12px; |
| 3708 | display: flex; |
| 3709 | } |
| 3710 | |
| 3711 | .embedpress__shortcode .shortcode__form .form__group { |
| 3712 | flex-grow: 1; |
| 3713 | } |
| 3714 | |
| 3715 | .embedpress__shortcode .shortcode__form .form__group .form__control { |
| 3716 | height: 50px; |
| 3717 | background-color: transparent; |
| 3718 | border: none; |
| 3719 | } |
| 3720 | |
| 3721 | .embedpress__shortcode .shortcode__form .button__redColor { |
| 3722 | background-color: #FF7369; |
| 3723 | border-color: #FF7369; |
| 3724 | color: #fff; |
| 3725 | } |
| 3726 | |
| 3727 | .embedpress__shortcode .shortcode__form .copy__button { |
| 3728 | background-color: #5B4E96; |
| 3729 | border-color: #5B4E96; |
| 3730 | color: #fff; |
| 3731 | } |
| 3732 | |
| 3733 | |
| 3734 | /* source page css */ |
| 3735 | .source-settings-page { |
| 3736 | background: #fff; |
| 3737 | padding: 24px; |
| 3738 | border-radius: 16px; |
| 3739 | } |
| 3740 | |
| 3741 | .source-settings-page.page-premium { |
| 3742 | padding: 24px 0; |
| 3743 | } |
| 3744 | |
| 3745 | .source-settings-page.page-premium .page-premium-text { |
| 3746 | margin-bottom: 20px; |
| 3747 | font-size: 16px; |
| 3748 | line-height: 1.6; |
| 3749 | color: #25396F; |
| 3750 | max-width: 80%; |
| 3751 | } |
| 3752 | |
| 3753 | h1.page-heading { |
| 3754 | color: #25396F; |
| 3755 | font-family: 'DMSans'; |
| 3756 | font-size: 24px; |
| 3757 | font-style: normal; |
| 3758 | font-weight: 600; |
| 3759 | line-height: 120%; |
| 3760 | padding-bottom: 16px; |
| 3761 | border-bottom: 1px solid #F5F7FC; |
| 3762 | } |
| 3763 | |
| 3764 | .upgrage__card__tab__style h3 { |
| 3765 | color: #25396F; |
| 3766 | font-family: 'DMSans'; |
| 3767 | font-size: 20px; |
| 3768 | font-style: normal; |
| 3769 | font-weight: 600; |
| 3770 | line-height: 1; |
| 3771 | /* 24px */ |
| 3772 | } |
| 3773 | |
| 3774 | .upgrage__card__tab__style p { |
| 3775 | color: #707070; |
| 3776 | font-family: 'DMSans'; |
| 3777 | font-size: 16px; |
| 3778 | font-style: normal; |
| 3779 | font-weight: 400; |
| 3780 | line-height: 160%; |
| 3781 | /* 25.6px */ |
| 3782 | } |
| 3783 | |
| 3784 | a.button.button__themeColor { |
| 3785 | border-radius: 8px; |
| 3786 | background: #EEEDF4; |
| 3787 | border: none; |
| 3788 | } |
| 3789 | |
| 3790 | ul.source-tab { |
| 3791 | margin-top: 10px; |
| 3792 | width: 100%; |
| 3793 | padding-right: 15px; |
| 3794 | padding-left: 15px; |
| 3795 | margin-top: 10px; |
| 3796 | max-height: 185px; |
| 3797 | overflow-y: scroll; |
| 3798 | } |
| 3799 | |
| 3800 | ul.source-tab::-webkit-scrollbar { |
| 3801 | width: 5px; |
| 3802 | } |
| 3803 | |
| 3804 | ul.source-tab::-webkit-scrollbar-track { |
| 3805 | background: #f5f7fd; |
| 3806 | border-radius: 5px; |
| 3807 | } |
| 3808 | |
| 3809 | ul.source-tab::-webkit-scrollbar-thumb { |
| 3810 | background: #988FBD; |
| 3811 | border-radius: 5px; |
| 3812 | } |
| 3813 | |
| 3814 | li.tab-button { |
| 3815 | display: inline-flex; |
| 3816 | align-items: center; |
| 3817 | gap: 5px; |
| 3818 | background-color: transparent; |
| 3819 | padding: 8px 15px; |
| 3820 | border-radius: 15px; |
| 3821 | cursor: pointer; |
| 3822 | width: 100%; |
| 3823 | font-size: 14px; |
| 3824 | margin-bottom: 2px; |
| 3825 | } |
| 3826 | |
| 3827 | li.tab-button:hover { |
| 3828 | background: #f5f7fd; |
| 3829 | } |
| 3830 | |
| 3831 | li.tab-button.active { |
| 3832 | background: #f5f7fd; |
| 3833 | } |
| 3834 | |
| 3835 | img.source-image { |
| 3836 | width: 14px; |
| 3837 | height: 14px; |
| 3838 | } |
| 3839 | |
| 3840 | .tab-content-section { |
| 3841 | display: grid; |
| 3842 | -ms-grid-columns: 1fr 1fr 1fr; |
| 3843 | grid-template-columns: repeat(3, 1fr); |
| 3844 | /* Three items per row */ |
| 3845 | gap: 15px; |
| 3846 | /* Adjust the gap between items as needed */ |
| 3847 | } |
| 3848 | |
| 3849 | @media (max-width: 1199px) { |
| 3850 | .tab-content-section { |
| 3851 | -ms-grid-columns: 1fr 1fr; |
| 3852 | grid-template-columns: repeat(2, 1fr); |
| 3853 | } |
| 3854 | } |
| 3855 | |
| 3856 | .source-item { |
| 3857 | padding: 10px; |
| 3858 | text-align: center; |
| 3859 | display: flex; |
| 3860 | align-items: center; |
| 3861 | justify-content: space-between; |
| 3862 | background: #f5f7fd; |
| 3863 | border-radius: 8px; |
| 3864 | } |
| 3865 | |
| 3866 | .tab-button-section { |
| 3867 | display: none; |
| 3868 | } |
| 3869 | |
| 3870 | li.sidebar__item.show .tab-button-section { |
| 3871 | display: block; |
| 3872 | } |
| 3873 | |
| 3874 | .source-item div { |
| 3875 | display: flex; |
| 3876 | align-items: center; |
| 3877 | gap: 5px; |
| 3878 | color: #404040; |
| 3879 | font-family: 'DMSans'; |
| 3880 | font-size: 14px; |
| 3881 | font-style: normal; |
| 3882 | font-weight: 600; |
| 3883 | line-height: 120%; |
| 3884 | /* 16.8px */ |
| 3885 | letter-spacing: -0.28px; |
| 3886 | } |
| 3887 | |
| 3888 | .source-left .icon { |
| 3889 | width: 32px; |
| 3890 | height: 32px; |
| 3891 | background: #fff; |
| 3892 | border-radius: 5px; |
| 3893 | display: flex; |
| 3894 | align-items: center; |
| 3895 | justify-content: center; |
| 3896 | } |
| 3897 | |
| 3898 | .source-left .icon img { |
| 3899 | width: 16px; |
| 3900 | height: auto; |
| 3901 | } |
| 3902 | |
| 3903 | .source-right a { |
| 3904 | width: 28px; |
| 3905 | height: 28px; |
| 3906 | background: #fff; |
| 3907 | border-radius: 5px; |
| 3908 | display: flex; |
| 3909 | align-items: center; |
| 3910 | justify-content: center; |
| 3911 | } |
| 3912 | |
| 3913 | .source-right a svg g { |
| 3914 | transition: 0.2s; |
| 3915 | |
| 3916 | } |
| 3917 | |
| 3918 | .source-right a svg { |
| 3919 | width: 18px; |
| 3920 | height: 18px; |
| 3921 | } |
| 3922 | |
| 3923 | .source-right a:hover svg g { |
| 3924 | stroke: #5B4E96; |
| 3925 | } |
| 3926 | |
| 3927 | .premium-button { |
| 3928 | text-align: center; |
| 3929 | display: flex; |
| 3930 | align-items: center; |
| 3931 | justify-content: center; |
| 3932 | width: 100%; |
| 3933 | margin-top: 20px; |
| 3934 | } |
| 3935 | |
| 3936 | .premium-button a { |
| 3937 | display: flex !important; |
| 3938 | align-items: center; |
| 3939 | gap: 8px; |
| 3940 | background: #EEEDF4; |
| 3941 | padding: 10px 25px; |
| 3942 | border-radius: 8px; |
| 3943 | width: 100%; |
| 3944 | justify-content: center; |
| 3945 | } |
| 3946 | |
| 3947 | .premium-button span { |
| 3948 | display: flex; |
| 3949 | align-items: center; |
| 3950 | justify-content: center; |
| 3951 | } |
| 3952 | |
| 3953 | .premium-button svg { |
| 3954 | width: 18px; |
| 3955 | height: 18px; |
| 3956 | } |
| 3957 | |
| 3958 | |
| 3959 | @media only screen and (max-width: 991px) { |
| 3960 | .tab-content-section { |
| 3961 | -ms-grid-columns: 1fr 1fr; |
| 3962 | grid-template-columns: repeat(2, 1fr); |
| 3963 | } |
| 3964 | |
| 3965 | .embedpress-body .embedpress-sidebar { |
| 3966 | display: inline-flex; |
| 3967 | min-width: 50px; |
| 3968 | margin-right: 0; |
| 3969 | align-items: center; |
| 3970 | } |
| 3971 | |
| 3972 | .premium-button { |
| 3973 | margin-top: 0px !important; |
| 3974 | padding: 0 4px 0 0; |
| 3975 | } |
| 3976 | } |
| 3977 | |
| 3978 | @media only screen and (max-width: 767px) { |
| 3979 | .tab-content-section { |
| 3980 | -ms-grid-columns: 1fr; |
| 3981 | grid-template-columns: repeat(1, 1fr); |
| 3982 | } |
| 3983 | |
| 3984 | header.embedpress-header p { |
| 3985 | margin: 10px 0; |
| 3986 | text-align: left; |
| 3987 | } |
| 3988 | } |
| 3989 | |
| 3990 | |
| 3991 | /* // Calendly settings page design */ |
| 3992 | .calendly-embedpress-authorize-button { |
| 3993 | display: flex; |
| 3994 | justify-content: space-between; |
| 3995 | margin-bottom: 15px; |
| 3996 | } |
| 3997 | |
| 3998 | .calendly-settings-title { |
| 3999 | margin-bottom: 30px !important; |
| 4000 | } |
| 4001 | |
| 4002 | a.calendly-connect-button { |
| 4003 | display: inline-flex; |
| 4004 | align-items: center; |
| 4005 | font-size: 15px; |
| 4006 | color: rgb(54, 100, 174); |
| 4007 | gap: 6px; |
| 4008 | border-width: 1px; |
| 4009 | border-style: solid; |
| 4010 | border-color: rgb(54, 100, 174); |
| 4011 | border-image: initial; |
| 4012 | padding: 8px 20px; |
| 4013 | border-radius: 10px; |
| 4014 | } |
| 4015 | |
| 4016 | a.calendly-connect-button:hover { |
| 4017 | color: #fff; |
| 4018 | background: rgb(54, 100, 174); |
| 4019 | } |
| 4020 | |
| 4021 | a.calendly-connected { |
| 4022 | /* pointer-events: none !important; */ |
| 4023 | background: rgba(54, 100, 174, 0.08); |
| 4024 | border-width: 1px; |
| 4025 | border-style: solid; |
| 4026 | border-color: rgba(54, 100, 174, 0.08); |
| 4027 | border-image: initial; |
| 4028 | } |
| 4029 | |
| 4030 | a.calendly-connect-button img { |
| 4031 | width: 20px; |
| 4032 | } |
| 4033 | |
| 4034 | |
| 4035 | /* Apply styles to the event-type-list container */ |
| 4036 | .event-type-list { |
| 4037 | font-family: Arial, sans-serif; |
| 4038 | } |
| 4039 | |
| 4040 | /* Apply styles to the list-header */ |
| 4041 | .list-header { |
| 4042 | background-color: #3664ae; |
| 4043 | color: #fff; |
| 4044 | padding: 10px; |
| 4045 | display: flex; |
| 4046 | align-items: center; |
| 4047 | gap: 10px; |
| 4048 | border-radius: 10px; |
| 4049 | } |
| 4050 | |
| 4051 | |
| 4052 | /* Apply styles to the user's avatar */ |
| 4053 | .calendly-user .bqa3nmp img { |
| 4054 | width: 50px; |
| 4055 | height: 50px; |
| 4056 | border-radius: 50%; |
| 4057 | margin-right: 10px; |
| 4058 | } |
| 4059 | |
| 4060 | /* Apply styles to the user's name */ |
| 4061 | .calendly-user .name p { |
| 4062 | font-weight: bold; |
| 4063 | font-size: 18px; |
| 4064 | } |
| 4065 | |
| 4066 | |
| 4067 | /* Apply styles to the event-type-card */ |
| 4068 | .event-type-card-list { |
| 4069 | display: grid; |
| 4070 | grid-template-columns: repeat(3, 1fr); |
| 4071 | gap: 20px; |
| 4072 | margin-top: 15px; |
| 4073 | } |
| 4074 | |
| 4075 | .calendly-data-placeholder .event-type-card-list { |
| 4076 | padding: 0 20px 20px; |
| 4077 | } |
| 4078 | |
| 4079 | .event-type-card-list-item { |
| 4080 | background-color: #ffffff; |
| 4081 | border: 1px solid #faf4f4; |
| 4082 | border-radius: 5px; |
| 4083 | border-top: 6px solid var(--calendly-event-color); |
| 4084 | } |
| 4085 | |
| 4086 | .event-type-card { |
| 4087 | padding: 10px; |
| 4088 | } |
| 4089 | |
| 4090 | .calendly-profile-avatar { |
| 4091 | width: 50px; |
| 4092 | height: 50px; |
| 4093 | } |
| 4094 | |
| 4095 | .calendly-profile-avatar img { |
| 4096 | border-radius: 50px; |
| 4097 | } |
| 4098 | |
| 4099 | .event-type-card-top { |
| 4100 | border-bottom: 1px solid #ebe1e1; |
| 4101 | padding-bottom: 10px; |
| 4102 | } |
| 4103 | |
| 4104 | .event-type-card-top h2 { |
| 4105 | font-size: 15px; |
| 4106 | font-weight: 500; |
| 4107 | margin-bottom: 8px; |
| 4108 | } |
| 4109 | |
| 4110 | .event-type-card-top p { |
| 4111 | font-size: 11px; |
| 4112 | color: #b19999; |
| 4113 | margin-bottom: 12px; |
| 4114 | } |
| 4115 | |
| 4116 | .event-type-card-top a { |
| 4117 | color: #3664ae; |
| 4118 | font-size: 12px; |
| 4119 | } |
| 4120 | |
| 4121 | .event-type-card-bottom { |
| 4122 | display: flex; |
| 4123 | align-items: center; |
| 4124 | justify-content: space-between; |
| 4125 | padding-top: 10px; |
| 4126 | } |
| 4127 | |
| 4128 | .event-status { |
| 4129 | font-size: 14px; |
| 4130 | } |
| 4131 | |
| 4132 | .event-status.Active { |
| 4133 | color: #008000c9; |
| 4134 | } |
| 4135 | |
| 4136 | .event-status.In-active { |
| 4137 | color: gray; |
| 4138 | } |
| 4139 | |
| 4140 | .calendly-event-copy-link { |
| 4141 | display: flex; |
| 4142 | align-items: center; |
| 4143 | gap: 5px; |
| 4144 | font-size: 14px; |
| 4145 | color: #3664ae; |
| 4146 | cursor: pointer; |
| 4147 | } |
| 4148 | |
| 4149 | [data-event-status="In-active"] .event-type-card-top a, [data-event-status="In-active"] .calendly-event-copy-link { |
| 4150 | color: gray; |
| 4151 | } |
| 4152 | |
| 4153 | [data-event-status="In-active"].event-type-card-list-item { |
| 4154 | border-top-color: #b2b2b2 !important; |
| 4155 | } |
| 4156 | |
| 4157 | [data-event-status="In-active"] .calendly-event-copy-link svg path { |
| 4158 | fill: gray; |
| 4159 | } |
| 4160 | |
| 4161 | .calendly-event-copy-link svg { |
| 4162 | width: 14px; |
| 4163 | height: 14px; |
| 4164 | } |
| 4165 | |
| 4166 | |
| 4167 | /* scheduled list table css */ |
| 4168 | |
| 4169 | |
| 4170 | .rwd-table { |
| 4171 | max-width: 100%; |
| 4172 | width: 100%; |
| 4173 | |
| 4174 | } |
| 4175 | |
| 4176 | .rwd-table tr:first-child { |
| 4177 | border-top: none; |
| 4178 | background: #3664ae; |
| 4179 | color: #fff; |
| 4180 | } |
| 4181 | |
| 4182 | .rwd-table tr { |
| 4183 | border-top: 1px dotted red; |
| 4184 | border-bottom: 1px dotted red; |
| 4185 | } |
| 4186 | |
| 4187 | |
| 4188 | .rwd-table th { |
| 4189 | display: none; |
| 4190 | } |
| 4191 | |
| 4192 | .rwd-table td { |
| 4193 | display: block; |
| 4194 | |
| 4195 | } |
| 4196 | |
| 4197 | .rwd-table td:before { |
| 4198 | content: attr(data-th) ": "; |
| 4199 | width: 120px; |
| 4200 | display: inline-block; |
| 4201 | color: #000; |
| 4202 | } |
| 4203 | |
| 4204 | .rwd-table th, .rwd-table td { |
| 4205 | padding-left: 30px !important; |
| 4206 | } |
| 4207 | |
| 4208 | .rwd-table { |
| 4209 | color: #333; |
| 4210 | border-radius: .4em; |
| 4211 | width: 100%; |
| 4212 | /* Set the table width to 100% */ |
| 4213 | /* table-layout: fixed; */ |
| 4214 | } |
| 4215 | |
| 4216 | .rwd-table tr { |
| 4217 | border-color: red; |
| 4218 | } |
| 4219 | |
| 4220 | |
| 4221 | .rwd-table td:before { |
| 4222 | display: none; |
| 4223 | } |
| 4224 | |
| 4225 | .rwd-table th, .rwd-table td { |
| 4226 | display: table-cell; |
| 4227 | padding: .5em .5em; |
| 4228 | text-align: left; |
| 4229 | font-family: Arial, sans-serif; |
| 4230 | font-size: 14px; |
| 4231 | white-space: nowrap; |
| 4232 | /* width: 25%; */ |
| 4233 | /* Divide the width evenly among the columns */ |
| 4234 | |
| 4235 | } |
| 4236 | |
| 4237 | .rwd-table th { |
| 4238 | font-size: 15px; |
| 4239 | padding: 1em .5em; |
| 4240 | font-weight: 500; |
| 4241 | } |
| 4242 | |
| 4243 | .rwd-table th:first-child { |
| 4244 | border-top-left-radius: 10px; |
| 4245 | border-bottom-left-radius: 10px; |
| 4246 | } |
| 4247 | |
| 4248 | .rwd-table th:last-child { |
| 4249 | border-top-right-radius: 10px; |
| 4250 | border-bottom-right-radius: 10px; |
| 4251 | } |
| 4252 | |
| 4253 | .rwd-table td { |
| 4254 | border-bottom: 1px dotted #ddd; |
| 4255 | /* border-radius: 10px; */ |
| 4256 | /* border-right: 1px dotted #ddd; */ |
| 4257 | } |
| 4258 | |
| 4259 | /* .rwd-table td:first-child { |
| 4260 | border-left: 1px dotted #ddd; |
| 4261 | } */ |
| 4262 | |
| 4263 | |
| 4264 | /* Tab container */ |
| 4265 | .tab-container { |
| 4266 | display: flex; |
| 4267 | gap: 5px; |
| 4268 | background: #fff7f7; |
| 4269 | padding: 8px 10px; |
| 4270 | border-radius: 10px; |
| 4271 | } |
| 4272 | |
| 4273 | /* Individual tab */ |
| 4274 | .tab-container .tab { |
| 4275 | padding: 8px 20px; |
| 4276 | cursor: pointer; |
| 4277 | background-color: #fff7f7; |
| 4278 | border-radius: 10px; |
| 4279 | font-size: 15px; |
| 4280 | |
| 4281 | } |
| 4282 | |
| 4283 | /* Active tab */ |
| 4284 | .tab-container .active-tab { |
| 4285 | background-color: #3664ae; |
| 4286 | color: #fff; |
| 4287 | } |
| 4288 | |
| 4289 | /* Content container */ |
| 4290 | .tab-content { |
| 4291 | display: none; |
| 4292 | width: 100%; |
| 4293 | } |
| 4294 | |
| 4295 | /* Show the active tab content */ |
| 4296 | .tab-content.active { |
| 4297 | display: block; |
| 4298 | } |
| 4299 | |
| 4300 | .calendly-data-placeholder { |
| 4301 | position: relative; |
| 4302 | margin-top: 15px; |
| 4303 | } |
| 4304 | |
| 4305 | .calendly-data-placeholder img { |
| 4306 | pointer-events: none; |
| 4307 | } |
| 4308 | |
| 4309 | .calendly-data-placeholder { |
| 4310 | position: relative; |
| 4311 | margin-top: 5px; |
| 4312 | padding-top: 5px; |
| 4313 | } |
| 4314 | |
| 4315 | .overlay { |
| 4316 | position: absolute; |
| 4317 | top: 0; |
| 4318 | left: 0; |
| 4319 | width: 100%; |
| 4320 | height: 100%; |
| 4321 | background-color: #3664ae26; |
| 4322 | text-align: center; |
| 4323 | display: flex; |
| 4324 | flex-direction: column; |
| 4325 | justify-content: center; |
| 4326 | border-radius: 10px; |
| 4327 | align-items: center; |
| 4328 | } |
| 4329 | |
| 4330 | .overlay-button { |
| 4331 | background-color: #006bff; |
| 4332 | color: #fff !important; |
| 4333 | padding: 10px 20px; |
| 4334 | border: none; |
| 4335 | cursor: pointer; |
| 4336 | max-width: 300px; |
| 4337 | font-weight: 500; |
| 4338 | border-radius: 10px; |
| 4339 | } |
| 4340 | |
| 4341 | .calendly-connector-container { |
| 4342 | display: flex; |
| 4343 | align-items: end; |
| 4344 | gap: 5px; |
| 4345 | } |
| 4346 | |
| 4347 | @media only screen and (max-width: 768px) { |
| 4348 | .calendly-connector-container { |
| 4349 | margin-bottom: 15px; |
| 4350 | } |
| 4351 | |
| 4352 | .calendly-embedpress-authorize-button { |
| 4353 | flex-direction: column; |
| 4354 | justify-content: center; |
| 4355 | } |
| 4356 | |
| 4357 | .tab-container { |
| 4358 | width: 100%; |
| 4359 | align-items: center; |
| 4360 | justify-content: center; |
| 4361 | } |
| 4362 | |
| 4363 | .tab-container .tab { |
| 4364 | padding: 8px 10px; |
| 4365 | font-size: 14px; |
| 4366 | width: 50%; |
| 4367 | text-align: center; |
| 4368 | } |
| 4369 | |
| 4370 | .calendly-data { |
| 4371 | overflow: auto; |
| 4372 | } |
| 4373 | |
| 4374 | .event-type-card-list { |
| 4375 | grid-template-columns: repeat(2, 1fr); |
| 4376 | } |
| 4377 | |
| 4378 | .rwd-table { |
| 4379 | min-width: 700px; |
| 4380 | overflow: auto; |
| 4381 | table-layout: auto; |
| 4382 | } |
| 4383 | |
| 4384 | .rwd-table th, .rwd-table td { |
| 4385 | padding: 10px; |
| 4386 | font-size: 13px; |
| 4387 | } |
| 4388 | |
| 4389 | .rwd-table th, .rwd-table td { |
| 4390 | padding-left: 20px !important; |
| 4391 | width: auto; |
| 4392 | } |
| 4393 | } |
| 4394 | |
| 4395 | |
| 4396 | @media only screen and (max-width: 480px) { |
| 4397 | .event-type-card-list { |
| 4398 | grid-template-columns: repeat(1, 1fr); |
| 4399 | } |
| 4400 | |
| 4401 | .tab-container { |
| 4402 | padding: 8px 6px; |
| 4403 | } |
| 4404 | |
| 4405 | .tab-container .tab { |
| 4406 | white-space: nowrap; |
| 4407 | padding: 8px 5px; |
| 4408 | font-size: 12px; |
| 4409 | text-align: center; |
| 4410 | } |
| 4411 | } |