blob: a3c4b2b1096efc19383c8707590e485990a11864 [file] [log] [blame]
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001html, body{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +02002 height: 100%;
3}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02004body{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +02005 background: #FAFAFA !important;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02006 /* background-image: linear-gradient(-45deg, #000 10%, #fff 0);
7 background-size: 6px 6px; */
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +02008 margin: 0;
shaaban Altananyc133b832020-01-09 10:15:28 +02009 /* font-family: 'Nunito' !important; */
10 font-family: Arial, Helvetica, sans-serif !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020011 color: #1B3E6F !important;
shadyb85e6de2020-01-22 13:47:41 +020012 font-size: 14px;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020013}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020014*:focus{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020015 outline: none;
16}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020017:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020018 transition: 0.3s !important;
19}
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020020/*Bootstrap*/
Sarah Abouzainahefcfc482020-05-18 15:38:56 +020021.btn:disabled:hover{
22 cursor: default;
23}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020024.custom-control-label::before{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020025 border: solid 1px #C3CDDB !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020026 border-radius: 0 !important;
27}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020028.custom-control-input:checked ~ .custom-control-label::before{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020029 background: #1B3E6F !important;
30}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020031.custom-radio .custom-control-label::before{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020032 border-radius: 50% !important;
33}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020034.custom-control-label{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020035 font-size: 13px;
36 line-height: 24px;
37}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020038.form-check-input + span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020039 display: inline-flex !important;
40}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020041.form-check-input + span i{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020042 margin-right: 9px !important;
43}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020044.form-control:focus{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020045 background-color: #F4F9FE !important;
46}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020047.label-input input[type="radio"]{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020048 width: 14px !important;
49 height: 14px;
50}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +020051.card-header .btn[aria-expanded="true"],
52.card-header .btn[aria-expanded="false"]{
53 padding-left: 25px !important;
54 padding-right: 25px !important;
55 border-radius: 0 !important;
56}
57.card-header .btn[aria-expanded="true"]{
58 background-color:#F4F9FE;
59}
60.card-header .btn[aria-expanded="false"]{
61 background-color:#fff;
62}
63/*NGX-TOASTR*/
64.ngx-toastr{
65 border-radius: 2px !important;
66 color: #1B3E6F !important;
67 font-size: 13px !important;
68 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1) !important;
69}
70.toast-success{
71 border-left: solid 5px #66BB00 !important;
72 background: url(/assets/img/icon-required-yes.svg) 12px center #fff no-repeat !important;
73}
74.toast-error{
75 border-left: solid 5px #FF6469 !important;
76 background: url(/assets/img/icon-error.svg) 12px center #fff no-repeat !important;
Sarah Abouzainahced91552020-06-04 17:45:57 +020077 background-size: 18px !important;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +020078}
Sarah Abouzainah95c95202020-07-05 19:45:40 +020079.toast-info{
80 border-left: solid 5px #1273EB !important;
81 background: url(/assets/img/icon-info-color.svg) 12px center #fff no-repeat !important;
82}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020083/*ICONS*/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020084.icon-menuDots{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +020085 font-size: 3px !important;
86 color: #1B3E6F;
87 vertical-align: middle;
88}
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020089/*Components*/
Ahmed Abbas6ee4d312019-11-20 11:32:53 +020090/* Menu Styles */
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020091.primary-nav{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +020092 /* left: 0; */
93 position: fixed;
94 z-index: 999;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020095}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020096.menu{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020097 position: relative;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +020098}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +020099.menu ul{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200100 margin: 0;
101 padding: 0;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200102 list-style: none;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200103}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200104.open-panel{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200105 border: none;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200106 background-color:#fff;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200107 padding: 0;
108}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200109.logo-icon{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200110 background: #fff;
111 position: relative;
112 display: block;
113 text-align: center;
114 padding: 16px 0;
115 width: 50px;
116 height: 60px;
117 left: 0;
118 top: 0;
119 z-index: 1000;
120 cursor: pointer;
121}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200122.primary-nav .menu li{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200123 position: relative;
124}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200125.menu .icon{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200126 position: absolute;
127 top: 12px;
128 right: 10px;
129 pointer-events: none;
130 width: 30px;
131 height: 30px;
132 color: #fff;
133 text-align: center;
134}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200135.menu .icon .fa{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200136 vertical-align: middle;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200137}
138.menu,
139.menu a,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200140.menu a:visited{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200141 color: #fff;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200142 text-decoration: none!important;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200143 position: relative;
144}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200145.menu a{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200146 display: block;
147 white-space: nowrap;
148 padding: 10px 1em;
149 font-size: 12px;
150 font-weight: bold;
151 height: 52px;
152 line-height: 30px;
153}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200154.menu a:hover{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200155 color: #fff;
156}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200157.menu-dropdown li .icon{
shadyb3c61a62020-02-16 15:47:33 +0200158 text-align: center;
159 font-size: 16px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200160 color: #fff;
shadyb3c61a62020-02-16 15:47:33 +0200161 line-height: 33px;
162}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200163.menu-dropdown a{
shadyb3c61a62020-02-16 15:47:33 +0200164 cursor: pointer;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200165}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200166.menu-dropdown li.active .icon{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200167 color: #fff;
168 background: #265699;
169 border-radius: 50%;
170}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200171.menu-dropdown li:hover{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200172 background: #172B4D;
173}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200174.menu label{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200175 margin-bottom: 0;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200176 display: block;
177}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200178.menu label:hover{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200179 cursor: pointer;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200180}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200181.menu input[type="checkbox"]{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200182 display: none;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200183}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200184input#menu[type="checkbox"]{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200185 display: none;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200186}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200187.sub-menu-dropdown{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200188 display: none;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200189}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200190.new-wrapper{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200191 position: absolute;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200192 left: 50px;
193 width: calc(100% - 50px);
194 transition: transform .45s cubic-bezier(0.77, 0, 0.175, 1);
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200195}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200196#menu:checked + ul.menu-dropdown{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200197 left: 0;
198 -webkit-animation: all .45s cubic-bezier(0.77, 0, 0.175, 1);
199 animation: all .45s cubic-bezier(0.77, 0, 0.175, 1);
200}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200201.sub-menu-checkbox:checked + ul.sub-menu-dropdown{
202 display: block!important;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200203 -webkit-animation: grow .45s cubic-bezier(0.77, 0, 0.175, 1);
204 animation: grow .45s cubic-bezier(0.77, 0, 0.175, 1);
205 border-top: solid 2px #1B3E6F;
206}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200207.openNav .new-wrapper{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200208 position: absolute;
209 transform: translate3d(200px, 0, 0);
210 width: calc(100% - 250px);
211 transition: transform .45s cubic-bezier(0.77, 0, 0.175, 1);
212}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200213.downarrow{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200214 background: transparent;
215 position: absolute;
216 right: 50px;
217 top: 12px;
218 color: #fff;
219 width: 24px;
220 height: 24px;
221 text-align: center;
222 display: block;
223}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200224.downarrow:hover{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200225 color: #fff;
226}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200227.menu{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200228 position: absolute;
229 display: block;
230 left: -200px;
231 top: 0;
232 width: 250px;
233 height: 100vh;
234 transition: all 0.45s cubic-bezier(0.77, 0, 0.175, 1);
235 background-color: #1B3E6F;
236 z-index: 999;
237}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200238.menu-dropdown{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200239 top: 0;
240 overflow-y: auto;
241}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200242.overflow-container{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200243 position: relative;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200244 height: calc(100vh - 50px)!important;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200245 overflow-y: auto;
246 border-top: 60px solid #fff;
247 z-index: -1;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200248 display:block;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200249}
250
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200251.menu .logotype{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200252 position: absolute !important;
253 top: 16px;
254 left: 55px;
255 display: block;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200256}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200257/* .sub-menu-dropdown{
258background-color: #333;
259} */
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200260.menu:hover{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200261 position: absolute;
262 left: 0;
263 top: 0;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200264}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200265.openNav .menu:hover{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200266 position: absolute;
267 left: -200px;
268 top: 60px;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200269}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200270.openNav .menu{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200271 top: 60px;
272 transform: translate3d(200px, 0, 0);
273 transition: transform .45s cubic-bezier(0.77, 0, 0.175, 1);
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200274}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200275@-webkit-keyframes grow{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200276 0% {
277 display: none;
278 opacity: 0;
279 }
280 50% {
281 display: block;
282 opacity: 0.5;
283 }
284 100% {
285 opacity: 1;
286 }
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200287}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200288@keyframes grow{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200289
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200290 0% {
291 display: none;
292 opacity: 0;
293 }
294 50% {
295 display: block;
296 opacity: 0.5;
297 }
298 100% {
299 opacity: 1
shaaban Altananyba3756e2020-01-07 12:08:44 +0200300 }
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200301}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200302/*User Profile*/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200303.userProfile .dropdown{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200304 width: 99.5%;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200305}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200306.userProfile .dropdown:hover{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200307 background: #172B4D !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200308}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200309.userProfile .dropdown-text{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200310 background: transparent;
311 border: 0;
312 box-shadow: none;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200313 font-size: 13px;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200314 line-height: 40px;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200315}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200316.import-container-all{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200317 width: 100%;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200318 padding-bottom: 20px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200319}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200320.import-container{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200321 width: 100%;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200322 background: #E7F1FC;
323 margin-bottom: 20px;
324 padding: 9px 18px;
325 border: solid 1px #EEF4F9;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200326}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200327.import-container-input{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200328 width: 40%;
329 position: relative;
330 display: inline-block;
331 margin-right: 20px;
332}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200333.import-container-input input{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200334 width: 100%;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200335 height: 36px;
336 padding: 5px 40px 5px 12px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200337 border: 0px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200338 border-radius: 2px;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200339 -webkit-box-shadow: 0px 0px 42px -27px rgba(0,0,0,0.75);
340 -moz-box-shadow: 0px 0px 42px -27px rgba(0,0,0,0.75);
341 box-shadow: 0px 0px 42px -27px rgba(0,0,0,0.75);
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200342 font-size: 13px;
343 color: #172B4D;
344}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200345.import-container-input input:focus{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200346 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.18);
347}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200348.import-container-input input::placeholder{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200349 color: #959DA8 !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200350}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200351.enter-link{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200352 position: absolute;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200353 right: 12px;
354 font-size: 20px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200355 top: 6px;
356 color: #1273EB;
357}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200358.enter-link:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200359 text-decoration: none;
360}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200361.import-container-input input::placeholder{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200362 color: #CFD7E5;
363}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200364.import-container-span{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200365 font-size: 12px;
366}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200367.import-container-all .accordion .card-header{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +0200368 padding: 0 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200369 background: #fff !important;
370 border-bottom: 0 !important;
371}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200372.import-container-all .collapse.show{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200373 border-top: solid 1px #ECEDF2;
374}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200375.import-container-all .card-header .accordion-delete{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200376 display: none;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +0200377 position: absolute;
378 right: 15px;
379 background: #F4F9FE;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200380}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200381.import-container-all .card-header:hover .accordion-delete{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200382 display: inline;
383}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200384.accordion-delete{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200385 color: #FF6469;
386 font-size: 18px;
387 margin-top: 11px;
388}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200389.accordion-delete:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200390 text-decoration: none;
391}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200392/* .userProfile .dropdown-toggle{
393height: 40px;
394} */
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200395.userProfile .dropdown-toggle:hover ~ .dropdown-text,
396.userProfile .dropdown-toggle:focus ~ .dropdown-text{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200397 background: transparent !important;
398 border-radius: 0 !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200399 box-shadow: none !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200400}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200401
402.userProfile .dropdown-text::after {
shaaban Altananyba3756e2020-01-07 12:08:44 +0200403 right: 14px;
404 top: 8px;
405 width: 24px;
406 height: 24px;
407 background: url(/assets/img/img-userProfile.png) center center no-repeat;
408}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200409.packagesFilter .custom-checkbox{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200410 margin-left: 8px;
411}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200412.packagesFilter .custom-control-label{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200413 line-height: 28px !important;
414 font-size: 14px !important;
415 text-indent: 6px !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200416}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200417.packagesFilter .reset-filter{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200418 margin-top: 6px;
419 padding-top: 6px;
420 padding-left: 9px;
421 border-top: solid 1px #ECEDF2;
422 font-size: 13px;
423}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200424.packagesFilter .reset-filter a:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200425 background: none !important;
426 text-decoration: none;
427 color: #1B3E6F;
428}
Sarah Abouzainah95c95202020-07-05 19:45:40 +0200429.tags-filter-list{
430 max-height: 260px;
431 overflow-y: auto;
432}
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200433/**Packages Sort**/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200434.sort-packages{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200435 font-size: 12px;
436 font-weight: bold;
437 color: #C3CDDB;
438}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200439.sort-packages .dropdown{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200440 width: 88px;
441}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200442.sort-packages .dropdown-text{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200443 background: transparent;
444 border: 0;
445 box-shadow: none;
446 color: #1B3E6F;
447}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200448.sort-packages .dropdown-text::after{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200449 right: 18px !important;
450 border: solid !important;
451 border-color: #1B3E6F transparent transparent transparent !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200452}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200453.sort-packages .dropdown-toggle:focus ~ .dropdown-text::after{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200454 top: 12px !important;
455 border-color: transparent transparent #1B3E6F transparent !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200456}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200457.sort-packages .dropdown-toggle:hover ~ .dropdown-text,
458.sort-packages .dropdown-toggle:focus ~ .dropdown-text{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200459 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, .15);
460 background: #fff;
461}
shaaban Altananyba3756e2020-01-07 12:08:44 +0200462.sort-packages .dropdown-content:hover,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200463.sort-packages .dropdown-toggle:focus ~ .dropdown-content{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200464 top: 30px;
465}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200466.sort-packages .dropdown-content{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200467 width: 88px;
468 padding: 6px 0;
469 background: #fff;
470 border-radius: 2px;
471 border: 0;
472 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, .15);
473}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200474.sort-packages .dropdown-content a{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200475 color: #1B3E6F;
476 font-size: 12px;
477}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200478.sort-packages .dropdown-content a:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200479 color: #1B3E6F;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200480 background-color: #F4F9FE;
481 text-decoration: unset;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200482 cursor: pointer;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200483}
484/**Pagination**/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200485.page-item{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200486 margin: 3px 2px 0;
487}
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200488.page-item .page-link,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200489.page-item.disabled .page-link{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200490 padding: 5px 9px;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200491 background: transparent !important;
492 border: 0;
493 color: #1B3E6F !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200494 font-size: 13px;
495 font-weight: bold;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200496}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200497.page-item.active .page-link,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200498.page-link:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200499 color: #1B3E6F !important;
500 background-color: #fff !important;
501 border-radius: 100% !important;
502 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1);
503 outline: 0;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200504}
505/**Packages Cards***/
506/***Package Info Card***/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200507.packages-card .card{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200508 width: 100%;
Ahmed Abbaseea49072019-11-27 15:04:18 +0200509 margin: 0;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200510 border-radius: 2px;
511 border: 0;
512 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1);
513}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +0200514.packages-card .card:hover .packageName{
515 color: #1273EB !important;
516}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200517.packages-card .card-title{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200518 margin-bottom: 0 !important;
Sarah Abouzainah98600832020-04-22 22:55:39 +0200519 font-size: 13px;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200520 font-weight: bold;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200521 color: #1B3E6F;
522}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200523.packages-card .card-title span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200524 color: #1B3E6F;
525 font-size: 11px;
Sarah Abouzainah98600832020-04-22 22:55:39 +0200526 vertical-align: bottom;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200527}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200528.packages-card p{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200529 font-size: 12px;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200530 color: #D0D7E4;
531}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200532.packages-card p.package-desc{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +0200533 margin-top: 6px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200534 font-size: 13px;
535 text-align: left;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200536 display: -webkit-box;
537 -webkit-line-clamp: 1;
538 -webkit-box-orient: vertical;
Sarah Abouzainah98600832020-04-22 22:55:39 +0200539 overflow: hidden;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +0200540 color: #1B3E6F;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200541}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200542.packages-card p.package-desc:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200543 color: #1B3E6F !important;
544 text-decoration: underline;
545}
546
547.packages-card [data-tooltip]::before,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200548.packages-card .tooltip::before{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200549 border: 0 !important;
550}
551.packages-card .tooltip:after,
552.packages-card [data-tooltip]:after {
553 padding: 9px;
554 font-size: 11px;
Sarah Abouzainah95c95202020-07-05 19:45:40 +0200555 background: #fff;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200556 border: solid 1px #E6EDF5;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200557 box-shadow: 0 0 12 rgba(0,0,0,0.8);
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200558 border-radius: 3px;
559}
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200560/***Add Package Card***/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200561.addPaackage-card{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200562 padding: 10px 0;
563 background: #F4F9FE !important;
564 border: solid 1px #D7E7F9 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200565 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.18) !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200566}
Sarah Abouzainahced91552020-06-04 17:45:57 +0200567.addPaackage-card .card-body img{
568 width: 30%;
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +0200569 vertical-align: text-top;
Sarah Abouzainahced91552020-06-04 17:45:57 +0200570}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200571.addPaackage-card a{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200572 margin: 0;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +0200573 padding: 7px 15px;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200574 font-weight: bold;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200575 font-size: 12px;
Sarah Abouzainahced91552020-06-04 17:45:57 +0200576 border-radius: 18px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200577 border-width: 0px;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200578 border-style: solid;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200579 background-position: 15px center;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200580 background-repeat: no-repeat;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200581 text-align: left;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200582}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200583.addPaackage-card a:hover{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200584 text-decoration: unset;
585}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200586.btn-create-package i,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200587.btn-import-package i{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200588 margin-right: 9px;
589 font-size: 14px;
590 vertical-align: middle;
591}
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200592.btn-create-package,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200593.btn-create-package:hover{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200594 background-color: #1B3E6F;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200595 color: #fff;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200596}
597.btn-import-package,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200598.btn-import-package:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200599 background: #C3CDDB;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200600 color: #1B3E6F;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200601}
602/***Actions Menu***/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200603.packages-card .dropdown{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200604 width: auto;
605 float: right;
606}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200607.packages-card .dropdown-text{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200608 background: transparent;
609 border: 0;
610 box-shadow: none;
611 text-indent: 0;
612 line-height: unset;
613 border-bottom-left-radius: 0;
614 border-bottom-right-radius: 0;
615 opacity: .6;
616}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200617.packages-card .dropdown-text:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200618 opacity: 1;
619}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200620.packages-card .dropdown-text::after{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200621 display: none;
622}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200623.packages-card .dropdown-text img{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200624 padding: 9px 7px;
625}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200626.packages-card .dropdown-content{
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200627 right: 0;
628 width: 120px;
629 padding: 6px 0;
630 border: 0;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200631 border-radius: 50%;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200632}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200633/* .userProfile .dropdown-content{
634 bottom: 40px !important;
635 top: unset !important;
636 width: 100%;
637} */
638/**Tab Nav**/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200639.nav-tabs{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200640 border-bottom-color: #ECEDF2 !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200641}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200642.nav-link{
shadyb3c61a62020-02-16 15:47:33 +0200643 padding: 15px 20px 15px 20px !important;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200644 text-transform: uppercase !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200645 font-size: 12px;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200646 font-weight: bold;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200647 color: #C3CDDB !important;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200648 border: none !important;
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +0200649}
shaaban Altananyba3756e2020-01-07 12:08:44 +0200650.nav-tabs .nav-link:focus,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200651.nav-tabs .nav-link:hover{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200652 border: 0 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200653 transition: 0.3s;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200654}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200655.nav-tabs .nav-link:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200656 color: #1B3E6F !important;
657}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200658.nav-tabs .nav-link.active{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200659 color: #1B3E6F !important;
660 background: transparent !important;
661 border: 0 !important;
662 border-bottom: solid 2px #1B3E6F !important;
663}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200664.nav-tabs .nav-link::before{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200665 content: "|";
666 padding-right: 20px !important;
667 color: #C3CDDB;
668 font-weight: normal;
shadyb3c61a62020-02-16 15:47:33 +0200669 position: absolute;
670 left: 0px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200671}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200672.nav-tabs .nav-link:first-child::before{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200673 content: none;
674}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200675.nav-tabs .nav-link:first-child{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200676 padding-left: 20px !important;
677}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200678.nav-item.nav-link.complete,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200679.nav-item.active.complete{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200680 padding: 15px 20px 15px 44px !important;
681 background: url(/assets/img/icon-required-yes.svg) 20px center no-repeat !important;
682}
Sarah Abouzainah95c95202020-07-05 19:45:40 +0200683.tabs-no-content{
684 font-size: 13px;
685 font-weight: bold;
686}
shaaban Altananyba3756e2020-01-07 12:08:44 +0200687/**Sliding Search Input**/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200688.searchBox{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200689 position: absolute;
690 top: 0%;
691 right: 0%;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200692 transform: translate(0%,-0%);
shaaban Altananyba3756e2020-01-07 12:08:44 +0200693 height: 40px;
694}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200695.searchButton{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200696 float: right;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200697 margin-top: 18px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200698 padding-left: 0 !important;
699 padding-right: 24px !important;
700 width: 60px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200701 height: 20px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200702 background: url(../src/assets/img/icon-search.svg) center center no-repeat;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200703 background-size: 24%;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200704 border: 0 !important;
705 border-right: solid 1px #1B3E6F !important;
706 display: flex;
707 justify-content: center;
708 align-items: center;
709 transition: 0.4s;
710}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200711.searchBox:hover > .searchInput{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200712 width: 240px;
713 border-bottom: solid 1px #C3CDDB;
714}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +0200715.searchBox:hover > .searchInput::placeholder{
716 color: #C3CDDB;
717}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200718.searchBox > .searchInput:focus{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200719 border-bottom: solid 1px #1B3E6F !important;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200720 -webkit-box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .6);
721 -moz-box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .6);
722 box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .6);
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200723}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200724.searchBox:hover > .searchButton{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200725 color: #1B3E6F;
726}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200727.searchInput{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200728 border: none;
729 background: none;
730 outline: none;
731 float: left;
732 padding: 0;
733 color: #1B3E6F;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200734 font-size: 12px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200735 transition: 0.4s;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200736 line-height: 49px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200737 width: 0px;
738}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200739.searchInput::placeholder{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200740 color: #BABBC3;
741}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200742.searchBox-expanded{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200743 width: 240px;
744 border-bottom: solid 1px #C3CDDB;
745}
746/**Drop Down Menu**/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200747.dropdown{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200748 position: relative;
749 display: inline-block;
750 text-align: left;
751 width: 132px;
752 z-index: 200;
753}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200754.dropdown-text{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200755 cursor: pointer;
756 position: relative;
757 text-indent: 10px;
758 line-height: 32px;
759 background-color: #eee;
760 border: 1px solid #ccc;
761 border-radius: 3px;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200762 box-shadow: 0 1px 0 rgba(255,255,255, .9) inset, 0 1px 3px rgba(0,0,0, .1);
shaaban Altananyba3756e2020-01-07 12:08:44 +0200763 width: 100%;
764}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200765.dropdown-text:after{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200766 position: absolute;
767 right: 6px;
768 top: 15px;
769 content: '';
770 width: 0px;
771 height: 0px;
772 border-style: solid;
shadyb3c61a62020-02-16 15:47:33 +0200773 /* border-width: 5px 4px 0 4px;
774 border-color: #555 transparent transparent transparent; */
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200775 border:0px
shaaban Altananyba3756e2020-01-07 12:08:44 +0200776}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200777.dropdown-toggle{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200778 font-size: 0;
779 z-index: 1;
780 cursor: pointer;
781 position: absolute;
782 top: 0;
783 border: none;
784 padding: 0;
785 margin: 0 0 0 1px;
786 background: transparent;
787 text-indent: -10px;
788 height: 34px;
789 width: 100%;
790}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200791.dropdown-toggle:focus{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200792 outline: 0;
793}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200794.dropdown-content{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200795 position: absolute;
796 top: 32px;
797 width: 140px;
798 margin: 0;
799 padding: 0;
800 opacity: 0;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200801 visibility:hidden;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200802 -webkit-transition: all .25s ease;
803 -moz-transition: all .25s ease;
804 -ms-transition: all .25s ease;
805 -o-transition: all .25s ease;
806 transition: all .25s ease;
807 list-style-type: none;
808 border-radius: 3px;
809 text-indent: 10px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200810 line-height: 28px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200811 background-color: #eee;
812 border: 1px solid #ccc;
813}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200814.dropdown-content a{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200815 display: block;
816}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200817.dropdown-content a:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200818 background: #e8e8e8;
819}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200820.dropdown-toggle:hover ~ .dropdown-text,
821.dropdown-toggle:focus ~ .dropdown-text{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200822 background-color: #e8e8e8;
823}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200824.dropdown-toggle:focus ~ .dropdown-text{
825 box-shadow: 0 1px 3px rgba(0,0,0, .2) inset, 0 1px 0 rgba(255,255,255, 0.8);
shaaban Altananyba3756e2020-01-07 12:08:44 +0200826 z-index: 2;
827}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200828.dropdown-toggle:focus ~ .dropdown-text:after{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200829 border-width: 0 4px 5px 4px;
830 border-color: transparent transparent #555 transparent;
831}
832.dropdown-content:hover,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200833.dropdown-toggle:focus ~ .dropdown-content{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200834 opacity: 1;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200835 visibility:visible;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200836 top: 42px;
837}
838/**Card**/
839/* Hover Shadow */
840@keyframes hover {
841 50% {
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200842 transform: translateY(-3px);
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200843 }
shaaban Altananyba3756e2020-01-07 12:08:44 +0200844 100% {
845 transform: translateY(-6px);
846 }
847}
848@keyframes card {
849 0% {
850 transform: translateY(6px);
851 opacity: .3;
852 }
853 50% {
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200854 transform: translateY(3px);
shaaban Altananyba3756e2020-01-07 12:08:44 +0200855 opacity: .8;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200856 }
shaaban Altananyba3756e2020-01-07 12:08:44 +0200857 100% {
858 transform: translateY(6px);
859 opacity: .3;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +0200860 }
shaaban Altananyba3756e2020-01-07 12:08:44 +0200861}
862.card {
863 /* display: inline-block;
864 position: relative;
865 transition-duration: 0.2s;
866 transition-property: transform;
867 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
868 transform: translateZ(0); */
869 margin-bottom: 25px !important;
870 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
871}
872/* .card:before {
873 pointer-events: none;
874 position: absolute;
875 z-index: -1;
876 content: '';
877 top: 100%;
878 left: 5%;
879 height: 10px;
880 width: 90%;
881 opacity: 0;
882 background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
883 transition-duration: 0.2s;
884 transition-property: transform opacity;
885} */
886/* .card:hover {
887 transform: translateY(-3px);
888 animation-name: hover;
889 animation-duration: 1s;
890 animation-delay: 0.2s;
891 animation-timing-function: linear;
892 animation-iteration-count: 1;
893 animation-direction: alternate;
894}
895.card:hover:before {
896 opacity: .4;
897 transform: translateY(3px);
898 animation-name: card;
899 animation-duration: 1s;
900 animation-delay: .2s;
901 animation-timing-function: linear;
902 animation-iteration-count: 1;
903 animation-direction: alternate;
904} */
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200905.card-body{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +0200906 padding: 10px 20px 20px !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200907}
908
909/*Main Container*/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200910.main-container{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200911 padding: 0 !important;
912}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200913.header-button-save button{
shadyb3c61a62020-02-16 15:47:33 +0200914 border-radius: 50px;
915}
shaaban Altananyba3756e2020-01-07 12:08:44 +0200916/*Page Title*/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200917.page-title{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200918 padding: 20px 30px;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200919 background:#fff;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200920 border-left: solid 1px #FAFAFA;
921 margin-bottom: 21px;
922 -webkit-box-shadow: 0 4px 10px 0 #eef0f5;
923 box-shadow: 0 4px 10px 0 #eef0f5;
924 position: relative;
925 z-index: 8;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200926 /* position: fixed;
927 width: calc(100% - 50px); */
shaaban Altananyba3756e2020-01-07 12:08:44 +0200928}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200929.page-title h2{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200930 font-size: 16px;
931 font-weight: bold;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200932 padding-top: 1px;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200933}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200934.page-title h2 span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200935 color: #C3CDDB;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200936 font-size: 14px;
937}
938/*Content*/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200939.body-container{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200940 padding: 0 30px !important;
941}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200942.body-container > .container{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200943 padding: 0;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200944}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200945.search-filter-col{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200946 padding-right: 0 !important;
947 border-bottom: solid 1px #ECEDF2 !important;
948}
949/**Packages Filter**/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200950.packagesFilter{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200951 margin-top: 12px;
952 margin-bottom: 7px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200953 z-index: 220 !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200954}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200955.packagesFilter .dropdown-toggle{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200956 height: 36px !important;
957}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200958.packagesFilter .dropdown-toggle:focus ~ .dropdown-text::after{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200959 border-color: transparent transparent #1B3E6F transparent;
960}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200961.packagesFilter .dropdown-text{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200962 background: transparent;
963 border: 0;
964 box-shadow: none;
965 text-indent: 14px;
966 line-height: 30px;
967 font-size: 12px;
968}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200969.packagesFilter .dropdown-text::after{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200970 right: 12px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200971 border: solid !important;
972 border-width: 5px 4px 0 4px !important;
973 border-color: #1B3E6F transparent transparent transparent !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200974}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200975.packagesFilter .dropdown-toggle:hover ~ .dropdown-text,
976.packagesFilter .dropdown-toggle:focus ~ .dropdown-text{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200977 background-color: transparent;
978 box-shadow: none;
979 border-radius: 0;
980}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200981.packagesFilter .dropdown-toggle:focus ~ .dropdown-text{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200982 background: #fff;
983 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, .15);
984}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200985.packagesFilter .dropdown-text::after{
shaaban Altananyba3756e2020-01-07 12:08:44 +0200986 top: 12px;
987}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200988.packagesFilter .dropdown-content{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200989 padding: 6px 0;
shaaban Altananyba3756e2020-01-07 12:08:44 +0200990 background: #fff;
991 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, .15);
992 border: 0;
993 border-top-left-radius: 0;
994 border-top-right-radius: 0;
995 border-bottom-left-radius: 2px;
996 border-bottom-right-radius: 2px;
997}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +0200998.packagesFilter .dropdown-content li:hover .custom-checkbox{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +0200999 cursor: pointer;
1000}
shaaban Altananyba3756e2020-01-07 12:08:44 +02001001.packagesFilter .dropdown-content:hover,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001002.packagesFilter .dropdown-toggle:focus ~ .dropdown-content{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001003 top: 30px;
1004}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001005.packagesFilter .form-control{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001006 padding: 12px 9px 12px 38px !important;
1007 border: 0 !important;
1008 border-bottom: solid 1px #D7E7F9 !important;
1009 background: url(../src/assets/img/icon-search.svg) 15px center no-repeat;
1010 background-size: 4%;
1011 border-radius: 0 !important;
1012 color: #1B3E6F;
1013 font-size: 13px;
1014}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001015.packagesFilter .form-control::placeholder{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001016 color: #BABBC3;
1017}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001018.packagesFilter .form-control:focus{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001019 box-shadow: none !important;
1020 border-bottom: solid 1px #1B3E6F !important;
1021}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001022.packagesFilter .custom-checkbox{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001023 margin-left: 8px;
1024}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001025.packagesFilter .custom-control-input{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001026 left: 10px;
1027}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001028.packagesFilter .custom-control-label{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001029 line-height: 28px !important;
1030 font-size: 13px !important;
1031 text-indent: 6px !important;
1032}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001033.fillteredTags{
1034 margin-left: 3px;
1035 padding: 3px 3px;
Sarah Abouzainah95c95202020-07-05 19:45:40 +02001036 background: #C3CDDB;
1037 color: #1B3E6F;
1038 font-weight: bold;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001039 border-radius: 4px;
1040}
shaaban Altananyba3756e2020-01-07 12:08:44 +02001041/**Packages Sort**/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001042.sort-packages{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001043 font-size: 12px;
1044 font-weight: bold;
1045 color: #C3CDDB;
1046}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001047.sort-packages .dropdown{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001048 width: 88px;
1049}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001050.sort-packages .dropdown-text{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001051 background: transparent;
1052 border: 0;
1053 box-shadow: none;
1054 color: #1B3E6F;
1055}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001056.sort-packages .dropdown-text::after{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001057 border-color: #1B3E6F transparent transparent transparent;
1058}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001059.sort-packages .dropdown-toggle:focus ~ .dropdown-text::after{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001060 border-color: transparent transparent #1B3E6F transparent;
1061}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001062.sort-packages .dropdown-toggle:hover ~ .dropdown-text,
1063.sort-packages .dropdown-toggle:focus ~ .dropdown-text{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001064 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, .15);
1065 background: #fff;
1066}
1067.sort-packages .dropdown-content:hover,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001068.sort-packages .dropdown-toggle:focus ~ .dropdown-content{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001069 top: 30px;
1070}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001071.sort-packages .dropdown-content{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001072 width: 88px;
1073 padding: 6px 0;
1074 background: #fff;
1075 border-radius: 2px;
1076 border: 0;
1077 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, .15);
1078}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001079.sort-packages .dropdown-content a{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001080 color: #1B3E6F;
1081 font-size: 12px;
1082}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001083.sort-packages .dropdown-content a:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001084 background-color: #F4F9FE;
1085 text-decoration: unset;
1086}
1087/**Pagination**/
1088.page-item .page-link,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001089.page-item.disabled .page-link{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001090 background: transparent !important;
1091 border: 0;
1092 color: #1B3E6F !important;
1093 font-size: 14px;
1094}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001095.page-link:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001096 color: #1B3E6F !important;
1097 background-color: #fff !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001098 border-radius: 100%;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001099 transition: 0.3s;
1100 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.12);
1101}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001102.page-item.disabled{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001103 opacity: .3;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001104}
1105/**Packages Cards***/
1106/***Package Info Card***/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001107.packages-card .card{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001108 margin: 0;
1109 border-radius: 2px;
1110 border: 0;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001111 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.12);
shaaban Altananyba3756e2020-01-07 12:08:44 +02001112}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001113.packages-card .card:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001114 box-shadow: 0 2px 13px 6px rgba(47, 83, 151, .17);
shaaban Altananyba3756e2020-01-07 12:08:44 +02001115 transition: all 0.5s ease;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001116 cursor: pointer;
1117}
1118.packages-card .card:hover .card-title,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001119.packages-card .card:hover .card-title span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001120 color: #1273EB !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001121}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001122.packages-card .card-title{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001123 margin-bottom: 0 !important;
Sarah Abouzainah98600832020-04-22 22:55:39 +02001124 font-size: 14px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001125 font-weight: bold;
1126}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001127.packages-card .card-title .packageName{
Sarah Abouzainah98600832020-04-22 22:55:39 +02001128 margin-bottom: 0;
1129 display: inline-block;
1130 width: auto;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001131 max-width: 64%;
Sarah Abouzainah98600832020-04-22 22:55:39 +02001132 white-space: nowrap;
1133 overflow: hidden;
1134 text-overflow: ellipsis;
1135 font-size: 13px;
1136 vertical-align: bottom;
1137 color: #1B3E6F;
1138}
1139.packages-card .card-title:hover,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001140.packages-card .card-title:hover .packageName{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001141 text-decoration: none;
1142 color: #1273EB;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001143}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001144.packages-card .card-body{
Ahmed Abbaseea49072019-11-27 15:04:18 +02001145 padding-bottom: 0 !important;
1146}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001147.packages-card .card-footer .col{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001148 padding-left: 3px !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001149 text-align: left;
Ahmed Abbaseea49072019-11-27 15:04:18 +02001150}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001151
shaaban Altananyba3756e2020-01-07 12:08:44 +02001152/***Add Package Card***/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001153.addPaackage-card{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001154 background: #F4F9FE !important;
1155 border: solid 1px #D7E7F9 !important;
1156}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001157.addPaackage-card:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001158 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1) !important;
1159}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001160
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001161.addPaackage-card a:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001162 text-decoration: unset;
1163}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001164.addPaackage-card .card-footer .col{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001165 padding: 0;
1166 text-align: right;
1167}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001168.addPaackage-card .card-footer .col:last-child{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001169 text-align: left;
1170}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001171.btn-create-package,
1172.btn-import-package{
Sarah Abouzainahced91552020-06-04 17:45:57 +02001173 width: auto;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001174}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001175.btn-create-package{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001176 margin-bottom: 6px !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001177}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001178.btn-import-package{
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02001179 margin-bottom: 15px !important;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001180}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001181.btn-create-package,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001182.btn-create-package:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001183 background-color: #1B3E6F;
1184 border-color: #1B3E6F;
1185 color: #fff;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001186}
1187.btn-import-package,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001188.btn-import-package:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001189 color: #1B3E6F;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001190}
1191/***Actions Menu***/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001192.packages-card .dropdown{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001193 width: auto;
1194 float: right;
1195}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001196.packages-card .dropdown-text{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001197 background: transparent;
1198 border: 0;
1199 box-shadow: none;
1200 text-indent: 0;
1201 line-height: unset;
1202 border-bottom-left-radius: 0;
1203 border-bottom-right-radius: 0;
1204 opacity: .6;
1205}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001206.packages-card .dropdown-text::after{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001207 display: none;
1208}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001209.packages-card .dropdown-text img{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001210 padding: 9px 7px;
1211}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001212.packages-card .dropdown-content{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001213 right: 0;
1214 width: 120px;
1215 padding: 6px 0;
1216 border: 0;
1217 text-indent: 0;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001218 border-radius: 4px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001219 border-top-right-radius: 0;
1220 background: #1B3E6F;
1221}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001222.packages-card .dropdown-content a{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001223 padding-left: 12px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001224 color: #fff;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001225 font-size: 12px;
1226 /* background-position: 14px center;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001227 background-size: 10%;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001228 background-repeat: no-repeat; */
1229}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001230.packages-card .dropdown-content a i{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001231 margin-right: 4px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001232}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001233.packages-card .dropdown-content a:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001234 background-color: #172B4D;
1235 text-decoration: unset;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001236 color: #fff;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001237}
shaaban Altananyba3756e2020-01-07 12:08:44 +02001238.packages-card .dropdown-content:hover,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001239.packages-card .dropdown-toggle:focus ~ .dropdown-content{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001240 top: 22px;
1241}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001242.packages-card .dropdown-toggle:focus ~ .dropdown-text .icon-menuDots{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001243 color: #D0D7E4;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001244}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001245.packages-card .dropdown-toggle:hover ~ .dropdown-text{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001246 background: transparent;
1247 opacity: 1;
1248}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001249.packages-card .dropdown-toggle:focus ~ .dropdown-text{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001250 width: 27px;
1251 text-align: center;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001252 opacity: 1;
1253 background: #1B3E6F;
1254 box-shadow: none;
1255}
Sarah Abouzainahced91552020-06-04 17:45:57 +02001256
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001257.package-version::before{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001258 content: "|";
Sarah Abouzainah98600832020-04-22 22:55:39 +02001259 margin-left: 8px;
1260 margin-right: 6px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001261 vertical-align: text-bottom;
1262}
1263
shaaban Altananyba3756e2020-01-07 12:08:44 +02001264/***Contributers***/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001265ul.package-contributers{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001266 margin-bottom: 9px !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001267 padding-left: 0 !important;
1268}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001269.package-contributers li{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001270 list-style: none;
1271 display: inline-block;
1272}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001273.package-contributers li{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001274 margin-left: -5px;
1275}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001276.package-contributers li:first-child{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001277 margin-left: 0;
1278}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001279.package-contributers li:last-child{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001280 margin-left: 9px;
1281}
1282.package-modifier,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001283.package-contributers button{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001284 height: 20px !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001285 padding: 0 !important;
1286 border-radius: 100%;
1287 border: 0 !important;
1288 /*Hover Effect*/
1289 -webkit-transition: box-shadow 0.2s ease;
1290 -moz-transition: box-shadow 0.2s ease;
1291 transition: box-shadow 0.2s ease;
1292 -webkit-backface-visibility: hidden;
1293 backface-visibility: hidden;
1294 display: inline-block;
1295 position: relative;
1296}
1297.package-modifier:before,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001298.package-contributers button:before{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001299 -webkit-transition: all 0.2s ease;
1300 -moz-transition: all 0.2s ease;
1301 transition: all 0.2s ease;
1302 border-radius: 50%;
1303 bottom: 0;
1304 box-shadow: 0 0 0 2px #fff;
1305 content: "";
1306 left: 0;
1307 position: absolute;
1308 right: 0;
1309 top: 0;
1310}
1311.package-modifier:hover,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001312.package-contributers button:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001313 box-shadow: 0 0 0 2px #D7E7F9;
1314 text-decoration: none;
1315}
1316.package-modifier:hover:before,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001317.package-contributers button:hover:before{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001318 -webkit-transform: scale(0.925);
1319 -moz-transform: scale(0.925);
1320 -ms-transform: scale(0.925);
1321 -o-transform: scale(0.925);
1322 transform: scale(0.925);
1323 box-shadow: 0 0 0 1px #D7E7F9;
1324 opacity: 0.5;
1325}
1326.package-modifier img,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001327.package-contributers button img{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001328 width: 20px;
1329 height: 20px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001330 object-fit: cover;
1331 vertical-align: top;
1332 border-radius: 100%;
1333}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001334.package-contributers a{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001335 font-size: 12px;
1336 color: #1273EB;
1337}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001338.package-contributers a:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001339 text-decoration: unset;
1340}
1341/***Package Footer***/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001342.packages-card .card-footer{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001343 padding: 0 !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001344 background: transparent !important;
1345 border-top-color: #F7F6F6 !important;
1346}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001347.packages-card .card-footer .col{
Sarah Abouzainah3ce18432020-04-13 16:08:31 +02001348 text-align: center;
1349}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001350.packages-card .card-footer .col:first-child{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001351 border-right: solid 1px #F7F6F6;
1352}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001353.packages-card .card-footer .btn{
Sarah Abouzainah3ce18432020-04-13 16:08:31 +02001354 padding: 10px 0 10px 0 !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001355 background-color: transparent !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001356 color: #1B3E6F !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001357 border: 0;
1358 font-size: 13px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001359 text-align: left;
1360 opacity: .4;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001361}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001362.packages-card .card-footer .btn:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001363 opacity: 1;
1364}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001365.packages-card .card-footer i{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001366 margin-right: 6px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001367}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001368.icon-deployed-active,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001369.icon-deploy-inactive{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001370 margin-right: 9px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001371 display: inline;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001372 background-image: url(/assets/img/icon-deploy-active.svg);
1373 background-position: center center;
1374 background-repeat: no-repeat;
1375 vertical-align: baseline;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001376}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001377.icon-deploy-inactive{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001378 background-image: url(/assets/img/icon-deploy-inactive.svg);
1379}
shaaban Altananyba3756e2020-01-07 12:08:44 +02001380
1381
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001382/*CREATE NEW ACTION MODAL*/
1383.createActionModal .modal-dialog{
1384 max-width: 85%;
1385}
1386.createActionModal .modal-header{
1387 padding-top: 21px !important;
1388 padding-bottom: 0 !important;
1389 border-bottom: 0;
1390}
1391.createActionModal .close{
1392 margin: 0 !important;
1393 padding: 6px 13px 10px !important;
1394 width: auto;
1395 opacity: 1 !important;
1396 border-radius: 100%;
1397}
1398.createActionModal .close:hover{
1399 background-color: #E0E8F2;
1400}
1401.createActionModal .icon-action-close{
1402 font-size: 14px;
1403 font-weight: bold;
1404}
1405.createActionModal .modal-body{
1406 padding-top: 0 !important;
1407 padding-bottom: 10px !important;
1408}
1409.createActionModal .modal-body .carousel-item{
1410 padding-left: 20px;
1411 padding-right: 10px;
1412}
1413@keyframes fadeInScale {
1414 0% {
1415 opacity: 0;
1416 -webkit-transform: scale(0) translateY(50%);
1417 transform: scale(0) translateY(50%);
1418 }
1419 90% {
1420 -webkit-transform: scale(1.05);
1421 transform: scale(1.05);
1422 }
1423 100% {
1424 opacity: 1;
1425 -webkit-transform: scale(1) translateY(0);
1426 transform: scale(1) translateY(0);
1427 }
1428}
1429.card.actionType{
1430 margin-bottom: 25px !important;
1431 padding: 220px 25px 50px;
1432 box-shadow: none;
1433 border-radius: 0;
1434 -webkit-transition: all 0.3s ease-in-out;
1435 transition: all 0.3s ease-in-out;
1436}
1437.card.actionType:hover{
1438 box-shadow: 0 10px 20px 0 rgba(27,62,111,.1);
1439 transition: 0.3s !important;
1440}
1441.createActionModal h1{
1442 margin-bottom: 21px;
1443 font-size: 22px;
1444 text-align: center;
1445 font-weight: normal;
1446}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001447.createActionModal .skip-btn{
1448 float: unset;
1449 width: auto;
1450 color: #1273EB;
1451 font-weight: normal !important;
1452 font-size: 13px;
1453 border: solid 1px #F1F2FA;
1454 border-radius: 2px;
1455}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001456.actionType,
1457.actionType:hover{
1458 text-align: center;
1459 line-height: 40px;
1460 background-position: center 40px;
1461 background-repeat: no-repeat;
1462 background-size: 144px 172px;
1463}
1464.actionType h3,
1465.actionType p{
1466 margin: 0;
1467}
1468.actionType h3{
1469 text-transform: uppercase;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001470 font-size: 13px;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001471 font-weight: bold;
1472}
1473.actionType p{
1474 font-size: 13px !important;
1475 line-height: 24px;
1476}
1477.actionType .btn,
1478.actionType:hover .btn{
1479 opacity: 0;
1480 position: absolute;
1481 bottom: 0;
1482 left: 30% !important;
1483 margin-bottom: 26px;
1484 width: 100px;
1485 height: 30px;
1486 background: #1B3E6F;
1487 color: #fff;
1488 font-size: 12px;
1489 font-weight: bold;
1490 border-radius: 15px !important;
1491 -webkit-transform: translateY(-20%);
1492 transform: translateY(-20%);
1493 -webkit-transition: all 0.3s ease-in-out;
1494 transition: all 0.3s ease-in-out;
1495}
1496.actionType:hover .btn{
1497 opacity: 1;
1498 -webkit-transform: translateY(0);
1499 transform: translateY(0);
1500}
1501.actionType.custom{
1502 background-image: url(/assets/img/icon-action-custom.svg);
1503}
1504.actionType.custom:hover{
1505 cursor: pointer;
1506 background-image: url(/assets/img/icon-action-custom-hover.svg);
1507}
1508.actionType.default{
1509 background-image: url(/assets/img/icon-action-default.svg);
1510}
1511.actionType.default:hover{
1512 cursor: pointer;
1513 background-image: url(/assets/img/icon-action-default-hover.svg);
1514}
1515.actionType.recent{
1516 background-image: url(/assets/img/icon-action-recent.svg);
1517}
1518.actionType.recent:hover{
1519 cursor: pointer;
1520 background-image: url(/assets/img/icon-action-recent-hover.svg);
1521}
1522.actionType.import{
1523 background-image: url(/assets/img/icon-action-import.svg);
1524}
1525.actionType.import:hover{
1526 cursor: pointer;
1527 background-image: url(/assets/img/icon-action-import-hover.svg);
1528}
1529.createActionModal .carousel-indicators{
1530 margin: 0;
1531}
1532.createActionModal .carousel-indicators li{
1533 margin: 0;
1534 padding: 0;
1535 text-indent: 0;
1536 border: 0;
1537}
1538.createActionModal .back{
1539 position: fixed !important;
1540 top: 83px;
1541 width: auto;
1542 padding:0 !important;
1543}
shaaban Altananyba3756e2020-01-07 12:08:44 +02001544
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001545.actionFormWrapper{
1546 width: 60%;
1547 margin: 0 auto;
1548}
1549.createActionModal .form-control.customAction{
1550 width: 55%;
1551 margin: 70px auto;
1552 padding-left: 0;
1553 border-radius: 0;
1554 border: 0;
1555 border-bottom: solid 1px #E0E8F2;
1556 color: #1B3E6F !important;
1557 font-size: 14px;
1558}
1559.createActionModal .form-control:focus{
1560 border-bottom: solid 1px #1B3E6F;
1561 background: transparent !important;
1562 -webkit-box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .8);
1563 -moz-box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .8);
1564 box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .8);
1565 text-shadow: none;
1566}
1567.createActionModal .form-control::placeholder{
1568 color: #C3CDDB;
1569
1570}
1571.createActionModal .submit,
1572.createActionModal .submit:hover{
1573 float: unset;
1574 width: 100px;
1575 height: 30px;
1576 background: #1B3E6F;
1577 color: #fff;
1578 font-size: 12px;
1579 font-weight: bold;
1580 border-radius: 15px !important;
1581}
1582.actionlabel{
1583 margin-right: 2px;
1584 color: #C3CDDB;
1585 font-size: 11px;
1586 font-weight: bold;
1587}
1588.form-control.searchInput,
1589.form-control.searchInput:focus{
1590 float: right;
1591 width: 250px !important;
1592 height: 30px !important;
1593 padding-left: 32px !important;
1594 border: solid 1px #E0E8F2 !important;
1595 border-radius: 2px !important;
1596 background: url(../src/assets/img/icon-search-light.svg) 9px center no-repeat !important;
1597 font-size: 13px !important;
1598 color: #1B3E6F;
1599}
1600.actionsListScroll{
1601 height: 228px;
1602 max-height: 228px;
1603 overflow: auto;
1604}
1605.createActionModal .actionName{
1606 margin-bottom: 15px;
1607 padding: 9px 18px;
1608 box-shadow: 0 2px 6px rgba(47,83,151,0.15);
1609}
1610.createActionModal p.selectedActions{
1611 margin-top: 20px;
1612 margin-bottom: 10px;
1613 color: #8D9FB7;
1614 font-size: 13px;
1615}
1616.createActionModal .sort-packages .dropdown{
1617 width: 60%;
1618}
1619.createActionModal .sort-packages .dropdown-text::after {
1620 right: 6px;
1621}
1622.createActionModal .sort-packages .dropdown-content{
1623 width: 100%;
1624}
1625.createActionModal .folder-upload-text button{
1626 float: unset;
1627}
shaaban Altananyba3756e2020-01-07 12:08:44 +02001628/* Border Fade */
1629.border-fade {
1630 display: inline-block;
1631 transition-duration: 0.3s;
1632 transition-property: box-shadow;
1633 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1634 transform: translateZ(0);
1635 box-shadow: inset 0 0 0 4px #ececec, 0 0 1px rgba(0, 0, 0, 0);
1636 /* Hack to improve aliasing on mobile/tablet devices */
1637}
1638.border-fade:hover {
1639 box-shadow: inset 0 0 0 4px #666, 0 0 1px rgba(0, 0, 0, 0);
1640 /* Hack to improve aliasing on mobile/tablet devices */
1641}
1642/*Content*/
1643
1644/**Title Action Buttons**/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001645.page-title-actions li{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001646 display: inline-block;
1647 text-align: center;
1648}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001649.title-action{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001650 -webkit-transition: box-shadow 0.2s ease;
1651 -moz-transition: box-shadow 0.2s ease;
1652 transition: box-shadow 0.2s ease;
1653 -webkit-backface-visibility: hidden;
1654 backface-visibility: hidden;
1655 border-radius: 50%;
1656 color: #6a75eb;
1657 display: inline-block;
1658 font-size: 0.889em;
1659 height: 4em;
1660 margin: 0 1em 1em;
1661 position: relative;
1662 text-align: center;
1663 text-transform: lowercase;
1664 width: 4em;
1665 line-height: 4em;
1666}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001667.title-action:before{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001668 -webkit-transition: all 0.2s ease;
1669 -moz-transition: all 0.2s ease;
1670 transition: all 0.2s ease;
1671 border-radius: 50%;
1672 bottom: 0;
1673 box-shadow: 0 0 0 1px #000;
1674 content: "";
1675 left: 0;
1676 position: absolute;
1677 right: 0;
1678 top: 0;
1679}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001680.title-action:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001681 box-shadow: 0 0 0 7px #07819b;
1682 text-decoration: none;
1683}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001684.title-action:hover:before{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001685 -webkit-transform: scale(0.925);
1686 -moz-transform: scale(0.925);
1687 -ms-transform: scale(0.925);
1688 -o-transform: scale(0.925);
1689 transform: scale(0.925);
1690 box-shadow: 0 0 0 1px #07819b;
1691 opacity: 0.5;
1692}
1693
1694/*Animation Button*/
1695/**Float**/
1696.float {
1697 display: inline-block;
1698 transition-duration: 0.3s;
1699 transition-property: transform;
1700 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1701 transform: translateZ(0);
1702 box-shadow: 0 0 1px rgba(0, 0, 0, 0);
1703}
1704.float:hover {
1705 transform: translateY(-5px);
1706}
1707
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001708/*TOOLTIP*/
1709/* Base styles for the element that has a tooltip */
1710[data-tooltip],
1711.tooltip {
1712 position: relative;
1713 cursor: pointer;
1714 text-align: center;
1715}
1716
1717/* Base styles for the entire tooltip */
1718[data-tooltip]:before,
1719[data-tooltip]:after,
1720.tooltip:before,
1721.tooltip:after {
1722 position: absolute;
1723 visibility: hidden;
1724 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
1725 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
1726 opacity: 0;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001727 -webkit-transition:
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001728 opacity 0.2s ease-in-out,
1729 visibility 0.2s ease-in-out,
1730 -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
shaaban Altananyba3756e2020-01-07 12:08:44 +02001731 -moz-transition:
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001732 opacity 0.2s ease-in-out,
1733 visibility 0.2s ease-in-out,
1734 -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
shaaban Altananyba3756e2020-01-07 12:08:44 +02001735 transition:
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001736 opacity 0.2s ease-in-out,
1737 visibility 0.2s ease-in-out,
1738 transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001739 -webkit-transform: translate3d(0, 0, 0);
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001740 -moz-transform: translate3d(0, 0, 0);
1741 transform: translate3d(0, 0, 0);
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001742 pointer-events: none;
1743}
1744
1745/* Show the entire tooltip on hover and focus */
1746[data-tooltip]:hover:before,
1747[data-tooltip]:hover:after,
1748[data-tooltip]:focus:before,
1749[data-tooltip]:focus:after,
1750.tooltip:hover:before,
1751.tooltip:hover:after,
1752.tooltip:focus:before,
1753.tooltip:focus:after {
1754 visibility: visible;
1755 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
1756 filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +02001757 opacity: 1;
1758}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001759
1760/* Base styles for the tooltip's directional arrow */
1761.tooltip:before,
1762[data-tooltip]:before {
1763 z-index: 1001;
1764 border: 6px solid transparent;
1765 background: transparent;
1766 content: "";
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +02001767}
1768
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001769/* Base styles for the tooltip's content area */
1770.tooltip:after,
1771[data-tooltip]:after {
1772 z-index: 1000;
1773 padding: 8px;
1774 width: auto;
Sarah Abouzainah95c95202020-07-05 19:45:40 +02001775 background-color: #fff;
1776 background-color: rgba(255, 255, 255, 1.0);
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001777 color: #1B3E6F;
1778 content: attr(data-tooltip);
1779 font-size: 10px;
1780 line-height: 1.2;
1781 border-radius: 2px;
1782}
Shaaban Ebrahim6cc77cb2019-11-11 10:51:21 +02001783
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001784/* Directions */
1785
1786/* Top (default) */
1787[data-tooltip]:before,
1788[data-tooltip]:after,
1789.tooltip:before,
1790.tooltip:after,
1791.tooltip-top:before,
1792.tooltip-top:after {
1793 bottom: 100%;
1794 left: 50%;
1795}
1796
1797[data-tooltip]:before,
1798.tooltip:before,
1799.tooltip-top:before {
1800 margin-left: 0;
1801 margin-bottom: -12px;
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001802 border-bottom-color: #DEE8F3;
1803 border-bottom-color: rgba(222, 232, 243, 1.0);
1804}
1805
1806/* Horizontally align top/bottom tooltips */
1807[data-tooltip]:after,
1808.tooltip:after,
1809.tooltip-top:after {
1810 margin-left: -50%;
1811}
1812
1813[data-tooltip]:hover:before,
1814[data-tooltip]:hover:after,
1815[data-tooltip]:focus:before,
1816[data-tooltip]:focus:after,
1817.tooltip:hover:before,
1818.tooltip:hover:after,
1819.tooltip:focus:before,
1820.tooltip:focus:after,
1821.tooltip-top:hover:before,
1822.tooltip-top:hover:after,
1823.tooltip-top:focus:before,
1824.tooltip-top:focus:after {
1825 -webkit-transform: translateY(-12px);
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001826 -moz-transform: translateY(-12px);
1827 transform: translateY(-12px);
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001828}
1829
1830/* Left */
1831.tooltip-left:before,
1832.tooltip-left:after {
1833 right: 100%;
1834 bottom: 50%;
1835 left: auto;
1836}
1837
1838.tooltip-left:before {
1839 margin-left: 0;
1840 margin-right: -12px;
1841 margin-bottom: 0;
1842 border-top-color: transparent;
Sarah Abouzainah95c95202020-07-05 19:45:40 +02001843 border-left-color: #fff;
1844 /* border-left-color: hsla(0, 0%, 20%, 0.9); */
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001845}
1846
1847.tooltip-left:hover:before,
1848.tooltip-left:hover:after,
1849.tooltip-left:focus:before,
1850.tooltip-left:focus:after {
1851 -webkit-transform: translateX(-12px);
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001852 -moz-transform: translateX(-12px);
1853 transform: translateX(-12px);
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001854}
1855
1856/* Bottom */
1857.tooltip-bottom:before,
1858.tooltip-bottom:after {
1859 top: 100%;
1860 bottom: auto;
1861 left: 20%;
1862}
1863
1864.tooltip-bottom:before {
1865 margin-top: -12px;
1866 margin-bottom: 0;
1867 border-top-color: transparent;
1868 border-bottom-color: #DEE8F3;
1869 border-bottom-color: rgba(222, 232, 243, 1.0);
1870}
1871
1872.tooltip-bottom:hover:before,
1873.tooltip-bottom:hover:after,
1874.tooltip-bottom:focus:before,
1875.tooltip-bottom:focus:after {
1876 -webkit-transform: translateY(12px);
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001877 -moz-transform: translateY(12px);
1878 transform: translateY(12px);
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001879}
1880
1881/* Right */
1882.tooltip-right:before,
1883.tooltip-right:after {
1884 bottom: 50%;
1885 left: 20%;
1886}
1887
1888.tooltip-right:before {
1889 margin-bottom: 0;
1890 margin-left: -12px;
1891 border-top-color: transparent;
Sarah Abouzainah95c95202020-07-05 19:45:40 +02001892 border-right-color: #fff;
1893 /* border-right-color: hsla(0, 0%, 20%, 0.9); */
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001894}
1895
1896.tooltip-right:hover:before,
1897.tooltip-right:hover:after,
1898.tooltip-right:focus:before,
1899.tooltip-right:focus:after {
1900 -webkit-transform: translateX(12px);
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001901 -moz-transform: translateX(12px);
1902 transform: translateX(12px);
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02001903}
1904
1905/* Move directional arrows down a bit for left/right tooltips */
1906.tooltip-left:before,
1907.tooltip-right:before {
1908 top: 3px;
1909}
1910
1911/* Vertically center tooltip content for left/right tooltips */
1912.tooltip-left:after,
1913.tooltip-right:after {
1914 margin-left: 0;
1915 margin-bottom: -16px;
1916}
Sarah Abouzainah98600832020-04-22 22:55:39 +02001917
1918/*TooltipModule - Shady*/
1919.tooltip:before,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001920.tooltip:after{
Sarah Abouzainah98600832020-04-22 22:55:39 +02001921 width: 100% !important;
1922}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001923.tooltip .tooltip-inner{
Sarah Abouzainah98600832020-04-22 22:55:39 +02001924 max-width: 280px !important;
1925 width: 100% !important;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001926 text-align: left!important;
1927 color:#1B3E6F;
Sarah Abouzainah95c95202020-07-05 19:45:40 +02001928 background-color: #fff;
Sarah Abouzainah98600832020-04-22 22:55:39 +02001929 border: solid 1px #E6EDF5;
1930 border-radius: 3px !important;
1931 font-size: 11px;
Sarah Abouzainah95c95202020-07-05 19:45:40 +02001932 opacity: 1.0 !important;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001933}
1934.bs-tooltip-bottom .arrow::before{
1935 border-bottom-color: #E6EDF5 !important;
1936}

1937.bs-tooltip-top .arrow::before{
1938 border-top-color: #E6EDF5 !important;
1939}

Sarah Abouzainah95c95202020-07-05 19:45:40 +02001940.bs-tooltip-left .arrow::before{
1941 border-left-color: #E6EDF5 !important;
1942}

1943.bs-tooltip-right .arrow::before{
1944 border-right-color: #E6EDF5 !important;
1945}

Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001946
1947
1948
1949
1950.btn{
1951padding-right: 20px !important;
1952padding-left: 20px !important;
1953
shaaban Altananyc133b832020-01-09 10:15:28 +02001954}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001955.btn.border-radius{
shaaban Altananyc133b832020-01-09 10:15:28 +02001956 border-radius: 20px !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001957}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001958.btn-primary{
1959 background-color: #1273EB !important;
1960 border-color: #1273EB !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02001961}
1962.btn-primary:hover {
1963 background-color: #0069d9 !important;
1964 border-color: #0062cc !important;
1965}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001966.btn + .btn{
shaaban Altananyba3756e2020-01-07 12:08:44 +02001967 margin-left: 10px;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001968 }
1969 .package-view-button button{
1970 width: 150px;
1971 float: right;
1972 }
1973.package-view-button{
shadyb3c61a62020-02-16 15:47:33 +02001974 margin-top: 6px;
1975}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001976.package-view-button .btn{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02001977 padding: 6px 21px;
1978 border-radius: 18px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001979}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001980.package-view-button .btn:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02001981 opacity: .9;
1982}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001983.package-view-button .btn-primary{
shadyb3c61a62020-02-16 15:47:33 +02001984 background-color: #1B3E6F !important;
1985 border-color: #1B3E6F !important;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001986
shadyb3c61a62020-02-16 15:47:33 +02001987 /* margin-bottom: 10px; */
1988}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02001989.package-view-button .btn-outline-secondary{
shadyb3c61a62020-02-16 15:47:33 +02001990 background-color: #fff !important;
1991 border-color: #D0DFF1 !important;
1992 color: #1B3E6F !important;
shadyb3c61a62020-02-16 15:47:33 +02001993}
1994.package-view-title {
1995 font-size: 11px;
1996 color: #1B3E6F;
1997 font-weight: bold;
1998 margin-bottom: 5px;
1999 margin-top: 20px;
2000}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002001.package-view-title+p{
shadyb3c61a62020-02-16 15:47:33 +02002002 font-size: 11px;
2003 margin-bottom: 0px;
2004}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002005.package-view-title+ul{
shadyb3c61a62020-02-16 15:47:33 +02002006 margin-bottom: 0px;
2007}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002008.package-view-button .btn-outline-secondary i{
shadyb3c61a62020-02-16 15:47:33 +02002009 font-size: 18px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002010 margin-right: 4px;
shadyb3c61a62020-02-16 15:47:33 +02002011}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002012.card.creat-card{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002013 margin: 0;
2014 border-radius: 2px;
2015 border: 0;
2016 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1);
2017}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002018.card.creat-card .single-line{
shadyb85e6de2020-01-22 13:47:41 +02002019 padding: 15px 25px 15px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02002020}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002021.card.creat-card .single-line-model{
shadyb3c61a62020-02-16 15:47:33 +02002022 padding: 0px;
2023}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002024.card.creat-card .editor-container{
shadyb3c61a62020-02-16 15:47:33 +02002025 padding: 25px;
2026}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002027.single-line label{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002028 margin-bottom: 0px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002029}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002030.single-line-model label{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002031 margin-bottom: 0px;
2032 border-bottom: 1px solid #FAFAFA;
2033 padding: 15px 25px;
2034}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002035.single-line-model .label-name{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002036 width: 325px;
2037}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002038.single-line-model .label-input{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002039 width: calc(100% - 325px);
2040}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002041.single-line-model input{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002042 border-bottom: 1px solid #FAFAFA !important;
2043 padding: 15px 25px 15px 0px;
2044}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002045.customKeyTitle span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002046 color: #C3CDDB !important;
2047 font-size: 11px;
2048}
2049.single-line-model input:focus,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002050.single-line-custom-key input:focus{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002051 border-bottom-color: #1B3E6F !important;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002052 -webkit-box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .6);
2053 -moz-box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .6);
2054 box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .6);
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002055}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002056.model-note-container{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002057 width: calc(100% - 325px);
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002058 padding: 0px 25px 0px 0px ;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002059 margin-left: 325px;
2060}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002061.error-message{
2062 font-size:11px ;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002063 color: #FF6469;
2064}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002065.tages-container{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002066 margin-bottom: 25px;
2067}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002068.tag-notes{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002069 font-size: 11px;
2070 color: #C3CDDB;
2071 padding: 5px 25px 5px 0px;
2072 margin-bottom: 5px;
2073}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002074 .single-tage{
2075 background: #E0E8F2;
2076 font-size: 13px;
2077 color: #1B3E6F;
2078 border-radius: 50px;
2079 padding: 5px 10px;
2080 margin-right:10px;
2081 margin-bottom: 10px;
2082 }
2083 .single-tage a{
2084 color: #1B3E6F;
2085 font-size: 14px;
2086 }
2087 .label-name{
2088 width: 300px;
2089 display: inline-block;
2090 margin-bottom: 0px;
2091 font-size: 13px;
2092 font-weight: bold;
2093 }
2094 .label-name span{
2095 color:#FF6469 ;
2096 }
2097 .delete-key{
2098 color: #FF6469;
2099 font-size: 10px;
2100 background: #FFE6E7;
2101 border: 1px solid #FFC9CB;
2102 padding: 3px 10px 2px;
2103 margin-left: 10px;
2104 border-radius: 5px;
2105 }
2106 .delete-key:hover{
2107 color: #C94448;
2108 background: #FFC9CB;
2109 border: 1px solid #FF6469;
2110 text-decoration: none;
2111 }
2112 .label-input{
2113 width: calc(100% - 300px);
2114 display: inline-block;
2115 }
2116.form-check-input{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002117 margin-left: 0px !important;
2118 margin-top: 2px !important;
2119}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002120.form-check-input+span{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002121 margin-left: 20px;
2122 margin-right: 50px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002123 font-size: 13px;
shadyb3c61a62020-02-16 15:47:33 +02002124 display: flex;
shaaban Altananyba3756e2020-01-07 12:08:44 +02002125}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002126.form-check-input+span i{
shadyb3c61a62020-02-16 15:47:33 +02002127 margin-right: 5px;
2128 margin-left: 5px;
2129}
2130
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002131.label-input input{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002132 margin-bottom: 0px;
2133 outline: 0px;
2134 border: 0px;
2135 font-size: 14px;
2136 width: 100%;
2137 color: #1B3E6F;
2138 transition: all 250ms ease-out;
2139}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002140.label-input input:focus{
2141 border-bottom: solid 1px #1B3E6F;
2142 background: transparent !important;
2143 -webkit-box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .8);
2144 -moz-box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .8);
2145 box-shadow: 0 4px 6px -6px rgba(18, 115, 235, .8);
2146 text-shadow: none;
2147}
2148.label-input input:disabled{
2149 background: #fff;
2150 opacity: .5;
2151}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002152.label-input input[type=radio]{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002153 width: auto;
2154}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002155.label-input input[type=radio]+span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002156 font-size: 12px;
2157 display: block;
2158 margin-right: 100px;
2159}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002160.single-line select{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002161 margin-bottom: 0px;
2162 padding-left: 10px;
2163 padding-right: 50px;
2164 outline: 0px;
2165 border: solid 1px #EEF4F9;
2166 background: none;
2167 background: url(/assets/img/arrow.svg) 90% center #F4F9FE no-repeat;
2168 background-size: 10px;
2169 width: auto;
2170 -webkit-appearance: none;
2171 -moz-appearance: none;
2172 text-indent: 0;
2173 text-overflow: '';
2174 font-size: 13px;
2175 color: #1B3E6F;
2176}
Sarah Abouzainah95c95202020-07-05 19:45:40 +02002177.single-line select:focus{
2178 box-shadow: 0 0 0 0;
2179}
2180.single-line select option:first-child{
2181 color: #C3CDDB;
2182}
2183.single-line-model input::placeholder{
2184 font-size: 14px;
2185 color: #C3CDDB;
2186}
2187.single-line-model.error{
2188 color:#FF6469;
2189}
2190.single-line-model.error input,
2191.label-input input.ng-invalid{
2192 box-shadow: none;
2193 color:#FF6469;
2194 border-bottom: 1px solid #FF6469 !important;
2195}
2196.single-line .custom-key{
2197 background: none;
2198 border: 0px;
2199 color:#1273EB ;
2200 font-size: 15px;
2201}
2202.single-line .custom-key:focus{
2203 outline: none;
2204}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002205.creat-container{
2206 padding:70px 100px 70px 70px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02002207 position: relative;
2208}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002209.single-custom-key{
shadyb3c61a62020-02-16 15:47:33 +02002210 width: 100%;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002211 margin-bottom: 21px;
shadyb3c61a62020-02-16 15:47:33 +02002212}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002213.single-line-custom-key{
shadyb3c61a62020-02-16 15:47:33 +02002214 width: 45%;
2215 display: inline-block;
2216}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002217.single-line-custom-key-delete{
shadyb3c61a62020-02-16 15:47:33 +02002218 width: 10%;
2219 display: inline-block;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002220 border-bottom: 1px solid #FAFAFA;
2221 padding: 13px 12px 14px;
shadyb3c61a62020-02-16 15:47:33 +02002222}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002223.single-line-custom-key label{
shadyb3c61a62020-02-16 15:47:33 +02002224 width: 150px;
2225 margin-bottom: 0px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002226 border-bottom: 1px solid #FAFAFA;
shadyb3c61a62020-02-16 15:47:33 +02002227 padding: 15px 25px;
2228}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002229.single-line-custom-key input{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002230 border-bottom: 1px solid #FAFAFA !important;
2231 padding: 15px 25px 15px 0;
shadyb3c61a62020-02-16 15:47:33 +02002232}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002233.single-line-custom-key input::placeholder{
shadyb3c61a62020-02-16 15:47:33 +02002234 font-size: 14px;
2235 color: #C3CDDB;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002236}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002237.single-line-custom-key .label-input{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002238 width: calc(100% - 150px);
2239}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002240.single-line-custom-key .label-name span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002241 color: #C3CDDB !important;
2242 margin-right: 20px;
2243}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002244.custom-key-delete{
shadyb3c61a62020-02-16 15:47:33 +02002245 background: transparent;
2246 color: #FF6469;
2247 outline: 0px;
2248 border: 0px;
2249}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002250.custom-key-delete:focus{
shadyb3c61a62020-02-16 15:47:33 +02002251 outline: 0px;
2252 border: 0px;
2253}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002254hr{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002255 margin-top: 0rem !important;
2256 margin-bottom: 0rem !important;
2257 border-top: 1px solid #efefef !important;
2258}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002259.creat-action-container{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002260 position: fixed;
2261 right: 0px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002262 top: 104px;
shaaban Altananyba3756e2020-01-07 12:08:44 +02002263 width: 130px;
2264 text-align: center;
2265}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002266.action-button{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002267 margin-bottom: 12px;
2268 padding: 3px 30px;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002269 color: #BABBC3 !important;
shaaban Altananyba3756e2020-01-07 12:08:44 +02002270 font-size: 10px;
2271 font-weight: bold;
2272 display: inline-block;
shaaban Altananyba3756e2020-01-07 12:08:44 +02002273}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002274.action-button:hover{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002275 text-decoration: none;
Sarah Abouzainah95c95202020-07-05 19:45:40 +02002276 cursor: pointer;
shaaban Altananyba3756e2020-01-07 12:08:44 +02002277}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002278.action-button i{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002279 background: #fff;
2280 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1);
2281 width: 40px;
2282 height: 40px;
2283 text-align: center;
2284 line-height: 40px;
2285 border-radius: 40px;
2286 color: #1B3E6F;
2287 font-size: 17px;
2288 display: inline-block;
2289}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002290.action-button i:hover{
2291 background: #dee2e6;
2292}
2293.action-button i.icon-save-sm{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002294 background: #1273EB;
2295 color: #fff;
2296 font-size: 11px;
2297}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002298.action-button i.icon-discard-sm{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002299 font-size: 11px;
2300 color: #C3CDDB;
2301}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002302.action-button.save{
2303 color: #1273EB !important;
Sarah Abouzainah98600832020-04-22 22:55:39 +02002304}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002305.action-button.save:hover{
2306 opacity: .9;
2307}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002308.action-button.delete i{
shadyb3c61a62020-02-16 15:47:33 +02002309 color: #BABBC3;
2310}
Sarah Abouzainah95c95202020-07-05 19:45:40 +02002311.action-button.delete:hover,
2312.action-button.delete:hover .icon-delete-sm{
2313 color: #FF6469 !important;
shadyb3c61a62020-02-16 15:47:33 +02002314}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002315.mode-icon{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002316 font-size: 20px;
2317}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002318
2319/*MODAL*/
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002320.modal-dialog{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002321 margin-top: 60px !important;
2322}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002323.modal{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002324 z-index: 11000000 !important;
2325 background: rgba(27, 62, 111, 0.10) !important;
2326}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002327.modal-content{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002328 border-radius: 2px !important;
2329 border: 0 !important;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002330 box-shadow: 0 2px 6px rgba(47, 83, 151, .10);;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002331}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002332.modal-title{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002333 font-size: 14px !important;
2334}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002335.modal-body{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002336 padding: 1.5rem 1.5rem 1rem !important;
2337}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002338.modal-body p{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002339 font-size: 14px;
2340}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002341.modal-body p span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002342 color: #FF6469;
2343}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002344.modal-header{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002345 border-bottom-color: #ECEDF2 !important;
Sarah Abouzainah95d1cdf2020-04-27 23:15:46 +02002346 padding: .7rem 1.5rem !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002347}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002348.modal-footer{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002349 padding-top: 0 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002350 border-top: 0 !important;
2351}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002352.modal-footer .btn{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002353 padding: 8px 15px;
2354 font-weight: bold;
2355 font-size: 12px;
2356 border: 0 !important;
2357}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002358.modal-footer .btn-primary{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002359 background-color: #1B3E6F !important;
2360}
2361.modal-footer .btn-secondary,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002362.modal-footer .btn-secondary:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002363 background-color: transparent;
2364 color: #1273EB;
2365 opacity: .8;
2366}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002367.modal-footer .btn-secondary:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002368 opacity: 1;
2369}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002370.modal-footer .btn-secondary:active{
Sarah Abouzainah95d1cdf2020-04-27 23:15:46 +02002371 background-color: #E7F1FC !important;
2372 color: #1B3E6F !important;
2373}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002374.action-button span{
shaaban Altananyba3756e2020-01-07 12:08:44 +02002375 width: 100%;
2376 display: inline-block;
2377 margin-top: 5px;
2378}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002379.creat-action-container hr{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002380 margin: 0 46px;
2381 padding-bottom: 18px;
2382}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002383.btn-link:hover, .btn-link:focus{
shaaban Altananyc133b832020-01-09 10:15:28 +02002384 text-decoration: none !important;
2385}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002386.btn-link::before{
shaaban Altananyc133b832020-01-09 10:15:28 +02002387 content: "\f107";
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002388 font-family:'FontAwesome';
shaaban Altananyc133b832020-01-09 10:15:28 +02002389 position: relative;
2390 margin-right: 20px;
2391}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002392.btn-link.collapsed::before{
shaaban Altananyc133b832020-01-09 10:15:28 +02002393 content: "\f105";
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002394 font-family:'FontAwesome';
shaaban Altananyc133b832020-01-09 10:15:28 +02002395 position: relative;
shadyb85e6de2020-01-22 13:47:41 +02002396 margin-right: 25px;
shaaban Altananyc133b832020-01-09 10:15:28 +02002397}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002398.btn-link i{
shaaban Altananyc133b832020-01-09 10:15:28 +02002399 margin-right: 10px;
2400}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002401.ngx-file-drop__content{
shaaban Altananyc133b832020-01-09 10:15:28 +02002402 background: #F4F9FE;
2403 padding: 20px;
2404 height: auto !important;
2405 display: inline-block !important;
2406 width: 100%;
2407}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002408.ngx-file-drop__drop-zone{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002409 border: 1px dashed #D7E7F9 !important;
shaaban Altananyc133b832020-01-09 10:15:28 +02002410 border-radius: 0px !important;
2411 height: auto !important;
2412}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002413.folder-upload{
shaaban Altananyc133b832020-01-09 10:15:28 +02002414 width: 100%;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002415 margin: 15px auto 18px;
shaaban Altananyc133b832020-01-09 10:15:28 +02002416 display: inline-block;
2417 text-align: center;
2418}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002419.btn-group-sm>.btn, .btn-sm{
shadyb85e6de2020-01-22 13:47:41 +02002420 font-size: 12px;
2421}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002422.create-title{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002423 margin-bottom: 0;
shadyb85e6de2020-01-22 13:47:41 +02002424 font-size: 14px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002425 font-weight: bold;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002426 /* text-transform: uppercase; */
2427 line-height: 32px;
shadyb85e6de2020-01-22 13:47:41 +02002428}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002429.folder-upload-text{
shaaban Altananyc133b832020-01-09 10:15:28 +02002430 margin-top: 10px;
2431 width: 100%;
2432 display: inline-block;
2433 text-align: center;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002434 color:#242424 ;
shadyb85e6de2020-01-22 13:47:41 +02002435 font-size: 14px;
shaaban Altananyc133b832020-01-09 10:15:28 +02002436}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002437.folder-upload-text button{
shaaban Altananyc133b832020-01-09 10:15:28 +02002438 margin-left: 10px;
2439 font-size: 12px;
2440}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002441.folder-upload-type{
2442 color:#A4B2C6 ;
shaaban Altananyc133b832020-01-09 10:15:28 +02002443 font-size: 10px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002444 font-weight: bold;
shaaban Altananyc133b832020-01-09 10:15:28 +02002445 width: 100%;
2446 display: inline-block;
2447 text-align: center;
2448}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002449.upload-table{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002450 margin: 15px 0 0;
2451}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002452.upload-table tr{
2453 border: dashed 1px #D7E7F9;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002454}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002455.upload-table tr th{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002456 border-bottom: solid 1px #F4F9FE !important;
2457}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002458.upload-table .table thead th{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002459 padding: 6px 9px;
shaaban Altananyc133b832020-01-09 10:15:28 +02002460 border-top: 0px !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002461 font-weight: normal;
2462 font-size: 13px;
2463}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002464.upload-table .table thead th:first-child{
2465 width: 24px;
2466 padding-right: 0;
2467}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002468.upload-table tr:last-child th{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002469 border-bottom: 0 !important;
shaaban Altananyc133b832020-01-09 10:15:28 +02002470}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002471.upload-table .table{
shaaban Altananyc133b832020-01-09 10:15:28 +02002472 margin-bottom: 0px !important;
2473}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002474.nav-tabs .nav-link{
shaaban Altananyc133b832020-01-09 10:15:28 +02002475 position: relative;
2476}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002477.nav-tabs .nav-link.tab-done{
shadyb3c61a62020-02-16 15:47:33 +02002478 padding-left: 40px !important;
2479}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002480.nav-tabs .nav-link.tab-done::after{
shaaban Altananyc133b832020-01-09 10:15:28 +02002481 content: "\f058";
2482 position: absolute;
2483 font-family: 'FontAwesome';
shadyb3c61a62020-02-16 15:47:33 +02002484 left: 17px;
shaaban Altananyc133b832020-01-09 10:15:28 +02002485 font-size: 16px;
2486 top: 11px;
2487 color: #66BB00;
2488}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002489.authentication-container-all{
shadyb85e6de2020-01-22 13:47:41 +02002490 background: #F4F9FE;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002491 border:1px solid #D0DFF1 ;
shadyb85e6de2020-01-22 13:47:41 +02002492 flex: 1;
2493 width: 100%;
2494}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002495.authentication-header{
shadyb85e6de2020-01-22 13:47:41 +02002496 width: 100%;
2497 background: #fff;
2498 font-size: 12px;
2499 color: #C3CDDB;
2500 font-weight: bold;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002501 padding: 10px 20px ;
shadyb85e6de2020-01-22 13:47:41 +02002502}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002503.authentication-search{
shadyb85e6de2020-01-22 13:47:41 +02002504 width: 100%;
2505 background: #fff;
2506 font-size: 12px;
2507 color: #C3CDDB;
2508 font-weight: bold;
2509 position: relative;
2510}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002511.authentication-search::after{
shadyb85e6de2020-01-22 13:47:41 +02002512 content: "\f002";
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002513 font-family: 'FontAwesome';
2514 position: absolute;
2515 left: 20px;
2516 top: 11px;
shadyb85e6de2020-01-22 13:47:41 +02002517}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002518.authentication-search input{
shadyb85e6de2020-01-22 13:47:41 +02002519 width: 100%;
2520 background: #fff;
2521 font-size: 12px;
2522 color: #C3CDDB;
2523 font-weight: bold;
2524 padding: 10px 20px 10px 35px;
2525 border: 0px;
2526 border-top: 1px solid #D7E7F9;
2527}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002528.authentication-search input::placeholder{
shadyb85e6de2020-01-22 13:47:41 +02002529 color: #D0D7E4;
2530 font-size: 10px;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002531 font-weight:100;
shadyb85e6de2020-01-22 13:47:41 +02002532}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002533.authentication-accordion{
2534 width: 100%;
shadyb85e6de2020-01-22 13:47:41 +02002535 padding: 20px;
2536 max-height: 300px;
2537 overflow: auto;
2538}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002539.authentication-accordion .card{
shadyb85e6de2020-01-22 13:47:41 +02002540 border-radius: 0px !important;
2541 margin-bottom: 10px !important;
2542}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002543.authentication-accordion .card-header{
shadyb85e6de2020-01-22 13:47:41 +02002544 padding: 0px !important;
2545 background: #fff !important;
2546 border-radius: 0px !important;
2547 font-size: 18px;
2548 font-weight: bold;
2549}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002550.authentication-accordion .card-header .btn-link{
shadyb85e6de2020-01-22 13:47:41 +02002551 color: #1B3E6F;
2552 width: 100%;
2553 text-align: left;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002554 padding: 9px 0px !important;
2555 font-size: 13px;
2556 font-weight: bold;
shadyb85e6de2020-01-22 13:47:41 +02002557}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002558.authentication-accordion .custom-control{
shadyb85e6de2020-01-22 13:47:41 +02002559 display: inline-block;
2560}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002561.authentication-accordion .btn-link::before{
shadyb85e6de2020-01-22 13:47:41 +02002562 margin-right: 10px;
2563}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002564.authentication-accordion .btn-link.collapsed::before{
shadyb85e6de2020-01-22 13:47:41 +02002565 margin-right: 14px;
2566}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002567.template-mapping-accordion{
shadyb85e6de2020-01-22 13:47:41 +02002568 width: 100%;
2569}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02002570.card-header .btn.regularTitle{
2571 padding-left: 0 !important;
2572 padding-right: 0 !important;
2573 color: #1B3E6F;
2574 font-size: 13px;
2575 font-weight: bold;
2576}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002577.template-mapping-accordion .accordian-title{
2578 color: #C3CDDB !important;
2579 font-size: 12px !important;
2580 font-weight: normal !important;
2581}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002582.card{
shadyb85e6de2020-01-22 13:47:41 +02002583 border-radius: 2px;
2584 border: 0;
2585 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1);
2586 border: 0px !important;
2587}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002588.card-header{
shadyb3c61a62020-02-16 15:47:33 +02002589 padding: 0px 25px !important;
shadyb85e6de2020-01-22 13:47:41 +02002590 background: #F4F9FE !important;
2591 border-radius: 0px !important;
2592 border-bottom: 1px solid #ECEDF2 !important;
2593}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002594.template-mapping-accordion .card-body{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002595 padding: 20px 26px 0 !important;
shadyb85e6de2020-01-22 13:47:41 +02002596 font-size: 14px;
2597}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002598.card-header .btn-link{
shadyb85e6de2020-01-22 13:47:41 +02002599 color: #1B3E6F;
2600 width: 100%;
2601 text-align: left;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002602 padding: 9px 0px !important;
2603 font-size: 13px;
2604 font-weight: bold;
shadyb85e6de2020-01-22 13:47:41 +02002605}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002606.accordion .card{
shadyb85e6de2020-01-22 13:47:41 +02002607 margin-bottom: 0px !important;
2608 border-top: 1px solid #ECEDF2 !important;
2609}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002610.accordion > .card > .card-header{
2611 padding: 0 !important;
2612}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002613.template-mapping-accordion .card{
shadyb85e6de2020-01-22 13:47:41 +02002614 margin-bottom: 25px !important;
2615}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002616.custom-control{
shadyb85e6de2020-01-22 13:47:41 +02002617 display: inline-block;
2618}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002619.btn-link::before{
shadyb85e6de2020-01-22 13:47:41 +02002620 margin-right: 10px;
2621}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002622.btn-link.collapsed::before{
shadyb85e6de2020-01-22 13:47:41 +02002623 margin-right: 14px;
2624}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002625.drap-drop-action{
shadyb85e6de2020-01-22 13:47:41 +02002626 padding: 12px 20px 9px 20px;
2627 color: #C3CDDB;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002628 cursor:move;
shadyb85e6de2020-01-22 13:47:41 +02002629 font-size: 15px;
2630}
2631.modal-title {
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002632 font-size: 13px;
2633 font-weight: bold;
shadyb85e6de2020-01-22 13:47:41 +02002634}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002635.select-type{
shadyb85e6de2020-01-22 13:47:41 +02002636 background: #F4F9FE;
2637 border: 1px solid #D7E7F9;
2638 padding: 10px;
2639 text-align: center;
2640 color: #1273EB;
2641 font-size: 15px;
2642 width: 100%;
2643 position: relative;
2644}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002645.select-type:hover, .select-type.active{
shadyb85e6de2020-01-22 13:47:41 +02002646 background: #1B3E6F;
2647 border: 1px solid #D7E7F9;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002648 color: #fff;
shadyb85e6de2020-01-22 13:47:41 +02002649 text-decoration: none;
2650}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002651.select-type-icon{
shadyb85e6de2020-01-22 13:47:41 +02002652 font-size: 35px;
2653}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002654.select-type::before{
shadyb85e6de2020-01-22 13:47:41 +02002655 content: '';
2656 border: 1px solid #1273EB;
2657 width: 18px;
2658 height: 18px;
2659 border-radius: 18px;
2660 display: inline-block;
2661 left: 10px;
2662 position: absolute;
2663}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002664.select-type:hover::before, .select-type.active::before{
shadyb85e6de2020-01-22 13:47:41 +02002665 border: 1px solid #fff;
2666}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002667.select-type.active::after{
shadyb85e6de2020-01-22 13:47:41 +02002668 content: '';
2669 background: #fff;
2670 width: 12px;
2671 height: 12px;
2672 border-radius: 18px;
2673 display: inline-block;
2674 left: 13px;
2675 position: absolute;
2676 top: 13px;
2677}
Sarah Abouzainah95c95202020-07-05 19:45:40 +02002678.ace_scroller{
2679 overflow: auto !important;
2680}
2681.ace_print-margin{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002682 left: 100% !important;
shadyb3c61a62020-02-16 15:47:33 +02002683 background: #eee !important;
2684}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002685.ace_content{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002686 width: 100%;
2687}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002688.ace_editor{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002689 height: 55vh !important;
shadyb3c61a62020-02-16 15:47:33 +02002690 line-height: 25px;
2691 border: 1px solid #ECEDF2;
2692 background-color: #fff;
2693 color: #1B3E6F;
2694}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002695.ace-tomorrow-night-bright .ace_gutter,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002696.ace-eclipse .ace_gutter{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002697 background: #E0E8F2 !important;
2698 border-right: 0px !important;
2699 color: #1B3E6F !important;
shadyb3c61a62020-02-16 15:47:33 +02002700}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002701.ace-tomorrow-night-bright .ace_gutter-active-line,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002702.ace-eclipse .ace_gutter-active-line{
shadyb3c61a62020-02-16 15:47:33 +02002703 background-color: #265699;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002704 color: #fff;
shadyb3c61a62020-02-16 15:47:33 +02002705}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002706.ace-tomorrow-night-bright .ace_cursor{
shadyb3c61a62020-02-16 15:47:33 +02002707 color: #265699;
2708}
2709.ace-tomorrow-night-bright .ace_marker-layer .ace_active-line {
2710 background: #eee;
2711}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002712.breadcrumb-header{
shadyb3c61a62020-02-16 15:47:33 +02002713 padding: 0px;
2714 margin: 0px;
2715}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002716.breadcrumb-header li{
shadyb3c61a62020-02-16 15:47:33 +02002717 list-style: none;
2718 display: inline-block;
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02002719 font-size: 14px;
shadyb3c61a62020-02-16 15:47:33 +02002720}
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002721
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002722.breadcrumb-header li:last-child::after{
shadyb3c61a62020-02-16 15:47:33 +02002723 display: none;
2724}
2725
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002726.breadcrumb-header li:last-child{
2727/* background: #F4F9FE; */
2728border-radius: 50px;
2729color: #C3CDDB;
2730padding: 0 10px 0 0;
shadyb3c61a62020-02-16 15:47:33 +02002731}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002732.breadcrumb-header li:first-child,
2733.breadcrumb-header li:first-child a{
shadyb3c61a62020-02-16 15:47:33 +02002734 font-size: 16px;
2735 font-weight: bold;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002736 padding: 0px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002737 color: #1B3E6F !important;
shadyb3c61a62020-02-16 15:47:33 +02002738 border-radius: 0px;
2739 background: transparent;
shadyb3c61a62020-02-16 15:47:33 +02002740}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002741.create-template-import{
shadyb3c61a62020-02-16 15:47:33 +02002742 width: 100%;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002743 margin: 30px 0px 10px ;
shadyb3c61a62020-02-16 15:47:33 +02002744}
2745
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002746.create-template-import a:hover{
shadyb3c61a62020-02-16 15:47:33 +02002747 text-decoration: none;
2748}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002749.mapping-source-load{
shadyb3c61a62020-02-16 15:47:33 +02002750 color: #1B3E6F;
2751 font-size: 10px;
2752 font-weight: bold;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002753 display: inline-block;
2754 vertical-align: top;
shadyb3c61a62020-02-16 15:47:33 +02002755 margin-top: 20px;
2756 margin-bottom: 10px;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002757 margin:15px 30px 20px;
shadyb3c61a62020-02-16 15:47:33 +02002758}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002759.mapping-source-load:hover{
shadyb3c61a62020-02-16 15:47:33 +02002760 text-decoration: none;
2761}
2762.mapping-source-load i {
2763 color: #1B3E6F;
2764 font-size: 36px;
2765 padding: 10px;
shadyb3c61a62020-02-16 15:47:33 +02002766 border-radius: 100px;
2767 width: 70px;
2768 height: 70px;
2769 display: inline-block;
2770 line-height: 52px;
2771 margin-bottom: 20px;
2772}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002773.mapping-source-load:hover i{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002774 background: #F4F9FE;
2775}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002776.mapping-source-load:hover span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002777 color: #1273EB;
2778}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002779.source-load-note{
2780 color:#C3CDDB ;
shadyb3c61a62020-02-16 15:47:33 +02002781 font-size: 8px;
2782}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002783.mapping-source-load.hover-disable{
2784 opacity: .5;
2785}
2786.mapping-source-load.hover-disable:hover span{
2787 color: #1B3E6F;
2788}
2789.mapping-source-load.hover-disable:hover i{
2790 background: transparent;
2791}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002792.template-mapping-list{
shadyb3c61a62020-02-16 15:47:33 +02002793 background: #F4F9FE;
2794 border: 1px solid #E9F3FF;
2795 padding: 5px 10px;
2796 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1);
2797 width: 100%;
2798 display: inline-block;
2799 margin-bottom: 20px;
2800 color: #1B3E6F;
2801}
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002802.template-mapping-list:hover,
2803.template-mapping-list.active {
2804 /* background: #1B3E6F; */
shadyb3c61a62020-02-16 15:47:33 +02002805 text-decoration: none;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002806 /* color: #fff !important; */
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002807 border-radius: 4px;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002808 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.3);
shadyb3c61a62020-02-16 15:47:33 +02002809}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02002810.template-mapping-list p,
2811.template-mapping-list:hover p{
2812 margin-bottom: 0;
2813 width: 60%;
2814 display: inline-block !important;
2815}
2816.template-mapping-list:hover p{
2817 width: 90%;
2818}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002819.template-mapping-list:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002820 opacity: .9;
2821}
2822
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002823.template-mapping-list span{
shadyb3c61a62020-02-16 15:47:33 +02002824 background: #fff;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002825 border: solid 1px #E9F3FF;
shadyb3c61a62020-02-16 15:47:33 +02002826 color: #2A81ED;
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02002827 font-size: 9px;
shadyb3c61a62020-02-16 15:47:33 +02002828 float: right;
2829 border-radius: 50px;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002830 padding: 3px 10px;
shadyb3c61a62020-02-16 15:47:33 +02002831 margin-left: 5px;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002832}
2833.template-mapping-list:hover span{
2834 display: none;
2835}
2836.deleteTemplate{
2837 display: none;
2838 position: absolute;
2839 right: 21px;
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02002840 top: 2px;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002841 border: 0;
2842 background: transparent;
2843}
2844.deleteTemplate i{
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02002845 color: #FF6469 !important;
2846 font-size: 16px;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002847}
2848.template-mapping-list:hover .deleteTemplate{
2849 display: inline;
shadyb3c61a62020-02-16 15:47:33 +02002850}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002851.max-height-list{
shadyb3c61a62020-02-16 15:47:33 +02002852 max-height: 232px;
2853 padding-bottom: 5px !important;
2854 overflow: auto;
2855}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002856.create-template-mapping-button{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002857 background: #C3CDDB;
2858 border-radius: 50px;
2859 font-size: 12px;
2860 font-weight: bold;
2861 padding: 10px 20px;
2862 margin-bottom: 20px;
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002863 display: inline-block;
2864 cursor: pointer;
shadyb3c61a62020-02-16 15:47:33 +02002865}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002866.create-template-mapping-button i{
2867margin-right: 5px;
2868 }
2869.view-package-container{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002870 padding: 20px 56px;
shadyb3c61a62020-02-16 15:47:33 +02002871}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002872.package-type-icon{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002873 color: #1B3E6F;
2874 background: #C1CDDD;
2875 width: 48px;
2876 height: 48px;
2877 border-radius: 48px;
shadyb3c61a62020-02-16 15:47:33 +02002878 display: inline-block;
2879 text-align: center;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002880 line-height: 48px;
shadyb3c61a62020-02-16 15:47:33 +02002881 font-size: 20px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002882 /* margin-right: 20px; */
shadyb3c61a62020-02-16 15:47:33 +02002883}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002884.defintionsNote{
Sarah Abouzainah3ce18432020-04-13 16:08:31 +02002885 padding-left: 0;
2886}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002887.defintionsNote li{
Sarah Abouzainah3ce18432020-04-13 16:08:31 +02002888 line-height: 24px;
2889 list-style: none;
2890 font-size: 13px;
2891}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002892.package-name-container{
shadyb3c61a62020-02-16 15:47:33 +02002893 width: calc(100% - 60px);
2894 display: inline-block;
2895}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002896.package-name{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002897 font-size: 16px;
2898 color: #1B3E6F;
2899 font-weight: bold;
2900 margin-top: 3px;
shadyb3c61a62020-02-16 15:47:33 +02002901}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002902.package-name span{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002903 font-size: 11px;
shadyb3c61a62020-02-16 15:47:33 +02002904}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002905.package-name i{
shadyb3c61a62020-02-16 15:47:33 +02002906 font-size: 12px;
2907 color: #C3CDDB;
2908 margin-left: 5px;
2909}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002910.deply-status-icon{
Sarah Abouzainah95c95202020-07-05 19:45:40 +02002911 margin-right: 4px;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002912 width: 1.6%;
2913 vertical-align: baseline;
shadyb3c61a62020-02-16 15:47:33 +02002914}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002915.package-description{
shadyb3c61a62020-02-16 15:47:33 +02002916 color: #D0D7E4;
2917 font-size: 12px;
2918 font-weight: normal;
2919}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002920.package-auth-info{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002921 font-size: 11px;
2922}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002923.package-auth-info p{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002924 margin-bottom: 5px;
2925}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002926.package-auth-info div{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002927 padding-left: 25px;
2928 border-right: solid 1px #F4F9FE;
2929}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002930.package-auth-info div:first-child{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002931 padding-left: 15px;
2932}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002933.package-auth-info .col-4:first-child{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002934 padding-left: 15px;
2935}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002936.package-auth-info div:last-child{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002937 border-right: 0;
2938}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002939.package-auth-info .package-contributers{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002940 margin-bottom: 0 !important;
2941}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002942.package-auth-info .package-contributers button img{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002943 width: 20px;
2944 height: 20px;
2945}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002946.template-mapping-action{
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002947 margin-bottom: 20px;
shadyb3c61a62020-02-16 15:47:33 +02002948}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002949.template-mapping-action button{
shadyb3c61a62020-02-16 15:47:33 +02002950 border-radius: 50px;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002951 padding: 4px 20px;
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02002952 font-size: 13px;
shadyb3c61a62020-02-16 15:47:33 +02002953}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002954.template-mapping-action .btn-primary{
2955 background:#5DBDBA !important ;
2956 border-color:#5DBDBA !important ;
2957 color: #fff !important ;
shadyb3c61a62020-02-16 15:47:33 +02002958}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002959.template-mapping-action .btn-outline-secondary{
2960 background:#fff !important ;
2961 border-color:#ECEDF2 !important ;
2962 color: #C3CDDB !important ;
shadyb3c61a62020-02-16 15:47:33 +02002963}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002964.table-container{
shadyb3c61a62020-02-16 15:47:33 +02002965 width: 100%;
2966}
2967/*
2968 server-side-angular-way.component.css
2969*/
2970.no-data-available {
2971 text-align: center;
2972}
2973
2974/*
2975 src/styles.css (i.e. your global style)
2976*/
2977.dataTables_empty {
2978 display: none;
2979}
Sarah Abouzainah98600832020-04-22 22:55:39 +02002980.dataTables_length,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002981.dataTables_filter{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002982 margin-bottom: 6px;
Sarah Abouzainah98600832020-04-22 22:55:39 +02002983 color: #1B3E6F !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002984 font-size: 13px;
Sarah Abouzainahefcfc482020-05-18 15:38:56 +02002985 /* font-weight: bold; */
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002986}
2987
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002988.dataTables_filter input{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002989 color: #1B3E6F;
2990 background: url(../src/assets/img/icon-search.svg) 9px center no-repeat;
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02002991 padding: 4px 9px 4px 24px !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002992 border: solid 1px #ECEDF2;
2993 border-radius: 4px;
2994}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02002995.dataTables_filter input:focus{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02002996 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1);
2997}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02002998.mapping-table th,
2999.mapping-table td{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003000 width: auto !important;
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003001 padding: 7px 20px 7px 0 !important;
3002 border-bottom: solid 1px #ECEDF2 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003003 font-size: 13px;
3004}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003005.mapping-table th:first-child,
3006.mapping-table td:first-child{
3007 padding-left: 20px !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003008}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003009.mapping-table thead th{
3010 border-bottom-color: #ECEDF2 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003011}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003012.mapping-table tbody tr:hover{
3013 background-color: #F4F9FE !important;
3014}
3015.mapping-table th{
3016 padding-top: 10px !important;
3017 padding-bottom: 10px !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003018 background: #F4F9FE;
3019}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003020.mapping-table td{
3021 border-top: 0 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003022}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003023table.dataTable.no-footer{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003024 margin-bottom: 9px;
3025 border-bottom: solid 1px #ECEDF2 !important;
3026}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003027.dataTables_info{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003028 padding-top: 12px;
Sarah Abouzainah98600832020-04-22 22:55:39 +02003029 color: #1B3E6F !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003030 font-size: 13px;
3031 font-weight: bold;
3032}
Sarah Abouzainah98600832020-04-22 22:55:39 +02003033.dataTables_wrapper .dataTables_paginate,
3034.dataTables_wrapper .dataTables_paginate a.paginate_button,
3035.dataTables_wrapper .dataTables_paginate a.paginate_button.current,
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003036.dataTables_wrapper .dataTables_paginate a.paginate_button.disabled{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003037 margin-bottom: 3px;
3038 color: #1B3E6F !important;
3039 font-size: 13px;
3040 font-weight: bold;
Sarah Abouzainah98600832020-04-22 22:55:39 +02003041 border: 0 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003042}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003043.dataTables_wrapper .dataTables_paginate a.paginate_button:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003044 border: 0;
Sarah Abouzainah98600832020-04-22 22:55:39 +02003045 color: #1B3E6F !important;
3046 background: none !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003047}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003048.dataTables_wrapper .dataTables_paginate a.paginate_button{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003049 padding: 0.4em .9em !important;
3050}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003051.dataTables_wrapper .dataTables_paginate a.paginate_button.current{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003052 color: #1B3E6F !important;
3053 background: #F4F9FE !important;
Sarah Abouzainah98600832020-04-22 22:55:39 +02003054 border: solid 1px #EEF4F9 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003055 border-radius: 100% !important;
3056 box-shadow: 0 2px 6px 0 rgba(47, 83, 151, 0.1);
3057 outline: 0;
3058}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003059.dataTables_wrapper .dataTables_paginate a.paginate_button.disabled{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003060 opacity: .6;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003061}
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003062.dataTables_wrapper .dataTables_paginate a.paginate_button.disabled:hover{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003063 cursor: default;
Sarah Abouzainah98600832020-04-22 22:55:39 +02003064 background: none !important;
3065 border: 0 !important;
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003066}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003067.mapping-table .form-control,
3068.mapping-table .custom-select{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003069 padding: 10px 6px;
3070 border-color: #EEF4F9;
3071 font-size: 14px;
3072 line-height: 12px;
3073 color: #1B3E6F;
3074}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003075.mapping-table .form-control{
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003076 box-shadow: 0 2px 4px rgba(47,83,151,0.1);
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003077}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003078.mapping-table tbody tr:hover .form-control:focus,
3079.mapping-table tbody tr:hover .custom-select{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003080 background-color: #fff !important;
3081}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003082.mapping-table .custom-select{
Sarah Abouzainahc8e345b2020-04-10 14:54:02 +02003083 background-color: #F4F9FE;
3084 color: #1B3E6F;
3085}
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003086.mapping-table .form-control:disabled{
Sarah Abouzainah98600832020-04-22 22:55:39 +02003087 padding-left: 0;
3088 box-shadow: none;
3089 border: 0;
Sarah Abouzainahd2ca2612020-06-22 01:42:15 +02003090 background: transparent !important;
Sarah Abouzainah98600832020-04-22 22:55:39 +02003091 color: #1B3E6F;
3092}
AhmedEldeeb50bf566c12020-05-07 16:10:33 +02003093
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003094/* Windows View as 150% */
3095@media (resolution: 150dpi) {
3096 /* @media (-webkit-device-pixel-ratio: 1.5) { */
3097 .body-container > .container{
3098 max-width: 960px !important;
3099 }
3100}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02003101/* Extra small devices (portrait phones, less than 576px) */
3102@media (max-width: 575.98px) {
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003103 .page-title{
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02003104 padding: 18px;
3105 }
3106}
3107
3108/* Small devices (landscape phones, 576px and up) */
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003109@media (min-width: 576px) and (max-width: 767.98px) {
3110
3111}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02003112
3113/* Medium devices (tablets, 768px and up) */
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003114@media (min-width: 768px) and (max-width: 991.98px) {
3115
3116}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02003117
3118/* Large devices (desktops, 992px and up) */
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003119@media (min-width: 992px) and (max-width: 1199.98px) {
3120
3121}
Ahmed Abbas6ee4d312019-11-20 11:32:53 +02003122
3123/* Extra large devices (large desktops, 1200px and up) */
Sarah Abouzainah1eedc492020-05-05 22:19:12 +02003124@media (min-width: 1200px) {
3125
3126}
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148