style.css
3283 lines
| 1 | @import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"); |
| 2 | :root { |
| 3 | --base-gutter: 30px; |
| 4 | --md-gutter: 50px; |
| 5 | --lg-gutter: 70px; |
| 6 | --xl-gutter: 100px; |
| 7 | --base-spacer-x: 16px; |
| 8 | --base-spacer-y: 16px; |
| 9 | --b-radius-6: 25px; |
| 10 | } |
| 11 | |
| 12 | @media (max-width: 1600px) { |
| 13 | :root { |
| 14 | --base-gutter: 20px; |
| 15 | --md-gutter: 30px; |
| 16 | --lg-gutter: 50px; |
| 17 | --xl-gutter: 70px; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | @media (max-width: 1399px) { |
| 22 | :root { |
| 23 | --base-gutter: 20px; |
| 24 | --md-gutter: 30px; |
| 25 | --lg-gutter: 40px; |
| 26 | --xl-gutter: 50px; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | @media (max-width: 1199px) { |
| 31 | :root { |
| 32 | --base-spacer-x: 10px; |
| 33 | --base-spacer-y: 10px; |
| 34 | --md-gutter: 20px; |
| 35 | --lg-gutter: 30px; |
| 36 | --xl-gutter: 40px; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | @media (max-width: 991px) { |
| 41 | :root { |
| 42 | --base-spacer-x: 5px; |
| 43 | --base-spacer-y: 5px; |
| 44 | --md-gutter: 20px; |
| 45 | --lg-gutter: 30px; |
| 46 | --xl-gutter: 40px; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | ::-moz-selection { |
| 51 | color: #ffffff; |
| 52 | background: rgba(91, 78, 150, 0.6); |
| 53 | } |
| 54 | |
| 55 | ::selection { |
| 56 | color: #ffffff; |
| 57 | background: rgba(91, 78, 150, 0.6); |
| 58 | } |
| 59 | |
| 60 | .template__wrapper { |
| 61 | font-family: "DM Sans", sans-serif; |
| 62 | line-height: 1.7; |
| 63 | font-weight: 400; |
| 64 | min-height: 100vh; |
| 65 | background: #ffffff; |
| 66 | color: #000000; |
| 67 | -webkit-font-smoothing: antialiased; |
| 68 | -moz-font-smoothing: antialiased; |
| 69 | -ms-font-smoothing: antialiased; |
| 70 | -o-font-smoothing: antialiased; |
| 71 | font-smoothing: antialiased; |
| 72 | -webkit-text-rendering: optimizeLegibility; |
| 73 | -moz-text-rendering: optimizeLegibility; |
| 74 | -ms-text-rendering: optimizeLegibility; |
| 75 | -o-text-rendering: optimizeLegibility; |
| 76 | text-rendering: optimizeLegibility; |
| 77 | -webkit-scroll-behavior: smooth; |
| 78 | -moz-scroll-behavior: smooth; |
| 79 | -ms-scroll-behavior: smooth; |
| 80 | -o-scroll-behavior: smooth; |
| 81 | scroll-behavior: smooth; |
| 82 | font-size: 16px; |
| 83 | } |
| 84 | |
| 85 | @media (max-width: 1399px) { |
| 86 | .template__wrapper { |
| 87 | font-size: 14px; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | @media (max-width: 991px) { |
| 92 | .template__wrapper { |
| 93 | font-size: 13px; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | .template__wrapper * { |
| 98 | margin: 0; |
| 99 | padding: 0; |
| 100 | outline: none; |
| 101 | border: none; |
| 102 | -webkit-box-sizing: border-box; |
| 103 | box-sizing: border-box; |
| 104 | } |
| 105 | |
| 106 | .template__wrapper a { |
| 107 | color: inherit; |
| 108 | -webkit-transition: all 0.3s ease; |
| 109 | transition: all 0.3s ease; |
| 110 | text-decoration: none; |
| 111 | display: inline-block; |
| 112 | } |
| 113 | |
| 114 | .template__wrapper a:focus { |
| 115 | outline: none; |
| 116 | -webkit-box-shadow: none; |
| 117 | box-shadow: none; |
| 118 | } |
| 119 | |
| 120 | .template__wrapper label { |
| 121 | margin-bottom: 0; |
| 122 | } |
| 123 | |
| 124 | .template__wrapper h1, |
| 125 | .template__wrapper h2, |
| 126 | .template__wrapper h3, |
| 127 | .template__wrapper h4, |
| 128 | .template__wrapper h5, |
| 129 | .template__wrapper h6, |
| 130 | .template__wrapper p { |
| 131 | margin: 0; |
| 132 | padding: 0; |
| 133 | } |
| 134 | |
| 135 | .template__wrapper h1, |
| 136 | .template__wrapper h2, |
| 137 | .template__wrapper h3, |
| 138 | .template__wrapper h4, |
| 139 | .template__wrapper h5, |
| 140 | .template__wrapper h6 { |
| 141 | font-family: "DM Sans", sans-serif; |
| 142 | font-weight: 700; |
| 143 | line-height: 1.3; |
| 144 | } |
| 145 | |
| 146 | .template__wrapper ul, |
| 147 | .template__wrapper ol { |
| 148 | padding: 0; |
| 149 | margin: 0; |
| 150 | list-style: none; |
| 151 | } |
| 152 | |
| 153 | .template__wrapper img, |
| 154 | .template__wrapper video { |
| 155 | max-width: 100%; |
| 156 | } |
| 157 | |
| 158 | .m50 { |
| 159 | margin: 50px; |
| 160 | } |
| 161 | |
| 162 | .p50 { |
| 163 | padding: 50px; |
| 164 | } |
| 165 | |
| 166 | .mt50 { |
| 167 | margin-top: 50px; |
| 168 | } |
| 169 | |
| 170 | .pt50 { |
| 171 | padding-top: 50px; |
| 172 | } |
| 173 | |
| 174 | .mb50 { |
| 175 | margin-bottom: 50px; |
| 176 | } |
| 177 | |
| 178 | .pb50 { |
| 179 | padding-bottom: 50px; |
| 180 | } |
| 181 | |
| 182 | .ml50 { |
| 183 | margin-left: 50px; |
| 184 | } |
| 185 | |
| 186 | .pl50 { |
| 187 | padding-left: 50px; |
| 188 | } |
| 189 | |
| 190 | .mr50 { |
| 191 | margin-right: 50px; |
| 192 | } |
| 193 | |
| 194 | .pr50 { |
| 195 | padding-right: 50px; |
| 196 | } |
| 197 | |
| 198 | .m40 { |
| 199 | margin: 40px; |
| 200 | } |
| 201 | |
| 202 | .p40 { |
| 203 | padding: 40px; |
| 204 | } |
| 205 | |
| 206 | .mt40 { |
| 207 | margin-top: 40px; |
| 208 | } |
| 209 | |
| 210 | .pt40 { |
| 211 | padding-top: 40px; |
| 212 | } |
| 213 | |
| 214 | .mb40 { |
| 215 | margin-bottom: 40px; |
| 216 | } |
| 217 | |
| 218 | .pb40 { |
| 219 | padding-bottom: 40px; |
| 220 | } |
| 221 | |
| 222 | .ml40 { |
| 223 | margin-left: 40px; |
| 224 | } |
| 225 | |
| 226 | .pl40 { |
| 227 | padding-left: 40px; |
| 228 | } |
| 229 | |
| 230 | .mr40 { |
| 231 | margin-right: 40px; |
| 232 | } |
| 233 | |
| 234 | .pr40 { |
| 235 | padding-right: 40px; |
| 236 | } |
| 237 | |
| 238 | .m30 { |
| 239 | margin: 30px; |
| 240 | } |
| 241 | |
| 242 | .p30 { |
| 243 | padding: 30px; |
| 244 | } |
| 245 | |
| 246 | .mt30 { |
| 247 | margin-top: 30px; |
| 248 | } |
| 249 | |
| 250 | .pt30 { |
| 251 | padding-top: 30px; |
| 252 | } |
| 253 | |
| 254 | .mb30 { |
| 255 | margin-bottom: 30px; |
| 256 | } |
| 257 | |
| 258 | .pb30 { |
| 259 | padding-bottom: 30px; |
| 260 | } |
| 261 | |
| 262 | .ml30 { |
| 263 | margin-left: 30px; |
| 264 | } |
| 265 | |
| 266 | .pl30 { |
| 267 | padding-left: 30px; |
| 268 | } |
| 269 | |
| 270 | .mr30 { |
| 271 | margin-right: 30px; |
| 272 | } |
| 273 | |
| 274 | .pr30 { |
| 275 | padding-right: 30px; |
| 276 | } |
| 277 | |
| 278 | .m10 { |
| 279 | margin: 10px; |
| 280 | } |
| 281 | |
| 282 | .p10 { |
| 283 | padding: 10px; |
| 284 | } |
| 285 | |
| 286 | .mt10 { |
| 287 | margin-top: 10px; |
| 288 | } |
| 289 | |
| 290 | .pt10 { |
| 291 | padding-top: 10px; |
| 292 | } |
| 293 | |
| 294 | .mb10 { |
| 295 | margin-bottom: 10px; |
| 296 | } |
| 297 | |
| 298 | .pb10 { |
| 299 | padding-bottom: 10px; |
| 300 | } |
| 301 | |
| 302 | .ml10 { |
| 303 | margin-left: 10px; |
| 304 | } |
| 305 | |
| 306 | .pl10 { |
| 307 | padding-left: 10px; |
| 308 | } |
| 309 | |
| 310 | .mr10 { |
| 311 | margin-right: 10px; |
| 312 | } |
| 313 | |
| 314 | .pr10 { |
| 315 | padding-right: 10px; |
| 316 | } |
| 317 | |
| 318 | .m5 { |
| 319 | margin: 5px; |
| 320 | } |
| 321 | |
| 322 | .p5 { |
| 323 | padding: 5px; |
| 324 | } |
| 325 | |
| 326 | .mt5 { |
| 327 | margin-top: 5px; |
| 328 | } |
| 329 | |
| 330 | .pt5 { |
| 331 | padding-top: 5px; |
| 332 | } |
| 333 | |
| 334 | .mb5 { |
| 335 | margin-bottom: 5px; |
| 336 | } |
| 337 | |
| 338 | .pb5 { |
| 339 | padding-bottom: 5px; |
| 340 | } |
| 341 | |
| 342 | .ml5 { |
| 343 | margin-left: 5px; |
| 344 | } |
| 345 | |
| 346 | .pl5 { |
| 347 | padding-left: 5px; |
| 348 | } |
| 349 | |
| 350 | .mr5 { |
| 351 | margin-right: 5px; |
| 352 | } |
| 353 | |
| 354 | .pr5 { |
| 355 | padding-right: 5px; |
| 356 | } |
| 357 | |
| 358 | .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, .emement__item h5, .emement__item .pro__item, .embedpress--elements__wrap h3 { |
| 359 | font-family: "DM Sans", sans-serif; |
| 360 | } |
| 361 | |
| 362 | .color__themeColor { |
| 363 | color: #5B4E96; |
| 364 | } |
| 365 | |
| 366 | a.color__themeColor:hover, a.color__themeColor:focus { |
| 367 | color: #473d74; |
| 368 | -webkit-box-shadow: none; |
| 369 | box-shadow: none; |
| 370 | } |
| 371 | |
| 372 | .color__primary { |
| 373 | color: #00CC76; |
| 374 | } |
| 375 | |
| 376 | a.color__primary:hover, a.color__primary:focus { |
| 377 | color: #009959; |
| 378 | -webkit-box-shadow: none; |
| 379 | box-shadow: none; |
| 380 | } |
| 381 | |
| 382 | .color__danger { |
| 383 | color: #FE504F; |
| 384 | } |
| 385 | |
| 386 | a.color__danger:hover, a.color__danger:focus { |
| 387 | color: #fe1e1c; |
| 388 | -webkit-box-shadow: none; |
| 389 | box-shadow: none; |
| 390 | } |
| 391 | |
| 392 | .color__warning { |
| 393 | color: #FFA53C; |
| 394 | } |
| 395 | |
| 396 | a.color__warning:hover, a.color__warning:focus { |
| 397 | color: #ff8d09; |
| 398 | -webkit-box-shadow: none; |
| 399 | box-shadow: none; |
| 400 | } |
| 401 | |
| 402 | .color__white { |
| 403 | color: #ffffff; |
| 404 | } |
| 405 | |
| 406 | a.color__white:hover, a.color__white:focus { |
| 407 | color: #e6e6e6; |
| 408 | -webkit-box-shadow: none; |
| 409 | box-shadow: none; |
| 410 | } |
| 411 | |
| 412 | .color__dark { |
| 413 | color: #222222; |
| 414 | } |
| 415 | |
| 416 | a.color__dark:hover, a.color__dark:focus { |
| 417 | color: #090909; |
| 418 | -webkit-box-shadow: none; |
| 419 | box-shadow: none; |
| 420 | } |
| 421 | |
| 422 | .color__grey { |
| 423 | color: #7C8DB5; |
| 424 | } |
| 425 | |
| 426 | a.color__grey:hover, a.color__grey:focus { |
| 427 | color: #5c71a2; |
| 428 | -webkit-box-shadow: none; |
| 429 | box-shadow: none; |
| 430 | } |
| 431 | |
| 432 | .color__liteGrey { |
| 433 | color: #F5F7FD; |
| 434 | } |
| 435 | |
| 436 | a.color__liteGrey:hover, a.color__liteGrey:focus { |
| 437 | color: #cbd5f5; |
| 438 | -webkit-box-shadow: none; |
| 439 | box-shadow: none; |
| 440 | } |
| 441 | |
| 442 | .color__black { |
| 443 | color: #000000; |
| 444 | } |
| 445 | |
| 446 | .color__twitter { |
| 447 | color: #1da1f2; |
| 448 | } |
| 449 | |
| 450 | a.color__twitter:hover, a.color__twitter:focus { |
| 451 | color: #0c85d0; |
| 452 | -webkit-box-shadow: none; |
| 453 | box-shadow: none; |
| 454 | } |
| 455 | |
| 456 | .color__linkedin { |
| 457 | color: #0077b5; |
| 458 | } |
| 459 | |
| 460 | a.color__linkedin:hover, a.color__linkedin:focus { |
| 461 | color: #005582; |
| 462 | -webkit-box-shadow: none; |
| 463 | box-shadow: none; |
| 464 | } |
| 465 | |
| 466 | .color__instagram { |
| 467 | color: #e1306c; |
| 468 | } |
| 469 | |
| 470 | a.color__instagram:hover, a.color__instagram:focus { |
| 471 | color: #c21c54; |
| 472 | -webkit-box-shadow: none; |
| 473 | box-shadow: none; |
| 474 | } |
| 475 | |
| 476 | .background__themeColor { |
| 477 | background-color: #5B4E96; |
| 478 | } |
| 479 | |
| 480 | .background__primary { |
| 481 | background-color: #00CC76; |
| 482 | } |
| 483 | |
| 484 | .background__danger { |
| 485 | background-color: #FE504F; |
| 486 | } |
| 487 | |
| 488 | .background__warning { |
| 489 | background-color: #FFA53C; |
| 490 | } |
| 491 | |
| 492 | .background__white { |
| 493 | background-color: #ffffff; |
| 494 | } |
| 495 | |
| 496 | .background__dark { |
| 497 | background-color: #222222; |
| 498 | } |
| 499 | |
| 500 | .background__grey { |
| 501 | background-color: #7C8DB5; |
| 502 | } |
| 503 | |
| 504 | .background__liteGrey { |
| 505 | background-color: #F5F7FD; |
| 506 | } |
| 507 | |
| 508 | .background__black { |
| 509 | background-color: #000000; |
| 510 | } |
| 511 | |
| 512 | .background__twitter { |
| 513 | background-color: #1da1f2; |
| 514 | } |
| 515 | |
| 516 | .background__linkedin { |
| 517 | background-color: #0077b5; |
| 518 | } |
| 519 | |
| 520 | .background__instagram { |
| 521 | background-color: #e1306c; |
| 522 | } |
| 523 | |
| 524 | .gradient__themeColor { |
| 525 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 78, 150, 0.3)), to(rgba(91, 78, 150, 0.05))); |
| 526 | background-image: linear-gradient(180deg, rgba(91, 78, 150, 0.3), rgba(91, 78, 150, 0.05)); |
| 527 | color: #5B4E96; |
| 528 | } |
| 529 | |
| 530 | .gradient__primary { |
| 531 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 204, 118, 0.3)), to(rgba(0, 204, 118, 0.05))); |
| 532 | background-image: linear-gradient(180deg, rgba(0, 204, 118, 0.3), rgba(0, 204, 118, 0.05)); |
| 533 | color: #00CC76; |
| 534 | } |
| 535 | |
| 536 | .gradient__danger { |
| 537 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(254, 80, 79, 0.3)), to(rgba(254, 80, 79, 0.05))); |
| 538 | background-image: linear-gradient(180deg, rgba(254, 80, 79, 0.3), rgba(254, 80, 79, 0.05)); |
| 539 | color: #FE504F; |
| 540 | } |
| 541 | |
| 542 | .gradient__warning { |
| 543 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 165, 60, 0.3)), to(rgba(255, 165, 60, 0.05))); |
| 544 | background-image: linear-gradient(180deg, rgba(255, 165, 60, 0.3), rgba(255, 165, 60, 0.05)); |
| 545 | color: #FFA53C; |
| 546 | } |
| 547 | |
| 548 | .gradient__white { |
| 549 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.05))); |
| 550 | background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05)); |
| 551 | color: #ffffff; |
| 552 | } |
| 553 | |
| 554 | .gradient__dark { |
| 555 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 34, 34, 0.3)), to(rgba(34, 34, 34, 0.05))); |
| 556 | background-image: linear-gradient(180deg, rgba(34, 34, 34, 0.3), rgba(34, 34, 34, 0.05)); |
| 557 | color: #222222; |
| 558 | } |
| 559 | |
| 560 | .gradient__grey { |
| 561 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(124, 141, 181, 0.3)), to(rgba(124, 141, 181, 0.05))); |
| 562 | background-image: linear-gradient(180deg, rgba(124, 141, 181, 0.3), rgba(124, 141, 181, 0.05)); |
| 563 | color: #7C8DB5; |
| 564 | } |
| 565 | |
| 566 | .gradient__liteGrey { |
| 567 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(245, 247, 253, 0.3)), to(rgba(245, 247, 253, 0.05))); |
| 568 | background-image: linear-gradient(180deg, rgba(245, 247, 253, 0.3), rgba(245, 247, 253, 0.05)); |
| 569 | color: #F5F7FD; |
| 570 | } |
| 571 | |
| 572 | .gradient__black { |
| 573 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.05))); |
| 574 | background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05)); |
| 575 | color: #000000; |
| 576 | } |
| 577 | |
| 578 | .gradient__twitter { |
| 579 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 161, 242, 0.3)), to(rgba(29, 161, 242, 0.05))); |
| 580 | background-image: linear-gradient(180deg, rgba(29, 161, 242, 0.3), rgba(29, 161, 242, 0.05)); |
| 581 | color: #1da1f2; |
| 582 | } |
| 583 | |
| 584 | .gradient__linkedin { |
| 585 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 119, 181, 0.3)), to(rgba(0, 119, 181, 0.05))); |
| 586 | background-image: linear-gradient(180deg, rgba(0, 119, 181, 0.3), rgba(0, 119, 181, 0.05)); |
| 587 | color: #0077b5; |
| 588 | } |
| 589 | |
| 590 | .gradient__instagram { |
| 591 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(225, 48, 108, 0.3)), to(rgba(225, 48, 108, 0.05))); |
| 592 | background-image: linear-gradient(180deg, rgba(225, 48, 108, 0.3), rgba(225, 48, 108, 0.05)); |
| 593 | color: #e1306c; |
| 594 | } |
| 595 | |
| 596 | .button__themeColor:not(.hover__highlight) { |
| 597 | background: #5B4E96; |
| 598 | color: white; |
| 599 | border-color: #5B4E96; |
| 600 | -webkit-transition-property: background, color, box-shadow, border; |
| 601 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 602 | transition-property: background, color, border, -webkit-box-shadow; |
| 603 | transition-property: background, color, box-shadow, border; |
| 604 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 605 | } |
| 606 | |
| 607 | .button__themeColor:not(.hover__highlight):disabled { |
| 608 | cursor: not-allowed; |
| 609 | background: #FE504F; |
| 610 | border-color: #FE504F; |
| 611 | } |
| 612 | |
| 613 | .button__themeColor:not(.hover__highlight) .icon { |
| 614 | color: #5B4E96; |
| 615 | background: white; |
| 616 | } |
| 617 | |
| 618 | .button__themeColor.hover__highlight { |
| 619 | color: #5B4E96; |
| 620 | border-color: transparent; |
| 621 | background: rgba(91, 78, 150, 0.1); |
| 622 | } |
| 623 | |
| 624 | .button__themeColor.hover__highlight .icon { |
| 625 | background: #00CC76; |
| 626 | color: #ffffff; |
| 627 | } |
| 628 | |
| 629 | .button__themeColor.hover__highlight:hover { |
| 630 | border-color: transparent; |
| 631 | } |
| 632 | |
| 633 | .button__themeColor.button__shadow { |
| 634 | -webkit-box-shadow: 0 10px 10px rgba(91, 78, 150, 0.2); |
| 635 | box-shadow: 0 10px 10px rgba(91, 78, 150, 0.2); |
| 636 | } |
| 637 | |
| 638 | a.button__themeColor.active, a.button__themeColor:hover, |
| 639 | button.button__themeColor.active, |
| 640 | button.button__themeColor:hover { |
| 641 | background: #514585; |
| 642 | color: white; |
| 643 | border-color: #514585; |
| 644 | } |
| 645 | |
| 646 | a.button__themeColor.active:disabled, a.button__themeColor:hover:disabled, |
| 647 | button.button__themeColor.active:disabled, |
| 648 | button.button__themeColor:hover:disabled { |
| 649 | cursor: not-allowed; |
| 650 | background: #FE504F; |
| 651 | -webkit-box-shadow: none; |
| 652 | box-shadow: none; |
| 653 | } |
| 654 | |
| 655 | a.button__themeColor.hover__highlight:hover .icon, |
| 656 | button.button__themeColor.hover__highlight:hover .icon { |
| 657 | background: white; |
| 658 | color: #5B4E96; |
| 659 | } |
| 660 | |
| 661 | .button__primary:not(.hover__highlight) { |
| 662 | background: #00CC76; |
| 663 | color: white; |
| 664 | border-color: #00CC76; |
| 665 | -webkit-transition-property: background, color, box-shadow, border; |
| 666 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 667 | transition-property: background, color, border, -webkit-box-shadow; |
| 668 | transition-property: background, color, box-shadow, border; |
| 669 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 670 | } |
| 671 | |
| 672 | .button__primary:not(.hover__highlight):disabled { |
| 673 | cursor: not-allowed; |
| 674 | background: #FE504F; |
| 675 | border-color: #FE504F; |
| 676 | } |
| 677 | |
| 678 | .button__primary:not(.hover__highlight) .icon { |
| 679 | color: #00CC76; |
| 680 | background: white; |
| 681 | } |
| 682 | |
| 683 | .button__primary.hover__highlight { |
| 684 | color: #00CC76; |
| 685 | border-color: transparent; |
| 686 | background: rgba(0, 204, 118, 0.1); |
| 687 | } |
| 688 | |
| 689 | .button__primary.hover__highlight .icon { |
| 690 | background: #00CC76; |
| 691 | color: #ffffff; |
| 692 | } |
| 693 | |
| 694 | .button__primary.hover__highlight:hover { |
| 695 | border-color: transparent; |
| 696 | } |
| 697 | |
| 698 | .button__primary.button__shadow { |
| 699 | -webkit-box-shadow: 0 10px 10px rgba(0, 204, 118, 0.2); |
| 700 | box-shadow: 0 10px 10px rgba(0, 204, 118, 0.2); |
| 701 | } |
| 702 | |
| 703 | a.button__primary.active, a.button__primary:hover, |
| 704 | button.button__primary.active, |
| 705 | button.button__primary:hover { |
| 706 | background: #00b367; |
| 707 | color: white; |
| 708 | border-color: #00b367; |
| 709 | } |
| 710 | |
| 711 | a.button__primary.active:disabled, a.button__primary:hover:disabled, |
| 712 | button.button__primary.active:disabled, |
| 713 | button.button__primary:hover:disabled { |
| 714 | cursor: not-allowed; |
| 715 | background: #FE504F; |
| 716 | -webkit-box-shadow: none; |
| 717 | box-shadow: none; |
| 718 | } |
| 719 | |
| 720 | a.button__primary.hover__highlight:hover .icon, |
| 721 | button.button__primary.hover__highlight:hover .icon { |
| 722 | background: white; |
| 723 | color: #00CC76; |
| 724 | } |
| 725 | |
| 726 | .button__danger:not(.hover__highlight) { |
| 727 | background: #FE504F; |
| 728 | color: white; |
| 729 | border-color: #FE504F; |
| 730 | -webkit-transition-property: background, color, box-shadow, border; |
| 731 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 732 | transition-property: background, color, border, -webkit-box-shadow; |
| 733 | transition-property: background, color, box-shadow, border; |
| 734 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 735 | } |
| 736 | |
| 737 | .button__danger:not(.hover__highlight):disabled { |
| 738 | cursor: not-allowed; |
| 739 | background: #FE504F; |
| 740 | border-color: #FE504F; |
| 741 | } |
| 742 | |
| 743 | .button__danger:not(.hover__highlight) .icon { |
| 744 | color: #FE504F; |
| 745 | background: white; |
| 746 | } |
| 747 | |
| 748 | .button__danger.hover__highlight { |
| 749 | color: #FE504F; |
| 750 | border-color: transparent; |
| 751 | background: rgba(254, 80, 79, 0.1); |
| 752 | } |
| 753 | |
| 754 | .button__danger.hover__highlight .icon { |
| 755 | background: #00CC76; |
| 756 | color: #ffffff; |
| 757 | } |
| 758 | |
| 759 | .button__danger.hover__highlight:hover { |
| 760 | border-color: transparent; |
| 761 | } |
| 762 | |
| 763 | .button__danger.button__shadow { |
| 764 | -webkit-box-shadow: 0 10px 10px rgba(254, 80, 79, 0.2); |
| 765 | box-shadow: 0 10px 10px rgba(254, 80, 79, 0.2); |
| 766 | } |
| 767 | |
| 768 | a.button__danger.active, a.button__danger:hover, |
| 769 | button.button__danger.active, |
| 770 | button.button__danger:hover { |
| 771 | background: #fe3736; |
| 772 | color: white; |
| 773 | border-color: #fe3736; |
| 774 | } |
| 775 | |
| 776 | a.button__danger.active:disabled, a.button__danger:hover:disabled, |
| 777 | button.button__danger.active:disabled, |
| 778 | button.button__danger:hover:disabled { |
| 779 | cursor: not-allowed; |
| 780 | background: #FE504F; |
| 781 | -webkit-box-shadow: none; |
| 782 | box-shadow: none; |
| 783 | } |
| 784 | |
| 785 | a.button__danger.hover__highlight:hover .icon, |
| 786 | button.button__danger.hover__highlight:hover .icon { |
| 787 | background: white; |
| 788 | color: #FE504F; |
| 789 | } |
| 790 | |
| 791 | .button__warning:not(.hover__highlight) { |
| 792 | background: #FFA53C; |
| 793 | color: white; |
| 794 | border-color: #FFA53C; |
| 795 | -webkit-transition-property: background, color, box-shadow, border; |
| 796 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 797 | transition-property: background, color, border, -webkit-box-shadow; |
| 798 | transition-property: background, color, box-shadow, border; |
| 799 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 800 | } |
| 801 | |
| 802 | .button__warning:not(.hover__highlight):disabled { |
| 803 | cursor: not-allowed; |
| 804 | background: #FE504F; |
| 805 | border-color: #FE504F; |
| 806 | } |
| 807 | |
| 808 | .button__warning:not(.hover__highlight) .icon { |
| 809 | color: #FFA53C; |
| 810 | background: white; |
| 811 | } |
| 812 | |
| 813 | .button__warning.hover__highlight { |
| 814 | color: #FFA53C; |
| 815 | border-color: transparent; |
| 816 | background: rgba(255, 165, 60, 0.1); |
| 817 | } |
| 818 | |
| 819 | .button__warning.hover__highlight .icon { |
| 820 | background: #00CC76; |
| 821 | color: #ffffff; |
| 822 | } |
| 823 | |
| 824 | .button__warning.hover__highlight:hover { |
| 825 | border-color: transparent; |
| 826 | } |
| 827 | |
| 828 | .button__warning.button__shadow { |
| 829 | -webkit-box-shadow: 0 10px 10px rgba(255, 165, 60, 0.2); |
| 830 | box-shadow: 0 10px 10px rgba(255, 165, 60, 0.2); |
| 831 | } |
| 832 | |
| 833 | a.button__warning.active, a.button__warning:hover, |
| 834 | button.button__warning.active, |
| 835 | button.button__warning:hover { |
| 836 | background: #ff9923; |
| 837 | color: white; |
| 838 | border-color: #ff9923; |
| 839 | } |
| 840 | |
| 841 | a.button__warning.active:disabled, a.button__warning:hover:disabled, |
| 842 | button.button__warning.active:disabled, |
| 843 | button.button__warning:hover:disabled { |
| 844 | cursor: not-allowed; |
| 845 | background: #FE504F; |
| 846 | -webkit-box-shadow: none; |
| 847 | box-shadow: none; |
| 848 | } |
| 849 | |
| 850 | a.button__warning.hover__highlight:hover .icon, |
| 851 | button.button__warning.hover__highlight:hover .icon { |
| 852 | background: white; |
| 853 | color: #FFA53C; |
| 854 | } |
| 855 | |
| 856 | .button__white:not(.hover__highlight) { |
| 857 | background: #ffffff; |
| 858 | color: #5b4e96; |
| 859 | border-color: #ffffff; |
| 860 | -webkit-transition-property: background, color, box-shadow, border; |
| 861 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 862 | transition-property: background, color, border, -webkit-box-shadow; |
| 863 | transition-property: background, color, box-shadow, border; |
| 864 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 865 | } |
| 866 | |
| 867 | .button__white:not(.hover__highlight):disabled { |
| 868 | cursor: not-allowed; |
| 869 | background: #FE504F; |
| 870 | border-color: #FE504F; |
| 871 | } |
| 872 | |
| 873 | .button__white:not(.hover__highlight) .icon { |
| 874 | color: #ffffff; |
| 875 | background: #5b4e96; |
| 876 | } |
| 877 | |
| 878 | .button__white.hover__highlight { |
| 879 | color: #ffffff; |
| 880 | border-color: transparent; |
| 881 | background: rgba(255, 255, 255, 0.1); |
| 882 | } |
| 883 | |
| 884 | .button__white.hover__highlight .icon { |
| 885 | background: #00CC76; |
| 886 | color: #ffffff; |
| 887 | } |
| 888 | |
| 889 | .button__white.hover__highlight:hover { |
| 890 | border-color: transparent; |
| 891 | } |
| 892 | |
| 893 | .button__white.button__shadow { |
| 894 | -webkit-box-shadow: 0 10px 10px rgba(255, 255, 255, 0.2); |
| 895 | box-shadow: 0 10px 10px rgba(255, 255, 255, 0.2); |
| 896 | } |
| 897 | |
| 898 | a.button__white.active, a.button__white:hover, |
| 899 | button.button__white.active, |
| 900 | button.button__white:hover { |
| 901 | background: #f2f2f2; |
| 902 | color: #5b4e96; |
| 903 | border-color: #f2f2f2; |
| 904 | } |
| 905 | |
| 906 | a.button__white.active:disabled, a.button__white:hover:disabled, |
| 907 | button.button__white.active:disabled, |
| 908 | button.button__white:hover:disabled { |
| 909 | cursor: not-allowed; |
| 910 | background: #FE504F; |
| 911 | -webkit-box-shadow: none; |
| 912 | box-shadow: none; |
| 913 | } |
| 914 | |
| 915 | a.button__white.hover__highlight:hover .icon, |
| 916 | button.button__white.hover__highlight:hover .icon { |
| 917 | background: #5b4e96; |
| 918 | color: #ffffff; |
| 919 | } |
| 920 | |
| 921 | .button__dark:not(.hover__highlight) { |
| 922 | background: #222222; |
| 923 | color: white; |
| 924 | border-color: #222222; |
| 925 | -webkit-transition-property: background, color, box-shadow, border; |
| 926 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 927 | transition-property: background, color, border, -webkit-box-shadow; |
| 928 | transition-property: background, color, box-shadow, border; |
| 929 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 930 | } |
| 931 | |
| 932 | .button__dark:not(.hover__highlight):disabled { |
| 933 | cursor: not-allowed; |
| 934 | background: #FE504F; |
| 935 | border-color: #FE504F; |
| 936 | } |
| 937 | |
| 938 | .button__dark:not(.hover__highlight) .icon { |
| 939 | color: #222222; |
| 940 | background: white; |
| 941 | } |
| 942 | |
| 943 | .button__dark.hover__highlight { |
| 944 | color: #222222; |
| 945 | border-color: transparent; |
| 946 | background: rgba(34, 34, 34, 0.1); |
| 947 | } |
| 948 | |
| 949 | .button__dark.hover__highlight .icon { |
| 950 | background: #00CC76; |
| 951 | color: #ffffff; |
| 952 | } |
| 953 | |
| 954 | .button__dark.hover__highlight:hover { |
| 955 | border-color: transparent; |
| 956 | } |
| 957 | |
| 958 | .button__dark.button__shadow { |
| 959 | -webkit-box-shadow: 0 10px 10px rgba(34, 34, 34, 0.2); |
| 960 | box-shadow: 0 10px 10px rgba(34, 34, 34, 0.2); |
| 961 | } |
| 962 | |
| 963 | a.button__dark.active, a.button__dark:hover, |
| 964 | button.button__dark.active, |
| 965 | button.button__dark:hover { |
| 966 | background: #151515; |
| 967 | color: white; |
| 968 | border-color: #151515; |
| 969 | } |
| 970 | |
| 971 | a.button__dark.active:disabled, a.button__dark:hover:disabled, |
| 972 | button.button__dark.active:disabled, |
| 973 | button.button__dark:hover:disabled { |
| 974 | cursor: not-allowed; |
| 975 | background: #FE504F; |
| 976 | -webkit-box-shadow: none; |
| 977 | box-shadow: none; |
| 978 | } |
| 979 | |
| 980 | a.button__dark.hover__highlight:hover .icon, |
| 981 | button.button__dark.hover__highlight:hover .icon { |
| 982 | background: white; |
| 983 | color: #222222; |
| 984 | } |
| 985 | |
| 986 | .button__grey:not(.hover__highlight) { |
| 987 | background: #7C8DB5; |
| 988 | color: white; |
| 989 | border-color: #7C8DB5; |
| 990 | -webkit-transition-property: background, color, box-shadow, border; |
| 991 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 992 | transition-property: background, color, border, -webkit-box-shadow; |
| 993 | transition-property: background, color, box-shadow, border; |
| 994 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 995 | } |
| 996 | |
| 997 | .button__grey:not(.hover__highlight):disabled { |
| 998 | cursor: not-allowed; |
| 999 | background: #FE504F; |
| 1000 | border-color: #FE504F; |
| 1001 | } |
| 1002 | |
| 1003 | .button__grey:not(.hover__highlight) .icon { |
| 1004 | color: #7C8DB5; |
| 1005 | background: white; |
| 1006 | } |
| 1007 | |
| 1008 | .button__grey.hover__highlight { |
| 1009 | color: #7C8DB5; |
| 1010 | border-color: transparent; |
| 1011 | background: rgba(124, 141, 181, 0.1); |
| 1012 | } |
| 1013 | |
| 1014 | .button__grey.hover__highlight .icon { |
| 1015 | background: #00CC76; |
| 1016 | color: #ffffff; |
| 1017 | } |
| 1018 | |
| 1019 | .button__grey.hover__highlight:hover { |
| 1020 | border-color: transparent; |
| 1021 | } |
| 1022 | |
| 1023 | .button__grey.button__shadow { |
| 1024 | -webkit-box-shadow: 0 10px 10px rgba(124, 141, 181, 0.2); |
| 1025 | box-shadow: 0 10px 10px rgba(124, 141, 181, 0.2); |
| 1026 | } |
| 1027 | |
| 1028 | a.button__grey.active, a.button__grey:hover, |
| 1029 | button.button__grey.active, |
| 1030 | button.button__grey:hover { |
| 1031 | background: #6c7fac; |
| 1032 | color: white; |
| 1033 | border-color: #6c7fac; |
| 1034 | } |
| 1035 | |
| 1036 | a.button__grey.active:disabled, a.button__grey:hover:disabled, |
| 1037 | button.button__grey.active:disabled, |
| 1038 | button.button__grey:hover:disabled { |
| 1039 | cursor: not-allowed; |
| 1040 | background: #FE504F; |
| 1041 | -webkit-box-shadow: none; |
| 1042 | box-shadow: none; |
| 1043 | } |
| 1044 | |
| 1045 | a.button__grey.hover__highlight:hover .icon, |
| 1046 | button.button__grey.hover__highlight:hover .icon { |
| 1047 | background: white; |
| 1048 | color: #7C8DB5; |
| 1049 | } |
| 1050 | |
| 1051 | .button__liteGrey:not(.hover__highlight) { |
| 1052 | background: #F5F7FD; |
| 1053 | color: #5b4e96; |
| 1054 | border-color: #F5F7FD; |
| 1055 | -webkit-transition-property: background, color, box-shadow, border; |
| 1056 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1057 | transition-property: background, color, border, -webkit-box-shadow; |
| 1058 | transition-property: background, color, box-shadow, border; |
| 1059 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1060 | } |
| 1061 | |
| 1062 | .button__liteGrey:not(.hover__highlight):disabled { |
| 1063 | cursor: not-allowed; |
| 1064 | background: #FE504F; |
| 1065 | border-color: #FE504F; |
| 1066 | } |
| 1067 | |
| 1068 | .button__liteGrey:not(.hover__highlight) .icon { |
| 1069 | color: #F5F7FD; |
| 1070 | background: #5b4e96; |
| 1071 | } |
| 1072 | |
| 1073 | .button__liteGrey.hover__highlight { |
| 1074 | color: #F5F7FD; |
| 1075 | border-color: transparent; |
| 1076 | background: rgba(245, 247, 253, 0.1); |
| 1077 | } |
| 1078 | |
| 1079 | .button__liteGrey.hover__highlight .icon { |
| 1080 | background: #00CC76; |
| 1081 | color: #ffffff; |
| 1082 | } |
| 1083 | |
| 1084 | .button__liteGrey.hover__highlight:hover { |
| 1085 | border-color: transparent; |
| 1086 | } |
| 1087 | |
| 1088 | .button__liteGrey.button__shadow { |
| 1089 | -webkit-box-shadow: 0 10px 10px rgba(245, 247, 253, 0.2); |
| 1090 | box-shadow: 0 10px 10px rgba(245, 247, 253, 0.2); |
| 1091 | } |
| 1092 | |
| 1093 | a.button__liteGrey.active, a.button__liteGrey:hover, |
| 1094 | button.button__liteGrey.active, |
| 1095 | button.button__liteGrey:hover { |
| 1096 | background: #e0e6f9; |
| 1097 | color: #5b4e96; |
| 1098 | border-color: #e0e6f9; |
| 1099 | } |
| 1100 | |
| 1101 | a.button__liteGrey.active:disabled, a.button__liteGrey:hover:disabled, |
| 1102 | button.button__liteGrey.active:disabled, |
| 1103 | button.button__liteGrey:hover:disabled { |
| 1104 | cursor: not-allowed; |
| 1105 | background: #FE504F; |
| 1106 | -webkit-box-shadow: none; |
| 1107 | box-shadow: none; |
| 1108 | } |
| 1109 | |
| 1110 | a.button__liteGrey.hover__highlight:hover .icon, |
| 1111 | button.button__liteGrey.hover__highlight:hover .icon { |
| 1112 | background: #5b4e96; |
| 1113 | color: #F5F7FD; |
| 1114 | } |
| 1115 | |
| 1116 | .button__black:not(.hover__highlight) { |
| 1117 | background: #000000; |
| 1118 | color: white; |
| 1119 | border-color: #000000; |
| 1120 | -webkit-transition-property: background, color, box-shadow, border; |
| 1121 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1122 | transition-property: background, color, border, -webkit-box-shadow; |
| 1123 | transition-property: background, color, box-shadow, border; |
| 1124 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1125 | } |
| 1126 | |
| 1127 | .button__black:not(.hover__highlight):disabled { |
| 1128 | cursor: not-allowed; |
| 1129 | background: #FE504F; |
| 1130 | border-color: #FE504F; |
| 1131 | } |
| 1132 | |
| 1133 | .button__black:not(.hover__highlight) .icon { |
| 1134 | color: #000000; |
| 1135 | background: white; |
| 1136 | } |
| 1137 | |
| 1138 | .button__black.hover__highlight { |
| 1139 | color: #000000; |
| 1140 | border-color: transparent; |
| 1141 | background: rgba(0, 0, 0, 0.1); |
| 1142 | } |
| 1143 | |
| 1144 | .button__black.hover__highlight .icon { |
| 1145 | background: #00CC76; |
| 1146 | color: #ffffff; |
| 1147 | } |
| 1148 | |
| 1149 | .button__black.hover__highlight:hover { |
| 1150 | border-color: transparent; |
| 1151 | } |
| 1152 | |
| 1153 | .button__black.button__shadow { |
| 1154 | -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); |
| 1155 | box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); |
| 1156 | } |
| 1157 | |
| 1158 | a.button__black.active:disabled, a.button__black:hover:disabled, |
| 1159 | button.button__black.active:disabled, |
| 1160 | button.button__black:hover:disabled { |
| 1161 | cursor: not-allowed; |
| 1162 | background: #FE504F; |
| 1163 | -webkit-box-shadow: none; |
| 1164 | box-shadow: none; |
| 1165 | } |
| 1166 | |
| 1167 | a.button__black.hover__highlight:hover .icon, |
| 1168 | button.button__black.hover__highlight:hover .icon { |
| 1169 | background: white; |
| 1170 | color: #000000; |
| 1171 | } |
| 1172 | |
| 1173 | .button__twitter:not(.hover__highlight) { |
| 1174 | background: #1da1f2; |
| 1175 | color: white; |
| 1176 | border-color: #1da1f2; |
| 1177 | -webkit-transition-property: background, color, box-shadow, border; |
| 1178 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1179 | transition-property: background, color, border, -webkit-box-shadow; |
| 1180 | transition-property: background, color, box-shadow, border; |
| 1181 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1182 | } |
| 1183 | |
| 1184 | .button__twitter:not(.hover__highlight):disabled { |
| 1185 | cursor: not-allowed; |
| 1186 | background: #FE504F; |
| 1187 | border-color: #FE504F; |
| 1188 | } |
| 1189 | |
| 1190 | .button__twitter:not(.hover__highlight) .icon { |
| 1191 | color: #1da1f2; |
| 1192 | background: white; |
| 1193 | } |
| 1194 | |
| 1195 | .button__twitter.hover__highlight { |
| 1196 | color: #1da1f2; |
| 1197 | border-color: transparent; |
| 1198 | background: rgba(29, 161, 242, 0.1); |
| 1199 | } |
| 1200 | |
| 1201 | .button__twitter.hover__highlight .icon { |
| 1202 | background: #00CC76; |
| 1203 | color: #ffffff; |
| 1204 | } |
| 1205 | |
| 1206 | .button__twitter.hover__highlight:hover { |
| 1207 | border-color: transparent; |
| 1208 | } |
| 1209 | |
| 1210 | .button__twitter.button__shadow { |
| 1211 | -webkit-box-shadow: 0 10px 10px rgba(29, 161, 242, 0.2); |
| 1212 | box-shadow: 0 10px 10px rgba(29, 161, 242, 0.2); |
| 1213 | } |
| 1214 | |
| 1215 | a.button__twitter.active, a.button__twitter:hover, |
| 1216 | button.button__twitter.active, |
| 1217 | button.button__twitter:hover { |
| 1218 | background: #0d95e8; |
| 1219 | color: white; |
| 1220 | border-color: #0d95e8; |
| 1221 | } |
| 1222 | |
| 1223 | a.button__twitter.active:disabled, a.button__twitter:hover:disabled, |
| 1224 | button.button__twitter.active:disabled, |
| 1225 | button.button__twitter:hover:disabled { |
| 1226 | cursor: not-allowed; |
| 1227 | background: #FE504F; |
| 1228 | -webkit-box-shadow: none; |
| 1229 | box-shadow: none; |
| 1230 | } |
| 1231 | |
| 1232 | a.button__twitter.hover__highlight:hover .icon, |
| 1233 | button.button__twitter.hover__highlight:hover .icon { |
| 1234 | background: white; |
| 1235 | color: #1da1f2; |
| 1236 | } |
| 1237 | |
| 1238 | .button__linkedin:not(.hover__highlight) { |
| 1239 | background: #0077b5; |
| 1240 | color: white; |
| 1241 | border-color: #0077b5; |
| 1242 | -webkit-transition-property: background, color, box-shadow, border; |
| 1243 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1244 | transition-property: background, color, border, -webkit-box-shadow; |
| 1245 | transition-property: background, color, box-shadow, border; |
| 1246 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1247 | } |
| 1248 | |
| 1249 | .button__linkedin:not(.hover__highlight):disabled { |
| 1250 | cursor: not-allowed; |
| 1251 | background: #FE504F; |
| 1252 | border-color: #FE504F; |
| 1253 | } |
| 1254 | |
| 1255 | .button__linkedin:not(.hover__highlight) .icon { |
| 1256 | color: #0077b5; |
| 1257 | background: white; |
| 1258 | } |
| 1259 | |
| 1260 | .button__linkedin.hover__highlight { |
| 1261 | color: #0077b5; |
| 1262 | border-color: transparent; |
| 1263 | background: rgba(0, 119, 181, 0.1); |
| 1264 | } |
| 1265 | |
| 1266 | .button__linkedin.hover__highlight .icon { |
| 1267 | background: #00CC76; |
| 1268 | color: #ffffff; |
| 1269 | } |
| 1270 | |
| 1271 | .button__linkedin.hover__highlight:hover { |
| 1272 | border-color: transparent; |
| 1273 | } |
| 1274 | |
| 1275 | .button__linkedin.button__shadow { |
| 1276 | -webkit-box-shadow: 0 10px 10px rgba(0, 119, 181, 0.2); |
| 1277 | box-shadow: 0 10px 10px rgba(0, 119, 181, 0.2); |
| 1278 | } |
| 1279 | |
| 1280 | a.button__linkedin.active, a.button__linkedin:hover, |
| 1281 | button.button__linkedin.active, |
| 1282 | button.button__linkedin:hover { |
| 1283 | background: #00669c; |
| 1284 | color: white; |
| 1285 | border-color: #00669c; |
| 1286 | } |
| 1287 | |
| 1288 | a.button__linkedin.active:disabled, a.button__linkedin:hover:disabled, |
| 1289 | button.button__linkedin.active:disabled, |
| 1290 | button.button__linkedin:hover:disabled { |
| 1291 | cursor: not-allowed; |
| 1292 | background: #FE504F; |
| 1293 | -webkit-box-shadow: none; |
| 1294 | box-shadow: none; |
| 1295 | } |
| 1296 | |
| 1297 | a.button__linkedin.hover__highlight:hover .icon, |
| 1298 | button.button__linkedin.hover__highlight:hover .icon { |
| 1299 | background: white; |
| 1300 | color: #0077b5; |
| 1301 | } |
| 1302 | |
| 1303 | .button__instagram:not(.hover__highlight) { |
| 1304 | background: #e1306c; |
| 1305 | color: white; |
| 1306 | border-color: #e1306c; |
| 1307 | -webkit-transition-property: background, color, box-shadow, border; |
| 1308 | -webkit-transition-property: background, color, border, -webkit-box-shadow; |
| 1309 | transition-property: background, color, border, -webkit-box-shadow; |
| 1310 | transition-property: background, color, box-shadow, border; |
| 1311 | transition-property: background, color, box-shadow, border, -webkit-box-shadow; |
| 1312 | } |
| 1313 | |
| 1314 | .button__instagram:not(.hover__highlight):disabled { |
| 1315 | cursor: not-allowed; |
| 1316 | background: #FE504F; |
| 1317 | border-color: #FE504F; |
| 1318 | } |
| 1319 | |
| 1320 | .button__instagram:not(.hover__highlight) .icon { |
| 1321 | color: #e1306c; |
| 1322 | background: white; |
| 1323 | } |
| 1324 | |
| 1325 | .button__instagram.hover__highlight { |
| 1326 | color: #e1306c; |
| 1327 | border-color: transparent; |
| 1328 | background: rgba(225, 48, 108, 0.1); |
| 1329 | } |
| 1330 | |
| 1331 | .button__instagram.hover__highlight .icon { |
| 1332 | background: #00CC76; |
| 1333 | color: #ffffff; |
| 1334 | } |
| 1335 | |
| 1336 | .button__instagram.hover__highlight:hover { |
| 1337 | border-color: transparent; |
| 1338 | } |
| 1339 | |
| 1340 | .button__instagram.button__shadow { |
| 1341 | -webkit-box-shadow: 0 10px 10px rgba(225, 48, 108, 0.2); |
| 1342 | box-shadow: 0 10px 10px rgba(225, 48, 108, 0.2); |
| 1343 | } |
| 1344 | |
| 1345 | a.button__instagram.active, a.button__instagram:hover, |
| 1346 | button.button__instagram.active, |
| 1347 | button.button__instagram:hover { |
| 1348 | background: #d81f5e; |
| 1349 | color: white; |
| 1350 | border-color: #d81f5e; |
| 1351 | } |
| 1352 | |
| 1353 | a.button__instagram.active:disabled, a.button__instagram:hover:disabled, |
| 1354 | button.button__instagram.active:disabled, |
| 1355 | button.button__instagram:hover:disabled { |
| 1356 | cursor: not-allowed; |
| 1357 | background: #FE504F; |
| 1358 | -webkit-box-shadow: none; |
| 1359 | box-shadow: none; |
| 1360 | } |
| 1361 | |
| 1362 | a.button__instagram.hover__highlight:hover .icon, |
| 1363 | button.button__instagram.hover__highlight:hover .icon { |
| 1364 | background: white; |
| 1365 | color: #e1306c; |
| 1366 | } |
| 1367 | |
| 1368 | .template__wrapper .button { |
| 1369 | text-align: center; |
| 1370 | padding: 16px 30px; |
| 1371 | line-height: 1; |
| 1372 | color: #5B4E96; |
| 1373 | background: rgba(91, 78, 150, 0.1); |
| 1374 | border: 1px solid rgba(91, 78, 150, 0.1); |
| 1375 | font-size: 16px; |
| 1376 | font-weight: 500; |
| 1377 | font-family: "DM Sans", sans-serif; |
| 1378 | cursor: pointer; |
| 1379 | -webkit-transition: all 0.3s ease-in-out 0s; |
| 1380 | transition: all 0.3s ease-in-out 0s; |
| 1381 | } |
| 1382 | |
| 1383 | @media (max-width: 767px) { |
| 1384 | .template__wrapper .button { |
| 1385 | padding: 16px 25px; |
| 1386 | } |
| 1387 | } |
| 1388 | |
| 1389 | .template__wrapper .button:hover { |
| 1390 | background: #5B4E96; |
| 1391 | color: #ffffff; |
| 1392 | border-color: #5B4E96; |
| 1393 | } |
| 1394 | |
| 1395 | .template__wrapper .button:focus { |
| 1396 | outline: none; |
| 1397 | -webkit-box-shadow: none; |
| 1398 | box-shadow: none; |
| 1399 | border-color: #5B4E96; |
| 1400 | } |
| 1401 | |
| 1402 | .template__wrapper .button.button__white { |
| 1403 | background: #ffffff; |
| 1404 | color: #5B4E96; |
| 1405 | border-color: transparent; |
| 1406 | } |
| 1407 | |
| 1408 | .template__wrapper .button.button__white:hover { |
| 1409 | color: #5B4E96; |
| 1410 | background: #f2f2f2; |
| 1411 | } |
| 1412 | |
| 1413 | .template__wrapper .button .ss-icon { |
| 1414 | font-size: 14px; |
| 1415 | margin-right: 5px; |
| 1416 | } |
| 1417 | |
| 1418 | .template__wrapper .button--lg { |
| 1419 | padding: 20px 30px; |
| 1420 | } |
| 1421 | |
| 1422 | .template__wrapper .button__flex { |
| 1423 | display: -webkit-inline-box; |
| 1424 | display: -ms-inline-flexbox; |
| 1425 | display: inline-flex; |
| 1426 | -webkit-box-align: center; |
| 1427 | -ms-flex-align: center; |
| 1428 | align-items: center; |
| 1429 | } |
| 1430 | |
| 1431 | .button__group .button { |
| 1432 | margin-right: 13px; |
| 1433 | margin-bottom: 15px; |
| 1434 | } |
| 1435 | |
| 1436 | .button__group .button:last-child { |
| 1437 | margin-right: 0; |
| 1438 | } |
| 1439 | |
| 1440 | .template__wrapper .radius-10 { |
| 1441 | border-radius: 10px; |
| 1442 | } |
| 1443 | |
| 1444 | .template__wrapper .radius-12 { |
| 1445 | border-radius: 12px; |
| 1446 | } |
| 1447 | |
| 1448 | .template__wrapper .radius-20 { |
| 1449 | border-radius: 20px; |
| 1450 | } |
| 1451 | |
| 1452 | .template__wrapper .radius-25 { |
| 1453 | border-radius: 25px; |
| 1454 | } |
| 1455 | |
| 1456 | .template__wrapper .radius-50 { |
| 1457 | border-radius: 50px; |
| 1458 | } |
| 1459 | |
| 1460 | .template__wrapper { |
| 1461 | overflow: hidden; |
| 1462 | min-height: 100vh; |
| 1463 | -webkit-display: flex; |
| 1464 | -moz-display: flex; |
| 1465 | -ms-display: flex; |
| 1466 | -o-display: flex; |
| 1467 | display: -webkit-box; |
| 1468 | display: flex; |
| 1469 | -moz-flex-direction: column; |
| 1470 | -ms-flex-direction: column; |
| 1471 | -o-flex-direction: column; |
| 1472 | -webkit-box-orient: vertical; |
| 1473 | -webkit-box-direction: normal; |
| 1474 | flex-direction: column; |
| 1475 | } |
| 1476 | |
| 1477 | @media (max-width: 991px) { |
| 1478 | .template__wrapper.p30 { |
| 1479 | padding: 15px; |
| 1480 | } |
| 1481 | } |
| 1482 | |
| 1483 | .embedpress__container { |
| 1484 | width: 100%; |
| 1485 | margin: 0 auto; |
| 1486 | max-width: 1700px; |
| 1487 | } |
| 1488 | |
| 1489 | .o-hidden { |
| 1490 | overflow: hidden; |
| 1491 | } |
| 1492 | |
| 1493 | .text-center { |
| 1494 | text-align: center; |
| 1495 | } |
| 1496 | |
| 1497 | .h-100 { |
| 1498 | height: 100%; |
| 1499 | } |
| 1500 | |
| 1501 | .embedpress-body { |
| 1502 | display: -webkit-box; |
| 1503 | display: -ms-flexbox; |
| 1504 | display: flex; |
| 1505 | } |
| 1506 | |
| 1507 | @media (max-width: 991px) { |
| 1508 | .embedpress-body { |
| 1509 | display: block; |
| 1510 | } |
| 1511 | } |
| 1512 | |
| 1513 | .embedpress-body .embedpress-sidebar { |
| 1514 | -webkit-box-flex: 0; |
| 1515 | -ms-flex: 0 0 220px; |
| 1516 | flex: 0 0 220px; |
| 1517 | min-width: 220px; |
| 1518 | margin-right: 30px; |
| 1519 | } |
| 1520 | |
| 1521 | @media (max-width: 991px) { |
| 1522 | .embedpress-body .embedpress-sidebar { |
| 1523 | display: inline-block; |
| 1524 | width: 50px; |
| 1525 | min-width: 50px; |
| 1526 | margin-right: 0; |
| 1527 | } |
| 1528 | } |
| 1529 | |
| 1530 | .embedpress-body .embedpress-content { |
| 1531 | -webkit-box-flex: 1; |
| 1532 | -ms-flex-positive: 1; |
| 1533 | flex-grow: 1; |
| 1534 | } |
| 1535 | |
| 1536 | .embedpress__row { |
| 1537 | display: -ms-grid; |
| 1538 | display: grid; |
| 1539 | gap: 30px; |
| 1540 | } |
| 1541 | |
| 1542 | .embedpress__row.grid__3 { |
| 1543 | -ms-grid-columns: (1fr)[3]; |
| 1544 | grid-template-columns: repeat(3, 1fr); |
| 1545 | } |
| 1546 | |
| 1547 | @media (max-width: 1199px) { |
| 1548 | .embedpress__row.grid__3 { |
| 1549 | -ms-grid-columns: (1fr)[2]; |
| 1550 | grid-template-columns: repeat(2, 1fr); |
| 1551 | } |
| 1552 | } |
| 1553 | |
| 1554 | @media (max-width: 575px) { |
| 1555 | .embedpress__row.grid__3 { |
| 1556 | -ms-grid-columns: (1fr)[1]; |
| 1557 | grid-template-columns: repeat(1, 1fr); |
| 1558 | } |
| 1559 | } |
| 1560 | |
| 1561 | .embedpress__row.grid__4 { |
| 1562 | -ms-grid-columns: (1fr)[4]; |
| 1563 | grid-template-columns: repeat(4, 1fr); |
| 1564 | } |
| 1565 | |
| 1566 | @media (max-width: 1199px) { |
| 1567 | .embedpress__row.grid__4 { |
| 1568 | -ms-grid-columns: (1fr)[3]; |
| 1569 | grid-template-columns: repeat(3, 1fr); |
| 1570 | } |
| 1571 | } |
| 1572 | |
| 1573 | .embedpress__notification { |
| 1574 | position: fixed; |
| 1575 | bottom: 50px; |
| 1576 | right: 50px; |
| 1577 | padding: 15px 25px; |
| 1578 | border-radius: 10px; |
| 1579 | max-width: 400px; |
| 1580 | z-index: 9999; |
| 1581 | } |
| 1582 | |
| 1583 | .embedpress__notification--success { |
| 1584 | background: #00CC76; |
| 1585 | } |
| 1586 | |
| 1587 | .embedpress__notification--error { |
| 1588 | background-color: #FE504F; |
| 1589 | } |
| 1590 | |
| 1591 | .embedpress__notification p { |
| 1592 | color: #ffffff; |
| 1593 | font-size: 14px; |
| 1594 | } |
| 1595 | |
| 1596 | #wpcontent { |
| 1597 | padding-left: 0; |
| 1598 | } |
| 1599 | |
| 1600 | @media all and (max-width: 782px) { |
| 1601 | .auto-fold #wpcontent { |
| 1602 | padding-left: 0; |
| 1603 | } |
| 1604 | } |
| 1605 | |
| 1606 | @media (max-width: 1199px) { |
| 1607 | .p50, .p40 { |
| 1608 | padding: 25px; |
| 1609 | } |
| 1610 | } |
| 1611 | |
| 1612 | .embedpress-header { |
| 1613 | padding-bottom: 25px; |
| 1614 | display: flex; |
| 1615 | justify-content: space-between; |
| 1616 | align-items: center; |
| 1617 | } |
| 1618 | |
| 1619 | .embedpress-sidebar { |
| 1620 | padding: 10px; |
| 1621 | background: #ffffff; |
| 1622 | border-radius: 25px; |
| 1623 | position: relative; |
| 1624 | } |
| 1625 | .embedpress-version-wrapper li { |
| 1626 | font-size: 14px; |
| 1627 | font-weight: 800; |
| 1628 | color: #7C8DB5; |
| 1629 | text-align: right; |
| 1630 | } |
| 1631 | |
| 1632 | @media all and (max-width: 767px) { |
| 1633 | .embedpress-version-wrapper li { |
| 1634 | font-size: 14px; |
| 1635 | } |
| 1636 | } |
| 1637 | |
| 1638 | |
| 1639 | @media all and (max-width: 575px) { |
| 1640 | .embedpress-header { |
| 1641 | display: block; |
| 1642 | } |
| 1643 | .embedpress-header .embedpress-version-wrapper { |
| 1644 | margin-top: 10px; |
| 1645 | } |
| 1646 | .embedpress-version-wrapper li { |
| 1647 | text-align: left; |
| 1648 | } |
| 1649 | } |
| 1650 | |
| 1651 | @media (max-width: 991px) { |
| 1652 | .embedpress-sidebar { |
| 1653 | padding: 0; |
| 1654 | border-radius: 5px; |
| 1655 | margin-bottom: 30px; |
| 1656 | } |
| 1657 | } |
| 1658 | |
| 1659 | .embedpress-sidebar .sidebar__toggler { |
| 1660 | display: none; |
| 1661 | } |
| 1662 | |
| 1663 | @media (max-width: 991px) { |
| 1664 | .embedpress-sidebar .sidebar__toggler { |
| 1665 | display: block; |
| 1666 | font-size: 24px; |
| 1667 | padding: 5px 10px; |
| 1668 | text-align: center; |
| 1669 | } |
| 1670 | } |
| 1671 | |
| 1672 | @media (max-width: 991px) { |
| 1673 | .embedpress-sidebar .sidebar__menu { |
| 1674 | display: none; |
| 1675 | position: absolute; |
| 1676 | top: calc(100% + 10px); |
| 1677 | z-index: 90; |
| 1678 | left: 0; |
| 1679 | background: #ffffff; |
| 1680 | min-width: 220px; |
| 1681 | border-radius: 10px; |
| 1682 | padding: 10px; |
| 1683 | -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2); |
| 1684 | box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.2); |
| 1685 | } |
| 1686 | } |
| 1687 | |
| 1688 | .embedpress-sidebar .sidebar__menu .sidebar__item:not(:last-child) { |
| 1689 | margin-bottom: 10px; |
| 1690 | } |
| 1691 | |
| 1692 | .embedpress-sidebar .sidebar__menu .sidebar__item:hover .sidebar__link { |
| 1693 | background: #5B4E96; |
| 1694 | color: #ffffff; |
| 1695 | } |
| 1696 | |
| 1697 | .embedpress-sidebar .sidebar__menu .sidebar__item.show .sidebar__link { |
| 1698 | background: #5B4E96; |
| 1699 | color: #ffffff; |
| 1700 | } |
| 1701 | |
| 1702 | .embedpress-sidebar .sidebar__menu .sidebar__item.show .sidebar__link--toggler:before { |
| 1703 | -webkit-transform: rotate(180deg); |
| 1704 | transform: rotate(180deg); |
| 1705 | } |
| 1706 | |
| 1707 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link { |
| 1708 | padding: 12px 20px; |
| 1709 | width: 100%; |
| 1710 | font-size: 16px; |
| 1711 | font-weight: 500; |
| 1712 | color: #25396F; |
| 1713 | border-radius: 15px; |
| 1714 | position: relative; |
| 1715 | } |
| 1716 | |
| 1717 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link--toggler:before { |
| 1718 | content: '\e906'; |
| 1719 | font-family: icomoon; |
| 1720 | position: absolute; |
| 1721 | top: 18px; |
| 1722 | right: 15px; |
| 1723 | font-size: 10px; |
| 1724 | -webkit-transition: rotate .3s ease; |
| 1725 | transition: rotate .3s ease; |
| 1726 | } |
| 1727 | |
| 1728 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link.active + .dropdown__menu { |
| 1729 | display: block; |
| 1730 | } |
| 1731 | |
| 1732 | .embedpress-sidebar .sidebar__menu .sidebar__item .sidebar__link span { |
| 1733 | display: inline-block; |
| 1734 | margin-right: 10px; |
| 1735 | width: 20px; |
| 1736 | text-align: center; |
| 1737 | } |
| 1738 | |
| 1739 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu { |
| 1740 | margin-left: 35px; |
| 1741 | display: none; |
| 1742 | } |
| 1743 | |
| 1744 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item:not(:last-child) { |
| 1745 | margin-bottom: 5px; |
| 1746 | } |
| 1747 | |
| 1748 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link { |
| 1749 | padding: 5px; |
| 1750 | /* display: block; */ |
| 1751 | font-size: 16px; |
| 1752 | font-weight: 400; |
| 1753 | color: #7C8DB5; |
| 1754 | display: flex; |
| 1755 | } |
| 1756 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link img { |
| 1757 | max-width: 16px; |
| 1758 | margin-right: 7px; |
| 1759 | } |
| 1760 | |
| 1761 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link:hover { |
| 1762 | color: #5B4E96; |
| 1763 | } |
| 1764 | |
| 1765 | .embedpress-sidebar .sidebar__menu .sidebar__item .dropdown__menu .dropdown__item .dropdown__link.active { |
| 1766 | color: #5B4E96; |
| 1767 | font-weight: 500; |
| 1768 | } |
| 1769 | |
| 1770 | .embedpress-tab .nav__menu ul { |
| 1771 | display: -webkit-box; |
| 1772 | display: -ms-flexbox; |
| 1773 | display: flex; |
| 1774 | } |
| 1775 | |
| 1776 | .embedpress-tab .nav__menu ul.menu__grow .nav__item { |
| 1777 | -webkit-box-flex: 1; |
| 1778 | -ms-flex-positive: 1; |
| 1779 | flex-grow: 1; |
| 1780 | text-align: center; |
| 1781 | } |
| 1782 | |
| 1783 | .embedpress-tab .nav__menu ul.menu__grow .nav__item span { |
| 1784 | width: 100%; |
| 1785 | } |
| 1786 | |
| 1787 | @media (max-width: 767px) { |
| 1788 | .embedpress-tab .nav__menu ul.menu__grow .nav__item span { |
| 1789 | padding: 10px; |
| 1790 | } |
| 1791 | } |
| 1792 | |
| 1793 | @media (max-width: 479px) { |
| 1794 | .embedpress-tab .nav__menu ul:not(.menu__grow) { |
| 1795 | display: block; |
| 1796 | } |
| 1797 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item:not(:last-child) { |
| 1798 | margin-right: 0; |
| 1799 | } |
| 1800 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item:first-child span { |
| 1801 | border-top-right-radius: 10px; |
| 1802 | } |
| 1803 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item:last-child span { |
| 1804 | border-top-right-radius: 0; |
| 1805 | } |
| 1806 | } |
| 1807 | |
| 1808 | @media (max-width: 479px) and (max-width: 479px) { |
| 1809 | .embedpress-tab .nav__menu ul:not(.menu__grow) .nav__item span { |
| 1810 | width: 100%; |
| 1811 | } |
| 1812 | } |
| 1813 | |
| 1814 | .embedpress-tab .nav__menu ul .nav__item { |
| 1815 | margin-bottom: 5px; |
| 1816 | font-size: 20px; |
| 1817 | font-weight: 400; |
| 1818 | color: #5B4E96; |
| 1819 | display: -webkit-box; |
| 1820 | display: -ms-flexbox; |
| 1821 | display: flex; |
| 1822 | -webkit-box-pack: center; |
| 1823 | -ms-flex-pack: center; |
| 1824 | justify-content: center; |
| 1825 | -webkit-box-align: center; |
| 1826 | -ms-flex-align: center; |
| 1827 | align-items: center; |
| 1828 | } |
| 1829 | |
| 1830 | @media (max-width: 767px) { |
| 1831 | .embedpress-tab .nav__menu ul .nav__item { |
| 1832 | font-size: 16px; |
| 1833 | } |
| 1834 | } |
| 1835 | |
| 1836 | @media (max-width: 575px) { |
| 1837 | .embedpress-tab .nav__menu ul .nav__item { |
| 1838 | font-size: 14px; |
| 1839 | } |
| 1840 | } |
| 1841 | |
| 1842 | .embedpress-tab .nav__menu ul .nav__item i { |
| 1843 | margin-right: 10px; |
| 1844 | } |
| 1845 | |
| 1846 | .embedpress-tab .nav__menu ul .nav__item.active span { |
| 1847 | background: #5B4E96; |
| 1848 | color: #ffffff; |
| 1849 | } |
| 1850 | |
| 1851 | .embedpress-tab .nav__menu ul .nav__item span { |
| 1852 | padding: 16px 20px; |
| 1853 | cursor: pointer; |
| 1854 | background: #ffffff; |
| 1855 | } |
| 1856 | |
| 1857 | .embedpress-tab .nav__menu ul .nav__item:not(:last-child) { |
| 1858 | margin-right: 5px; |
| 1859 | } |
| 1860 | |
| 1861 | .embedpress-tab .nav__menu ul .nav__item:first-child span { |
| 1862 | border-top-left-radius: 10px; |
| 1863 | } |
| 1864 | |
| 1865 | .embedpress-tab .nav__menu ul .nav__item:last-child span { |
| 1866 | border-top-right-radius: 10px; |
| 1867 | } |
| 1868 | |
| 1869 | .embedpress-tab .tab__item { |
| 1870 | display: none; |
| 1871 | border-radius: 20px; |
| 1872 | border-top-left-radius: 0; |
| 1873 | overflow: hidden; |
| 1874 | } |
| 1875 | |
| 1876 | .embedpress-tab .tab__item.active { |
| 1877 | display: block; |
| 1878 | } |
| 1879 | |
| 1880 | .embedpress__settings { |
| 1881 | min-height: 100%; |
| 1882 | } |
| 1883 | |
| 1884 | .upgrade__card + .embedpress__settings { |
| 1885 | min-height: auto; |
| 1886 | } |
| 1887 | |
| 1888 | .embedpress__settings h3 { |
| 1889 | font-size: 30px; |
| 1890 | font-weight: 700; |
| 1891 | color: #131F4D; |
| 1892 | margin-bottom: 25px; |
| 1893 | } |
| 1894 | |
| 1895 | @media (max-width: 767px) { |
| 1896 | .embedpress__settings h3 { |
| 1897 | font-size: 24px; |
| 1898 | } |
| 1899 | } |
| 1900 | |
| 1901 | @media (max-width: 575px) { |
| 1902 | .embedpress__settings h3 { |
| 1903 | font-size: 20px; |
| 1904 | } |
| 1905 | } |
| 1906 | |
| 1907 | .template__wrapper input:focus, |
| 1908 | .template__wrapper select:focus { |
| 1909 | border-color: #E6EFFB; |
| 1910 | -webkit-box-shadow: none; |
| 1911 | box-shadow: none; |
| 1912 | outline: none; |
| 1913 | } |
| 1914 | |
| 1915 | .template__wrapper .form__control { |
| 1916 | height: 40px; |
| 1917 | padding: 0 20px; |
| 1918 | border-radius: 5px; |
| 1919 | background: #ffffff; |
| 1920 | border: 1px solid #E6EFFB; |
| 1921 | color: #25396F; |
| 1922 | width: 100%; |
| 1923 | outline: none; |
| 1924 | -webkit-box-shadow: none; |
| 1925 | box-shadow: none; |
| 1926 | } |
| 1927 | |
| 1928 | .template__wrapper .form__control::-webkit-input-placeholder { |
| 1929 | color: #25396F; |
| 1930 | } |
| 1931 | |
| 1932 | .template__wrapper .form__control:-moz-placeholder { |
| 1933 | color: #25396F; |
| 1934 | } |
| 1935 | |
| 1936 | .template__wrapper .form__control::-moz-placeholder { |
| 1937 | color: #25396F; |
| 1938 | } |
| 1939 | |
| 1940 | .template__wrapper .form__control:-ms-input-placeholder { |
| 1941 | color: #25396F; |
| 1942 | } |
| 1943 | |
| 1944 | .template__wrapper textarea.form__control { |
| 1945 | height: 120px; |
| 1946 | padding-top: 15px; |
| 1947 | } |
| 1948 | |
| 1949 | .template__wrapper .embedpress__select select[disabled] { |
| 1950 | background-image: none; |
| 1951 | } |
| 1952 | |
| 1953 | .template__wrapper label { |
| 1954 | font-size: 16px; |
| 1955 | font-weight: 400; |
| 1956 | color: #7C8DB5; |
| 1957 | margin-bottom: 8px; |
| 1958 | } |
| 1959 | |
| 1960 | .embedpress__select { |
| 1961 | position: relative; |
| 1962 | } |
| 1963 | |
| 1964 | .embedpress__select span { |
| 1965 | position: absolute; |
| 1966 | top: 12px; |
| 1967 | right: 15px; |
| 1968 | font-size: 12px; |
| 1969 | color: #25396F; |
| 1970 | pointer-events: none; |
| 1971 | } |
| 1972 | |
| 1973 | .embedpress__select select { |
| 1974 | height: 40px; |
| 1975 | padding: 0 20px; |
| 1976 | border-radius: 5px; |
| 1977 | background: #ffffff; |
| 1978 | border: 1px solid #E6EFFB; |
| 1979 | color: #25396F; |
| 1980 | width: 100%; |
| 1981 | -webkit-appearance: none; |
| 1982 | -moz-appearance: none; |
| 1983 | appearance: none; |
| 1984 | } |
| 1985 | |
| 1986 | .input__radio { |
| 1987 | position: relative; |
| 1988 | padding-left: 25px; |
| 1989 | } |
| 1990 | |
| 1991 | .input__radio input { |
| 1992 | display: none; |
| 1993 | } |
| 1994 | |
| 1995 | .input__radio input:checked ~ span:after { |
| 1996 | opacity: 1; |
| 1997 | } |
| 1998 | |
| 1999 | .input__radio span { |
| 2000 | cursor: pointer; |
| 2001 | } |
| 2002 | |
| 2003 | .input__radio span:before { |
| 2004 | position: absolute; |
| 2005 | top: 5px; |
| 2006 | left: 0; |
| 2007 | height: 16px; |
| 2008 | width: 16px; |
| 2009 | border-radius: 50%; |
| 2010 | border: 1px solid rgba(91, 78, 150, 0.1); |
| 2011 | content: ''; |
| 2012 | } |
| 2013 | |
| 2014 | .input__radio span:after { |
| 2015 | position: absolute; |
| 2016 | top: 8px; |
| 2017 | left: 3px; |
| 2018 | height: 12px; |
| 2019 | width: 12px; |
| 2020 | border-radius: 50%; |
| 2021 | background: #5B4E96; |
| 2022 | content: ''; |
| 2023 | opacity: 0; |
| 2024 | } |
| 2025 | |
| 2026 | .template__wrapper .input__switch { |
| 2027 | font-size: 0; |
| 2028 | cursor: pointer; |
| 2029 | } |
| 2030 | |
| 2031 | .template__wrapper .input__switch input { |
| 2032 | display: none; |
| 2033 | } |
| 2034 | |
| 2035 | .template__wrapper .input__switch input:checked ~ span { |
| 2036 | background: #5B4E96; |
| 2037 | } |
| 2038 | |
| 2039 | .template__wrapper .input__switch input:checked ~ span:before { |
| 2040 | left: 15px; |
| 2041 | } |
| 2042 | |
| 2043 | .template__wrapper .input__switch span { |
| 2044 | height: 17px; |
| 2045 | width: 30px; |
| 2046 | background: rgba(91, 78, 150, 0.3); |
| 2047 | display: inline-block; |
| 2048 | border-radius: 15px; |
| 2049 | position: relative; |
| 2050 | -webkit-transition: all .3s ease; |
| 2051 | transition: all .3s ease; |
| 2052 | } |
| 2053 | |
| 2054 | .template__wrapper .input__switch span:before { |
| 2055 | position: absolute; |
| 2056 | top: 2px; |
| 2057 | left: 2px; |
| 2058 | height: 13px; |
| 2059 | width: 13px; |
| 2060 | border-radius: 50%; |
| 2061 | background: #ffffff; |
| 2062 | content: ''; |
| 2063 | -webkit-transition: all .3s ease; |
| 2064 | transition: all .3s ease; |
| 2065 | } |
| 2066 | |
| 2067 | .template__wrapper .input__switch.switch__text { |
| 2068 | border: 1px solid #E6EFFB; |
| 2069 | display: inline-block; |
| 2070 | padding: 10px 50px; |
| 2071 | border-radius: 5px; |
| 2072 | position: relative; |
| 2073 | } |
| 2074 | |
| 2075 | .template__wrapper .input__switch.switch__text:before, .template__wrapper .input__switch.switch__text:after { |
| 2076 | font-size: 14px; |
| 2077 | font-weight: 400; |
| 2078 | color: #25396F; |
| 2079 | position: absolute; |
| 2080 | top: 7px; |
| 2081 | } |
| 2082 | |
| 2083 | .template__wrapper .input__switch.switch__text:before { |
| 2084 | content: 'OFF'; |
| 2085 | left: 10px; |
| 2086 | } |
| 2087 | |
| 2088 | .template__wrapper .input__switch.switch__text:after { |
| 2089 | content: 'ON'; |
| 2090 | right: 10px; |
| 2091 | } |
| 2092 | |
| 2093 | .input__file { |
| 2094 | display: block; |
| 2095 | border: 1px solid #E6EFFB; |
| 2096 | padding: 5px 20px; |
| 2097 | border-radius: 5px; |
| 2098 | cursor: pointer; |
| 2099 | } |
| 2100 | |
| 2101 | .input__file .form__control { |
| 2102 | display: none; |
| 2103 | } |
| 2104 | |
| 2105 | .form__group { |
| 2106 | margin-bottom: 25px; |
| 2107 | } |
| 2108 | |
| 2109 | .form__group.mb0 { |
| 2110 | margin-bottom: 0; |
| 2111 | } |
| 2112 | |
| 2113 | .iframe__size__control__form .form__group { |
| 2114 | display: -webkit-box; |
| 2115 | display: -ms-flexbox; |
| 2116 | display: flex; |
| 2117 | -webkit-box-align: center; |
| 2118 | -ms-flex-align: center; |
| 2119 | align-items: center; |
| 2120 | } |
| 2121 | |
| 2122 | @media (max-width: 575px) { |
| 2123 | .iframe__size__control__form .form__group { |
| 2124 | display: block; |
| 2125 | } |
| 2126 | } |
| 2127 | |
| 2128 | .iframe__size__control__form .form__group:last-child { |
| 2129 | margin-bottom: 0; |
| 2130 | } |
| 2131 | |
| 2132 | .iframe__size__control__form .form__group label { |
| 2133 | -webkit-box-flex: 0; |
| 2134 | -ms-flex: 0 0 240px; |
| 2135 | flex: 0 0 240px; |
| 2136 | margin-bottom: 0; |
| 2137 | } |
| 2138 | |
| 2139 | @media (max-width: 575px) { |
| 2140 | .iframe__size__control__form .form__group label { |
| 2141 | margin-bottom: 10px; |
| 2142 | font-weight: 700; |
| 2143 | margin-right: 15px; |
| 2144 | } |
| 2145 | .iframe__size__control__form .form__group label:after { |
| 2146 | content: ':'; |
| 2147 | } |
| 2148 | } |
| 2149 | |
| 2150 | @media (max-width: 479px) { |
| 2151 | .iframe__size__control__form .form__group label { |
| 2152 | display: block; |
| 2153 | } |
| 2154 | } |
| 2155 | |
| 2156 | .iframe__size__control__form .form__group .form__control { |
| 2157 | width: 80px; |
| 2158 | padding: 0 15px; |
| 2159 | margin-right: 20px; |
| 2160 | } |
| 2161 | |
| 2162 | .iframe__size__control__form .form__group .frame__unit { |
| 2163 | font-size: 16px; |
| 2164 | font-weight: 400; |
| 2165 | color: #7C8DB5; |
| 2166 | } |
| 2167 | |
| 2168 | .iframe__size__control__wrap { |
| 2169 | -webkit-box-flex: 0; |
| 2170 | -ms-flex: 0 0 40%; |
| 2171 | flex: 0 0 40%; |
| 2172 | } |
| 2173 | |
| 2174 | .iframe__size__control__wrap h3 { |
| 2175 | font-size: 30px; |
| 2176 | font-weight: 700; |
| 2177 | color: #131F4D; |
| 2178 | margin-bottom: 25px; |
| 2179 | } |
| 2180 | |
| 2181 | @media (max-width: 767px) { |
| 2182 | .iframe__size__control__wrap h3 { |
| 2183 | font-size: 24px; |
| 2184 | } |
| 2185 | } |
| 2186 | |
| 2187 | @media (max-width: 575px) { |
| 2188 | .iframe__size__control__wrap h3 { |
| 2189 | font-size: 20px; |
| 2190 | } |
| 2191 | } |
| 2192 | |
| 2193 | .embedpress__settings__form .form__group { |
| 2194 | display: -webkit-box; |
| 2195 | display: -ms-flexbox; |
| 2196 | display: flex; |
| 2197 | -webkit-box-align: start; |
| 2198 | -ms-flex-align: start; |
| 2199 | align-items: flex-start; |
| 2200 | } |
| 2201 | |
| 2202 | @media (max-width: 767px) { |
| 2203 | .embedpress__settings__form .form__group { |
| 2204 | display: block; |
| 2205 | } |
| 2206 | } |
| 2207 | |
| 2208 | .embedpress__settings__form .form__group .form__label { |
| 2209 | -webkit-box-flex: 0; |
| 2210 | -ms-flex: 0 0 410px; |
| 2211 | flex: 0 0 410px; |
| 2212 | font-size: 16px; |
| 2213 | font-weight: 400; |
| 2214 | color: #7C8DB5; |
| 2215 | } |
| 2216 | |
| 2217 | .embedpress__settings__form .form__group .form__label .isPro { |
| 2218 | font-size: 10px; |
| 2219 | font-weight: 400; |
| 2220 | color: #ffffff; |
| 2221 | background: #5B4E96; |
| 2222 | border-radius: 20px; |
| 2223 | padding: 2px 5px; |
| 2224 | margin-left: 10px; |
| 2225 | text-transform: uppercase; |
| 2226 | } |
| 2227 | |
| 2228 | @media (max-width: 1399px) { |
| 2229 | .embedpress__settings__form .form__group .form__label { |
| 2230 | -webkit-box-flex: 0; |
| 2231 | -ms-flex: 0 0 300px; |
| 2232 | flex: 0 0 300px; |
| 2233 | } |
| 2234 | } |
| 2235 | |
| 2236 | @media (min-width: 991px) and (max-width: 1199px) { |
| 2237 | .embedpress__settings__form .form__group .form__label { |
| 2238 | -webkit-box-flex: 0; |
| 2239 | -ms-flex: 0 0 250px; |
| 2240 | flex: 0 0 250px; |
| 2241 | } |
| 2242 | } |
| 2243 | |
| 2244 | @media (max-width: 767px) { |
| 2245 | .embedpress__settings__form .form__group .form__label { |
| 2246 | margin-bottom: 10px; |
| 2247 | font-weight: 700; |
| 2248 | } |
| 2249 | .embedpress__settings__form .form__group .form__label:after { |
| 2250 | content: ':'; |
| 2251 | } |
| 2252 | } |
| 2253 | |
| 2254 | .embedpress__settings__form .form__group .form__control__wrap { |
| 2255 | -webkit-box-flex: 1; |
| 2256 | -ms-flex-positive: 1; |
| 2257 | flex-grow: 1; |
| 2258 | } |
| 2259 | |
| 2260 | .embedpress__settings__form .form__group .form__control__wrap--flex { |
| 2261 | display: -webkit-box; |
| 2262 | display: -ms-flexbox; |
| 2263 | display: flex; |
| 2264 | } |
| 2265 | |
| 2266 | .embedpress__settings__form .form__group .form__control__wrap .input__flex { |
| 2267 | display: -webkit-box; |
| 2268 | display: -ms-flexbox; |
| 2269 | display: flex; |
| 2270 | -webkit-box-align: center; |
| 2271 | -ms-flex-align: center; |
| 2272 | align-items: center; |
| 2273 | } |
| 2274 | |
| 2275 | .embedpress__settings__form .form__group .form__control__wrap .input__flex label:not(:last-child) { |
| 2276 | margin-right: 20px; |
| 2277 | } |
| 2278 | |
| 2279 | .embedpress__settings__form .form__group .form__control__wrap .input__flex .form__control[type="number"] { |
| 2280 | width: 80px; |
| 2281 | margin-right: 20px; |
| 2282 | padding: 0 15px; |
| 2283 | } |
| 2284 | |
| 2285 | .embedpress__settings__form .form__group .form__control__wrap .input__flex .frame__unit { |
| 2286 | line-height: 1; |
| 2287 | } |
| 2288 | |
| 2289 | .embedpress__settings__form .form__group .form__control__wrap .input__file, |
| 2290 | .embedpress__settings__form .form__group .form__control__wrap .form__control, |
| 2291 | .embedpress__settings__form .form__group .form__control__wrap .embedpress__select { |
| 2292 | max-width: 300px; |
| 2293 | } |
| 2294 | |
| 2295 | .embedpress__settings__form .form__group .form__control__wrap p { |
| 2296 | font-size: 14px; |
| 2297 | font-weight: 400; |
| 2298 | color: #7C8DB5; |
| 2299 | margin-top: 10px; |
| 2300 | } |
| 2301 | .embedpress__settings__form .form__group .form__control__wrap .isPro:not(.embedpress__select) { |
| 2302 | opacity: 0.3; |
| 2303 | } |
| 2304 | |
| 2305 | .frame__size__wrap { |
| 2306 | display: -webkit-box; |
| 2307 | display: -ms-flexbox; |
| 2308 | display: flex; |
| 2309 | } |
| 2310 | .template__wrapper .button.ep-settings-form-changed { |
| 2311 | background: #f11d1d; |
| 2312 | color:#fff; |
| 2313 | } |
| 2314 | @media (max-width: 1199px) { |
| 2315 | .frame__size__wrap { |
| 2316 | display: block; |
| 2317 | } |
| 2318 | } |
| 2319 | |
| 2320 | .form__inline { |
| 2321 | display: -webkit-box; |
| 2322 | display: -ms-flexbox; |
| 2323 | display: flex; |
| 2324 | } |
| 2325 | |
| 2326 | .form__inline .form__group { |
| 2327 | margin-bottom: 0; |
| 2328 | margin-right: 30px; |
| 2329 | } |
| 2330 | |
| 2331 | .logo__adjust__wrap { |
| 2332 | margin-top: 20px; |
| 2333 | /* display: none; */ |
| 2334 | } |
| 2335 | |
| 2336 | .logo__adjust__wrap .logo__upload__wrap { |
| 2337 | display: flex; |
| 2338 | align-items: center; |
| 2339 | } |
| 2340 | |
| 2341 | .logo__adjust__wrap .logo__upload, |
| 2342 | .logo__adjust__wrap .logo__upload__preview { |
| 2343 | display: inline-block; |
| 2344 | width: 100%; |
| 2345 | max-width: 255px; |
| 2346 | border-radius: 10px; |
| 2347 | border: 2px dashed rgba(124, 141, 181, 0.3); |
| 2348 | background: #F5F7FD; |
| 2349 | padding: 40px 15px; |
| 2350 | text-align: center; |
| 2351 | position: relative; |
| 2352 | margin-bottom: 0; |
| 2353 | height: 172px; |
| 2354 | } |
| 2355 | |
| 2356 | @media (max-width: 479px) { |
| 2357 | .logo__adjust__wrap .logo__upload { |
| 2358 | width: 225px; |
| 2359 | } |
| 2360 | } |
| 2361 | |
| 2362 | .logo__adjust__wrap .logo__upload .icon { |
| 2363 | margin-bottom: 10px; |
| 2364 | display: block; |
| 2365 | } |
| 2366 | |
| 2367 | .logo__adjust__wrap .logo__upload .icon i { |
| 2368 | font-size: 50px; |
| 2369 | opacity: .3; |
| 2370 | } |
| 2371 | |
| 2372 | .logo__adjust__wrap .logo__upload .text { |
| 2373 | display: block; |
| 2374 | font-size: 14px; |
| 2375 | } |
| 2376 | |
| 2377 | .logo__adjust__wrap .logo__upload input { |
| 2378 | opacity: 0; |
| 2379 | position: absolute; |
| 2380 | top: 0; |
| 2381 | left: 0; |
| 2382 | height: 100%; |
| 2383 | width: 100%; |
| 2384 | z-index: 9; |
| 2385 | cursor: pointer; |
| 2386 | } |
| 2387 | |
| 2388 | .logo__adjust__wrap .logo__upload__preview .instant__preview { |
| 2389 | position: absolute; |
| 2390 | top: 50%; |
| 2391 | left: 50%; |
| 2392 | transform: translate(-50%, -50%); |
| 2393 | font-size: 0; |
| 2394 | } |
| 2395 | .logo__adjust__wrap .logo__upload__preview .instant__preview .preview__remove { |
| 2396 | position: absolute; |
| 2397 | bottom: 100%; |
| 2398 | left: 100%; |
| 2399 | font-size: 7px; |
| 2400 | height: 20px; |
| 2401 | width: 20px; |
| 2402 | background: #5B4E96; |
| 2403 | color: #fff; |
| 2404 | line-height: 22px; |
| 2405 | border-radius: 50%; |
| 2406 | } |
| 2407 | .logo__adjust__wrap .logo__adjust { |
| 2408 | margin-top: 20px; |
| 2409 | display: -webkit-box; |
| 2410 | display: -ms-flexbox; |
| 2411 | display: flex; |
| 2412 | -ms-flex-wrap: wrap; |
| 2413 | flex-wrap: wrap; |
| 2414 | } |
| 2415 | |
| 2416 | @media (max-width: 1399px) { |
| 2417 | .logo__adjust__wrap .logo__adjust { |
| 2418 | display: block; |
| 2419 | } |
| 2420 | } |
| 2421 | |
| 2422 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller { |
| 2423 | -webkit-box-flex: 0; |
| 2424 | -ms-flex: 0 0 300px; |
| 2425 | flex: 0 0 300px; |
| 2426 | margin-right: 30px; |
| 2427 | } |
| 2428 | |
| 2429 | @media (max-width: 1399px) { |
| 2430 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller { |
| 2431 | width: 100%; |
| 2432 | margin-right: 0; |
| 2433 | } |
| 2434 | } |
| 2435 | |
| 2436 | @media (max-width: 479px) { |
| 2437 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller { |
| 2438 | -webkit-box-flex: 0; |
| 2439 | -ms-flex: 0 0 225px; |
| 2440 | flex: 0 0 225px; |
| 2441 | margin-right: 0; |
| 2442 | } |
| 2443 | } |
| 2444 | |
| 2445 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item:not(:last-child) { |
| 2446 | margin-bottom: 25px; |
| 2447 | } |
| 2448 | |
| 2449 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .controller__label { |
| 2450 | font-size: 16px; |
| 2451 | font-weight: 400; |
| 2452 | color: #7C8DB5; |
| 2453 | display: inline-block; |
| 2454 | } |
| 2455 | |
| 2456 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs { |
| 2457 | display: -webkit-box; |
| 2458 | display: -ms-flexbox; |
| 2459 | display: flex; |
| 2460 | -webkit-box-align: center; |
| 2461 | -ms-flex-align: center; |
| 2462 | align-items: center; |
| 2463 | } |
| 2464 | |
| 2465 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs input[type="range"] { |
| 2466 | margin-right: 20px; |
| 2467 | width: 200px; |
| 2468 | } |
| 2469 | |
| 2470 | @media (max-width: 1199px) { |
| 2471 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs input[type="range"] { |
| 2472 | width: 145px; |
| 2473 | } |
| 2474 | } |
| 2475 | |
| 2476 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs .form__control[type="number"] { |
| 2477 | width: 80px; |
| 2478 | padding: 0 15px; |
| 2479 | } |
| 2480 | |
| 2481 | @media (max-width: 1199px) { |
| 2482 | .logo__adjust__wrap .logo__adjust .logo__adjust__controller .logo__adjust__controller__item .logo__adjust__controller__inputs .form__control[type="number"] { |
| 2483 | width: 55px; |
| 2484 | padding: 0 12px; |
| 2485 | } |
| 2486 | } |
| 2487 | |
| 2488 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview { |
| 2489 | -webkit-box-flex: 0; |
| 2490 | -ms-flex: 0 0 500px; |
| 2491 | flex: 0 0 500px; |
| 2492 | } |
| 2493 | |
| 2494 | @media (max-width: 1399px) { |
| 2495 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview { |
| 2496 | width: 100%; |
| 2497 | max-width: 400px; |
| 2498 | margin-top: 20px; |
| 2499 | } |
| 2500 | } |
| 2501 | |
| 2502 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .title { |
| 2503 | font-size: 16px; |
| 2504 | font-weight: 400; |
| 2505 | color: #7C8DB5; |
| 2506 | display: inline-block; |
| 2507 | margin-bottom: 10px; |
| 2508 | } |
| 2509 | |
| 2510 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .preview__box { |
| 2511 | height: 280px; |
| 2512 | position: relative; |
| 2513 | } |
| 2514 | |
| 2515 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .preview__box iframe { |
| 2516 | width: 100%; |
| 2517 | height: 100%; |
| 2518 | } |
| 2519 | |
| 2520 | .logo__adjust__wrap .logo__adjust .logo__adjust__preview .preview__box img { |
| 2521 | position: absolute; |
| 2522 | bottom: 10%; |
| 2523 | right: 6%; |
| 2524 | max-height: 40px; |
| 2525 | } |
| 2526 | |
| 2527 | .pro__alert__wrap { |
| 2528 | position: fixed; |
| 2529 | top: 0; |
| 2530 | left: 0; |
| 2531 | height: 100%; |
| 2532 | width: 100%; |
| 2533 | background: rgb(0, 0, 0, 30%); |
| 2534 | z-index: 99999; |
| 2535 | display: none; |
| 2536 | } |
| 2537 | .pro__alert__wrap .pro__alert__card { |
| 2538 | width: calc(100% - 30px); |
| 2539 | max-width: 500px; |
| 2540 | margin: 7% auto 0; |
| 2541 | background: #fff; |
| 2542 | border-radius: 20px; |
| 2543 | padding: 30px; |
| 2544 | display: flex; |
| 2545 | flex-direction: column; |
| 2546 | align-items: center; |
| 2547 | text-align: center; |
| 2548 | } |
| 2549 | .pro__alert__wrap .pro__alert__card img { |
| 2550 | height: 100px; |
| 2551 | margin-bottom: 20px; |
| 2552 | } |
| 2553 | .pro__alert__wrap .pro__alert__card h2 { |
| 2554 | font-size: 32px; |
| 2555 | font-weight: 500; |
| 2556 | color: #131F4D; |
| 2557 | margin-bottom: 15px; |
| 2558 | } |
| 2559 | .pro__alert__wrap .pro__alert__card p { |
| 2560 | font-size: 14px; |
| 2561 | font-weight: 400; |
| 2562 | color: #7C8DB5; |
| 2563 | margin-bottom: 15px; |
| 2564 | } |
| 2565 | .pro__alert__wrap .pro__alert__card p a { |
| 2566 | text-decoration: underline; |
| 2567 | font-weight: 700; |
| 2568 | color: #131F4D; |
| 2569 | } |
| 2570 | .pro__alert__wrap .pro__alert__card .button { |
| 2571 | align-self: flex-end; |
| 2572 | margin-top: 20px; |
| 2573 | padding: 11px 30px; |
| 2574 | } |
| 2575 | |
| 2576 | .template__wrapper input[type=range] { |
| 2577 | height: 24px; |
| 2578 | -webkit-appearance: none; |
| 2579 | margin: 10px 0; |
| 2580 | width: 100%; |
| 2581 | } |
| 2582 | |
| 2583 | .template__wrapper input[type=range]:focus { |
| 2584 | outline: none; |
| 2585 | } |
| 2586 | |
| 2587 | .template__wrapper input[type=range]::-webkit-slider-runnable-track { |
| 2588 | width: 100%; |
| 2589 | height: 10px; |
| 2590 | cursor: pointer; |
| 2591 | animate: 0.2s; |
| 2592 | -webkit-box-shadow: 0px 0px 0px #000000; |
| 2593 | box-shadow: 0px 0px 0px #000000; |
| 2594 | background: #5B4E96; |
| 2595 | border-radius: 5px; |
| 2596 | border: 2px solid #F5F7FD; |
| 2597 | } |
| 2598 | |
| 2599 | .template__wrapper input[type=range]::-webkit-slider-thumb { |
| 2600 | -webkit-box-shadow: 0px 0px 0px #000000; |
| 2601 | box-shadow: 0px 0px 0px #000000; |
| 2602 | border: 2px solid #5B4E96; |
| 2603 | height: 16px; |
| 2604 | width: 16px; |
| 2605 | border-radius: 8px; |
| 2606 | background: #FFFFFF; |
| 2607 | cursor: pointer; |
| 2608 | -webkit-appearance: none; |
| 2609 | margin-top: -5px; |
| 2610 | } |
| 2611 | |
| 2612 | .template__wrapper input[type=range]:focus::-webkit-slider-runnable-track { |
| 2613 | background: #5B4E96; |
| 2614 | } |
| 2615 | |
| 2616 | .template__wrapper input[type=range]::-moz-range-track { |
| 2617 | width: 100%; |
| 2618 | height: 10px; |
| 2619 | cursor: pointer; |
| 2620 | animate: 0.2s; |
| 2621 | box-shadow: 0px 0px 0px #000000; |
| 2622 | background: #5B4E96; |
| 2623 | border-radius: 5px; |
| 2624 | border: 2px solid #F5F7FD; |
| 2625 | } |
| 2626 | |
| 2627 | .template__wrapper input[type=range]::-moz-range-thumb { |
| 2628 | box-shadow: 0px 0px 0px #000000; |
| 2629 | border: 2px solid #5B4E96; |
| 2630 | height: 16px; |
| 2631 | width: 16px; |
| 2632 | border-radius: 8px; |
| 2633 | background: #FFFFFF; |
| 2634 | cursor: pointer; |
| 2635 | } |
| 2636 | |
| 2637 | .template__wrapper input[type=range]::-ms-track { |
| 2638 | width: 100%; |
| 2639 | height: 10px; |
| 2640 | cursor: pointer; |
| 2641 | animate: 0.2s; |
| 2642 | background: transparent; |
| 2643 | border-color: transparent; |
| 2644 | color: transparent; |
| 2645 | } |
| 2646 | |
| 2647 | .template__wrapper input[type=range]::-ms-fill-lower { |
| 2648 | background: #5B4E96; |
| 2649 | border: 2px solid #F5F7FD; |
| 2650 | border-radius: 10px; |
| 2651 | box-shadow: 0px 0px 0px #000000; |
| 2652 | } |
| 2653 | |
| 2654 | .template__wrapper input[type=range]::-ms-fill-upper { |
| 2655 | background: #5B4E96; |
| 2656 | border: 2px solid #F5F7FD; |
| 2657 | border-radius: 10px; |
| 2658 | box-shadow: 0px 0px 0px #000000; |
| 2659 | } |
| 2660 | |
| 2661 | .template__wrapper input[type=range]::-ms-thumb { |
| 2662 | margin-top: 1px; |
| 2663 | box-shadow: 0px 0px 0px #000000; |
| 2664 | border: 2px solid #5B4E96; |
| 2665 | height: 16px; |
| 2666 | width: 16px; |
| 2667 | border-radius: 8px; |
| 2668 | background: #FFFFFF; |
| 2669 | cursor: pointer; |
| 2670 | } |
| 2671 | |
| 2672 | .template__wrapper input[type=range]:focus::-ms-fill-lower { |
| 2673 | background: #5B4E96; |
| 2674 | } |
| 2675 | |
| 2676 | .template__wrapper input[type=range]:focus::-ms-fill-upper { |
| 2677 | background: #5B4E96; |
| 2678 | } |
| 2679 | |
| 2680 | .upgrade__card { |
| 2681 | display: -webkit-box; |
| 2682 | display: -ms-flexbox; |
| 2683 | display: flex; |
| 2684 | -webkit-box-align: center; |
| 2685 | -ms-flex-align: center; |
| 2686 | align-items: center; |
| 2687 | background: #5B4E96; |
| 2688 | border-radius: 25px; |
| 2689 | padding: 40px; |
| 2690 | } |
| 2691 | |
| 2692 | @media (max-width: 1199px) { |
| 2693 | .upgrade__card { |
| 2694 | padding: 50px; |
| 2695 | } |
| 2696 | } |
| 2697 | |
| 2698 | .upgrade__card .icon { |
| 2699 | margin-right: 40px; |
| 2700 | min-width: 90px; |
| 2701 | } |
| 2702 | |
| 2703 | @media (max-width: 767px) { |
| 2704 | .upgrade__card .icon { |
| 2705 | margin-right: 0; |
| 2706 | margin-bottom: 20px; |
| 2707 | } |
| 2708 | } |
| 2709 | |
| 2710 | .upgrade__card .card__content { |
| 2711 | margin-right: 30px; |
| 2712 | } |
| 2713 | |
| 2714 | @media (max-width: 767px) { |
| 2715 | .upgrade__card .card__content { |
| 2716 | margin-bottom: 20px; |
| 2717 | margin-right: 0; |
| 2718 | } |
| 2719 | } |
| 2720 | |
| 2721 | .upgrade__card .card__content h4 { |
| 2722 | font-size: 26px; |
| 2723 | font-weight: 500; |
| 2724 | color: #ffffff; |
| 2725 | margin-bottom: 15px; |
| 2726 | } |
| 2727 | |
| 2728 | @media (max-width: 767px) { |
| 2729 | .upgrade__card .card__content h4 { |
| 2730 | font-size: 22px; |
| 2731 | } |
| 2732 | } |
| 2733 | |
| 2734 | .upgrade__card .card__content p { |
| 2735 | font-size: 14px; |
| 2736 | font-weight: 400; |
| 2737 | color: rgba(255, 255, 255, 0.5); |
| 2738 | max-width: 700px; |
| 2739 | } |
| 2740 | |
| 2741 | .upgrade__card .button { |
| 2742 | margin-left: auto; |
| 2743 | min-width: 177px; |
| 2744 | text-align: center; |
| 2745 | } |
| 2746 | |
| 2747 | @media (max-width: 767px) { |
| 2748 | .upgrade__card { |
| 2749 | display: block; |
| 2750 | padding: 25px; |
| 2751 | } |
| 2752 | } |
| 2753 | |
| 2754 | .upgrage__card__tab__style h3 { |
| 2755 | font-size: 30px; |
| 2756 | font-weight: 700; |
| 2757 | color: #131F4D; |
| 2758 | margin-bottom: 25px; |
| 2759 | } |
| 2760 | |
| 2761 | @media (max-width: 767px) { |
| 2762 | .upgrage__card__tab__style h3 { |
| 2763 | font-size: 24px; |
| 2764 | } |
| 2765 | } |
| 2766 | |
| 2767 | @media (max-width: 575px) { |
| 2768 | .upgrage__card__tab__style h3 { |
| 2769 | font-size: 20px; |
| 2770 | } |
| 2771 | } |
| 2772 | |
| 2773 | .upgrage__card__tab__style p { |
| 2774 | font-size: 14px; |
| 2775 | font-weight: 400; |
| 2776 | color: #7C8DB5; |
| 2777 | margin-bottom: 30px; |
| 2778 | max-width: 1320px; |
| 2779 | line-height: 1.85; |
| 2780 | } |
| 2781 | |
| 2782 | .embedpress-license__details { |
| 2783 | display: -ms-grid; |
| 2784 | display: grid; |
| 2785 | -ms-grid-columns: 3.5fr 2fr; |
| 2786 | grid-template-columns: 3.5fr 2fr; |
| 2787 | gap: 5px; |
| 2788 | } |
| 2789 | |
| 2790 | @media (max-width: 991px) { |
| 2791 | .embedpress-license__details { |
| 2792 | display: block; |
| 2793 | } |
| 2794 | } |
| 2795 | |
| 2796 | .embedpress-license__details .license__content { |
| 2797 | background: #ffffff; |
| 2798 | padding: 100px; |
| 2799 | padding-left: 50px; |
| 2800 | } |
| 2801 | |
| 2802 | @media (max-width: 1199px) { |
| 2803 | .embedpress-license__details .license__content { |
| 2804 | padding: 30px; |
| 2805 | } |
| 2806 | } |
| 2807 | |
| 2808 | @media (max-width: 991px) { |
| 2809 | .embedpress-license__details .license__content { |
| 2810 | margin-bottom: 5px; |
| 2811 | } |
| 2812 | } |
| 2813 | |
| 2814 | @media (max-width: 767px) { |
| 2815 | .embedpress-license__details .license__content { |
| 2816 | padding: 40px 30px; |
| 2817 | } |
| 2818 | } |
| 2819 | |
| 2820 | @media (max-width: 575px) { |
| 2821 | .embedpress-license__details .license__content .form__inline { |
| 2822 | display: block; |
| 2823 | } |
| 2824 | .embedpress-license__details .license__content .form__inline .form__group { |
| 2825 | margin-bottom: 25px; |
| 2826 | margin-right: 0; |
| 2827 | } |
| 2828 | } |
| 2829 | |
| 2830 | .embedpress-license__details .license__content .thumb__area { |
| 2831 | /* max-width: 350px; */ |
| 2832 | /* text-align: center; */ |
| 2833 | margin-bottom: 30px; |
| 2834 | } |
| 2835 | .embedpress-license__details .license__content .thumb__area img { |
| 2836 | max-width: 320px; |
| 2837 | } |
| 2838 | |
| 2839 | .embedpress-license__details .license__content .thumb__area h2 { |
| 2840 | font-size: 30px; |
| 2841 | font-weight: 400; |
| 2842 | color: #25396F; |
| 2843 | margin-top: 10px; |
| 2844 | } |
| 2845 | |
| 2846 | @media (max-width: 767px) { |
| 2847 | .embedpress-license__details .license__content .thumb__area h2 { |
| 2848 | font-size: 24px; |
| 2849 | } |
| 2850 | } |
| 2851 | |
| 2852 | .embedpress-license__details .license__content p { |
| 2853 | font-size: 16px; |
| 2854 | font-weight: 400; |
| 2855 | color: #25396F; |
| 2856 | margin-bottom: 30px; |
| 2857 | } |
| 2858 | |
| 2859 | @media (max-width: 767px) { |
| 2860 | .embedpress-license__details .license__content p { |
| 2861 | font-size: 16px; |
| 2862 | } |
| 2863 | } |
| 2864 | |
| 2865 | .embedpress-license__details .license__content p a { |
| 2866 | color: #5B4E96; |
| 2867 | text-decoration: underline; |
| 2868 | } |
| 2869 | |
| 2870 | .embedpress-license__details .license__content ol { |
| 2871 | list-style: decimal; |
| 2872 | padding-left: 19px; |
| 2873 | margin-bottom: 50px; |
| 2874 | } |
| 2875 | |
| 2876 | .embedpress-license__details .license__content ol li { |
| 2877 | font-size: 18px; |
| 2878 | font-weight: 400; |
| 2879 | color: #25396F; |
| 2880 | } |
| 2881 | |
| 2882 | .embedpress-license__details .license__content ol li:not(:last-child) { |
| 2883 | margin-bottom: 15px; |
| 2884 | } |
| 2885 | |
| 2886 | @media (max-width: 767px) { |
| 2887 | .embedpress-license__details .license__content ol li { |
| 2888 | font-size: 16px; |
| 2889 | } |
| 2890 | } |
| 2891 | |
| 2892 | .embedpress-license__details .license__content ol li a { |
| 2893 | color: #5B4E96; |
| 2894 | text-decoration: underline; |
| 2895 | } |
| 2896 | |
| 2897 | .embedpress-license__details .license__content .form__group { |
| 2898 | -webkit-box-flex: 1; |
| 2899 | -ms-flex-positive: 1; |
| 2900 | flex-grow: 1; |
| 2901 | position: relative; |
| 2902 | } |
| 2903 | |
| 2904 | |
| 2905 | |
| 2906 | .embedpress-license__details .license__content .form__group .input__icon { |
| 2907 | position: absolute; |
| 2908 | top: 20px; |
| 2909 | left: 20px; |
| 2910 | color: #7C8DB5; |
| 2911 | pointer-events: none; |
| 2912 | width: 20px; |
| 2913 | } |
| 2914 | |
| 2915 | .embedpress-license__details .license__content .form__group .input__icon i { |
| 2916 | font-size: 20px; |
| 2917 | } |
| 2918 | |
| 2919 | @media (max-width: 767px) { |
| 2920 | .embedpress-license__details .license__content .form__group .input__icon { |
| 2921 | top: 15px; |
| 2922 | left: 15px; |
| 2923 | } |
| 2924 | .embedpress-license__details .license__content .form__group .input__icon i { |
| 2925 | font-size: 16px; |
| 2926 | } |
| 2927 | } |
| 2928 | |
| 2929 | .embedpress-license__details .license__content .form__group .form__control { |
| 2930 | height: 60px; |
| 2931 | background: #F5F7FD; |
| 2932 | color: #7C8DB5; |
| 2933 | font-size: 20px; |
| 2934 | padding-left: 50px; |
| 2935 | } |
| 2936 | |
| 2937 | .embedpress-license__details .license__content .form__group .form__control::-webkit-input-placeholder { |
| 2938 | color: #7C8DB5; |
| 2939 | } |
| 2940 | |
| 2941 | .embedpress-license__details .license__content .form__group .form__control:-moz-placeholder { |
| 2942 | color: #7C8DB5; |
| 2943 | } |
| 2944 | |
| 2945 | .embedpress-license__details .license__content .form__group .form__control::-moz-placeholder { |
| 2946 | color: #7C8DB5; |
| 2947 | } |
| 2948 | |
| 2949 | .embedpress-license__details .license__content .form__group .form__control:-ms-input-placeholder { |
| 2950 | color: #7C8DB5; |
| 2951 | } |
| 2952 | |
| 2953 | @media (max-width: 1399px) { |
| 2954 | .embedpress-license__details .license__content .form__group .form__control { |
| 2955 | font-size: 16px; |
| 2956 | } |
| 2957 | } |
| 2958 | |
| 2959 | @media (max-width: 767px) { |
| 2960 | .embedpress-license__details .license__content .form__group .form__control { |
| 2961 | height: 50px; |
| 2962 | padding-left: 35px; |
| 2963 | font-size: 14px; |
| 2964 | } |
| 2965 | } |
| 2966 | |
| 2967 | .embedpress-license__details .license__manage { |
| 2968 | background: #ffffff; |
| 2969 | padding: 30px; |
| 2970 | display: -webkit-box; |
| 2971 | display: -ms-flexbox; |
| 2972 | display: flex; |
| 2973 | -webkit-box-pack: center; |
| 2974 | -ms-flex-pack: center; |
| 2975 | justify-content: center; |
| 2976 | -webkit-box-align: center; |
| 2977 | -ms-flex-align: center; |
| 2978 | align-items: center; |
| 2979 | -webkit-box-orient: vertical; |
| 2980 | -webkit-box-direction: normal; |
| 2981 | -ms-flex-direction: column; |
| 2982 | flex-direction: column; |
| 2983 | } |
| 2984 | |
| 2985 | .embedpress-license__details .license__manage .button { |
| 2986 | margin-top: 30px; |
| 2987 | } |
| 2988 | |
| 2989 | .embedpress-card { |
| 2990 | background: #F5F7FD; |
| 2991 | border-radius: 20px; |
| 2992 | padding: 30px; |
| 2993 | padding-left: 100px; |
| 2994 | border: 2px solid rgba(91, 78, 150, 0.1); |
| 2995 | position: relative; |
| 2996 | } |
| 2997 | |
| 2998 | @media (min-width: 1199px) and (max-width: 1399px) { |
| 2999 | .embedpress-card { |
| 3000 | padding-left: 30px; |
| 3001 | } |
| 3002 | } |
| 3003 | |
| 3004 | @media (max-width: 767px) { |
| 3005 | .embedpress-card { |
| 3006 | padding-left: 25px; |
| 3007 | padding: 25px; |
| 3008 | } |
| 3009 | } |
| 3010 | |
| 3011 | .embedpress-card .icon { |
| 3012 | position: absolute; |
| 3013 | top: 30px; |
| 3014 | left: 30px; |
| 3015 | height: 50px; |
| 3016 | width: 50px; |
| 3017 | border-radius: 10px; |
| 3018 | background: #5B4E96; |
| 3019 | text-align: center; |
| 3020 | } |
| 3021 | |
| 3022 | @media (min-width: 1199px) and (max-width: 1399px) { |
| 3023 | .embedpress-card .icon { |
| 3024 | position: static; |
| 3025 | margin-bottom: 20px; |
| 3026 | } |
| 3027 | } |
| 3028 | |
| 3029 | @media (max-width: 767px) { |
| 3030 | .embedpress-card .icon { |
| 3031 | position: static; |
| 3032 | margin-bottom: 20px; |
| 3033 | } |
| 3034 | } |
| 3035 | |
| 3036 | .embedpress-card .icon i { |
| 3037 | color: #ffffff; |
| 3038 | font-size: 20px; |
| 3039 | line-height: 50px; |
| 3040 | } |
| 3041 | |
| 3042 | .embedpress-card h3 { |
| 3043 | font-size: 26px; |
| 3044 | font-weight: 500; |
| 3045 | color: #131F4D; |
| 3046 | margin-bottom: 10px; |
| 3047 | } |
| 3048 | |
| 3049 | @media (max-width: 767px) { |
| 3050 | .embedpress-card h3 { |
| 3051 | font-size: 22px; |
| 3052 | } |
| 3053 | } |
| 3054 | |
| 3055 | .embedpress-card p { |
| 3056 | font-size: 14px; |
| 3057 | font-weight: 400; |
| 3058 | color: #7C8DB5; |
| 3059 | margin-bottom: 20px; |
| 3060 | } |
| 3061 | |
| 3062 | .emement__item { |
| 3063 | background: #F5F7FD; |
| 3064 | border-radius: 10px; |
| 3065 | padding: 25px 30px; |
| 3066 | border: 2px solid rgba(91, 78, 150, 0.1); |
| 3067 | position: relative; |
| 3068 | display: -webkit-box; |
| 3069 | display: -ms-flexbox; |
| 3070 | display: flex; |
| 3071 | -webkit-box-align: center; |
| 3072 | -ms-flex-align: center; |
| 3073 | align-items: center; |
| 3074 | /* overflow: hidden; */ |
| 3075 | } |
| 3076 | |
| 3077 | @media (max-width: 767px) { |
| 3078 | .emement__item { |
| 3079 | padding: 20px; |
| 3080 | padding-right: 15px; |
| 3081 | } |
| 3082 | } |
| 3083 | |
| 3084 | .emement__item.isPro .pro__item { |
| 3085 | /* display: block; */ |
| 3086 | } |
| 3087 | |
| 3088 | .emement__item h5 { |
| 3089 | font-size: 20px; |
| 3090 | font-weight: 700; |
| 3091 | color: #25396F; |
| 3092 | margin-right: 15px; |
| 3093 | } |
| 3094 | |
| 3095 | @media (max-width: 767px) { |
| 3096 | .emement__item h5 { |
| 3097 | font-size: 16px; |
| 3098 | } |
| 3099 | } |
| 3100 | |
| 3101 | .emement__item .has__question { |
| 3102 | color: rgba(124, 141, 181, 0.5); |
| 3103 | line-height: 1; |
| 3104 | margin-top: 2px; |
| 3105 | margin-right: 10px; |
| 3106 | position: relative; |
| 3107 | } |
| 3108 | .emement__item .has__question .element__tooltip { |
| 3109 | position: absolute; |
| 3110 | bottom: calc(100% + 12px); |
| 3111 | left: -20px; |
| 3112 | /* transform: translateX(-50%); */ |
| 3113 | background: #5B4E96; |
| 3114 | color: #fff; |
| 3115 | padding: 20px; |
| 3116 | min-width: 200px; |
| 3117 | border-radius: 5px; |
| 3118 | font-size: 16px; |
| 3119 | transition: all .3s ease; |
| 3120 | opacity: 0; |
| 3121 | visibility: hidden; |
| 3122 | z-index: 9; |
| 3123 | } |
| 3124 | .emement__item .has__question:hover .element__tooltip { |
| 3125 | visibility: visible; |
| 3126 | opacity: 1; |
| 3127 | } |
| 3128 | .emement__item .has__question .element__tooltip:before { |
| 3129 | position: absolute; |
| 3130 | top: 100%; |
| 3131 | left: 18px; |
| 3132 | /* transform: translateX(-50%); */ |
| 3133 | border-left: 10px solid transparent; |
| 3134 | border-right: 10px solid transparent; |
| 3135 | border-top: 10px solid #5B4E96; |
| 3136 | content: ''; |
| 3137 | } |
| 3138 | .emement__item .input__switch { |
| 3139 | margin-left: auto; |
| 3140 | margin-bottom: 0; |
| 3141 | } |
| 3142 | |
| 3143 | .emement__item .pro__item { |
| 3144 | position: absolute; |
| 3145 | top: 5px; |
| 3146 | left: -16px; |
| 3147 | -webkit-transform: rotate(-45deg); |
| 3148 | transform: rotate(-45deg); |
| 3149 | font-size: 12px; |
| 3150 | font-weight: 400; |
| 3151 | color: #ffffff; |
| 3152 | background: #5B4E96; |
| 3153 | padding: 0 20px; |
| 3154 | text-transform: uppercase; |
| 3155 | display: none; |
| 3156 | } |
| 3157 | |
| 3158 | @media (max-width: 767px) { |
| 3159 | .emement__item .pro__item { |
| 3160 | font-size: 9px; |
| 3161 | } |
| 3162 | } |
| 3163 | |
| 3164 | .embedpress--elements__wrap h3 { |
| 3165 | font-size: 30px; |
| 3166 | font-weight: 700; |
| 3167 | color: #131F4D; |
| 3168 | margin-bottom: 25px; |
| 3169 | } |
| 3170 | |
| 3171 | @media (max-width: 767px) { |
| 3172 | .embedpress--elements__wrap h3 { |
| 3173 | font-size: 24px; |
| 3174 | } |
| 3175 | } |
| 3176 | |
| 3177 | @media (max-width: 575px) { |
| 3178 | .embedpress--elements__wrap h3 { |
| 3179 | font-size: 20px; |
| 3180 | } |
| 3181 | } |
| 3182 | |
| 3183 | @media (max-width: 991px) { |
| 3184 | .embedpress--elements__wrap .embedpress__row.grid__4 { |
| 3185 | -ms-grid-columns: (1fr)[2]; |
| 3186 | grid-template-columns: repeat(2, 1fr); |
| 3187 | } |
| 3188 | } |
| 3189 | |
| 3190 | @media (max-width: 575px) { |
| 3191 | .embedpress--elements__wrap .embedpress__row.grid__4 { |
| 3192 | -ms-grid-columns: (1fr)[1]; |
| 3193 | grid-template-columns: repeat(1, 1fr); |
| 3194 | } |
| 3195 | } |
| 3196 | .valid-license-icon{ |
| 3197 | max-width: 100%; |
| 3198 | width: 1.5rem; |
| 3199 | } |
| 3200 | |
| 3201 | |
| 3202 | |
| 3203 | .embedpress-toast__message { |
| 3204 | position: fixed; |
| 3205 | bottom: 50px; |
| 3206 | right: 50px; |
| 3207 | padding: 15px 25px; |
| 3208 | border-radius: 10px; |
| 3209 | max-width: 400px; |
| 3210 | z-index: 9999; |
| 3211 | display: flex; |
| 3212 | align-items: center; |
| 3213 | opacity: 0; |
| 3214 | visibility: hidden; |
| 3215 | transition: all .3s ease; |
| 3216 | } |
| 3217 | .embedpress-toast__message.show { |
| 3218 | opacity: 1; |
| 3219 | visibility: visible; |
| 3220 | } |
| 3221 | |
| 3222 | .embedpress-toast__message.toast__message--error { |
| 3223 | background: #FE504F; |
| 3224 | } |
| 3225 | |
| 3226 | .embedpress-toast__message.toast__message--success { |
| 3227 | background: #00CC76; |
| 3228 | } |
| 3229 | |
| 3230 | .embedpress-toast__message img { |
| 3231 | height: 40px; |
| 3232 | margin-right: 20px; |
| 3233 | } |
| 3234 | |
| 3235 | .embedpress-toast__message p { |
| 3236 | color: #ffffff; |
| 3237 | font-size: 14px; |
| 3238 | } |
| 3239 | |
| 3240 | .template__wrapper .wp-color-result-text { |
| 3241 | padding: 0 5px; |
| 3242 | } |
| 3243 | @media all and (max-width: 1600px) { |
| 3244 | .embedpress-license__details .license__content .form__inline { |
| 3245 | display: block; |
| 3246 | } |
| 3247 | .embedpress-license__details .license__content .form__group { |
| 3248 | margin-bottom: 25px; |
| 3249 | margin-right: 0; |
| 3250 | } |
| 3251 | .embedpress-license__details .license__content .form__group .form__control { |
| 3252 | height: 50px; |
| 3253 | font-size: 14px; |
| 3254 | } |
| 3255 | .embedpress-license__details .license__content .form__group .input__icon { |
| 3256 | width: 18px; |
| 3257 | top: 16px; |
| 3258 | } |
| 3259 | } |
| 3260 | |
| 3261 | .ep-coming-soon { |
| 3262 | color:#5b4e96; |
| 3263 | font-size: 12px; |
| 3264 | font-weight: 900; |
| 3265 | } |
| 3266 | .embedpress-card a{ |
| 3267 | color:#5b4e96; |
| 3268 | } |
| 3269 | .proOverlay { |
| 3270 | opacity: .3; |
| 3271 | position: relative; |
| 3272 | } |
| 3273 | .proOverlay::after{ |
| 3274 | position: absolute; |
| 3275 | top:0; |
| 3276 | left:0; |
| 3277 | bottom:0; |
| 3278 | content:''; |
| 3279 | width: 100%; |
| 3280 | height: 100%; |
| 3281 | display: block; |
| 3282 | } |
| 3283 |