| 1 |
.center, |
| 2 |
.container { |
| 3 |
margin-left: auto; |
| 4 |
margin-right: auto; |
| 5 |
} |
| 6 |
|
| 7 |
.font-light { |
| 8 |
font-weight: 300; |
| 9 |
} |
| 10 |
|
| 11 |
.font-regular { |
| 12 |
font-weight: 400; |
| 13 |
} |
| 14 |
|
| 15 |
.font-heavy { |
| 16 |
font-weight: 700; |
| 17 |
} |
| 18 |
|
| 19 |
.left { |
| 20 |
text-align: left; |
| 21 |
} |
| 22 |
|
| 23 |
.right { |
| 24 |
text-align: right; |
| 25 |
} |
| 26 |
|
| 27 |
.center { |
| 28 |
text-align: center; |
| 29 |
} |
| 30 |
|
| 31 |
.justify { |
| 32 |
text-align: justify; |
| 33 |
} |
| 34 |
|
| 35 |
.container { |
| 36 |
width: 90%; |
| 37 |
} |
| 38 |
|
| 39 |
.row { |
| 40 |
position: relative; |
| 41 |
width: 100%; |
| 42 |
} |
| 43 |
|
| 44 |
.row [class^="col"] { |
| 45 |
float: left; |
| 46 |
margin: 0.5rem 1%; |
| 47 |
min-height: 0.125rem; |
| 48 |
} |
| 49 |
|
| 50 |
.col-1, |
| 51 |
.col-10, |
| 52 |
.col-11, |
| 53 |
.col-12, |
| 54 |
.col-2, |
| 55 |
.col-3, |
| 56 |
.col-4, |
| 57 |
.col-5, |
| 58 |
.col-6, |
| 59 |
.col-7, |
| 60 |
.col-8, |
| 61 |
.col-9 { |
| 62 |
width: 96%; |
| 63 |
} |
| 64 |
|
| 65 |
.col-1-sm { |
| 66 |
width: 4.33%; |
| 67 |
} |
| 68 |
|
| 69 |
.col-2-sm { |
| 70 |
width: 12.66%; |
| 71 |
} |
| 72 |
|
| 73 |
.col-3-sm { |
| 74 |
width: 21%; |
| 75 |
} |
| 76 |
|
| 77 |
.col-4-sm { |
| 78 |
width: 29.33%; |
| 79 |
} |
| 80 |
|
| 81 |
.col-5-sm { |
| 82 |
width: 37.66%; |
| 83 |
} |
| 84 |
|
| 85 |
.col-6-sm { |
| 86 |
width: 46%; |
| 87 |
} |
| 88 |
|
| 89 |
.col-7-sm { |
| 90 |
width: 54.33%; |
| 91 |
} |
| 92 |
|
| 93 |
.col-8-sm { |
| 94 |
width: 62.66%; |
| 95 |
} |
| 96 |
|
| 97 |
.col-9-sm { |
| 98 |
width: 71%; |
| 99 |
} |
| 100 |
|
| 101 |
.col-10-sm { |
| 102 |
width: 79.33%; |
| 103 |
} |
| 104 |
|
| 105 |
.col-11-sm { |
| 106 |
width: 87.66%; |
| 107 |
} |
| 108 |
|
| 109 |
.col-12-sm { |
| 110 |
width: 96%; |
| 111 |
} |
| 112 |
|
| 113 |
.row::after { |
| 114 |
content: ""; |
| 115 |
display: table; |
| 116 |
clear: both; |
| 117 |
} |
| 118 |
|
| 119 |
.hidden-sm { |
| 120 |
display: none; |
| 121 |
} |
| 122 |
|
| 123 |
@media only screen and (min-width: 33.75em) { |
| 124 |
.container { |
| 125 |
width: 80%; |
| 126 |
} |
| 127 |
} |
| 128 |
|
| 129 |
@media only screen and (min-width: 45em) { |
| 130 |
.col-1 { |
| 131 |
width: 4.33%; |
| 132 |
} |
| 133 |
|
| 134 |
.col-2 { |
| 135 |
width: 12.66%; |
| 136 |
} |
| 137 |
|
| 138 |
.col-3 { |
| 139 |
width: 21%; |
| 140 |
} |
| 141 |
|
| 142 |
.col-4 { |
| 143 |
width: 29.33%; |
| 144 |
} |
| 145 |
|
| 146 |
.col-5 { |
| 147 |
width: 37.66%; |
| 148 |
} |
| 149 |
|
| 150 |
.col-6 { |
| 151 |
width: 46%; |
| 152 |
} |
| 153 |
|
| 154 |
.col-7 { |
| 155 |
width: 54.33%; |
| 156 |
} |
| 157 |
|
| 158 |
.col-8 { |
| 159 |
width: 62.66%; |
| 160 |
} |
| 161 |
|
| 162 |
.col-9 { |
| 163 |
width: 67%; |
| 164 |
} |
| 165 |
|
| 166 |
.col-10 { |
| 167 |
width: 75.33%; |
| 168 |
} |
| 169 |
|
| 170 |
.col-11 { |
| 171 |
width: 83.66%; |
| 172 |
} |
| 173 |
|
| 174 |
.col-12 { |
| 175 |
width: 92%; |
| 176 |
} |
| 177 |
|
| 178 |
.hidden-sm { |
| 179 |
display: block; |
| 180 |
} |
| 181 |
} |
| 182 |
|
| 183 |
@media only screen and (min-width: 60em) { |
| 184 |
.container { |
| 185 |
width: 75%; |
| 186 |
max-width: 60rem; |
| 187 |
} |
| 188 |
} |
| 189 |
|
| 190 |
.h5vp_wrap { |
| 191 |
background: #ffffff; |
| 192 |
padding: 20px; |
| 193 |
} |
| 194 |
|
| 195 |
.h5vp_wrap .contact h5 { |
| 196 |
font-size: 16px; |
| 197 |
} |
| 198 |
|
| 199 |
.h5vp_wrap h2 { |
| 200 |
font-size: 40px; |
| 201 |
} |
| 202 |
|
| 203 |
.bplugins-container { |
| 204 |
width: 80%; |
| 205 |
min-width: 1140px; |
| 206 |
margin: 0 auto; |
| 207 |
} |
| 208 |
|
| 209 |
.bplugins-feature { |
| 210 |
background: #ffffff; |
| 211 |
padding: 20px; |
| 212 |
} |
| 213 |
|
| 214 |
.bplugins-feature i { |
| 215 |
font-size: 30px; |
| 216 |
color: #4527a4; |
| 217 |
} |
| 218 |
|
| 219 |
.bplugins-feature h3 { |
| 220 |
margin-bottom: 10px; |
| 221 |
font-size: 17px; |
| 222 |
} |
| 223 |
|
| 224 |
.bplugins-feature p { |
| 225 |
margin-top: 0; |
| 226 |
font-weight: 400; |
| 227 |
} |
| 228 |
|
| 229 |
.row [class^="col"] { |
| 230 |
margin: 0.5rem 1%; |
| 231 |
} |
| 232 |
|
| 233 |
#TB_overlay { |
| 234 |
background: #000; |
| 235 |
opacity: 0.7; |
| 236 |
filter: alpha(opacity=70); |
| 237 |
position: fixed; |
| 238 |
top: 0; |
| 239 |
right: 0; |
| 240 |
bottom: 0; |
| 241 |
left: 0; |
| 242 |
z-index: 100050; |
| 243 |
} |
| 244 |
|
| 245 |
#TB_window { |
| 246 |
left: 50%; |
| 247 |
position: fixed; |
| 248 |
z-index: 105000; |
| 249 |
} |
| 250 |
|
| 251 |
#TB_closeWindowButton { |
| 252 |
position: absolute; |
| 253 |
left: auto; |
| 254 |
right: -30px; |
| 255 |
width: 29px; |
| 256 |
height: 29px; |
| 257 |
border: 0; |
| 258 |
padding: 0; |
| 259 |
background: none; |
| 260 |
cursor: pointer; |
| 261 |
outline: none; |
| 262 |
-webkit-transition: color 0.1s ease-in-out, background 0.1s ease-in-out; |
| 263 |
transition: color 0.1s ease-in-out, background 0.1s ease-in-out; |
| 264 |
} |
| 265 |
|
| 266 |
/* #TB_closeWindowButton::before { |
| 267 |
content: "x"; |
| 268 |
color: #ffffff; |
| 269 |
font-size: 20px; |
| 270 |
font-weight: bold; |
| 271 |
line-height: 0; |
| 272 |
} */ |
| 273 |
.hayat-readonly { |
| 274 |
filter: invert(1); |
| 275 |
} |
| 276 |
|
| 277 |
.hayat-readonly:hover:after { |
| 278 |
content: "This option is available in the Pro Version only."; |
| 279 |
position: absolute; |
| 280 |
top: 0; |
| 281 |
width: 95%; |
| 282 |
height: 100%; |
| 283 |
vertical-align: middle; |
| 284 |
display: flex; |
| 285 |
align-items: center; |
| 286 |
justify-content: center; |
| 287 |
font-size: 20px; |
| 288 |
color: #2196f3; |
| 289 |
} |
| 290 |
|
| 291 |
/* |
| 292 |
css for playlist dashboard |
| 293 |
*/ |
| 294 |
.playlist_videos .csf-repeater-item { |
| 295 |
border: 3px solid #4527a3 !important; |
| 296 |
margin-bottom: 15px !important; |
| 297 |
} |
| 298 |
|
| 299 |
.playlist_videos .csf-repeater-item .csf-repeater-item { |
| 300 |
border: 1px solid #dddddd !important; |
| 301 |
margin-bottom: 5px !important; |
| 302 |
} |
| 303 |
|
| 304 |
#btss_meta .postbox-header { |
| 305 |
display: none; |
| 306 |
} |
| 307 |
|
| 308 |
.h5vp_playlist_shortcode { |
| 309 |
margin-top: 30px; |
| 310 |
border: 5px solid #4527a4; |
| 311 |
overflow: hidden; |
| 312 |
} |
| 313 |
|
| 314 |
.h5vp_playlist_shortcode .shortcode-heading { |
| 315 |
background: #4527a4; |
| 316 |
padding: 15px; |
| 317 |
overflow: hidden; |
| 318 |
color: #ffffff; |
| 319 |
} |
| 320 |
|
| 321 |
.h5vp_playlist_shortcode .shortcode-heading .icon { |
| 322 |
float: left; |
| 323 |
overflow: hidden; |
| 324 |
width: 50%; |
| 325 |
} |
| 326 |
|
| 327 |
.h5vp_playlist_shortcode .shortcode-heading .text { |
| 328 |
float: right; |
| 329 |
overflow: hidden; |
| 330 |
text-align: right; |
| 331 |
} |
| 332 |
|
| 333 |
.h5vp_playlist_shortcode .shortcode-heading .text a { |
| 334 |
color: #ffffff; |
| 335 |
display: block; |
| 336 |
text-decoration: none; |
| 337 |
} |
| 338 |
|
| 339 |
.h5vp_playlist_shortcode .shortcode-left { |
| 340 |
width: 50%; |
| 341 |
float: left; |
| 342 |
overflow: hidden; |
| 343 |
padding: 20px 0 30px; |
| 344 |
text-align: center; |
| 345 |
background: #ffffff; |
| 346 |
border-right: 5px solid #4527a4; |
| 347 |
box-sizing: border-box; |
| 348 |
} |
| 349 |
|
| 350 |
.h5vp_playlist_shortcode .shortcode-right { |
| 351 |
width: 50%; |
| 352 |
float: left; |
| 353 |
overflow: hidden; |
| 354 |
padding: 20px 0 30px; |
| 355 |
text-align: center; |
| 356 |
background: #ffffff; |
| 357 |
} |
| 358 |
|
| 359 |
.h5vp_playlist_shortcode .shortcode { |
| 360 |
padding: 8px 15px; |
| 361 |
background: #eae6f9; |
| 362 |
display: inline-block; |
| 363 |
user-select: all; |
| 364 |
font-size: 16px; |
| 365 |
} |
| 366 |
|
| 367 |
#h5vp_playlist_options .csf--sibling.csf--button { |
| 368 |
padding: 5px !important; |
| 369 |
} |
| 370 |
|
| 371 |
#h5vp_playlist_options .csf-title h4 { |
| 372 |
font-size: 16px !important; |
| 373 |
} |
| 374 |
|
| 375 |
.h5vp_video_player .csf--sibling.csf--button { |
| 376 |
padding: 5px !important; |
| 377 |
} |
| 378 |
|
| 379 |
.h5vp_video_player .csf-title h4 { |
| 380 |
font-size: 16px !important; |
| 381 |
} |
| 382 |
|
| 383 |
#h5vp_copied { |
| 384 |
margin-left: 15px; |
| 385 |
} |
| 386 |
|
| 387 |
.h5vp_front_shortcode input { |
| 388 |
cursor: pointer; |
| 389 |
} |
| 390 |
|
| 391 |
.h5vp_front_shortcode { |
| 392 |
position: relative; |
| 393 |
display: inline-block; |
| 394 |
} |
| 395 |
|
| 396 |
.h5vp_front_shortcode .htooltip { |
| 397 |
visibility: hidden; |
| 398 |
width: 140px; |
| 399 |
background-color: #555; |
| 400 |
color: #fff; |
| 401 |
text-align: center; |
| 402 |
border-radius: 6px; |
| 403 |
padding: 5px; |
| 404 |
position: absolute; |
| 405 |
z-index: 1; |
| 406 |
bottom: 150%; |
| 407 |
left: 50%; |
| 408 |
margin-left: -75px; |
| 409 |
opacity: 0; |
| 410 |
transition: opacity 0.3s; |
| 411 |
} |
| 412 |
|
| 413 |
.h5vp_front_shortcode .htooltip::after { |
| 414 |
content: ""; |
| 415 |
position: absolute; |
| 416 |
top: 100%; |
| 417 |
left: 50%; |
| 418 |
margin-left: -5px; |
| 419 |
border-width: 5px; |
| 420 |
border-style: solid; |
| 421 |
border-color: #555 transparent transparent transparent; |
| 422 |
} |
| 423 |
|
| 424 |
.h5vp_front_shortcode:hover .htooltip { |
| 425 |
visibility: visible; |
| 426 |
opacity: 1; |
| 427 |
} |
| 428 |
|
| 429 |
.csf-field-spinner .ui-spinner-button { |
| 430 |
display: flex; |
| 431 |
flex-direction: column; |
| 432 |
justify-content: center; |
| 433 |
text-align: center; |
| 434 |
min-width: 20px; |
| 435 |
padding: 0 4px; |
| 436 |
color: #555; |
| 437 |
border: 1px solid #7e8993; |
| 438 |
background-color: #f5f5f5; |
| 439 |
} |
| 440 |
|
| 441 |
.aws_picker_btn .csf--button { |
| 442 |
display: inline-flex; |
| 443 |
} |
| 444 |
|
| 445 |
.aws_picker_btn .csf--button img { |
| 446 |
margin-right: 7px; |
| 447 |
} |
| 448 |
|
| 449 |
#google_empty_alert { |
| 450 |
display: none; |
| 451 |
transition: 0.5s; |
| 452 |
} |
| 453 |
|
| 454 |
.alert_text { |
| 455 |
width: 450px; |
| 456 |
height: 150px; |
| 457 |
background: #fff; |
| 458 |
position: fixed; |
| 459 |
left: 50%; |
| 460 |
right: 0; |
| 461 |
top: 50%; |
| 462 |
bottom: 0; |
| 463 |
z-index: 999999; |
| 464 |
transform: translate(-50%, -100%); |
| 465 |
border-radius: 5px; |
| 466 |
} |
| 467 |
|
| 468 |
.alert_text .g_footer { |
| 469 |
border-top: 1px solid #ddd; |
| 470 |
text-align: right; |
| 471 |
} |
| 472 |
|
| 473 |
.alert_text a.g_ok { |
| 474 |
margin-top: 11px; |
| 475 |
margin-right: 14px; |
| 476 |
} |
| 477 |
|
| 478 |
.alert_text span { |
| 479 |
position: absolute; |
| 480 |
right: 13px; |
| 481 |
top: 2px; |
| 482 |
font-size: 20px; |
| 483 |
} |
| 484 |
|
| 485 |
.alert_text span:hover { |
| 486 |
cursor: pointer; |
| 487 |
} |
| 488 |
|
| 489 |
.alert_text p { |
| 490 |
padding: 23px; |
| 491 |
font-size: 14px; |
| 492 |
} |
| 493 |
|
| 494 |
.google_alert_overlay { |
| 495 |
width: 100%; |
| 496 |
height: 100%; |
| 497 |
position: fixed; |
| 498 |
background: #545454; |
| 499 |
top: 0; |
| 500 |
left: 0; |
| 501 |
right: 0; |
| 502 |
bottom: 0; |
| 503 |
z-index: 99; |
| 504 |
opacity: 0.9; |
| 505 |
} |
| 506 |
|
| 507 |
#eov_google_document_url { |
| 508 |
margin-right: 10px; |
| 509 |
} |
| 510 |
|
| 511 |
#h5vp_google_picker+img { |
| 512 |
max-width: 11px; |
| 513 |
} |
| 514 |
|
| 515 |
.panorama-readonly { |
| 516 |
z-index: 9999; |
| 517 |
font-style: normal; |
| 518 |
} |
| 519 |
|
| 520 |
.panorama-readonly .csf-fieldset { |
| 521 |
pointer-events: none; |
| 522 |
filter: blur(1px); |
| 523 |
} |
| 524 |
|
| 525 |
.panorama-readonly:hover:after { |
| 526 |
content: "This option is available in the Pro Version only."; |
| 527 |
position: absolute; |
| 528 |
top: 0; |
| 529 |
width: 95%; |
| 530 |
height: 100%; |
| 531 |
vertical-align: middle; |
| 532 |
display: flex; |
| 533 |
align-items: center; |
| 534 |
justify-content: center; |
| 535 |
font-size: 20px; |
| 536 |
color: #2196f3; |
| 537 |
} |
| 538 |
|
| 539 |
.fs-submenu-item.panorama.pricing.upgrade-mode { |
| 540 |
background: #fb7a01; |
| 541 |
border-radius: 3px; |
| 542 |
color: #fff; |
| 543 |
display: inline-block; |
| 544 |
padding: 6px 40px 6px 15px; |
| 545 |
} |
| 546 |
|
| 547 |
|
| 548 |
/* Pro Notice Box Styles */ |
| 549 |
.h5ap-pro-notice-box { |
| 550 |
background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%); |
| 551 |
padding: 25px; |
| 552 |
border-radius: 12px; |
| 553 |
border: 1px solid #ffeed6; |
| 554 |
box-shadow: 0 4px 15px rgba(251, 122, 1, 0.05); |
| 555 |
position: relative; |
| 556 |
overflow: hidden; |
| 557 |
} |
| 558 |
|
| 559 |
.h5ap-pro-notice-box::before { |
| 560 |
content: ""; |
| 561 |
position: absolute; |
| 562 |
top: 0; |
| 563 |
left: 0; |
| 564 |
width: 4px; |
| 565 |
height: 100%; |
| 566 |
background: #fb7a01; |
| 567 |
} |
| 568 |
|
| 569 |
.h5ap-pro-notice-title { |
| 570 |
margin-top: 0 !important; |
| 571 |
color: #d66801 !important; |
| 572 |
font-size: 18px !important; |
| 573 |
font-weight: 700 !important; |
| 574 |
display: flex; |
| 575 |
align-items: center; |
| 576 |
gap: 10px; |
| 577 |
margin-bottom: 12px; |
| 578 |
} |
| 579 |
|
| 580 |
.h5ap-pro-notice-desc { |
| 581 |
font-size: 14px; |
| 582 |
color: #8c4400; |
| 583 |
margin-bottom: 20px; |
| 584 |
font-weight: 400; |
| 585 |
margin-top: 0px; |
| 586 |
} |
| 587 |
|
| 588 |
.h5ap-pro-notice-list { |
| 589 |
margin: 15px 0 !important; |
| 590 |
padding-left: 0 !important; |
| 591 |
list-style: none !important; |
| 592 |
} |
| 593 |
|
| 594 |
.h5ap-pro-notice-list li { |
| 595 |
position: relative; |
| 596 |
padding-left: 25px; |
| 597 |
margin-bottom: 10px; |
| 598 |
color: #d66801; |
| 599 |
font-size: 13.5px; |
| 600 |
} |
| 601 |
|
| 602 |
.h5ap-pro-notice-list li::before { |
| 603 |
content: "✦"; |
| 604 |
position: absolute; |
| 605 |
left: 0; |
| 606 |
color: #fb7a01; |
| 607 |
font-weight: bold; |
| 608 |
} |
| 609 |
|
| 610 |
.h5ap-pro-notice-list li strong { |
| 611 |
color: #8c4400; |
| 612 |
} |
| 613 |
|
| 614 |
.h5ap-pro-notice-button { |
| 615 |
display: inline-flex; |
| 616 |
align-items: center; |
| 617 |
justify-content: center; |
| 618 |
background: #fb7a01; |
| 619 |
color: #fff !important; |
| 620 |
padding: 10px 22px; |
| 621 |
border-radius: 6px; |
| 622 |
text-decoration: none !important; |
| 623 |
font-weight: 600; |
| 624 |
font-size: 14px; |
| 625 |
transition: all 0.3s ease; |
| 626 |
box-shadow: 0 4px 12px rgba(251, 122, 1, 0.2); |
| 627 |
border: none; |
| 628 |
cursor: pointer; |
| 629 |
} |
| 630 |
|
| 631 |
.h5ap-pro-notice-button:hover { |
| 632 |
background: #d66801; |
| 633 |
transform: translateY(-2px); |
| 634 |
box-shadow: 0 6px 18px rgba(251, 122, 1, 0.3); |
| 635 |
color: #fff !important; |
| 636 |
} |