funuicss 1.1.0

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.
Files changed (75) hide show
  1. package/component/Button.jsx +90 -0
  2. package/component/Icon.jsx +73 -0
  3. package/component/Typography.jsx +86 -0
  4. package/css/Maven_Pro/MavenPro.ttf +0 -0
  5. package/css/Maven_Pro/OFL.txt +93 -0
  6. package/css/Maven_Pro/README.txt +68 -0
  7. package/css/Maven_Pro/static/MavenPro-Black.ttf +0 -0
  8. package/css/Maven_Pro/static/MavenPro-Bold.ttf +0 -0
  9. package/css/Maven_Pro/static/MavenPro-ExtraBold.ttf +0 -0
  10. package/css/Maven_Pro/static/MavenPro-Medium.ttf +0 -0
  11. package/css/Maven_Pro/static/MavenPro-Regular.ttf +0 -0
  12. package/css/Maven_Pro/static/MavenPro-SemiBold.ttf +0 -0
  13. package/css/fun.css +664 -0
  14. package/package.json +26 -0
  15. package/src/Components/Alert.js +68 -0
  16. package/src/Components/Anchor.js +12 -0
  17. package/src/Components/Avatar.js +11 -0
  18. package/src/Components/Bg.js +6 -0
  19. package/src/Components/Breadcrumb.js +24 -0
  20. package/src/Components/Button.js +44 -0
  21. package/src/Components/Card.js +37 -0
  22. package/src/Components/CloseModal.jsx +10 -0
  23. package/src/Components/CloseSnackbar.js +0 -0
  24. package/src/Components/Col.js +9 -0
  25. package/src/Components/Color.js +6 -0
  26. package/src/Components/Container.js +9 -0
  27. package/src/Components/Div.js +31 -0
  28. package/src/Components/DropAction.js +8 -0
  29. package/src/Components/DropMenu.js +8 -0
  30. package/src/Components/Dropdown.js +9 -0
  31. package/src/Components/Dropitem.js +8 -0
  32. package/src/Components/Dropup.js +9 -0
  33. package/src/Components/Ellipsis.js +10 -0
  34. package/src/Components/Footer.js +62 -0
  35. package/src/Components/Grid.js +11 -0
  36. package/src/Components/Hr.js +9 -0
  37. package/src/Components/Icon.js +6 -0
  38. package/src/Components/IconicInput.js +22 -0
  39. package/src/Components/Input.js +150 -0
  40. package/src/Components/Layout.js +30 -0
  41. package/src/Components/LinkWrapper.js +14 -0
  42. package/src/Components/List.js +9 -0
  43. package/src/Components/ListItem.js +9 -0
  44. package/src/Components/LoadRing.js +11 -0
  45. package/src/Components/LoadSpan.js +10 -0
  46. package/src/Components/Logo.js +15 -0
  47. package/src/Components/Middle.js +9 -0
  48. package/src/Components/Modal.js +39 -0
  49. package/src/Components/Modalaction.js +6 -0
  50. package/src/Components/Modalcontent.js +13 -0
  51. package/src/Components/Modalheader.js +12 -0
  52. package/src/Components/NavBar.jsx +12 -0
  53. package/src/Components/NavLink.jsx +10 -0
  54. package/src/Components/NavLogo.js +15 -0
  55. package/src/Components/Navcenter.js +14 -0
  56. package/src/Components/Navleft.js +14 -0
  57. package/src/Components/Panelcontent.js +11 -0
  58. package/src/Components/Panelfront.js +11 -0
  59. package/src/Components/ProgressBar.js +18 -0
  60. package/src/Components/Roller.js +10 -0
  61. package/src/Components/RowFlex.js +9 -0
  62. package/src/Components/Section.js +9 -0
  63. package/src/Components/Sidebar.js +203 -0
  64. package/src/Components/SidebarTrigger.js +15 -0
  65. package/src/Components/Slidepanel.js +11 -0
  66. package/src/Components/Snackbar.js +28 -0
  67. package/src/Components/Table.js +17 -0
  68. package/src/Components/TableBody.js +9 -0
  69. package/src/Components/TableData.js +9 -0
  70. package/src/Components/TableHead.js +9 -0
  71. package/src/Components/TableRow.js +9 -0
  72. package/src/Components/Tip.js +7 -0
  73. package/src/Components/ToolTip.js +9 -0
  74. package/src/Components/Typography.js +38 -0
  75. package/src/index.js +44 -0
package/css/fun.css ADDED
@@ -0,0 +1,664 @@
1
+ /*###################################################################
2
+ FUN CSS 1.0 MIT LICENSE 2023
3
+ #####################################################################*/
4
+
5
+ /* Fonts */
6
+ @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
7
+ @font-face {
8
+ font-family: "MavenPro";
9
+ src: url(./Maven_Pro/MavenPro.ttf);
10
+ }
11
+ :root{
12
+ --primaryColor:#0d6efd;
13
+ --white:#fff;
14
+ --secondaryColor: #6c757d;
15
+ --success:#48c78e;
16
+ --warning:#dc8001cc;
17
+ --danger:#dc1101cc;
18
+ --info:#5fbbe2;
19
+ --light:#f2f2f2;
20
+ --bd-font-weight:400;
21
+ --bdfontSize:1rem;
22
+ --db-line-height:1.;
23
+ --fontFamily:'MavenPro', sans-serif;
24
+ --smallFont:0.875em;
25
+ --smallerFont:0.775em;
26
+ --navHeight:50px !important ;
27
+ }
28
+
29
+ /* normalise css */
30
+ *{box-sizing: border-box;font-family: var(--fontFamily);}
31
+ body{padding: 0px;margin: 0px;box-sizing: border-box;font-size:var(--bdfontSize);line-height: var(--db-line-height);font-weight: var(--bd-font-weight);}
32
+ a{text-decoration: none;background: transparent;transition: 0.3s;color:inherit}a:hover{opacity: 0.9;}
33
+ /* h1{font-size:xx-large;font-weight: 200;}h2{font-size:x-large}h3{font-size:larger}h4{font-size:large}h5{font-size:medium}h6{font-size:small} */
34
+ button{-webkit-appearance:button}link{text-decoration: none;}link:hover{text-decoration: none;}input{background:transparent}
35
+
36
+ /* colors */
37
+ .primary,.hover-primary:hover{background-color:var(--primaryColor)!important;color:white;}
38
+ .white,.hover-white:hover{background-color:var(--white)!important;}
39
+ .light,.hover-light:hover{background-color:var(--light)!important;}
40
+ .secondary,.hover-secondary:hover{background-color:var(--secondaryColor)!important;color:white;}
41
+ .success,.hover-success:hover{background-color:var(--success)!important;color:white;}
42
+ .info,.hover-info:hover{ background-color: var(--info) !important;color:white;}
43
+ .warning,.hover-warning:hover{background-color: var(--warning) !important;color:white;}
44
+ .danger,.error,.hover-danger:hover{background-color: var(--danger) !important;color:white;}
45
+
46
+ /* outlines */
47
+ .success-outline{border:1px solid var(--success) !important}
48
+ .secondary-outline{border:1px solid var(--secondaryColor) !important}
49
+ .light-outline{border:1px solid var(--light) !important}
50
+ .info-outline{border:1px solid var(--info) !important;}
51
+ .warning-outline{border:1px solid var(--warning) !important;}
52
+ .danger-outline {border:1px solid var(--danger) !important;}
53
+
54
+ /* text color */
55
+ .text-light , .hover-text-light :hover{color: var(--light) !important;}
56
+ .text-primary , .hover-text-primary:hover{color: var(--primaryColor) !important;}
57
+ .text-secondary , .hover-text-secondary :hover{color: var(--secondaryColor) !important;}
58
+ .text-success , .hover-text-success :hover{color: var(--success) !important;}
59
+ .text-info .hover-text-info:hover{color: var(--info);}
60
+ .text-warning, .hover-text-warning:hover{color: var(--warning);}
61
+ .text-danger , .hover-text-danger:hover{color: var(--danger);}
62
+
63
+ /* width */
64
+ .width-10-p{width: 10% !important;}.width-20-p{width: 20% !important;}.width-30-p{width: 30% !important;}.width-40-p{width: 40% !important;}
65
+ .width-50-p{width: 50% !important;}.width-60-p{width: 60% !important;}.width-70-p{width: 70% !important;}.width-80-p{width: 80% !important;}
66
+ .width-90-p{width: 90% !important;}.width-100-p{width: 100%;}.width-10{width: 10px;}.width-20{width: 20px;}.width-30{width: 30px;}
67
+ .width-40{width: 40px;}.width-50{width: 50px;}.width-60{width: 60px;}.width-70{width: 70px;}.width-80{width: 80px;}.width-90{width: 90px;}
68
+ .width-100{width: 100px;}.width-200{width: 200px;}.width-300{width: 300px;}.width-400{width: 400px;}.width-500{width: 500px;}
69
+ .width-600{width: 600px;}.width-700{width: 700px;}.width-800{width: 800px;}.width-900{width: 900px;}
70
+ .width-10-max{max-width: 10px;}.width-20-max{max-width: 20px;}.width-30-max{width: 30px;}
71
+ .width-40-max{max-width: 40px;}.width-50-max{max-width: 50px;}.width-60-max{width: 60px;}.width-70-max{max-width: 70px;}.width-80-max{max-width: 80px;}.width-90-max{max-width: 90px;}
72
+ .width-100-max{max-width: 100px;}.width-200-max{max-width: 200px;}.width-300-max{max-width: 300px;}.width-400-max{max-width: 400px;}.width-500-max{max-width: 500px;}
73
+ .width-600-max{max-width: 600px;}.width-700-max{max-width: 700px;}.width-800-max{max-width: 800px;}.width-900-max{max-width: 900px;}
74
+ .width-10-min{min-width: 10px;}.width-20-min{min-width: 20px;}.width-30-min{min-width: 30px;}
75
+ .width-40-min{min-width: 40px;}.width-50-min{min-width: 50px;}.width-60-min{min-width: 60px;}.width-70-min{min-width: 70px;}.width-80-min{min-width: 80px;}.width-90-min{min-width: 90px;}
76
+ .width-100-min{min-width: 100px;}.width-200-min{min-width: 200px;}.width-300-min{min-width: 300px;}.width-400-min{min-width: 400px;}.width-500-min{min-width: 500px;}
77
+ .width-600-min{min-width: 600px;}.width-700-min{min-width: 700px;}.width-800-min{min-width: 800px;}.width-900-min{min-width: 900px;}
78
+ .width-10-max{max-width: 10px;}.width-20-max{max-width: 20px;}.width-30-max{width: 30px;}
79
+ .width-40-max{max-width: 40px;}.width-50-max{max-width: 50px;}.width-60-max{width: 60px;}.width-70-max{max-width: 70px;}.width-80-max{max-width: 80px;}.width-90-max{max-width: 90px;}
80
+ .width-100-max{max-width: 100px;}.width-200-max{max-width: 200px;}.width-300-max{max-width: 300px;}.width-400-max{max-width: 400px;}.width-500-max{max-width: 500px;}
81
+ .width-600-max{max-width: 600px;}.width-700-max{max-width: 700px;}.width-800-max{max-width: 800px;}.width-900-max{max-width: 900px;}
82
+ .width-10-min{min-width: 10px;}.width-20-min{min-width: 20px;}.width-30-min{min-width: 30px;}
83
+ .width-40-min{min-width: 40px;}.width-50-min{min-width: 50px;}.width-60-min{min-width: 60px;}.width-70-min{min-width: 70px;}.width-80-min{min-width: 80px;}.width-90-min{min-width: 90px;}
84
+ .width-100-min{min-width: 100px;}.width-200-min{min-width: 200px;}.width-300-min{min-width: 300px;}.width-400-min{min-width: 400px;}.width-500-min{min-width: 500px;}
85
+ .width-600-min{min-width: 600px;}.width-700-min{min-width: 700px;}.width-800-min{min-width: 800px;}.width-900-min{min-width: 900px;}
86
+ .width-min-vw{min-width: 100vw;}
87
+
88
+ /*Heights*/
89
+ .height-10-p{height: 10%;}.height-20-p{height: 20%;}.height-30-p{height: 30%;}.height-40-p{height: 40%;}.height-50-p{height: 50%;}
90
+ .height-60-p{height: 60%;}.height-70-p{height: 70%;}.height-80-p{height: 80%;}.height-90-p{height: 90%;}.width-100-p{width: 100%;}
91
+ .height-10{height: 10px;}.height-20{height: 20px;}.height-30{height: 30px;}.height-40{height: 40px;}.height-50{height: 50px;}.height-60{height: 60px;}
92
+ .height-70{height: 70px;}.height-80{height: 80px;}.height-90{height: 90px;}.height-100{height: 100px;}.height-200{height: 200px;}
93
+ .height-300{height: 300px;}.height-400{height: 400px;}.height-500{height: 500px;}.height-600{height: 600px;}.height-700{height: 700px;}
94
+ .height-800{height: 800px;}.height-900{height: 900px;}.height-100-vh{height: 100vh;}
95
+ .height-10-max{max-height: 10px;}.height-20-max{max-width: 20px;}.height-30-max{width: 30px;}
96
+ .height-40-max{max-height: 40px;}.height-50-max{max-width: 50px;}.height-60-max{width: 60px;}.height-70-max{max-height: 70px;}.height-80-max{max-height: 80px;}.height-90-max{max-height: 90px;}
97
+ .height-100-max{max-height: 100px;}.height-200-max{max-height: 200px;}.height-300-max{max-height: 300px;}.height-400-max{max-height: 400px;}.height-500-max{max-height: 500px;}
98
+ .height-600-max{max-height: 600px;}.height-700-max{max-height: 700px;}.height-800-max{max-height: 800px;}.height-900-max{max-height: 900px;}
99
+ .height-10-min{min-height:10px;}.height-20-min{min-height:20px;}.height-30-min{min-height:30px;}
100
+ .height-40-min{min-height:40px;}.height-50-min{min-height:50px;}.height-60-min{min-height:60px;}.height-70-min{min-height:70px;}.height-80-min{min-height:80px;}.height-90-min{min-height:90px;}
101
+ .height-100-min{min-height:100px;}.height-200-min{min-height:200px;}.height-300-min{min-height:300px;}.height-400-min{min-height:400px;}.height-500-min{min-height:500px;}
102
+ .height-600-min{min-height:600px;}.height-700-min{min-height:700px;}.height-800-min{min-height:800px;}.height-900-min{min-height:900px;}
103
+ .height-min-vh{min-height: 100vh;}
104
+
105
+ /* Typography */
106
+ .text-big{ font-size: calc(1.375rem + 2vw);font-weight: 900;line-height:normal}.text-small{ font-size: var(--smallFont);}
107
+ .text-bigger{font-size: calc(1.375rem + 2.5vw);font-weight: 900;line-height:normal}.text-smaller{font-size: var(--smallerFont);}
108
+ .text-jumbo{font-size: calc(1.375rem + 3vw);font-weight: 900;line-height:normal}
109
+ .text-bold{font-weight: bold !important;}
110
+ .text-bolder{font-weight: bolder!important;}
111
+ f
112
+ h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
113
+ margin-top: 0;
114
+ margin-bottom: 0.5rem;
115
+ font-weight: 500;
116
+ line-height: 1.2;
117
+ }
118
+
119
+ h1, .h1 {
120
+ font-size: calc(1.375rem + 1.5vw);
121
+ }
122
+ @media (min-width: 1200px) {
123
+ h1, .h1 {
124
+ font-size: 2.5rem;
125
+ }
126
+ }
127
+
128
+ h2, .h2 {
129
+ font-size: calc(1.325rem + 0.9vw);
130
+ }
131
+ @media (min-width: 1200px) {
132
+ h2, .h2 {
133
+ font-size: 2rem;
134
+ }
135
+ }
136
+
137
+ h3, .h3 {
138
+ font-size: calc(1.3rem + 0.6vw);
139
+ }
140
+ @media (min-width: 1200px) {
141
+ h3, .h3 {
142
+ font-size: 1.75rem;
143
+ }
144
+ }
145
+
146
+ h4, .h4 {
147
+ font-size: calc(1.275rem + 0.3vw);
148
+ }
149
+ @media (min-width: 1200px) {
150
+ h4, .h4 {
151
+ font-size: 1.5rem;
152
+ }
153
+ }
154
+
155
+ h5, .h5 {
156
+ font-size: 1.25rem;
157
+ }
158
+
159
+ h6, .h6 {
160
+ font-size: 1rem;
161
+ }
162
+
163
+ /*margin*/
164
+ .margin{margin: 10px !important;};
165
+ .margin-top-10{margin-top: 10px !important;}.margin-top-20{margin-top: 20px !important;}.margin-top-30{margin-top: 30px !important;}
166
+ .margin-top-40{margin-top: 40px !important;}.margin-top-50{margin-top: 50px !important;}.margin-top-60{margin-top: 60px !important;}
167
+ .margin-top-70{margin-top: 70px !important;}.margin-top-80{margin-top: 80px !important;}.margin-top-90{margin-top: 90px !important;}
168
+ .margin-top-100-{margin-top: -100px;}
169
+ .margin-top-10-{margin-top: -10px !important;}.margin-top-20-{margin-top: -20px !important;}.margin-top-30-{margin-top: -30px !important;}
170
+ .margin-top-40-{margin-top: -40px !important;}.margin-top-50-{margin-top: -50px !important;}.margin-top-60-{margin-top: -60px !important;}
171
+ .margin-top-70-{margin-top: -70px !important;}.margin-top-80-{margin-top: -80px !important;}.margin-top-90-{margin-top: -90px !important;}
172
+ .margin-top-100{margin-top: 100px;}
173
+ .margin-10{margin: 10px !important;}.margin-20{margin: 20px !important;}.margin-30{margin: 30px !important;}.margin-40{margin: 40px !important;}
174
+ .margin-50{margin: 50px !important;}
175
+ .margin-bottom-10{margin-bottom: 10px !important;}.margin-bottom-20{margin-bottom: 20px !important;}.margin-bottom-30{margin-bottom: 30px !important;}
176
+ .margin-bottom-40{margin-bottom: 40px !important;}.margin-bottom-50{margin-bottom: 50px !important;}.margin-bottom-60{margin-bottom: 60px !important;}
177
+ .margin-bottom-70{margin-bottom: 70px !important;}.margin-bottom-80{margin-bottom: 80px !important;}.margin-bottom-90{margin-bottom: 90px !important;}
178
+ .margin-bottom-100{margin-bottom: 100px;}
179
+ .margin-left-10{margin-left: 10px !important;}.margin-left-20{margin-left: 20px !important;}.margin-left-30{margin-left: 30px !important;}
180
+ .margin-left-40{margin-left: 40px !important;}.margin-left-50{margin-left: 50px !important;}.margin-left-60{margin-left: 60px !important;}
181
+ .margin-left-70{margin-left: 70px !important;}.margin-left-80{margin-left: 80px !important;}.margin-left-90{margin-left: 90px !important;}
182
+ .margin-left-100{margin-left: 100px;}
183
+ .margin-right-10{margin-right: 10px !important;}.margin-right-20{margin-right: 20px !important;}.margin-right-30{margin-right: 30px !important;}
184
+ .margin-right-40{margin-right: 40px !important;}.margin-right-50{margin-right: 50px !important;}.margin-right-60{margin-right: 60px !important;}
185
+ .margin-right-70{margin-right: 70px !important;}.margin-right-80{margin-right: 80px !important;}.margin-right-90{margin-right: 90px !important;}
186
+ .margin-right-100{margin-bottom: 100px;}
187
+ /*padding*/
188
+ .padding{padding: 10px !important;};.padding-5{padding: 5px !important;}
189
+ .padding-top-10{padding-top: 10px !important;}.padding-top-20{padding-top: 20px !important;}.padding-top-30{padding-top: 30px !important;}
190
+ .padding-top-40{padding-top: 40px !important;}.padding-top-50{padding-top: 50px !important;}.padding-top-60{padding-top: 60px !important;}
191
+ .padding-top-70{padding-top: 70px !important;}.padding-top-80{padding-top: 80px !important;}.padding-top-90{padding-top: 90px !important;}
192
+ .padding-top-100{padding-top: 100px;}
193
+ .padding-10{padding: 10px !important;}.padding-20{padding: 20px !important;}.padding-30{padding: 30px !important;}
194
+ .padding-40{padding: 40px !important;}.padding-50{padding: 50px !important;}.padding-60{padding: 60px !important;}
195
+ .padding-70{padding: 70px !important;}.padding-80{padding: 80px !important;}.padding-90{padding: 90px !important;}
196
+ .padding-100{padding: 100px;}
197
+ .padding-bottom-10{padding-bottom: 10px !important;}.padding-bottom-20{padding-bottom: 20px !important;}.padding-bottom-30{padding-bottom: 30px !important;}
198
+ .padding-bottom-40{padding-bottom: 40px !important;}.padding-bottom-50{padding-bottom: 50px !important;}.padding-bottom-60{padding-bottom: 60px !important;}
199
+ .padding-bottom-70{padding-bottom: 70px !important;}.padding-bottom-80{padding-bottom: 80px !important;}.padding-bottom-90{padding-bottom: 90px !important;}
200
+ .padding-bottom-100{padding-bottom: 100px;}
201
+ .padding-left-10{padding-left: 10px !important;}.padding-left-20{padding-left: 20px !important;}.padding-left-30{padding-left: 30px !important;}
202
+ .padding-left-40{padding-left: 40px !important;}.padding-left-50{padding-left: 50px !important;}.padding-left-60{padding-left: 60px !important;}
203
+ .padding-left-70{padding-left: 70px !important;}.padding-left-80{padding-left: 80px !important;}.padding-left-90{padding-left: 90px !important;}
204
+ .padding-left-100{padding-left: 100px;}
205
+ .padding-right-10{padding-right: 10px !important;}.padding-right-20{padding-right: 20px !important;}.padding-right-30{padding-right: 30px !important;}
206
+ .padding-right-40{padding-right: 40px !important;}.padding-right-50{padding-right: 50px !important;}.padding-right-60{padding-right: 60px !important;}
207
+ .padding-right-70{padding-right: 70px !important;}.padding-right-80{padding-right: 80px !important;}.padding-right-90{padding-right: 90px !important;}
208
+ .padding-right-100{padding-bottom: 100px;}
209
+
210
+ /*Helpers*/
211
+ .no-padding{padding: 0px !important;}.no-margin{margin: 0px;}.line-through{text-decoration: line-through;}.underline{text-decoration: underline;}.overline{text-decoration: overline;}.wavy{text-decoration: wavy;}.borderless{border: none;}.border{border: 1px solid #ddd;}
212
+ .text-center{text-align: center !important;}.text-left{text-align: left !important;}.text-right{text-align: right !important;}.text-justify{text-align: justify !important;}.hide{display: none;}.show{display: block;}
213
+ .center{margin: 0px auto;}.float-right{float: right;}.float-left{float: left;}.section{margin-top: 10px;margin-bottom: 10px;}
214
+ .opacity-1,.hover-opacity-1:hover{opacity: 1;}.opacity-2,.hover-opacity-2:hover{opacity: 0.9;}.opacity-3,.hover-opacity-3:hover{opacity: 0.8;}.opacity-4,.hover-opacity-4:hover{opacity: 0.7;}.opacity-5,.hover-opacity-5:hover{opacity: 0.6;}
215
+ .opacity-6,.hover-opacity-6:hover{opacity: 0.5;}.opacity-7,.hover-opacity-7:hover{opacity: 0.4;}.opacity-8,.hover-opacity-8:hover{opacity: 0.2;}.opacity-9,.hover-opacity-9:hover{opacity: 0.1;}
216
+ .hr{border-bottom: 1px solid #ddd;}.vr{border-left: 1px solid #ddd;}.vertical-scroll{overflow-y: scroll;}.horizontal-scroll{overflow-x: scroll;}
217
+ .z-index-1{z-index: 1;}.z-index-2{z-index: 2;}.z-index-3{z-index: 3;}.z-index-4{z-index: 4;}.z-index-5{z-index: 5;}.z-index-6{z-index: 6;}.z-index-7{z-index: 7;}.z-index-8{z-index: 8;}.z-index-9{z-index: 9;}.z-index-10{z-index: 10;}
218
+ .responsive{width: 100%;height: auto;}.row-flex{display: flex;flex-direction: row;align-items: center;}.row-flex.gap{grid-gap: 0.5rem;}
219
+ .top-right{position: absolute;top: 0px;right: 0px}.top-left{position: absolute;top: 0px;left: 0px}.top{position: absolute;top: 0px}.bottom-right{position: absolute;bottom: 0px;right: 0px}
220
+ .bottom-left{position: absolute;bottom: 0px;left: 0px}.bottom{position: absolute;bottom: 0px}.clear-both{clear: both;}.content-middle{display:flex;justify-content: center;align-items: center;height: 100%;width: 100%;}
221
+ .sticky-top {position: -webkit-sticky;position: sticky;top: 0px;z-index: 5;width: 100%;}.fixed-top{position: fixed;top: 0px;z-index: 5;width: 100%;}
222
+ .relative{position: relative;}.fixed{position: fixed;}.sticky{position: sticky;}.absolute{position: absolute;}
223
+ .block{display: block;}.inline-block{display: inline-block;}.middle{display: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);}
224
+ .shadow{box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);}.hover-shadow{transition: 0.3s;}.hover-shadow:hover{box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);}
225
+ .fit{height: 100%;width: 100%;}.fit-width{width: fit-content;}.fit-height{height: fit-content;}.shadow-bingo{box-shadow: 10px 20px 20px 10px rgba(225,225,225,0.5),0px 40px 40px 0px rgba(225,225,255,0.6);}
226
+ .top-border{border-top: 1px solid #ddd;}.bottom-border{border-bottom: 1px solid #ddd;}.right-border{border-right: 1px solid #ddd;}.left-border{border-left: 1px solid #ddd;}
227
+ .row-flex.space-between{justify-content:space-between}
228
+ .row-flex.space-around{justify-content:space-around}
229
+ .row-flex.center{justify-content:center}
230
+ .central{display: flex;align-items: center;justify-content: center;}
231
+ /* cursor */
232
+ .cursor-pointer{cursor: pointer;}.cursor-copy{cursor: copy;}.cursor-none{cursor: none;}.cursor-move{cursor: move;}
233
+ /* containers hover*/
234
+ .container{margin: 0 10%;}
235
+ @media (min-width:993px){.container{margin-left: 10%;margin-right: 10%;}}@media (max-width:992px){.container{margin-left: 10%;margin-right: 10%;}}@media (max-width:500px){.container{margin-left: 5%;margin-right: 5%;}}
236
+
237
+ /* grid */
238
+ .row{display: flex;flex-wrap: wrap;-ms-flex-wrap:wrap;}
239
+ .row.gap .col{padding: 0.5rem;}
240
+ @media(max-width : 600px){.col.sm-12{flex: 99.99999%; -ms-flex: 0 0 99.99999%;}.col.sm-11{flex:0 0 91.66666%;-ms-flex:0 0 91.66666%;}.col.sm-10{flex:0 0 83.33333%; -ms-flex: 0 0 83.33333%;}
241
+ .col.sm-9{flex:0 0 74.99999%;-ms-flex: 0 0 74.99999%;}.col.sm-8{flex:0 0 66.66666%;-ms-flex: 0 0 66.66666%;}.col.sm-7{flex:0 0 58.33333%;-ms-flex: 0 0 58.33333%;}.col.sm-6{flex:0 0 49.99999%;-ms-flex:0 0 49.99999%;}
242
+ .col.sm-5{flex:0 0 41.66666%;-ms-flex:0 0 41.66666%;}.col.sm-4{flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;}.col.sm-3{flex:0 0 24.99999%;-ms-flex: 0 0 24.99999%;}.col.sm-2{flex:0 0 16.66666%;-ms-flex: 0 0 16.66666%;}.col.sm-1{flex:0 0 8.33333%;-ms-flex: 0 0 8.33333%;}}
243
+
244
+ @media(min-width : 601px){.col.md-12{flex: 99.99999%; -ms-flex: 0 0 99.99999%;}.col.md-11{flex:0 0 91.66666%;-ms-flex:0 0 91.66666%;}
245
+ .col.md-10{flex:0 0 83.33333%; -ms-flex: 0 0 83.33333%;}.col.md-9{flex:0 0 74.99999%;-ms-flex: 0 0 74.99999%;}.col.md-8{flex:0 0 66.66666%;-ms-flex: 0 0 66.66666%;}.col.md-7{flex:0 0 58.33333%;-ms-flex: 0 0 58.33333%;}
246
+ .col.md-6{flex:0 0 49.99999%;-ms-flex:0 0 49.99999%;}.col.md-5{flex:0 0 41.66666%;-ms-flex:0 0 41.66666%;}.col.md-4{flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;}.col.md-3{flex:0 0 24.99999%;-ms-flex: 0 0 24.99999%;}
247
+ .col.md-2{flex:0 0 16.66666%;-ms-flex: 0 0 16.66666%;}.col.md-1{flex:0 0 8.33333%;-ms-flex: 0 0 8.33333%;}
248
+ }
249
+ @media(min-width : 993px){.col.lg-12{flex: 99.99999%; -ms-flex: 0 0 99.99999%;}.col.lg-11{flex:0 0 91.66666%;-ms-flex:0 0 91.66666%;}.col.lg-10{flex:0 0 83.33333%; -ms-flex: 0 0 83.33333%;}.col.lg-9{flex:0 0 74.99999%;-ms-flex: 0 0 74.99999%;}
250
+ .col.lg-8{flex:0 0 66.66666%;-ms-flex: 0 0 66.66666%;}.col.lg-7{flex:0 0 58.33333%;-ms-flex: 0 0 58.33333%;}.col.lg-6{flex:0 0 49.99999%;-ms-flex:0 0 49.99999%;}.col.lg-5{flex:0 0 41.66666%;-ms-flex:0 0 41.66666%;}.col.lg-4{flex:0 0 33.33333%;-ms-flex:0 0 33.33333%;}
251
+ .col.lg-3{flex:0 0 24.99999%;-ms-flex: 0 0 24.99999%;}.col.lg-2{flex:0 0 16.66666%;-ms-flex: 0 0 16.66666%;}.col.lg-1{flex:0 0 8.33333%;-ms-flex: 0 0 8.33333%;}}
252
+
253
+ /*buttons*/
254
+ .button{border: 2px solid transparent;transition: 1s;padding: 10px;background-color: inherit;border-radius: 5px;font-weight:bold;}.button:hover{cursor: pointer;background: #ddd;}.block-button{width: 100%;}
255
+ .floatBtn{border-radius: 50%;display: flex;align-items: center !important;justify-content: center !important;padding: 0 !important;}.button.full-width{width: 100%;}.button{position: relative;text-align: center;-webkit-transition-duration: 0.4s; /* Safari */transition-duration: 0.4s;text-decoration: none;overflow: hidden;}
256
+ .button:after {content: "";background: #ddd;display: block;position: absolute;padding-top: 300%;padding-left: 350%;margin-left: -20px!important;margin-top: -120%;opacity: 0;transition: all 0.8s}.button.ripple:active:after {padding: 0;margin: 0;opacity: 1;transition: 0s}
257
+ .roundBtn{border-radius: 100rem;}
258
+ .button.small{padding: 5px !important;}.button.medium{padding: 10px !important;}.button.large{padding: 15px !important;}
259
+ .button.larger{padding: 20px !important;}.button-x-large{padding: 25px!important;}.button.xx-large{padding: 30px !important;}
260
+
261
+ /*cards*/
262
+ .card{ box-shadow: 0 8px 10px 0 rgba(225,225,225,0.5);transition: 0.3s;}
263
+ .card.lg{box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);}
264
+ .card-footer{padding-top: 10px;padding-bottom: 10px;}.card-header{font-size: larger;}.card-image{width: 100%;height: auto;}
265
+ .card-title{position:absolute;bottom:10px;left: 10px;}.card-title.top-left{position:absolute;top:10px;left: 10px;}.card-title.top-right{position:absolute;top:10px;right: 10px;}.card-title.bottom-left{position:absolute;bottom:10px;left: 10px;}.card-title.bottom-right{position:absolute;bottom:10px;right: 10px;}
266
+ .card-fab{position: absolute;bottom: 0;right: 10px;transform: translateY(40%);}.card-body{padding: 10px;}.card-footer{padding: 10px;}.card-footer > a{margin-left: 5px;}
267
+ .card.horizontal{display: flex;flex-direction: row;}.card.horizontal div:first-of-type img{width: 100%;height: auto;}
268
+ .pointer{cursor: pointer;}.zoom-in{cursor: zoom-in;}.zoom-out{cursor: zoom-out;}
269
+ /* Navbar */
270
+ .navigation-bar{width: 100%;display: flex;flex-direction: row;display: -ms-flexbox;justify-content: space-between;align-items:center;padding: 0.5rem;height: var(--navHeight);}
271
+ .sidebar-trigger{display: none;cursor: pointer;}.navbar-link{cursor: pointer;padding: 0.5rem;transition: 0.2s linear;}.navbar-link.hover:hover{background-color: var(--light);border-radius: 0.5rem;}
272
+ .link-wrapper , .linkWrapper{display: flex; flex-direction: row;align-items:center;grid-gap: 0.2rem;}.collapse{overflow: auto;transition: 0.5s;display: block;width: 100%;max-height: fit-content;}
273
+ .linkWrapperLogo{display: none;}
274
+ @media (max-width:900px){.sidebar-trigger{display: block;}.link-wrapper , .linkWrapper{display: none;}
275
+ }
276
+ .fixedTop{position:fixed!important;top: 0;left: 0;z-index: 10;}
277
+
278
+ /* Alerts */
279
+ .alert{position: relative;display: flex;flex-direction: row;padding: 1rem;border-radius: 5px;font-weight: 500;
280
+ gap: 0.7rem;font-size: var(--smallFont);
281
+ }
282
+ .alert-icon > i{cursor: pointer;margin: 0;font-size:medium !important;}
283
+ .alert.success{background-color: rgb(237, 247, 237) !important;}
284
+ .alert.info{ background-color: rgb(229, 246, 253) !important}
285
+ .alert.warning{background-color: rgb(255, 244, 229) !important;}
286
+ .alert.danger{background-color: rgb(253, 237, 237) !important;}
287
+ .alert.success .alert-text , .alert-icon{color: rgb(30, 70, 32) !important;}
288
+ .alert.info .alert-text , .alert-icon{color: rgb(1, 67, 97) !important;}
289
+ .alert.warning .alert-text , .alert-icon{color: rgb(102, 60, 0)!important;}
290
+ .alert.danger .alert-text , .alert-icon{color: rgb(95, 33, 32)!important;}
291
+
292
+
293
+ /* side bar */
294
+ .sidebar{width: 0px;height: 100%;position: fixed;top: 0px;left: 0px;transition: 0.4s;z-index: 8;overflow: auto;}
295
+
296
+ /*border radius and borders*/
297
+ .round{border-radius: 50%;}.round-edge{border-radius: 10px;}.round-top-left-edge{border-top-left-radius: 10px;}.round-top-right-edge{border-top-right-radius: 10px;}
298
+ .round-top-edge{border-top-left-radius: 10px;border-top-right-radius: 10px;}.round-left-edge{border-top-left-radius: 10px;border-bottom-left-radius: 10px;}.round-right-edge{border-top-right-radius: 10px;border-bottom-right-radius: 10px;}
299
+ .round-button-left-edge{border-bottom-left-radius: 10px;}.round-button-right-edge{border-bottom-right-radius: 10px;}.round-button-edge{border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;}.border-left-red-1{border-left: 1px solid ;}
300
+
301
+ /*images */
302
+ .frame{border: 1px solid rgba(0,0,0,0.4);border-radius: 10px;padding: 10px;padding-top: 20px;padding-bottom: 20px;width: fit-content;}
303
+ .circle{border-radius: 50%;}
304
+
305
+ /* dropdown */
306
+ .dropdown-hover, .dropup-hover{position: relative;width: fit-content;z-index: 1;padding: 5px;}.dropdown-hover > .drop-menu{top: 100%;}.dropup-hover > .drop-menu{bottom: 100%;}
307
+ .drop-menu{position: absolute; box-shadow: 0px 2px 4px rgba(0,0,0,0.2);left: 0;transition: 0.5s;z-index:-1;width: 100%;overflow: hidden;display: none;}
308
+ .dropup-hover:hover .drop-menu{display:block;z-index: 1;}
309
+ .dropdown-hover:hover .drop-menu{display:block;z-index: 1;}
310
+ .drop-item{padding: 5px 20px;cursor: pointer;}
311
+ .drop-menu.item-hoverable > .drop-item:hover{background-color: #ddd;}
312
+ .drop-button > .rotate-up{transition: 0.3s;margin: 0px 5px;}.drop-button:hover .rotate-up{transform: rotate(180deg);}
313
+ .drop-button > .rotate-down{transition: 0.3s;margin: 0px 5px;}.drop-button:hover .rotate-down{transform: rotate(180deg);}
314
+
315
+ /*inputs*/
316
+ .input{padding: 0.5rem 0;outline: none;border: 0.1rem transparent;border-bottom: 0.1rem solid #ddd;transition: 0.2s linear;font-weight: 500;}
317
+ .input:focus{border-bottom: 0.1rem solid var(--primaryColor);}
318
+ .input.bordered{border:0.1rem solid #ddd;border-radius:.3rem;transition: 0.2s linear;padding: 0.5rem ;}
319
+ .input.bordered:focus{border: 0.1rem solid var(--primaryColor);}
320
+ .input.borderless{border: none;}.input.borderless:focus{border: none;}
321
+ .input.no-outline{outline: none;}.full-width{width: 100%;}
322
+ .input.round{border-radius: 500px;}
323
+ .input.animate-width{width: 100px;transition:2s ease;min-width:fit-content}
324
+ .input.animate-width:focus{width:300px}
325
+ .icon-container{position: relative;transform: translateX(0.3rem);}
326
+ .icon-container .leftIcon,.rightIcon{height:calc(100%) !important;width: 10%;display: flex;align-items: center;justify-content: center;}
327
+ .icon-container .leftIcon{border-top-left-radius: 0.5rem;border-bottom-left-radius: 0.5rem;}
328
+ .icon-container .rightIcon{border-top-right-radius: 0.5rem;border-bottom-right-radius: 0.5rem;}
329
+ .icon-container .leftIcon{transform: translateX( -0.1rem);}
330
+ .icon-container .leftIcon{position: absolute;left: 0rem;overflow: hidden;min-width: 1.9rem;}
331
+ .icon-container .rightIcon{position: absolute;right: 0rem;bottom:0;overflow: hidden;min-width: 1.9rem;}
332
+ .icon-container.left .input{padding-left:11%}
333
+ .icon-container.right .input{padding-right:11%}
334
+ /* .icon-container.left .icon{left:2%;}
335
+ .icon-container.right .icon{right:2%;} */
336
+
337
+ /*flex*/
338
+ .flex{display: flex;flex-wrap: wrap;-ms-flex-wrap: wrap;width: 100%;}.flex-10{flex: 10%;}.flex-20{flex: 20%;}.flex-30{flex: 30%;}.flex-40{flex: 40%;}.flex-50{flex: 50%;}.flex-60{flex: 60%;}.flex-70{flex: 70%;}.flex-80{flex: 80%;}.flex-90{flex: 90%;}.flex-100{flex: 100%;}
339
+ .top-0{top: 0px;}.top-10{top: 10px !important;}.top-20{top: 20px !important;}.top-30{top: 30px !important;}
340
+ .top-40{top: 40px !important;}.top-50{top: 50px !important;}.top-60{top: 60px !important;}.top-70{top: 70px !important;}.top-80{top: 80px !important;}.top-90{top: 90px !important;}
341
+ .bottom-0{bottom: 0px;}.bottom-10{bottom: 10px !important;}.bottom-20{bottom: 20px !important;}.bottom-30{bottom: 30px !important;}
342
+ .bottom-40{bottom: 40px !important;}.bottom-50{bottom: 50px !important;}.bottom-60{bottom: 60px !important;}.bottom-70{bottom: 70px !important;}.bottom-80{bottom: 80px !important;}.bottom-90{bottom: 90px !important;}
343
+ .left-0{left: 0px;}.left-10{left: 10px !important;}.left-20{left: 20px !important;}.left-30{left: 30px !important;}
344
+ .left-40{left: 40px !important;}.left-50{left: 50px !important;}.left-60{left: 60px !important;}.left-70{left: 70px !important;}.left-80{left: 80px !important;}.left-90{left: 90px !important;}
345
+ .right-0{right: 0px;}.right-10{right: 10px !important;}.right-20{right: 20px !important;}.right-30{right: 30px !important;}
346
+ .right-40{right: 40px !important;}.right-50{right: 50px !important;}.right-60{right: 60px !important;}.right-70{right: 70px !important;}.right-80{right: 80px !important;}.right-90{right: 90px !important;}
347
+ /*small screens */
348
+ @media(max-width:600px){.hide-small{display: none;}.show-small{display: block;}
349
+ .small-width-10{width: 10px;}.small-width-20{width: 20px;}.small-width-30{width: 30px;}.small-width-40{width: 40px;}
350
+ .small-width-50{width: 50px;}.small-width-60{width: 60px;}.small-width-70{width: 70px;}.small-width-80{width: 80px;}
351
+ .small-width-90{width: 90px;}.small-width-100{width: 100px;}.small-width-200{width: 200px;}.small-width-300{width: 300px;}
352
+ .small-width-400{width: 400px;}.small-width-500{width: 500px;}.small-width-600{width: 600px;}.small-width-700{width: 700px;}
353
+ .small-width-800{width: 800px}.small-width-900{width: 900px;}.small-width-1000{width: 1000px;}
354
+ .small-height-10{height: 10px;}.small-height-20{height: 20px;}.small-height-30{height: 30px;}.small-height-40{height: 40px;}
355
+ .small-height-50{height: 50px;}.small-height-60{height: 60px;}.small-height-70{height: 70px;}.small-height-80{height: 80px;}
356
+ .small-height-90{height: 90px;}.small-height-100{height: 100px;}.small-height-200{height: 200px;}.small-height-300{height: 300px;}
357
+ .small-height-400{height: 400px;}.small-height-500{height: 500px;}.small-height-600{height: 600px;}.small-height-700{height: 700px;}
358
+ .small-height-800{height: 800px;}.small-height-900{height: 900px;}.small-height-1000{height: 1000px;}}
359
+ @media(min-width:601px){.hide-medium{display: none;}.show-medium{display: block;}
360
+ .medium-width-10{width: 10px;}.medium-width-20{width: 20px;}.medium-width-30{width: 30px;}.medium-width-40{width: 40px;}
361
+ .medium-width-50{width: 50px;}.medium-width-60{width: 60px;}.medium-width-70{width: 70px;}.medium-width-80{width: 80px;}
362
+ .medium-width-90{width: 90px;}.medium-width-100{width: 100px;}.medium-width-200{width: 200px;}.medium-width-300{width: 300px;}
363
+ .medium-width-400{width: 400px;}.medium-width-500{width: 500px;}.medium-width-600{width: 600px;}.medium-width-700{width: 700px;}
364
+ .medium-width-800{width: 800px}.medium-width-900{width: 900px;}.medium-width-1000{width: 1000px;}
365
+ .medium-height-10{height: 10px;}.medium-height-20{height: 20px;}.medium-height-30{height: 30px;}.medium-height-40{height: 40px;}
366
+ .medium-height-50{height: 50px;}.medium-height-60{height: 60px;}.medium-height-70{height: 70px;}.medium-height-80{height: 80px;}
367
+ .medium-height-90{height: 90px;}.medium-height-100{height: 100px;}.medium-height-200{height: 200px;}.medium-height-300{height: 300px;}
368
+ .medium-height-400{height: 400px;}.medium-height-500{height: 500px;}.medium-height-600{height: 600px;}.medium-height-700{height: 700px;}
369
+ .medium-height-800{height: 800px}.medium-height-900{height: 900px;}.medium-height-1000{height: 1000px;}}
370
+ @media(min-width:993px){.hide-large{display: none;}.show-large{display: block;}
371
+ .large-width-10{width: 10px;}.large-width-20{width: 20px;}.large-width-30{width: 30px;}.large-width-40{width: 40px;}
372
+ .large-width-50{width: 50px;}.large-width-60{width: 60px;}.large-width-70{width: 70px;}.large-width-80{width: 80px;}
373
+ .large-width-90{width: 90px;}.large-width-100{width: 100px;}.large-width-200{width: 200px;}.large-width-300{width: 300px;}
374
+ .large-width-400{width: 400px;}.large-width-500{width: 500px;}.large-width-600{width: 600px;}.large-width-700{width: 700px;}
375
+ .large-width-800{width: 800px}.large-width-900{width: 900px;}.large-width-1000{width: 1000px;}
376
+ .large-height-10{height: 10px;}.large-height-20{height: 20px;}.large-height-30{height: 30px;}.large-height-40{height: 40px;}
377
+ .large-height-50{height: 50px;}.large-height-60{height: 60px;}.large-height-70{height: 70px;}.large-height-80{height: 80px;}
378
+ .large-height-90{height: 90px;}.large-height-100{height: 100px;}.large-height-200{height: 200px;}.large-height-300{height: 300px;}
379
+ .large-height-400{height: 400px;}.large-height-500{height: 500px;}.large-height-600{height: 600px;}.large-height-700{height: 700px;}
380
+ .large-height-800{height: 800px;}.large-height-900{height: 900px;}.large-height-1000{height: 1000px;}}
381
+ /* tables */
382
+ .table tr ,thead{border-bottom:1px solid #ddd}.table thead > td,th{font-weight:bold}
383
+ .table{width: 100%;text-align: left;padding: 0;border-collapse: collapse;}.table.bordered{border: 1px solid #ddd;}
384
+ .table.stripped tr:nth-child(even) {background-color: #E3E6E8;}.table tr,th,td{padding: 0.4rem;margin: 0;}.table.hoverable > tr,th{transition: 0.3s;}.table.hoverable > tr:hover{background-color: #ddd;}
385
+ .table.light{background-color: #f1f1f1;color: #000;}.table.dark{background-color: #000;color: #f1f1f1;}.table.dark tr:hover{background-color: #f1f1f1;color: black;}
386
+ /*list*/
387
+ .list{margin: 0;padding: 0;}.list li{list-style: none;padding: 5px;border-collapse: collapse;}.list.hover li:hover{background-color: #ddd;}
388
+ .list.bordered li{border-top: 1px solid #ddd;}.list.bordered{border-left: 1px solid #ddd;border-right: 1px solid #ddd;}
389
+ .list.bordered li:last-of-type{border-bottom: 1px solid #ddd;}.list.stripped li:nth-child(even){background-color: #f2f2f2;}li.header{font-size: xx-large;}
390
+ /*animation*/
391
+ .scale-up{transition: transform 0.5s ease-in;}
392
+ .scale-up:hover{transform: scale(1.1);}
393
+ .scale-down{transition: transform 0.5s ease-in;}
394
+ .scale-down:hover{transform: scale(0.8);}
395
+ .hover-up{transition: transform 0.3s ease-in-out;}.hover-up:hover{transform: translateY(-5%);}
396
+ .hover-down{transition: transform 0.3s ease-in-out;}.hover-down:hover{transform: translateY(5%);}
397
+ .hover-left{transition: transform 0.3s ease-in-out;}.hover-left:hover{transform: translateX(-5%);}
398
+ .hover-right{transition: transform 0.3s ease-in-out;}.hover-right:hover{transform: translateX(5%);}
399
+ .animate-up-down{animation: updown 5s linear infinite;}
400
+ @keyframes updown{50%{transform: translateY(-10%);}100%{transform: translateY(0%);}}
401
+
402
+ /*icons*/
403
+ .icon.size-smaller{font-size: 0.5em;}.icon.size-small{font-size: 0.8em;}.icon.size-big{font-size: 2em;}.icon.size-bigger{font-size: 3em;}.icon.size-jumbo{font-size: 4em;}
404
+
405
+ /*parallax*/
406
+ .parallax{background-size:cover;background-repeat: no-repeat;background-position: center;background-attachment: fixed;height: 100vh;width:100%}
407
+ /*modal*/
408
+ .modal{position: fixed;top:0;justify-content: center;align-items: center;left: 0;padding:0px 10%;
409
+ z-index: 100;width: 100%;height: 100%;min-height:100vh;transition: 0.5s;}
410
+ .modal.backdrop{background-color:rgba(0,0,0,0.4)}
411
+ .modal-content{margin: 100px auto;}.close-modal{float: right;margin: 30px;cursor:pointer}
412
+ .closeModal{width: 2.5rem;height: 2.5rem;background-color: var(--danger);display: flex;align-items: center;justify-content: center;border-radius: 50%;
413
+ position: absolute;top: 0;right: 0;transform: translate(1.25rem , -1.25rem);color: var(--white);transition: 0.3s linear;
414
+ }.closeModal:hover{color: var(--white);background-color: var(--danger);cursor: pointer;}
415
+ .modal-title{padding: 0.5rem;border-bottom: 1.5px solid #ddd;}
416
+ .modal-content{
417
+ max-width: 700px;
418
+ background-color: white;
419
+ border-radius: 10px;
420
+ box-shadow:0px 10px 20px 0px rgba(0,0,0,0.1)}
421
+ .modal-body{padding: 0.7rem;max-height: 300px;overflow: auto;}
422
+ .modal-action{padding: 0.7rem;text-align: right;}.modal-action > button, Button , .button{display: inline-block;margin: 0px 5px;}
423
+ /*background image*/
424
+ .background.no-repeat{background-repeat: no-repeat;}.background.repeat{background-repeat: repeat;}
425
+ .background.cover{background-size: cover;}.background.contain{background-size: contain;}
426
+ .background.center{background-position: center;}.background.top{background-position: top;}
427
+ .background.left{background-position: left;}.background.right{background-position: right;}
428
+ .background.bottom{background-position: bottom;}
429
+ .darken{background-color: black;opacity: 0.1;}
430
+ /*slide panel*/
431
+ .slide-panel{position: relative;;overflow: hidden;}
432
+ .slide-panel-content{position: absolute;top: 0;left: 0;right: 0;bottom: 0;width: 100%;height: 100%;z-index: 1;transition: transform 0.3s ease;}
433
+ .slide-panel.slide-top:hover .slide-panel-content{transform: translate(0, 0);}.slide-panel.slide-top .slide-panel-content{transform: translate(0, -100%);}
434
+ .slide-panel.slide-bottom:hover .slide-panel-content{transform: translate(0, 0);}.slide-panel.slide-bottom .slide-panel-content{transform: translate(0, 100%);}
435
+ .slide-panel.slide-left:hover .slide-panel-content{transform: translate(0, 0);}.slide-panel.slide-left .slide-panel-content{transform: translate(-100%, 0);}
436
+ .slide-panel.slide-right:hover .slide-panel-content{transform: translate(0, 0);}.slide-panel.slide-right .slide-panel-content{transform: translate(100%, 0);}
437
+ .icon-start{display: relative;}.icon-start > i{display: absolute;top: 0;left: 0;}
438
+ .icon.fit{transform: translateY(20%);}
439
+
440
+ /*hide and show on screen */
441
+ @media (max-width:600px){.hide-small{display: none;}.show-small{display: block;}.hide-medium{display:block;}.hide-medium-down{display: none;}.show-medium{display: none;}.show-medium-up{display: none;}.show-medium-down{display: block;}.hide-medium-up{display: block;}.show-large{display: none;}}
442
+ @media (min-width:601px){.hide-medium{display: none;}.hide-small{display: block;}.show-small{display: none;}.hide-medium-down{display: none;}.show-medium-down{display:block;}.hide-medium-up{display: none;}.show-medium{display: block;}.show-large{display: none;}}
443
+ @media (min-width:993px){.show-large{display: block;}.hide-medium{display: block;}.hide-small{display: block;}.show-small{display: none;}.hide-medium-down{display: block;}.show-medium{display: none;}.hide-large{display: none;}.show-medium-down{display: none;};.hide-medium-up{display: none;}}
444
+
445
+ /* Progress bars */
446
+ .progressBar{
447
+ background-color: var(--light);
448
+ position: relative;
449
+ border-radius: 0.2rem;
450
+ height: 20px;
451
+ }
452
+ .progressInner{
453
+ position: absolute;
454
+ top: 0;
455
+ left: 0;
456
+ border-radius: 0.2rem;
457
+ height: 100%;
458
+ font-size: var(--smallerFont);
459
+ font-weight: bold;
460
+ overflow: hidden;
461
+ display: flex;
462
+ align-items: center;
463
+ justify-content: flex-end;
464
+ }
465
+ .progressBar.lined{
466
+ background-color: transparent !important;
467
+ /* padding: 0.1rem; */
468
+ }
469
+ .linedProgress{
470
+ position: absolute;
471
+ bottom: 0;
472
+ left: 0;
473
+ height: 0.2rem;
474
+ text-align: right;
475
+ /* padding: 0 1rem; */
476
+ font-size: var(--smallFont);
477
+ font-weight: bold;
478
+ }
479
+
480
+ /* darken */
481
+ .darken-10{background-color: rgba(0,0,0,0.1);}
482
+ .darken-9{background-color: rgba(0,0,0,0.9);}
483
+ .darken-8{background-color: rgba(0,0,0,0.8);}
484
+ .darken-7{background-color: rgba(0,0,0,0.7);}
485
+ .darken-6{background-color: rgba(0,0,0,0.6);}
486
+ .darken-5{background-color: rgba(0,0,0,0.5);}
487
+ .darken-4{background-color: rgba(0,0,0,0.4);}
488
+ .darken-3{background-color: rgba(0,0,0,0.3);}
489
+ .darken-2{background-color: rgba(0,0,0,0.2);}
490
+ .darken-1{background-color: rgba(0,0,0,0.1);}
491
+
492
+ .tooltip {
493
+ position: relative;
494
+ display: inline-block;
495
+ }
496
+
497
+ .tooltip .tip{
498
+ display: none;
499
+ width: 100%;
500
+ max-width: 400px;
501
+ background-color: #555;
502
+ color: #fff;
503
+ text-align: center;
504
+ border-radius: 3px;
505
+ padding: 5px 0;
506
+ position: absolute;
507
+ z-index: 5;
508
+ transition: opacity 0.3s;
509
+ font-size:var(--smallerFont) !important;
510
+ }
511
+ .tooltip .tip-top {
512
+ bottom: 125%;
513
+ left: 50%;
514
+ margin-left: -60px;
515
+ }
516
+
517
+
518
+ .tooltip:hover .tip-top {
519
+ display: inline-block;
520
+ }
521
+
522
+ .tooltip .tip-bottom {
523
+ top: 120%;
524
+ left: 50%;
525
+ margin-left: -60px;
526
+ }
527
+
528
+ .tooltip:hover .tip-bottom {
529
+ display: inline-block;
530
+ }
531
+
532
+ .tooltip .tip-right {
533
+ top: -5px;
534
+ left: 105%;
535
+ font-size:small;
536
+ }
537
+
538
+ .tooltip:hover .tip-right {
539
+ display: inline-block;
540
+ }
541
+
542
+ .tooltip .tip-left {
543
+ /* Position the tooltip */
544
+ position: absolute;
545
+ z-index: 1;
546
+ top: -5px;
547
+ right: 105%;
548
+ }
549
+ .tooltip:hover .tip-left {
550
+ display: inline-block;
551
+ }
552
+ .accordion li{
553
+ list-style: none;
554
+ border-collapse: collapse;
555
+ /* display: flex;
556
+ flex-direction:column; */
557
+ }
558
+
559
+ .accordion{border-collapse: collapse;padding: 0px;}
560
+ .accordion li + li{
561
+ /* margin-top: 1em; */
562
+ border-top:1px solid #ddd;
563
+ }
564
+
565
+
566
+ .accordion-panel{
567
+ padding: 1em;
568
+ display: none;
569
+ }
570
+
571
+ /* animations */
572
+ .animate-underline::after {
573
+ position: absolute;
574
+ top: 25px;
575
+ left: 0;
576
+ content: "";
577
+ width: 0%;
578
+ height: 3px;
579
+ /* background-color: rgba(255, 255, 255, 0.6); */
580
+ transition: all 0.5s;
581
+ }
582
+
583
+ .animate-underline:hover::after {
584
+ width: 100%;
585
+ }
586
+ .snackbar{
587
+ position: fixed;
588
+ background-color: #000000;
589
+ border-radius: 3px;
590
+ max-width: 400px;
591
+ color: white;
592
+ box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
593
+ z-index: 20;
594
+ display: flex;
595
+ align-items: center;
596
+ font-size: var(--smallFont);
597
+ }
598
+ .snackbar.default{
599
+ bottom: 20px;
600
+ left: 20px;
601
+ }
602
+ .snackbar.top-left{
603
+ top: 20px !important;
604
+ left: 20px !important;
605
+ }
606
+ .snackbar.top-right{
607
+ top: 20px !important;
608
+ right: 20px !important;
609
+ }
610
+ .snackbar.bottom-left{
611
+ bottom: 20px !important;
612
+ left: 20px !important;
613
+ }
614
+ .snackbar.bottom-right{
615
+ bottom: 20px !important;
616
+ right: 20px !important;
617
+ }
618
+
619
+ .snackbar-content{
620
+ display: flex;
621
+ justify-content: space-between;
622
+ align-items: center;
623
+ padding: 0px 10px;
624
+ }
625
+ .snackbar-content{padding: 5px;}
626
+ .close-snackbar{padding: 5px;font-size: large;font-weight: 600;cursor: pointer;}
627
+ .snackbar-body{padding: 5px;}
628
+
629
+ /* glassmophisiam */
630
+ .glass{
631
+ background-color: transparent !important;
632
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
633
+ backdrop-filter: blur(10px);
634
+ -webkit-backdrop-filter: blur(10px);
635
+
636
+ }
637
+
638
+ @keyframes ScaleUp {
639
+ from{transform:scale(0)}
640
+ to{transform:scale(1)}
641
+ }
642
+ @keyframes Opacity {
643
+ from{opacity:0}
644
+ to{opacity:1}
645
+ }
646
+
647
+ @keyframes SlideBottom {
648
+ from{margin-bottom:-100%}
649
+ to{margin-bottom: 0%;}
650
+ }
651
+ @keyframes SlideTop {
652
+ from{margin-top:-100%}
653
+ to{margin-top: 0%;}
654
+ }
655
+ @keyframes SlideLeft {
656
+ from{margin-left:-100%}
657
+ to{margin-left: 0%;}
658
+ }
659
+ @keyframes SlideRight {
660
+ from{margin-right:-100%}
661
+ to{margin-right: 0%;}
662
+ }
663
+
664
+