@innovastudio/contentbuilder 1.5.56 → 1.5.57

Sign up to get free protection for your applications and to get access to all the features.
@@ -5534,7 +5534,8 @@ button:focus-visible {
5534
5534
  .is-tooltip {
5535
5535
  position: absolute;
5536
5536
  display: none;
5537
- padding: 1px 8px;
5537
+ line-height: 1;
5538
+ padding: 5px 8px;
5538
5539
  font-size: 11px;
5539
5540
  background: #333;
5540
5541
  border-radius: 0px;
@@ -6368,3 +6369,1119 @@ i.bi, i.icon {
6368
6369
  display: flex;
6369
6370
  }
6370
6371
  */
6372
+ /* Lightbox */
6373
+ .glightbox-container {
6374
+ width: 100%;
6375
+ height: 100%;
6376
+ position: fixed;
6377
+ top: 0;
6378
+ left: 0;
6379
+ z-index: 999999 !important;
6380
+ overflow: hidden;
6381
+ -ms-touch-action: none;
6382
+ touch-action: none;
6383
+ -webkit-text-size-adjust: 100%;
6384
+ -moz-text-size-adjust: 100%;
6385
+ -ms-text-size-adjust: 100%;
6386
+ text-size-adjust: 100%;
6387
+ -webkit-backface-visibility: hidden;
6388
+ backface-visibility: hidden;
6389
+ outline: none;
6390
+ }
6391
+
6392
+ .glightbox-container.inactive {
6393
+ display: none;
6394
+ }
6395
+
6396
+ .glightbox-container .gcontainer {
6397
+ position: relative;
6398
+ width: 100%;
6399
+ height: 100%;
6400
+ z-index: 9999;
6401
+ overflow: hidden;
6402
+ }
6403
+
6404
+ .glightbox-container .gslider {
6405
+ -webkit-transition: -webkit-transform 0.4s ease;
6406
+ transition: -webkit-transform 0.4s ease;
6407
+ transition: transform 0.4s ease;
6408
+ transition: transform 0.4s ease, -webkit-transform 0.4s ease;
6409
+ height: 100%;
6410
+ left: 0;
6411
+ top: 0;
6412
+ width: 100%;
6413
+ position: relative;
6414
+ overflow: hidden;
6415
+ display: -webkit-box !important;
6416
+ display: -ms-flexbox !important;
6417
+ display: flex !important;
6418
+ -webkit-box-pack: center;
6419
+ -ms-flex-pack: center;
6420
+ justify-content: center;
6421
+ -webkit-box-align: center;
6422
+ -ms-flex-align: center;
6423
+ align-items: center;
6424
+ -webkit-transform: translate3d(0, 0, 0);
6425
+ transform: translate3d(0, 0, 0);
6426
+ }
6427
+
6428
+ .glightbox-container .gslide {
6429
+ width: 100%;
6430
+ position: absolute;
6431
+ -webkit-user-select: none;
6432
+ -moz-user-select: none;
6433
+ -ms-user-select: none;
6434
+ user-select: none;
6435
+ display: -webkit-box;
6436
+ display: -ms-flexbox;
6437
+ display: flex;
6438
+ -webkit-box-align: center;
6439
+ -ms-flex-align: center;
6440
+ align-items: center;
6441
+ -webkit-box-pack: center;
6442
+ -ms-flex-pack: center;
6443
+ justify-content: center;
6444
+ opacity: 0;
6445
+ }
6446
+
6447
+ .glightbox-container .gslide.current {
6448
+ opacity: 1;
6449
+ z-index: 99999;
6450
+ position: relative;
6451
+ }
6452
+
6453
+ .glightbox-container .gslide.prev {
6454
+ opacity: 1;
6455
+ z-index: 9999;
6456
+ }
6457
+
6458
+ .glightbox-container .gslide-inner-content {
6459
+ width: 100%;
6460
+ }
6461
+
6462
+ .glightbox-container .ginner-container {
6463
+ position: relative;
6464
+ width: 100%;
6465
+ display: -webkit-box;
6466
+ display: -ms-flexbox;
6467
+ display: flex;
6468
+ -webkit-box-pack: center;
6469
+ -ms-flex-pack: center;
6470
+ justify-content: center;
6471
+ -webkit-box-orient: vertical;
6472
+ -webkit-box-direction: normal;
6473
+ -ms-flex-direction: column;
6474
+ flex-direction: column;
6475
+ max-width: 100%;
6476
+ margin: auto;
6477
+ height: 100vh;
6478
+ }
6479
+
6480
+ .glightbox-container .ginner-container.gvideo-container {
6481
+ width: 100%;
6482
+ }
6483
+
6484
+ .glightbox-container .ginner-container.desc-bottom,
6485
+ .glightbox-container .ginner-container.desc-top {
6486
+ -webkit-box-orient: vertical;
6487
+ -webkit-box-direction: normal;
6488
+ -ms-flex-direction: column;
6489
+ flex-direction: column;
6490
+ }
6491
+
6492
+ .glightbox-container .ginner-container.desc-left,
6493
+ .glightbox-container .ginner-container.desc-right {
6494
+ max-width: 100% !important;
6495
+ }
6496
+
6497
+ .gslide iframe,
6498
+ .gslide video {
6499
+ outline: none !important;
6500
+ border: none;
6501
+ min-height: 165px;
6502
+ -webkit-overflow-scrolling: touch;
6503
+ -ms-touch-action: auto;
6504
+ touch-action: auto;
6505
+ }
6506
+
6507
+ .gslide:not(.current) {
6508
+ pointer-events: none;
6509
+ }
6510
+
6511
+ .gslide-image {
6512
+ -webkit-box-align: center;
6513
+ -ms-flex-align: center;
6514
+ align-items: center;
6515
+ }
6516
+
6517
+ .gslide-image img {
6518
+ max-height: 100vh;
6519
+ display: block;
6520
+ padding: 0;
6521
+ float: none;
6522
+ outline: none;
6523
+ border: none;
6524
+ -webkit-user-select: none;
6525
+ -moz-user-select: none;
6526
+ -ms-user-select: none;
6527
+ user-select: none;
6528
+ max-width: 100vw;
6529
+ width: auto;
6530
+ height: auto;
6531
+ -o-object-fit: cover;
6532
+ object-fit: cover;
6533
+ -ms-touch-action: none;
6534
+ touch-action: none;
6535
+ margin: auto;
6536
+ min-width: 200px;
6537
+ }
6538
+
6539
+ .desc-top .gslide-image img,
6540
+ .desc-bottom .gslide-image img {
6541
+ width: auto;
6542
+ }
6543
+
6544
+ .desc-left .gslide-image img,
6545
+ .desc-right .gslide-image img {
6546
+ width: auto;
6547
+ max-width: 100%;
6548
+ }
6549
+
6550
+ .gslide-image img.zoomable {
6551
+ position: relative;
6552
+ }
6553
+
6554
+ .gslide-image img.dragging {
6555
+ cursor: -webkit-grabbing !important;
6556
+ cursor: grabbing !important;
6557
+ -webkit-transition: none;
6558
+ transition: none;
6559
+ }
6560
+
6561
+ .gslide-video {
6562
+ position: relative;
6563
+ max-width: 100vh;
6564
+ width: 100% !important;
6565
+ }
6566
+
6567
+ .gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
6568
+ display: none;
6569
+ }
6570
+
6571
+ .gslide-video .gvideo-wrapper {
6572
+ width: 100%;
6573
+ /* max-width: 160vmin; */
6574
+ margin: auto;
6575
+ }
6576
+
6577
+ .gslide-video::before {
6578
+ content: "";
6579
+ position: absolute;
6580
+ width: 100%;
6581
+ height: 100%;
6582
+ background: rgba(255, 0, 0, 0.34);
6583
+ display: none;
6584
+ }
6585
+
6586
+ .gslide-video.playing::before {
6587
+ display: none;
6588
+ }
6589
+
6590
+ .gslide-video.fullscreen {
6591
+ max-width: 100% !important;
6592
+ min-width: 100%;
6593
+ height: 75vh;
6594
+ }
6595
+
6596
+ .gslide-video.fullscreen video {
6597
+ max-width: 100% !important;
6598
+ width: 100% !important;
6599
+ }
6600
+
6601
+ .gslide-inline {
6602
+ background: #fff;
6603
+ text-align: left;
6604
+ max-height: calc(100vh - 40px);
6605
+ overflow: auto;
6606
+ max-width: 100%;
6607
+ margin: auto;
6608
+ }
6609
+
6610
+ .gslide-inline .ginlined-content {
6611
+ padding: 20px;
6612
+ width: 100%;
6613
+ }
6614
+
6615
+ .gslide-inline .dragging {
6616
+ cursor: -webkit-grabbing !important;
6617
+ cursor: grabbing !important;
6618
+ -webkit-transition: none;
6619
+ transition: none;
6620
+ }
6621
+
6622
+ .ginlined-content {
6623
+ overflow: auto;
6624
+ display: block !important;
6625
+ opacity: 1;
6626
+ }
6627
+
6628
+ .gslide-external {
6629
+ display: -webkit-box;
6630
+ display: -ms-flexbox;
6631
+ display: flex;
6632
+ width: 100%;
6633
+ min-width: 100%;
6634
+ background: #fff;
6635
+ padding: 0;
6636
+ overflow: auto;
6637
+ max-height: 75vh;
6638
+ height: 100%;
6639
+ }
6640
+
6641
+ .gslide-media {
6642
+ display: -webkit-box;
6643
+ display: -ms-flexbox;
6644
+ display: flex;
6645
+ width: auto;
6646
+ }
6647
+
6648
+ .zoomed .gslide-media {
6649
+ -webkit-box-shadow: none !important;
6650
+ box-shadow: none !important;
6651
+ }
6652
+
6653
+ .desc-top .gslide-media,
6654
+ .desc-bottom .gslide-media {
6655
+ margin: 0 auto;
6656
+ -webkit-box-orient: vertical;
6657
+ -webkit-box-direction: normal;
6658
+ -ms-flex-direction: column;
6659
+ flex-direction: column;
6660
+ }
6661
+
6662
+ .gslide-description {
6663
+ position: relative;
6664
+ -webkit-box-flex: 1;
6665
+ -ms-flex: 1 0 100%;
6666
+ flex: 1 0 100%;
6667
+ }
6668
+
6669
+ .gslide-description.description-left,
6670
+ .gslide-description.description-right {
6671
+ max-width: 100%;
6672
+ }
6673
+
6674
+ .gslide-description.description-bottom,
6675
+ .gslide-description.description-top {
6676
+ margin: 0 auto;
6677
+ width: 100%;
6678
+ }
6679
+
6680
+ .gslide-description p {
6681
+ margin-bottom: 12px;
6682
+ }
6683
+
6684
+ .gslide-description p:last-child {
6685
+ margin-bottom: 0;
6686
+ }
6687
+
6688
+ .zoomed .gslide-description {
6689
+ display: none;
6690
+ }
6691
+
6692
+ .glightbox-button-hidden {
6693
+ display: none;
6694
+ }
6695
+
6696
+ .glightbox-mobile .glightbox-container .gslide-description {
6697
+ height: auto !important;
6698
+ width: 100%;
6699
+ position: absolute;
6700
+ bottom: 0;
6701
+ padding: 19px 11px;
6702
+ max-width: 100vw !important;
6703
+ -webkit-box-ordinal-group: 3 !important;
6704
+ -ms-flex-order: 2 !important;
6705
+ order: 2 !important;
6706
+ max-height: 78vh;
6707
+ overflow: auto !important;
6708
+ background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
6709
+ background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
6710
+ -webkit-transition: opacity 0.3s linear;
6711
+ transition: opacity 0.3s linear;
6712
+ padding-bottom: 50px;
6713
+ }
6714
+
6715
+ .glightbox-mobile .glightbox-container .gslide-title {
6716
+ color: #fff;
6717
+ font-size: 1em;
6718
+ }
6719
+
6720
+ .glightbox-mobile .glightbox-container .gslide-desc {
6721
+ color: #a1a1a1;
6722
+ }
6723
+
6724
+ .glightbox-mobile .glightbox-container .gslide-desc a {
6725
+ color: #fff;
6726
+ font-weight: bold;
6727
+ }
6728
+
6729
+ .glightbox-mobile .glightbox-container .gslide-desc * {
6730
+ color: inherit;
6731
+ }
6732
+
6733
+ .glightbox-mobile .glightbox-container .gslide-desc .desc-more {
6734
+ color: #fff;
6735
+ opacity: 0.4;
6736
+ }
6737
+
6738
+ .gdesc-open .gslide-media {
6739
+ -webkit-transition: opacity 0.5s ease;
6740
+ transition: opacity 0.5s ease;
6741
+ opacity: 0.4;
6742
+ }
6743
+
6744
+ .gdesc-open .gdesc-inner {
6745
+ padding-bottom: 30px;
6746
+ }
6747
+
6748
+ .gdesc-closed .gslide-media {
6749
+ -webkit-transition: opacity 0.5s ease;
6750
+ transition: opacity 0.5s ease;
6751
+ opacity: 1;
6752
+ }
6753
+
6754
+ .greset {
6755
+ -webkit-transition: all 0.3s ease;
6756
+ transition: all 0.3s ease;
6757
+ }
6758
+
6759
+ .gabsolute {
6760
+ position: absolute;
6761
+ }
6762
+
6763
+ .grelative {
6764
+ position: relative;
6765
+ }
6766
+
6767
+ .glightbox-desc {
6768
+ display: none !important;
6769
+ }
6770
+
6771
+ .glightbox-open {
6772
+ overflow: hidden;
6773
+ }
6774
+
6775
+ .gloader {
6776
+ height: 25px;
6777
+ width: 25px;
6778
+ -webkit-animation: lightboxLoader 0.8s infinite linear;
6779
+ animation: lightboxLoader 0.8s infinite linear;
6780
+ border: 2px solid #fff;
6781
+ border-right-color: transparent;
6782
+ border-radius: 50%;
6783
+ position: absolute;
6784
+ display: block;
6785
+ z-index: 9999;
6786
+ left: 0;
6787
+ right: 0;
6788
+ margin: 0 auto;
6789
+ top: 47%;
6790
+ }
6791
+
6792
+ .goverlay {
6793
+ width: 100%;
6794
+ height: calc(100vh + 1px);
6795
+ position: fixed;
6796
+ top: -1px;
6797
+ left: 0;
6798
+ background: #000;
6799
+ will-change: opacity;
6800
+ }
6801
+
6802
+ .glightbox-mobile .goverlay {
6803
+ background: #000;
6804
+ }
6805
+
6806
+ .gprev,
6807
+ .gnext,
6808
+ .gclose {
6809
+ z-index: 99999;
6810
+ cursor: pointer;
6811
+ width: 26px;
6812
+ height: 44px;
6813
+ border: none;
6814
+ display: -webkit-box;
6815
+ display: -ms-flexbox;
6816
+ display: flex;
6817
+ -webkit-box-pack: center;
6818
+ -ms-flex-pack: center;
6819
+ justify-content: center;
6820
+ -webkit-box-align: center;
6821
+ -ms-flex-align: center;
6822
+ align-items: center;
6823
+ -webkit-box-orient: vertical;
6824
+ -webkit-box-direction: normal;
6825
+ -ms-flex-direction: column;
6826
+ flex-direction: column;
6827
+ }
6828
+
6829
+ .gprev svg,
6830
+ .gnext svg,
6831
+ .gclose svg {
6832
+ display: block;
6833
+ width: 25px;
6834
+ height: auto;
6835
+ margin: 0;
6836
+ padding: 0;
6837
+ }
6838
+
6839
+ .gprev.disabled,
6840
+ .gnext.disabled,
6841
+ .gclose.disabled {
6842
+ opacity: 0.1;
6843
+ }
6844
+
6845
+ .gprev .garrow,
6846
+ .gnext .garrow,
6847
+ .gclose .garrow {
6848
+ stroke: #fff;
6849
+ }
6850
+
6851
+ .gbtn.focused {
6852
+ outline: 2px solid #0f3d81;
6853
+ }
6854
+
6855
+ iframe.wait-autoplay {
6856
+ opacity: 0;
6857
+ }
6858
+
6859
+ .glightbox-closing .gnext,
6860
+ .glightbox-closing .gprev,
6861
+ .glightbox-closing .gclose {
6862
+ opacity: 0 !important;
6863
+ }
6864
+
6865
+ /*Skin */
6866
+ .glightbox-clean .gslide-description {
6867
+ background: #fff;
6868
+ }
6869
+
6870
+ .glightbox-clean .gdesc-inner {
6871
+ padding: 22px 20px;
6872
+ }
6873
+
6874
+ .glightbox-clean .gslide-title {
6875
+ font-size: 1em;
6876
+ font-weight: normal;
6877
+ font-family: arial;
6878
+ color: #000;
6879
+ margin-bottom: 19px;
6880
+ line-height: 1.4em;
6881
+ }
6882
+
6883
+ .glightbox-clean .gslide-desc {
6884
+ font-size: 0.86em;
6885
+ margin-bottom: 0;
6886
+ font-family: arial;
6887
+ line-height: 1.4em;
6888
+ }
6889
+
6890
+ .glightbox-clean .gslide-video {
6891
+ background: #000;
6892
+ }
6893
+
6894
+ .glightbox-clean .gprev,
6895
+ .glightbox-clean .gnext,
6896
+ .glightbox-clean .gclose {
6897
+ background-color: rgba(0, 0, 0, 0.75);
6898
+ border-radius: 4px;
6899
+ }
6900
+
6901
+ .glightbox-clean .gprev path,
6902
+ .glightbox-clean .gnext path,
6903
+ .glightbox-clean .gclose path {
6904
+ fill: #fff;
6905
+ }
6906
+
6907
+ .glightbox-clean .gprev {
6908
+ position: absolute;
6909
+ top: -100%;
6910
+ left: 30px;
6911
+ width: 40px;
6912
+ height: 50px;
6913
+ }
6914
+
6915
+ .glightbox-clean .gnext {
6916
+ position: absolute;
6917
+ top: -100%;
6918
+ right: 30px;
6919
+ width: 40px;
6920
+ height: 50px;
6921
+ }
6922
+
6923
+ .glightbox-clean .gclose {
6924
+ width: 35px;
6925
+ height: 35px;
6926
+ top: 15px;
6927
+ right: 10px;
6928
+ position: absolute;
6929
+ }
6930
+
6931
+ .glightbox-clean .gclose svg {
6932
+ width: 18px;
6933
+ height: auto;
6934
+ }
6935
+
6936
+ .glightbox-clean .gclose:hover {
6937
+ opacity: 1;
6938
+ }
6939
+
6940
+ /*CSS Animations*/
6941
+ .gfadeIn {
6942
+ -webkit-animation: gfadeIn 0.5s ease;
6943
+ animation: gfadeIn 0.5s ease;
6944
+ }
6945
+
6946
+ .gfadeOut {
6947
+ -webkit-animation: gfadeOut 0.5s ease;
6948
+ animation: gfadeOut 0.5s ease;
6949
+ }
6950
+
6951
+ .gslideOutLeft {
6952
+ -webkit-animation: gslideOutLeft 0.3s ease;
6953
+ animation: gslideOutLeft 0.3s ease;
6954
+ }
6955
+
6956
+ .gslideInLeft {
6957
+ -webkit-animation: gslideInLeft 0.3s ease;
6958
+ animation: gslideInLeft 0.3s ease;
6959
+ }
6960
+
6961
+ .gslideOutRight {
6962
+ -webkit-animation: gslideOutRight 0.3s ease;
6963
+ animation: gslideOutRight 0.3s ease;
6964
+ }
6965
+
6966
+ .gslideInRight {
6967
+ -webkit-animation: gslideInRight 0.3s ease;
6968
+ animation: gslideInRight 0.3s ease;
6969
+ }
6970
+
6971
+ .gzoomIn {
6972
+ -webkit-animation: gzoomIn 0.5s ease;
6973
+ animation: gzoomIn 0.5s ease;
6974
+ }
6975
+
6976
+ .gzoomOut {
6977
+ -webkit-animation: gzoomOut 0.5s ease;
6978
+ animation: gzoomOut 0.5s ease;
6979
+ }
6980
+
6981
+ @-webkit-keyframes lightboxLoader {
6982
+ 0% {
6983
+ -webkit-transform: rotate(0deg);
6984
+ transform: rotate(0deg);
6985
+ }
6986
+ 100% {
6987
+ -webkit-transform: rotate(360deg);
6988
+ transform: rotate(360deg);
6989
+ }
6990
+ }
6991
+ @keyframes lightboxLoader {
6992
+ 0% {
6993
+ -webkit-transform: rotate(0deg);
6994
+ transform: rotate(0deg);
6995
+ }
6996
+ 100% {
6997
+ -webkit-transform: rotate(360deg);
6998
+ transform: rotate(360deg);
6999
+ }
7000
+ }
7001
+ @-webkit-keyframes gfadeIn {
7002
+ from {
7003
+ opacity: 0;
7004
+ }
7005
+ to {
7006
+ opacity: 1;
7007
+ }
7008
+ }
7009
+ @keyframes gfadeIn {
7010
+ from {
7011
+ opacity: 0;
7012
+ }
7013
+ to {
7014
+ opacity: 1;
7015
+ }
7016
+ }
7017
+ @-webkit-keyframes gfadeOut {
7018
+ from {
7019
+ opacity: 1;
7020
+ }
7021
+ to {
7022
+ opacity: 0;
7023
+ }
7024
+ }
7025
+ @keyframes gfadeOut {
7026
+ from {
7027
+ opacity: 1;
7028
+ }
7029
+ to {
7030
+ opacity: 0;
7031
+ }
7032
+ }
7033
+ @-webkit-keyframes gslideInLeft {
7034
+ from {
7035
+ opacity: 0;
7036
+ -webkit-transform: translate3d(-60%, 0, 0);
7037
+ transform: translate3d(-60%, 0, 0);
7038
+ }
7039
+ to {
7040
+ visibility: visible;
7041
+ -webkit-transform: translate3d(0, 0, 0);
7042
+ transform: translate3d(0, 0, 0);
7043
+ opacity: 1;
7044
+ }
7045
+ }
7046
+ @keyframes gslideInLeft {
7047
+ from {
7048
+ opacity: 0;
7049
+ -webkit-transform: translate3d(-60%, 0, 0);
7050
+ transform: translate3d(-60%, 0, 0);
7051
+ }
7052
+ to {
7053
+ visibility: visible;
7054
+ -webkit-transform: translate3d(0, 0, 0);
7055
+ transform: translate3d(0, 0, 0);
7056
+ opacity: 1;
7057
+ }
7058
+ }
7059
+ @-webkit-keyframes gslideOutLeft {
7060
+ from {
7061
+ opacity: 1;
7062
+ visibility: visible;
7063
+ -webkit-transform: translate3d(0, 0, 0);
7064
+ transform: translate3d(0, 0, 0);
7065
+ }
7066
+ to {
7067
+ -webkit-transform: translate3d(-60%, 0, 0);
7068
+ transform: translate3d(-60%, 0, 0);
7069
+ opacity: 0;
7070
+ visibility: hidden;
7071
+ }
7072
+ }
7073
+ @keyframes gslideOutLeft {
7074
+ from {
7075
+ opacity: 1;
7076
+ visibility: visible;
7077
+ -webkit-transform: translate3d(0, 0, 0);
7078
+ transform: translate3d(0, 0, 0);
7079
+ }
7080
+ to {
7081
+ -webkit-transform: translate3d(-60%, 0, 0);
7082
+ transform: translate3d(-60%, 0, 0);
7083
+ opacity: 0;
7084
+ visibility: hidden;
7085
+ }
7086
+ }
7087
+ @-webkit-keyframes gslideInRight {
7088
+ from {
7089
+ opacity: 0;
7090
+ visibility: visible;
7091
+ -webkit-transform: translate3d(60%, 0, 0);
7092
+ transform: translate3d(60%, 0, 0);
7093
+ }
7094
+ to {
7095
+ -webkit-transform: translate3d(0, 0, 0);
7096
+ transform: translate3d(0, 0, 0);
7097
+ opacity: 1;
7098
+ }
7099
+ }
7100
+ @keyframes gslideInRight {
7101
+ from {
7102
+ opacity: 0;
7103
+ visibility: visible;
7104
+ -webkit-transform: translate3d(60%, 0, 0);
7105
+ transform: translate3d(60%, 0, 0);
7106
+ }
7107
+ to {
7108
+ -webkit-transform: translate3d(0, 0, 0);
7109
+ transform: translate3d(0, 0, 0);
7110
+ opacity: 1;
7111
+ }
7112
+ }
7113
+ @-webkit-keyframes gslideOutRight {
7114
+ from {
7115
+ opacity: 1;
7116
+ visibility: visible;
7117
+ -webkit-transform: translate3d(0, 0, 0);
7118
+ transform: translate3d(0, 0, 0);
7119
+ }
7120
+ to {
7121
+ -webkit-transform: translate3d(60%, 0, 0);
7122
+ transform: translate3d(60%, 0, 0);
7123
+ opacity: 0;
7124
+ }
7125
+ }
7126
+ @keyframes gslideOutRight {
7127
+ from {
7128
+ opacity: 1;
7129
+ visibility: visible;
7130
+ -webkit-transform: translate3d(0, 0, 0);
7131
+ transform: translate3d(0, 0, 0);
7132
+ }
7133
+ to {
7134
+ -webkit-transform: translate3d(60%, 0, 0);
7135
+ transform: translate3d(60%, 0, 0);
7136
+ opacity: 0;
7137
+ }
7138
+ }
7139
+ @-webkit-keyframes gzoomIn {
7140
+ from {
7141
+ opacity: 0;
7142
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
7143
+ transform: scale3d(0.3, 0.3, 0.3);
7144
+ }
7145
+ to {
7146
+ opacity: 1;
7147
+ }
7148
+ }
7149
+ @keyframes gzoomIn {
7150
+ from {
7151
+ opacity: 0;
7152
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
7153
+ transform: scale3d(0.3, 0.3, 0.3);
7154
+ }
7155
+ to {
7156
+ opacity: 1;
7157
+ }
7158
+ }
7159
+ @-webkit-keyframes gzoomOut {
7160
+ from {
7161
+ opacity: 1;
7162
+ }
7163
+ 50% {
7164
+ opacity: 0;
7165
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
7166
+ transform: scale3d(0.3, 0.3, 0.3);
7167
+ }
7168
+ to {
7169
+ opacity: 0;
7170
+ }
7171
+ }
7172
+ @keyframes gzoomOut {
7173
+ from {
7174
+ opacity: 1;
7175
+ }
7176
+ 50% {
7177
+ opacity: 0;
7178
+ -webkit-transform: scale3d(0.3, 0.3, 0.3);
7179
+ transform: scale3d(0.3, 0.3, 0.3);
7180
+ }
7181
+ to {
7182
+ opacity: 0;
7183
+ }
7184
+ }
7185
+ @media (min-width: 769px) {
7186
+ .glightbox-container .ginner-container {
7187
+ width: auto;
7188
+ height: auto;
7189
+ -webkit-box-orient: horizontal;
7190
+ -webkit-box-direction: normal;
7191
+ -ms-flex-direction: row;
7192
+ flex-direction: row;
7193
+ }
7194
+
7195
+ .glightbox-container .ginner-container.desc-top .gslide-description {
7196
+ -webkit-box-ordinal-group: 1;
7197
+ -ms-flex-order: 0;
7198
+ order: 0;
7199
+ }
7200
+
7201
+ .glightbox-container .ginner-container.desc-top .gslide-image,
7202
+ .glightbox-container .ginner-container.desc-top .gslide-image img {
7203
+ -webkit-box-ordinal-group: 2;
7204
+ -ms-flex-order: 1;
7205
+ order: 1;
7206
+ }
7207
+
7208
+ .glightbox-container .ginner-container.desc-left .gslide-description {
7209
+ -webkit-box-ordinal-group: 1;
7210
+ -ms-flex-order: 0;
7211
+ order: 0;
7212
+ }
7213
+
7214
+ .glightbox-container .ginner-container.desc-left .gslide-image {
7215
+ -webkit-box-ordinal-group: 2;
7216
+ -ms-flex-order: 1;
7217
+ order: 1;
7218
+ }
7219
+
7220
+ .gslide-image img {
7221
+ max-height: 97vh;
7222
+ max-width: 100%;
7223
+ }
7224
+
7225
+ .gslide-image img.zoomable {
7226
+ cursor: -webkit-zoom-in;
7227
+ cursor: zoom-in;
7228
+ }
7229
+
7230
+ .zoomed .gslide-image img.zoomable {
7231
+ cursor: -webkit-grab;
7232
+ cursor: grab;
7233
+ }
7234
+
7235
+ .gslide-inline {
7236
+ max-height: 95vh;
7237
+ }
7238
+
7239
+ .gslide-external {
7240
+ max-height: 100vh;
7241
+ }
7242
+
7243
+ .gslide-description.description-left,
7244
+ .gslide-description.description-right {
7245
+ max-width: 275px;
7246
+ }
7247
+
7248
+ .glightbox-open {
7249
+ height: auto;
7250
+ }
7251
+
7252
+ .goverlay {
7253
+ background: rgba(0, 0, 0, 0.92);
7254
+ }
7255
+
7256
+ .glightbox-clean .gslide-media {
7257
+ -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
7258
+ box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
7259
+ }
7260
+
7261
+ .glightbox-clean .description-left .gdesc-inner,
7262
+ .glightbox-clean .description-right .gdesc-inner {
7263
+ position: absolute;
7264
+ height: 100%;
7265
+ overflow-y: auto;
7266
+ }
7267
+
7268
+ .glightbox-clean .gprev,
7269
+ .glightbox-clean .gnext,
7270
+ .glightbox-clean .gclose {
7271
+ background-color: rgba(0, 0, 0, 0.32);
7272
+ }
7273
+
7274
+ .glightbox-clean .gprev:hover,
7275
+ .glightbox-clean .gnext:hover,
7276
+ .glightbox-clean .gclose:hover {
7277
+ background-color: rgba(0, 0, 0, 0.7);
7278
+ }
7279
+
7280
+ .glightbox-clean .gprev {
7281
+ top: 45%;
7282
+ }
7283
+
7284
+ .glightbox-clean .gnext {
7285
+ top: 45%;
7286
+ }
7287
+ }
7288
+ @media (min-width: 992px) {
7289
+ .glightbox-clean .gclose {
7290
+ opacity: 0.7;
7291
+ right: 20px;
7292
+ }
7293
+ }
7294
+ @media screen and (max-height: 420px) {
7295
+ .goverlay {
7296
+ background: #000;
7297
+ }
7298
+ }
7299
+ /* skin */
7300
+ /* Light */
7301
+ .glightbox-light .gslide-description {
7302
+ background: #fff;
7303
+ }
7304
+
7305
+ .glightbox-light .gdesc-inner {
7306
+ padding: 22px 20px;
7307
+ }
7308
+
7309
+ .glightbox-light .gslide-title {
7310
+ font-size: 1em;
7311
+ font-weight: normal;
7312
+ font-family: arial;
7313
+ color: #000;
7314
+ margin-bottom: 19px;
7315
+ line-height: 1.4em;
7316
+ }
7317
+
7318
+ .glightbox-light .gslide-desc {
7319
+ font-size: 0.86em;
7320
+ margin-bottom: 0;
7321
+ font-family: arial;
7322
+ line-height: 1.4em;
7323
+ }
7324
+
7325
+ .glightbox-light .gslide-video {
7326
+ background: #000;
7327
+ }
7328
+
7329
+ .glightbox-light .gprev,
7330
+ .glightbox-light .gnext,
7331
+ .glightbox-light .gclose {
7332
+ background-color: rgba(255, 255, 255, 0);
7333
+ border-radius: 4px;
7334
+ }
7335
+
7336
+ .glightbox-light .gprev path,
7337
+ .glightbox-light .gnext path,
7338
+ .glightbox-light .gclose path {
7339
+ fill: #000;
7340
+ }
7341
+
7342
+ .glightbox-light .gprev {
7343
+ position: absolute;
7344
+ top: -100%;
7345
+ left: 30px;
7346
+ width: 40px;
7347
+ height: 50px;
7348
+ }
7349
+
7350
+ .glightbox-light .gnext {
7351
+ position: absolute;
7352
+ top: -100%;
7353
+ right: 30px;
7354
+ width: 40px;
7355
+ height: 50px;
7356
+ }
7357
+
7358
+ .glightbox-light .gclose {
7359
+ width: 35px;
7360
+ height: 35px;
7361
+ top: 15px;
7362
+ right: 10px;
7363
+ position: absolute;
7364
+ }
7365
+
7366
+ .glightbox-light .gclose svg {
7367
+ width: 18px;
7368
+ height: auto;
7369
+ }
7370
+
7371
+ .glightbox-light .gclose:hover {
7372
+ opacity: 1;
7373
+ }
7374
+
7375
+ /**/
7376
+ .glightbox-light .gslide-media {
7377
+ -webkit-box-shadow: none !important;
7378
+ box-shadow: none !important;
7379
+ }
7380
+
7381
+ .glightbox-light .description-left .gdesc-inner,
7382
+ .glightbox-light .description-right .gdesc-inner {
7383
+ position: absolute;
7384
+ height: 100%;
7385
+ overflow-y: auto;
7386
+ }
7387
+
7388
+ .glightbox-light .gprev,
7389
+ .glightbox-light .gnext,
7390
+ .glightbox-light .gclose {
7391
+ background-color: rgba(255, 255, 255, 0);
7392
+ }
7393
+
7394
+ .glightbox-light .gprev:hover,
7395
+ .glightbox-light .gnext:hover,
7396
+ .glightbox-light .gclose:hover {
7397
+ background-color: rgba(255, 255, 255, 0);
7398
+ }
7399
+
7400
+ .glightbox-light .gprev {
7401
+ top: 45%;
7402
+ }
7403
+
7404
+ .glightbox-light .gnext {
7405
+ top: 45%;
7406
+ }
7407
+
7408
+ @media (min-width: 992px) {
7409
+ .glightbox-light .gclose {
7410
+ opacity: 0.7;
7411
+ right: 20px;
7412
+ }
7413
+ }
7414
+ /**/
7415
+ .glightbox-light .goverlay {
7416
+ background: white !important;
7417
+ }
7418
+
7419
+ @media screen and (max-height: 420px) {
7420
+ .goverlay {
7421
+ background: white;
7422
+ }
7423
+ }
7424
+ /* override (light) */
7425
+ .glightbox-light .gprev,
7426
+ .glightbox-light .gnext {
7427
+ width: 55px !important;
7428
+ height: 70px !important;
7429
+ }
7430
+
7431
+ .gclose svg, .gnext svg, .gprev svg {
7432
+ width: 50px !important;
7433
+ }
7434
+
7435
+ .glightbox-light .gclose {
7436
+ width: 55px !important;
7437
+ height: 55px !important;
7438
+ }
7439
+
7440
+ .glightbox-light .gclose svg {
7441
+ width: 30px !important;
7442
+ }
7443
+
7444
+ .glightbox-light .gslide-title {
7445
+ font-size: 1.2em !important;
7446
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
7447
+ }
7448
+
7449
+ .glightbox-light .gslide-desc {
7450
+ font-size: 1em !important;
7451
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
7452
+ }
7453
+
7454
+ /* override (clean) */
7455
+ .glightbox-clean .gprev,
7456
+ .glightbox-clean .gnext {
7457
+ width: 55px !important;
7458
+ height: 70px !important;
7459
+ }
7460
+
7461
+ .gclose svg, .gnext svg, .gprev svg {
7462
+ width: 50px !important;
7463
+ }
7464
+
7465
+ .glightbox-clean .gclose {
7466
+ width: 55px !important;
7467
+ height: 55px !important;
7468
+ }
7469
+
7470
+ .glightbox-clean .gclose svg {
7471
+ width: 30px !important;
7472
+ }
7473
+
7474
+ .glightbox-clean .gslide-title {
7475
+ font-size: 1.2em !important;
7476
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
7477
+ }
7478
+
7479
+ .glightbox-clean .gslide-desc {
7480
+ font-size: 1em !important;
7481
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
7482
+ }
7483
+
7484
+ /* other override */
7485
+ .gclose.disabled, .gnext.disabled, .gprev.disabled {
7486
+ opacity: 0;
7487
+ }