@pmidc/upyog-css 1.2.36-UAT.11 → 1.2.36-UAT.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -13111,7 +13111,7 @@ body {
13111
13111
  padding-top: 10px;
13112
13112
  width: 100%; }
13113
13113
 
13114
- .obps-document-detail-item, .obps-document-detail-list {
13114
+ .obps-document-detail-list {
13115
13115
  display: -webkit-box;
13116
13116
  display: -ms-flexbox;
13117
13117
  display: flex;
@@ -13119,11 +13119,13 @@ body {
13119
13119
  flex-wrap: wrap; }
13120
13120
 
13121
13121
  .obps-document-detail-item {
13122
- -webkit-box-pack: start;
13123
- -ms-flex-pack: start;
13124
- justify-content: flex-start;
13125
- -ms-flex-line-pack: center;
13126
- align-content: center; }
13122
+ display: -webkit-box;
13123
+ display: -ms-flexbox;
13124
+ display: flex;
13125
+ -webkit-box-orient: horizontal;
13126
+ -webkit-box-direction: normal;
13127
+ -ms-flex-direction: row;
13128
+ flex-direction: row; }
13127
13129
 
13128
13130
  .obps-document-detail-link {
13129
13131
  min-width: 100px;
@@ -19564,8 +19566,12 @@ body {
19564
19566
  justify-content: center; }
19565
19567
 
19566
19568
  .center-flex-mobile {
19567
- width: 80%;
19568
- margin-bottom: 10px; }
19569
+ -webkit-box-orient: horizontal;
19570
+ -webkit-box-direction: normal;
19571
+ -ms-flex-direction: row;
19572
+ flex-direction: row;
19573
+ margin-bottom: 10px;
19574
+ width: 50%; }
19569
19575
 
19570
19576
  .video-preview {
19571
19577
  width: 100%;
@@ -19628,8 +19634,12 @@ body {
19628
19634
  color: red; }
19629
19635
 
19630
19636
  .close-btn {
19631
- background-color: linear-gradient(135deg, #2563eb, #1e40af);
19632
- padding: 8px 16px; }
19637
+ padding: 5px 10px; }
19638
+ .close-btn:hover {
19639
+ -webkit-transform: translateY(-2px) !important;
19640
+ transform: translateY(-2px) !important;
19641
+ -webkit-box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important;
19642
+ box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important; }
19633
19643
 
19634
19644
  .advisory-text {
19635
19645
  font-size: 13px;
@@ -19763,6 +19773,76 @@ body {
19763
19773
  display: inline;
19764
19774
  padding-left: 180px; }
19765
19775
 
19776
+ .custom-loader-overlay {
19777
+ position: fixed;
19778
+ top: 0;
19779
+ left: 0;
19780
+ width: 100%;
19781
+ height: 100vh;
19782
+ -webkit-box-orient: vertical;
19783
+ -webkit-box-direction: normal;
19784
+ -ms-flex-direction: column;
19785
+ flex-direction: column;
19786
+ background-color: rgba(255, 255, 255, 0.95);
19787
+ z-index: 9999;
19788
+ grid-gap: 30px;
19789
+ gap: 30px;
19790
+ backdrop-filter: blur(15px); }
19791
+
19792
+ .custom-loader-overlay, .custom-loader-spinner-wrapper {
19793
+ display: -webkit-box;
19794
+ display: -ms-flexbox;
19795
+ display: flex;
19796
+ -webkit-box-align: center;
19797
+ -ms-flex-align: center;
19798
+ align-items: center;
19799
+ -webkit-box-pack: center;
19800
+ -ms-flex-pack: center;
19801
+ justify-content: center; }
19802
+
19803
+ .custom-loader-spinner-wrapper {
19804
+ width: 130px;
19805
+ height: 130px;
19806
+ position: relative;
19807
+ -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
19808
+ filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08)); }
19809
+
19810
+ .custom-loader-spinner {
19811
+ position: absolute;
19812
+ width: 100%;
19813
+ height: 100%;
19814
+ border-right: 12px solid #f0f0f0;
19815
+ border-top: 12px solid #f0f0f0;
19816
+ border-color: #1a1a1a #1a1a1a #f0f0f0 #f0f0f0;
19817
+ border-style: solid;
19818
+ border-width: 12px;
19819
+ border-radius: 50%;
19820
+ -webkit-animation: spin .8s linear infinite;
19821
+ animation: spin .8s linear infinite;
19822
+ -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
19823
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
19824
+
19825
+ .custom-loader-text {
19826
+ font-size: 18px;
19827
+ font-weight: 700;
19828
+ color: #1a1a1a;
19829
+ letter-spacing: .5px;
19830
+ display: -webkit-box;
19831
+ display: -ms-flexbox;
19832
+ display: flex;
19833
+ -webkit-box-align: baseline;
19834
+ -ms-flex-align: baseline;
19835
+ align-items: baseline;
19836
+ grid-gap: 2px;
19837
+ gap: 2px; }
19838
+
19839
+ .custom-loader-dots {
19840
+ min-width: 20px;
19841
+ display: inline-block; }
19842
+
19843
+ .view-button {
19844
+ width: 80%; }
19845
+
19766
19846
  .bpa-site-photograph-container {
19767
19847
  padding: 50px 0;
19768
19848
  display: -webkit-box;