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