adminlte.css 471.9 KB
Newer Older
1
@charset "UTF-8";
A
Abdullah Almsaeed 已提交
2
/*!
R
REJack 已提交
3
 *   AdminLTE v3.0.0-beta.2
R
REJack 已提交
4
 *   Author: Colorlib
A
Abdullah Almsaeed 已提交
5
 *	 Website: AdminLTE.io <http://adminlte.io>
A
Abdullah Almsaeed 已提交
6
 *   License: Open source - MIT <http://opensource.org/licenses/MIT>
A
Abdullah Almsaeed 已提交
7
 */
A
Abdullah Almsaeed 已提交
8
/*!
9 10 11
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
A
Abdullah Almsaeed 已提交
12 13
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
A
Abdullah Almsaeed 已提交
14 15 16 17 18 19 20 21 22 23 24
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
A
Abdullah Almsaeed 已提交
25 26
  --white: #ffffff;
  --gray: #6c757d;
A
Abdullah Almsaeed 已提交
27 28
  --gray-dark: #343a40;
  --primary: #007bff;
A
Abdullah Almsaeed 已提交
29
  --secondary: #6c757d;
A
Abdullah Almsaeed 已提交
30 31 32 33 34 35 36 37 38 39 40
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
A
Abdullah Almsaeed 已提交
41 42 43
  --font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
A
Abdullah Almsaeed 已提交
44 45 46 47

*,
*::before,
*::after {
A
Abdullah Almsaeed 已提交
48 49
  box-sizing: border-box;
}
A
Abdullah Almsaeed 已提交
50 51

html {
A
Abdullah Almsaeed 已提交
52 53 54
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
55
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
A
Abdullah Almsaeed 已提交
56
}
A
Abdullah Almsaeed 已提交
57

58
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
A
Abdullah Almsaeed 已提交
59 60
  display: block;
}
A
Abdullah Almsaeed 已提交
61 62

body {
A
Abdullah Almsaeed 已提交
63
  margin: 0;
A
Abdullah Almsaeed 已提交
64
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
A
Abdullah Almsaeed 已提交
65
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
66
  font-weight: 400;
A
Abdullah Almsaeed 已提交
67
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
68 69
  color: #212529;
  text-align: left;
A
Abdullah Almsaeed 已提交
70 71
  background-color: #ffffff;
}
A
Abdullah Almsaeed 已提交
72 73

[tabindex="-1"]:focus {
A
Abdullah Almsaeed 已提交
74 75
  outline: 0 !important;
}
A
Abdullah Almsaeed 已提交
76 77 78 79

hr {
  box-sizing: content-box;
  height: 0;
A
Abdullah Almsaeed 已提交
80 81
  overflow: visible;
}
A
Abdullah Almsaeed 已提交
82 83 84

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
A
Abdullah Almsaeed 已提交
85 86
  margin-bottom: 0.5rem;
}
A
Abdullah Almsaeed 已提交
87 88 89

p {
  margin-top: 0;
A
Abdullah Almsaeed 已提交
90 91
  margin-bottom: 1rem;
}
A
Abdullah Almsaeed 已提交
92 93 94

abbr[title],
abbr[data-original-title] {
A
Abdullah Almsaeed 已提交
95
  text-decoration: underline;
R
REJack 已提交
96
  -webkit-text-decoration: underline dotted;
A
Abdullah Almsaeed 已提交
97
  text-decoration: underline dotted;
A
Abdullah Almsaeed 已提交
98
  cursor: help;
A
Abdullah Almsaeed 已提交
99
  border-bottom: 0;
100
  -webkit-text-decoration-skip-ink: none;
101
  text-decoration-skip-ink: none;
A
Abdullah Almsaeed 已提交
102
}
A
Abdullah Almsaeed 已提交
103 104 105 106

address {
  margin-bottom: 1rem;
  font-style: normal;
A
Abdullah Almsaeed 已提交
107 108
  line-height: inherit;
}
A
Abdullah Almsaeed 已提交
109 110 111 112 113

ol,
ul,
dl {
  margin-top: 0;
A
Abdullah Almsaeed 已提交
114 115
  margin-bottom: 1rem;
}
A
Abdullah Almsaeed 已提交
116 117 118 119 120

ol ol,
ul ul,
ol ul,
ul ol {
A
Abdullah Almsaeed 已提交
121 122
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
123 124

dt {
A
Abdullah Almsaeed 已提交
125 126
  font-weight: 700;
}
A
Abdullah Almsaeed 已提交
127 128 129

dd {
  margin-bottom: .5rem;
A
Abdullah Almsaeed 已提交
130 131
  margin-left: 0;
}
A
Abdullah Almsaeed 已提交
132 133

blockquote {
A
Abdullah Almsaeed 已提交
134 135
  margin: 0 0 1rem;
}
A
Abdullah Almsaeed 已提交
136

A
Abdullah Almsaeed 已提交
137 138
b,
strong {
A
Abdullah Almsaeed 已提交
139 140
  font-weight: bolder;
}
A
Abdullah Almsaeed 已提交
141

A
Abdullah Almsaeed 已提交
142
small {
A
Abdullah Almsaeed 已提交
143 144
  font-size: 80%;
}
A
Abdullah Almsaeed 已提交
145

A
Abdullah Almsaeed 已提交
146 147 148 149 150
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
A
Abdullah Almsaeed 已提交
151 152
  vertical-align: baseline;
}
A
Abdullah Almsaeed 已提交
153 154

sub {
A
Abdullah Almsaeed 已提交
155 156
  bottom: -.25em;
}
A
Abdullah Almsaeed 已提交
157 158

sup {
A
Abdullah Almsaeed 已提交
159 160
  top: -.5em;
}
A
Abdullah Almsaeed 已提交
161 162 163

a {
  color: #007bff;
A
Abdullah Almsaeed 已提交
164
  text-decoration: none;
A
Abdullah Almsaeed 已提交
165
  background-color: transparent;
A
Abdullah Almsaeed 已提交
166 167 168 169 170 171
}

a:hover {
  color: #0056b3;
  text-decoration: none;
}
A
Abdullah Almsaeed 已提交
172

A
Abdullah Almsaeed 已提交
173
a:not([href]):not([tabindex]) {
A
Abdullah Almsaeed 已提交
174
  color: inherit;
A
Abdullah Almsaeed 已提交
175 176 177 178 179 180 181 182 183 184 185
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}
A
Abdullah Almsaeed 已提交
186

A
Abdullah Almsaeed 已提交
187 188 189 190
pre,
code,
kbd,
samp {
191
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
A
Abdullah Almsaeed 已提交
192 193
  font-size: 1em;
}
A
Abdullah Almsaeed 已提交
194 195 196 197 198

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
A
Abdullah Almsaeed 已提交
199
}
A
Abdullah Almsaeed 已提交
200 201

figure {
A
Abdullah Almsaeed 已提交
202 203
  margin: 0 0 1rem;
}
A
Abdullah Almsaeed 已提交
204 205 206

img {
  vertical-align: middle;
A
Abdullah Almsaeed 已提交
207 208
  border-style: none;
}
A
Abdullah Almsaeed 已提交
209

210
svg {
A
Abdullah Almsaeed 已提交
211
  overflow: hidden;
212
  vertical-align: middle;
A
Abdullah Almsaeed 已提交
213
}
A
Abdullah Almsaeed 已提交
214 215

table {
A
Abdullah Almsaeed 已提交
216 217
  border-collapse: collapse;
}
A
Abdullah Almsaeed 已提交
218 219 220 221

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
A
Abdullah Almsaeed 已提交
222
  color: #6c757d;
A
Abdullah Almsaeed 已提交
223
  text-align: left;
A
Abdullah Almsaeed 已提交
224 225
  caption-side: bottom;
}
A
Abdullah Almsaeed 已提交
226 227

th {
A
Abdullah Almsaeed 已提交
228 229
  text-align: inherit;
}
A
Abdullah Almsaeed 已提交
230 231 232

label {
  display: inline-block;
A
Abdullah Almsaeed 已提交
233
  margin-bottom: 0.5rem;
A
Abdullah Almsaeed 已提交
234
}
A
Abdullah Almsaeed 已提交
235 236

button {
A
Abdullah Almsaeed 已提交
237 238
  border-radius: 0;
}
A
Abdullah Almsaeed 已提交
239 240 241

button:focus {
  outline: 1px dotted;
A
Abdullah Almsaeed 已提交
242 243
  outline: 5px auto -webkit-focus-ring-color;
}
A
Abdullah Almsaeed 已提交
244 245 246 247

input,
button,
select,
A
Abdullah Almsaeed 已提交
248
optgroup,
A
Abdullah Almsaeed 已提交
249
textarea {
A
Abdullah Almsaeed 已提交
250 251 252
  margin: 0;
  font-family: inherit;
  font-size: inherit;
A
Abdullah Almsaeed 已提交
253 254
  line-height: inherit;
}
A
Abdullah Almsaeed 已提交
255 256 257

button,
input {
A
Abdullah Almsaeed 已提交
258 259
  overflow: visible;
}
A
Abdullah Almsaeed 已提交
260 261 262

button,
select {
A
Abdullah Almsaeed 已提交
263 264
  text-transform: none;
}
A
Abdullah Almsaeed 已提交
265

266 267 268 269
select {
  word-wrap: normal;
}

A
Abdullah Almsaeed 已提交
270
button,
271
[type="button"],
A
Abdullah Almsaeed 已提交
272 273
[type="reset"],
[type="submit"] {
A
Abdullah Almsaeed 已提交
274 275
  -webkit-appearance: button;
}
A
Abdullah Almsaeed 已提交
276

277 278 279 280 281 282 283
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

A
Abdullah Almsaeed 已提交
284 285 286 287 288
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
A
Abdullah Almsaeed 已提交
289 290
  border-style: none;
}
A
Abdullah Almsaeed 已提交
291

A
Abdullah Almsaeed 已提交
292 293 294
input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
A
Abdullah Almsaeed 已提交
295 296
  padding: 0;
}
A
Abdullah Almsaeed 已提交
297 298 299 300 301

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
A
Abdullah Almsaeed 已提交
302 303
  -webkit-appearance: listbox;
}
A
Abdullah Almsaeed 已提交
304 305

textarea {
A
Abdullah Almsaeed 已提交
306
  overflow: auto;
A
Abdullah Almsaeed 已提交
307 308
  resize: vertical;
}
A
Abdullah Almsaeed 已提交
309 310 311 312 313

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
A
Abdullah Almsaeed 已提交
314 315
  border: 0;
}
A
Abdullah Almsaeed 已提交
316 317 318 319

legend {
  display: block;
  width: 100%;
A
Abdullah Almsaeed 已提交
320
  max-width: 100%;
A
Abdullah Almsaeed 已提交
321 322 323 324
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
A
Abdullah Almsaeed 已提交
325
  color: inherit;
A
Abdullah Almsaeed 已提交
326 327
  white-space: normal;
}
A
Abdullah Almsaeed 已提交
328 329

progress {
A
Abdullah Almsaeed 已提交
330 331
  vertical-align: baseline;
}
A
Abdullah Almsaeed 已提交
332 333 334

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
A
Abdullah Almsaeed 已提交
335 336
  height: auto;
}
A
Abdullah Almsaeed 已提交
337 338 339

[type="search"] {
  outline-offset: -2px;
A
Abdullah Almsaeed 已提交
340 341
  -webkit-appearance: none;
}
A
Abdullah Almsaeed 已提交
342 343

[type="search"]::-webkit-search-decoration {
A
Abdullah Almsaeed 已提交
344 345
  -webkit-appearance: none;
}
A
Abdullah Almsaeed 已提交
346

A
Abdullah Almsaeed 已提交
347 348
::-webkit-file-upload-button {
  font: inherit;
A
Abdullah Almsaeed 已提交
349 350
  -webkit-appearance: button;
}
A
Abdullah Almsaeed 已提交
351 352

output {
A
Abdullah Almsaeed 已提交
353 354
  display: inline-block;
}
A
Abdullah Almsaeed 已提交
355 356

summary {
A
Abdullah Almsaeed 已提交
357 358 359
  display: list-item;
  cursor: pointer;
}
A
Abdullah Almsaeed 已提交
360 361

template {
A
Abdullah Almsaeed 已提交
362 363
  display: none;
}
A
Abdullah Almsaeed 已提交
364 365

[hidden] {
A
Abdullah Almsaeed 已提交
366 367
  display: none !important;
}
A
Abdullah Almsaeed 已提交
368 369 370 371 372 373

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
A
Abdullah Almsaeed 已提交
374
  line-height: 1.2;
A
Abdullah Almsaeed 已提交
375 376
  color: inherit;
}
A
Abdullah Almsaeed 已提交
377 378

h1, .h1 {
A
Abdullah Almsaeed 已提交
379 380
  font-size: 2.5rem;
}
A
Abdullah Almsaeed 已提交
381 382

h2, .h2 {
A
Abdullah Almsaeed 已提交
383 384
  font-size: 2rem;
}
A
Abdullah Almsaeed 已提交
385 386

h3, .h3 {
A
Abdullah Almsaeed 已提交
387 388
  font-size: 1.75rem;
}
A
Abdullah Almsaeed 已提交
389 390

h4, .h4 {
A
Abdullah Almsaeed 已提交
391 392
  font-size: 1.5rem;
}
A
Abdullah Almsaeed 已提交
393 394

h5, .h5 {
A
Abdullah Almsaeed 已提交
395 396
  font-size: 1.25rem;
}
A
Abdullah Almsaeed 已提交
397 398

h6, .h6 {
A
Abdullah Almsaeed 已提交
399 400
  font-size: 1rem;
}
A
Abdullah Almsaeed 已提交
401 402 403

.lead {
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
404 405
  font-weight: 300;
}
A
Abdullah Almsaeed 已提交
406 407 408 409

.display-1 {
  font-size: 6rem;
  font-weight: 300;
A
Abdullah Almsaeed 已提交
410 411
  line-height: 1.2;
}
A
Abdullah Almsaeed 已提交
412 413 414 415

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
A
Abdullah Almsaeed 已提交
416 417
  line-height: 1.2;
}
A
Abdullah Almsaeed 已提交
418 419 420 421

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
A
Abdullah Almsaeed 已提交
422 423
  line-height: 1.2;
}
A
Abdullah Almsaeed 已提交
424 425 426 427

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
A
Abdullah Almsaeed 已提交
428 429
  line-height: 1.2;
}
A
Abdullah Almsaeed 已提交
430 431 432 433 434

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
A
Abdullah Almsaeed 已提交
435 436
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
A
Abdullah Almsaeed 已提交
437 438 439

small,
.small {
A
Abdullah Almsaeed 已提交
440
  font-size: 80%;
A
Abdullah Almsaeed 已提交
441 442
  font-weight: 400;
}
A
Abdullah Almsaeed 已提交
443 444 445 446

mark,
.mark {
  padding: 0.2em;
A
Abdullah Almsaeed 已提交
447 448
  background-color: #fcf8e3;
}
A
Abdullah Almsaeed 已提交
449 450 451

.list-unstyled, .chart-legend, .contacts-list, .users-list, .mailbox-attachments {
  padding-left: 0;
A
Abdullah Almsaeed 已提交
452 453
  list-style: none;
}
A
Abdullah Almsaeed 已提交
454 455 456

.list-inline {
  padding-left: 0;
A
Abdullah Almsaeed 已提交
457 458
  list-style: none;
}
A
Abdullah Almsaeed 已提交
459 460

.list-inline-item {
A
Abdullah Almsaeed 已提交
461 462 463 464 465 466
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
A
Abdullah Almsaeed 已提交
467 468 469

.initialism {
  font-size: 90%;
A
Abdullah Almsaeed 已提交
470 471
  text-transform: uppercase;
}
A
Abdullah Almsaeed 已提交
472 473 474

.blockquote {
  margin-bottom: 1rem;
A
Abdullah Almsaeed 已提交
475 476
  font-size: 1.25rem;
}
A
Abdullah Almsaeed 已提交
477 478 479 480

.blockquote-footer {
  display: block;
  font-size: 80%;
A
Abdullah Almsaeed 已提交
481 482 483 484
  color: #6c757d;
}

.blockquote-footer::before {
485
  content: "\2014\00A0";
A
Abdullah Almsaeed 已提交
486
}
A
Abdullah Almsaeed 已提交
487

A
Abdullah Almsaeed 已提交
488 489
.img-fluid {
  max-width: 100%;
A
Abdullah Almsaeed 已提交
490 491
  height: auto;
}
A
Abdullah Almsaeed 已提交
492 493 494

.img-thumbnail {
  padding: 0.25rem;
A
Abdullah Almsaeed 已提交
495 496
  background-color: #ffffff;
  border: 1px solid #dee2e6;
A
Abdullah Almsaeed 已提交
497
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
498
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
A
Abdullah Almsaeed 已提交
499
  max-width: 100%;
A
Abdullah Almsaeed 已提交
500 501
  height: auto;
}
A
Abdullah Almsaeed 已提交
502 503

.figure {
A
Abdullah Almsaeed 已提交
504 505
  display: inline-block;
}
A
Abdullah Almsaeed 已提交
506 507 508

.figure-img {
  margin-bottom: 0.5rem;
A
Abdullah Almsaeed 已提交
509 510
  line-height: 1;
}
A
Abdullah Almsaeed 已提交
511 512 513

.figure-caption {
  font-size: 90%;
A
Abdullah Almsaeed 已提交
514 515
  color: #6c757d;
}
A
Abdullah Almsaeed 已提交
516 517

code {
A
Abdullah Almsaeed 已提交
518 519 520 521 522 523 524 525
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

a > code {
  color: inherit;
}
A
Abdullah Almsaeed 已提交
526 527 528

kbd {
  padding: 0.2rem 0.4rem;
A
Abdullah Almsaeed 已提交
529 530
  font-size: 87.5%;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
531
  background-color: #212529;
A
Abdullah Almsaeed 已提交
532 533 534 535 536 537 538 539 540 541
  border-radius: 0.2rem;
  box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}
A
Abdullah Almsaeed 已提交
542 543 544

pre {
  display: block;
A
Abdullah Almsaeed 已提交
545 546 547 548 549 550 551 552 553
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
A
Abdullah Almsaeed 已提交
554 555 556

.pre-scrollable {
  max-height: 340px;
A
Abdullah Almsaeed 已提交
557 558
  overflow-y: scroll;
}
A
Abdullah Almsaeed 已提交
559 560

.container {
A
Abdullah Almsaeed 已提交
561
  width: 100%;
A
Abdullah Almsaeed 已提交
562 563
  padding-right: 7.5px;
  padding-left: 7.5px;
A
Abdullah Almsaeed 已提交
564
  margin-right: auto;
A
Abdullah Almsaeed 已提交
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
A
Abdullah Almsaeed 已提交
591 592

.container-fluid {
A
Abdullah Almsaeed 已提交
593
  width: 100%;
A
Abdullah Almsaeed 已提交
594 595
  padding-right: 7.5px;
  padding-left: 7.5px;
A
Abdullah Almsaeed 已提交
596
  margin-right: auto;
A
Abdullah Almsaeed 已提交
597 598
  margin-left: auto;
}
A
Abdullah Almsaeed 已提交
599 600

.row {
601
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
602
  display: flex;
603
  -ms-flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
604
  flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
605 606 607
  margin-right: -7.5px;
  margin-left: -7.5px;
}
A
Abdullah Almsaeed 已提交
608

A
Abdullah Almsaeed 已提交
609 610
.no-gutters {
  margin-right: 0;
A
Abdullah Almsaeed 已提交
611 612 613 614 615 616 617 618
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
A
Abdullah Almsaeed 已提交
619 620 621 622 623 624 625

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
A
Abdullah Almsaeed 已提交
626
  position: relative;
A
Abdullah Almsaeed 已提交
627
  width: 100%;
A
Abdullah Almsaeed 已提交
628 629 630
  padding-right: 7.5px;
  padding-left: 7.5px;
}
A
Abdullah Almsaeed 已提交
631

A
Abdullah Almsaeed 已提交
632
.col {
633
  -ms-flex-preferred-size: 0;
A
Abdullah Almsaeed 已提交
634
  flex-basis: 0;
635
  -ms-flex-positive: 1;
A
Abdullah Almsaeed 已提交
636
  flex-grow: 1;
A
Abdullah Almsaeed 已提交
637 638
  max-width: 100%;
}
A
Abdullah Almsaeed 已提交
639

A
Abdullah Almsaeed 已提交
640
.col-auto {
641
  -ms-flex: 0 0 auto;
A
Abdullah Almsaeed 已提交
642 643
  flex: 0 0 auto;
  width: auto;
644
  max-width: 100%;
A
Abdullah Almsaeed 已提交
645
}
A
Abdullah Almsaeed 已提交
646

A
Abdullah Almsaeed 已提交
647
.col-1 {
648
  -ms-flex: 0 0 8.333333%;
A
Abdullah Almsaeed 已提交
649 650 651
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
A
Abdullah Almsaeed 已提交
652

A
Abdullah Almsaeed 已提交
653
.col-2 {
654
  -ms-flex: 0 0 16.666667%;
A
Abdullah Almsaeed 已提交
655 656 657
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
A
Abdullah Almsaeed 已提交
658

A
Abdullah Almsaeed 已提交
659
.col-3 {
660
  -ms-flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
661
  flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
662 663
  max-width: 25%;
}
A
Abdullah Almsaeed 已提交
664

A
Abdullah Almsaeed 已提交
665
.col-4 {
666
  -ms-flex: 0 0 33.333333%;
A
Abdullah Almsaeed 已提交
667 668 669
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
A
Abdullah Almsaeed 已提交
670

A
Abdullah Almsaeed 已提交
671
.col-5 {
672
  -ms-flex: 0 0 41.666667%;
A
Abdullah Almsaeed 已提交
673 674 675
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
A
Abdullah Almsaeed 已提交
676

A
Abdullah Almsaeed 已提交
677
.col-6 {
678
  -ms-flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
679
  flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
680 681
  max-width: 50%;
}
A
Abdullah Almsaeed 已提交
682

A
Abdullah Almsaeed 已提交
683
.col-7 {
684
  -ms-flex: 0 0 58.333333%;
A
Abdullah Almsaeed 已提交
685 686 687
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
A
Abdullah Almsaeed 已提交
688

A
Abdullah Almsaeed 已提交
689
.col-8 {
690
  -ms-flex: 0 0 66.666667%;
A
Abdullah Almsaeed 已提交
691 692 693
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
A
Abdullah Almsaeed 已提交
694

A
Abdullah Almsaeed 已提交
695
.col-9 {
696
  -ms-flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
697
  flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
698 699
  max-width: 75%;
}
A
Abdullah Almsaeed 已提交
700

A
Abdullah Almsaeed 已提交
701
.col-10 {
702
  -ms-flex: 0 0 83.333333%;
A
Abdullah Almsaeed 已提交
703 704 705
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
A
Abdullah Almsaeed 已提交
706

A
Abdullah Almsaeed 已提交
707
.col-11 {
708
  -ms-flex: 0 0 91.666667%;
A
Abdullah Almsaeed 已提交
709 710 711
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
A
Abdullah Almsaeed 已提交
712

A
Abdullah Almsaeed 已提交
713
.col-12 {
714
  -ms-flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
715
  flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
716 717
  max-width: 100%;
}
A
Abdullah Almsaeed 已提交
718

A
Abdullah Almsaeed 已提交
719
.order-first {
720
  -ms-flex-order: -1;
A
Abdullah Almsaeed 已提交
721 722 723 724
  order: -1;
}

.order-last {
725
  -ms-flex-order: 13;
A
Abdullah Almsaeed 已提交
726 727 728 729
  order: 13;
}

.order-0 {
730
  -ms-flex-order: 0;
A
Abdullah Almsaeed 已提交
731 732
  order: 0;
}
A
Abdullah Almsaeed 已提交
733

A
Abdullah Almsaeed 已提交
734
.order-1 {
735
  -ms-flex-order: 1;
A
Abdullah Almsaeed 已提交
736 737
  order: 1;
}
A
Abdullah Almsaeed 已提交
738

A
Abdullah Almsaeed 已提交
739
.order-2 {
740
  -ms-flex-order: 2;
A
Abdullah Almsaeed 已提交
741 742
  order: 2;
}
A
Abdullah Almsaeed 已提交
743

A
Abdullah Almsaeed 已提交
744
.order-3 {
745
  -ms-flex-order: 3;
A
Abdullah Almsaeed 已提交
746 747
  order: 3;
}
A
Abdullah Almsaeed 已提交
748

A
Abdullah Almsaeed 已提交
749
.order-4 {
750
  -ms-flex-order: 4;
A
Abdullah Almsaeed 已提交
751 752
  order: 4;
}
A
Abdullah Almsaeed 已提交
753

A
Abdullah Almsaeed 已提交
754
.order-5 {
755
  -ms-flex-order: 5;
A
Abdullah Almsaeed 已提交
756 757
  order: 5;
}
A
Abdullah Almsaeed 已提交
758

A
Abdullah Almsaeed 已提交
759
.order-6 {
760
  -ms-flex-order: 6;
A
Abdullah Almsaeed 已提交
761 762
  order: 6;
}
A
Abdullah Almsaeed 已提交
763

A
Abdullah Almsaeed 已提交
764
.order-7 {
765
  -ms-flex-order: 7;
A
Abdullah Almsaeed 已提交
766 767
  order: 7;
}
A
Abdullah Almsaeed 已提交
768

A
Abdullah Almsaeed 已提交
769
.order-8 {
770
  -ms-flex-order: 8;
A
Abdullah Almsaeed 已提交
771 772
  order: 8;
}
A
Abdullah Almsaeed 已提交
773

A
Abdullah Almsaeed 已提交
774
.order-9 {
775
  -ms-flex-order: 9;
A
Abdullah Almsaeed 已提交
776 777
  order: 9;
}
A
Abdullah Almsaeed 已提交
778

A
Abdullah Almsaeed 已提交
779
.order-10 {
780
  -ms-flex-order: 10;
A
Abdullah Almsaeed 已提交
781 782
  order: 10;
}
A
Abdullah Almsaeed 已提交
783

A
Abdullah Almsaeed 已提交
784
.order-11 {
785
  -ms-flex-order: 11;
A
Abdullah Almsaeed 已提交
786 787
  order: 11;
}
A
Abdullah Almsaeed 已提交
788

A
Abdullah Almsaeed 已提交
789
.order-12 {
790
  -ms-flex-order: 12;
A
Abdullah Almsaeed 已提交
791 792
  order: 12;
}
A
Abdullah Almsaeed 已提交
793

A
Abdullah Almsaeed 已提交
794
.offset-1 {
A
Abdullah Almsaeed 已提交
795 796
  margin-left: 8.333333%;
}
A
Abdullah Almsaeed 已提交
797

A
Abdullah Almsaeed 已提交
798
.offset-2 {
A
Abdullah Almsaeed 已提交
799 800
  margin-left: 16.666667%;
}
A
Abdullah Almsaeed 已提交
801

A
Abdullah Almsaeed 已提交
802
.offset-3 {
A
Abdullah Almsaeed 已提交
803 804
  margin-left: 25%;
}
A
Abdullah Almsaeed 已提交
805

A
Abdullah Almsaeed 已提交
806
.offset-4 {
A
Abdullah Almsaeed 已提交
807 808
  margin-left: 33.333333%;
}
A
Abdullah Almsaeed 已提交
809

A
Abdullah Almsaeed 已提交
810
.offset-5 {
A
Abdullah Almsaeed 已提交
811 812
  margin-left: 41.666667%;
}
A
Abdullah Almsaeed 已提交
813

A
Abdullah Almsaeed 已提交
814
.offset-6 {
A
Abdullah Almsaeed 已提交
815 816
  margin-left: 50%;
}
A
Abdullah Almsaeed 已提交
817

A
Abdullah Almsaeed 已提交
818
.offset-7 {
A
Abdullah Almsaeed 已提交
819 820
  margin-left: 58.333333%;
}
A
Abdullah Almsaeed 已提交
821

A
Abdullah Almsaeed 已提交
822
.offset-8 {
A
Abdullah Almsaeed 已提交
823 824
  margin-left: 66.666667%;
}
A
Abdullah Almsaeed 已提交
825

A
Abdullah Almsaeed 已提交
826
.offset-9 {
A
Abdullah Almsaeed 已提交
827 828
  margin-left: 75%;
}
A
Abdullah Almsaeed 已提交
829

A
Abdullah Almsaeed 已提交
830
.offset-10 {
A
Abdullah Almsaeed 已提交
831 832
  margin-left: 83.333333%;
}
A
Abdullah Almsaeed 已提交
833

A
Abdullah Almsaeed 已提交
834
.offset-11 {
A
Abdullah Almsaeed 已提交
835 836
  margin-left: 91.666667%;
}
A
Abdullah Almsaeed 已提交
837 838

@media (min-width: 576px) {
A
Abdullah Almsaeed 已提交
839
  .col-sm {
840
    -ms-flex-preferred-size: 0;
A
Abdullah Almsaeed 已提交
841
    flex-basis: 0;
842
    -ms-flex-positive: 1;
A
Abdullah Almsaeed 已提交
843
    flex-grow: 1;
A
Abdullah Almsaeed 已提交
844 845
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
846
  .col-sm-auto {
847
    -ms-flex: 0 0 auto;
A
Abdullah Almsaeed 已提交
848 849
    flex: 0 0 auto;
    width: auto;
850
    max-width: 100%;
A
Abdullah Almsaeed 已提交
851
  }
A
Abdullah Almsaeed 已提交
852
  .col-sm-1 {
853
    -ms-flex: 0 0 8.333333%;
A
Abdullah Almsaeed 已提交
854 855 856
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
857
  .col-sm-2 {
858
    -ms-flex: 0 0 16.666667%;
A
Abdullah Almsaeed 已提交
859 860 861
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
862
  .col-sm-3 {
863
    -ms-flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
864
    flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
865 866
    max-width: 25%;
  }
A
Abdullah Almsaeed 已提交
867
  .col-sm-4 {
868
    -ms-flex: 0 0 33.333333%;
A
Abdullah Almsaeed 已提交
869 870 871
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
872
  .col-sm-5 {
873
    -ms-flex: 0 0 41.666667%;
A
Abdullah Almsaeed 已提交
874 875 876
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
877
  .col-sm-6 {
878
    -ms-flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
879
    flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
880 881
    max-width: 50%;
  }
A
Abdullah Almsaeed 已提交
882
  .col-sm-7 {
883
    -ms-flex: 0 0 58.333333%;
A
Abdullah Almsaeed 已提交
884 885 886
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
887
  .col-sm-8 {
888
    -ms-flex: 0 0 66.666667%;
A
Abdullah Almsaeed 已提交
889 890 891
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
892
  .col-sm-9 {
893
    -ms-flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
894
    flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
895 896
    max-width: 75%;
  }
A
Abdullah Almsaeed 已提交
897
  .col-sm-10 {
898
    -ms-flex: 0 0 83.333333%;
A
Abdullah Almsaeed 已提交
899 900 901
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
902
  .col-sm-11 {
903
    -ms-flex: 0 0 91.666667%;
A
Abdullah Almsaeed 已提交
904 905 906
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
A
Abdullah Almsaeed 已提交
907
  .col-sm-12 {
908
    -ms-flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
909
    flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
910 911
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
912
  .order-sm-first {
913
    -ms-flex-order: -1;
A
Abdullah Almsaeed 已提交
914 915 916
    order: -1;
  }
  .order-sm-last {
917
    -ms-flex-order: 13;
A
Abdullah Almsaeed 已提交
918 919 920
    order: 13;
  }
  .order-sm-0 {
921
    -ms-flex-order: 0;
A
Abdullah Almsaeed 已提交
922 923
    order: 0;
  }
A
Abdullah Almsaeed 已提交
924
  .order-sm-1 {
925
    -ms-flex-order: 1;
A
Abdullah Almsaeed 已提交
926 927
    order: 1;
  }
A
Abdullah Almsaeed 已提交
928
  .order-sm-2 {
929
    -ms-flex-order: 2;
A
Abdullah Almsaeed 已提交
930 931
    order: 2;
  }
A
Abdullah Almsaeed 已提交
932
  .order-sm-3 {
933
    -ms-flex-order: 3;
A
Abdullah Almsaeed 已提交
934 935
    order: 3;
  }
A
Abdullah Almsaeed 已提交
936
  .order-sm-4 {
937
    -ms-flex-order: 4;
A
Abdullah Almsaeed 已提交
938 939
    order: 4;
  }
A
Abdullah Almsaeed 已提交
940
  .order-sm-5 {
941
    -ms-flex-order: 5;
A
Abdullah Almsaeed 已提交
942 943
    order: 5;
  }
A
Abdullah Almsaeed 已提交
944
  .order-sm-6 {
945
    -ms-flex-order: 6;
A
Abdullah Almsaeed 已提交
946 947
    order: 6;
  }
A
Abdullah Almsaeed 已提交
948
  .order-sm-7 {
949
    -ms-flex-order: 7;
A
Abdullah Almsaeed 已提交
950 951
    order: 7;
  }
A
Abdullah Almsaeed 已提交
952
  .order-sm-8 {
953
    -ms-flex-order: 8;
A
Abdullah Almsaeed 已提交
954 955
    order: 8;
  }
A
Abdullah Almsaeed 已提交
956
  .order-sm-9 {
957
    -ms-flex-order: 9;
A
Abdullah Almsaeed 已提交
958 959
    order: 9;
  }
A
Abdullah Almsaeed 已提交
960
  .order-sm-10 {
961
    -ms-flex-order: 10;
A
Abdullah Almsaeed 已提交
962 963
    order: 10;
  }
A
Abdullah Almsaeed 已提交
964
  .order-sm-11 {
965
    -ms-flex-order: 11;
A
Abdullah Almsaeed 已提交
966 967
    order: 11;
  }
A
Abdullah Almsaeed 已提交
968
  .order-sm-12 {
969
    -ms-flex-order: 12;
A
Abdullah Almsaeed 已提交
970 971
    order: 12;
  }
A
Abdullah Almsaeed 已提交
972
  .offset-sm-0 {
A
Abdullah Almsaeed 已提交
973 974
    margin-left: 0;
  }
A
Abdullah Almsaeed 已提交
975
  .offset-sm-1 {
A
Abdullah Almsaeed 已提交
976 977
    margin-left: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
978
  .offset-sm-2 {
A
Abdullah Almsaeed 已提交
979 980
    margin-left: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
981
  .offset-sm-3 {
A
Abdullah Almsaeed 已提交
982 983
    margin-left: 25%;
  }
A
Abdullah Almsaeed 已提交
984
  .offset-sm-4 {
A
Abdullah Almsaeed 已提交
985 986
    margin-left: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
987
  .offset-sm-5 {
A
Abdullah Almsaeed 已提交
988 989
    margin-left: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
990
  .offset-sm-6 {
A
Abdullah Almsaeed 已提交
991 992
    margin-left: 50%;
  }
A
Abdullah Almsaeed 已提交
993
  .offset-sm-7 {
A
Abdullah Almsaeed 已提交
994 995
    margin-left: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
996
  .offset-sm-8 {
A
Abdullah Almsaeed 已提交
997 998
    margin-left: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
999
  .offset-sm-9 {
A
Abdullah Almsaeed 已提交
1000 1001
    margin-left: 75%;
  }
A
Abdullah Almsaeed 已提交
1002
  .offset-sm-10 {
A
Abdullah Almsaeed 已提交
1003 1004
    margin-left: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1005
  .offset-sm-11 {
A
Abdullah Almsaeed 已提交
1006 1007 1008
    margin-left: 91.666667%;
  }
}
A
Abdullah Almsaeed 已提交
1009 1010

@media (min-width: 768px) {
A
Abdullah Almsaeed 已提交
1011
  .col-md {
1012
    -ms-flex-preferred-size: 0;
A
Abdullah Almsaeed 已提交
1013
    flex-basis: 0;
1014
    -ms-flex-positive: 1;
A
Abdullah Almsaeed 已提交
1015
    flex-grow: 1;
A
Abdullah Almsaeed 已提交
1016 1017
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1018
  .col-md-auto {
1019
    -ms-flex: 0 0 auto;
A
Abdullah Almsaeed 已提交
1020 1021
    flex: 0 0 auto;
    width: auto;
1022
    max-width: 100%;
A
Abdullah Almsaeed 已提交
1023
  }
A
Abdullah Almsaeed 已提交
1024
  .col-md-1 {
1025
    -ms-flex: 0 0 8.333333%;
A
Abdullah Almsaeed 已提交
1026 1027 1028
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1029
  .col-md-2 {
1030
    -ms-flex: 0 0 16.666667%;
A
Abdullah Almsaeed 已提交
1031 1032 1033
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1034
  .col-md-3 {
1035
    -ms-flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
1036
    flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
1037 1038
    max-width: 25%;
  }
A
Abdullah Almsaeed 已提交
1039
  .col-md-4 {
1040
    -ms-flex: 0 0 33.333333%;
A
Abdullah Almsaeed 已提交
1041 1042 1043
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1044
  .col-md-5 {
1045
    -ms-flex: 0 0 41.666667%;
A
Abdullah Almsaeed 已提交
1046 1047 1048
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1049
  .col-md-6 {
1050
    -ms-flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
1051
    flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
1052 1053
    max-width: 50%;
  }
A
Abdullah Almsaeed 已提交
1054
  .col-md-7 {
1055
    -ms-flex: 0 0 58.333333%;
A
Abdullah Almsaeed 已提交
1056 1057 1058
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1059
  .col-md-8 {
1060
    -ms-flex: 0 0 66.666667%;
A
Abdullah Almsaeed 已提交
1061 1062 1063
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1064
  .col-md-9 {
1065
    -ms-flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
1066
    flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
1067 1068
    max-width: 75%;
  }
A
Abdullah Almsaeed 已提交
1069
  .col-md-10 {
1070
    -ms-flex: 0 0 83.333333%;
A
Abdullah Almsaeed 已提交
1071 1072 1073
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1074
  .col-md-11 {
1075
    -ms-flex: 0 0 91.666667%;
A
Abdullah Almsaeed 已提交
1076 1077 1078
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
A
Abdullah Almsaeed 已提交
1079
  .col-md-12 {
1080
    -ms-flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
1081
    flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
1082 1083
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1084
  .order-md-first {
1085
    -ms-flex-order: -1;
A
Abdullah Almsaeed 已提交
1086 1087 1088
    order: -1;
  }
  .order-md-last {
1089
    -ms-flex-order: 13;
A
Abdullah Almsaeed 已提交
1090 1091 1092
    order: 13;
  }
  .order-md-0 {
1093
    -ms-flex-order: 0;
A
Abdullah Almsaeed 已提交
1094 1095
    order: 0;
  }
A
Abdullah Almsaeed 已提交
1096
  .order-md-1 {
1097
    -ms-flex-order: 1;
A
Abdullah Almsaeed 已提交
1098 1099
    order: 1;
  }
A
Abdullah Almsaeed 已提交
1100
  .order-md-2 {
1101
    -ms-flex-order: 2;
A
Abdullah Almsaeed 已提交
1102 1103
    order: 2;
  }
A
Abdullah Almsaeed 已提交
1104
  .order-md-3 {
1105
    -ms-flex-order: 3;
A
Abdullah Almsaeed 已提交
1106 1107
    order: 3;
  }
A
Abdullah Almsaeed 已提交
1108
  .order-md-4 {
1109
    -ms-flex-order: 4;
A
Abdullah Almsaeed 已提交
1110 1111
    order: 4;
  }
A
Abdullah Almsaeed 已提交
1112
  .order-md-5 {
1113
    -ms-flex-order: 5;
A
Abdullah Almsaeed 已提交
1114 1115
    order: 5;
  }
A
Abdullah Almsaeed 已提交
1116
  .order-md-6 {
1117
    -ms-flex-order: 6;
A
Abdullah Almsaeed 已提交
1118 1119
    order: 6;
  }
A
Abdullah Almsaeed 已提交
1120
  .order-md-7 {
1121
    -ms-flex-order: 7;
A
Abdullah Almsaeed 已提交
1122 1123
    order: 7;
  }
A
Abdullah Almsaeed 已提交
1124
  .order-md-8 {
1125
    -ms-flex-order: 8;
A
Abdullah Almsaeed 已提交
1126 1127
    order: 8;
  }
A
Abdullah Almsaeed 已提交
1128
  .order-md-9 {
1129
    -ms-flex-order: 9;
A
Abdullah Almsaeed 已提交
1130 1131
    order: 9;
  }
A
Abdullah Almsaeed 已提交
1132
  .order-md-10 {
1133
    -ms-flex-order: 10;
A
Abdullah Almsaeed 已提交
1134 1135
    order: 10;
  }
A
Abdullah Almsaeed 已提交
1136
  .order-md-11 {
1137
    -ms-flex-order: 11;
A
Abdullah Almsaeed 已提交
1138 1139
    order: 11;
  }
A
Abdullah Almsaeed 已提交
1140
  .order-md-12 {
1141
    -ms-flex-order: 12;
A
Abdullah Almsaeed 已提交
1142 1143
    order: 12;
  }
A
Abdullah Almsaeed 已提交
1144
  .offset-md-0 {
A
Abdullah Almsaeed 已提交
1145 1146
    margin-left: 0;
  }
A
Abdullah Almsaeed 已提交
1147
  .offset-md-1 {
A
Abdullah Almsaeed 已提交
1148 1149
    margin-left: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1150
  .offset-md-2 {
A
Abdullah Almsaeed 已提交
1151 1152
    margin-left: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1153
  .offset-md-3 {
A
Abdullah Almsaeed 已提交
1154 1155
    margin-left: 25%;
  }
A
Abdullah Almsaeed 已提交
1156
  .offset-md-4 {
A
Abdullah Almsaeed 已提交
1157 1158
    margin-left: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1159
  .offset-md-5 {
A
Abdullah Almsaeed 已提交
1160 1161
    margin-left: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1162
  .offset-md-6 {
A
Abdullah Almsaeed 已提交
1163 1164
    margin-left: 50%;
  }
A
Abdullah Almsaeed 已提交
1165
  .offset-md-7 {
A
Abdullah Almsaeed 已提交
1166 1167
    margin-left: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1168
  .offset-md-8 {
A
Abdullah Almsaeed 已提交
1169 1170
    margin-left: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1171
  .offset-md-9 {
A
Abdullah Almsaeed 已提交
1172 1173
    margin-left: 75%;
  }
A
Abdullah Almsaeed 已提交
1174
  .offset-md-10 {
A
Abdullah Almsaeed 已提交
1175 1176
    margin-left: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1177
  .offset-md-11 {
A
Abdullah Almsaeed 已提交
1178 1179 1180
    margin-left: 91.666667%;
  }
}
A
Abdullah Almsaeed 已提交
1181 1182

@media (min-width: 992px) {
A
Abdullah Almsaeed 已提交
1183
  .col-lg {
1184
    -ms-flex-preferred-size: 0;
A
Abdullah Almsaeed 已提交
1185
    flex-basis: 0;
1186
    -ms-flex-positive: 1;
A
Abdullah Almsaeed 已提交
1187
    flex-grow: 1;
A
Abdullah Almsaeed 已提交
1188 1189
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1190
  .col-lg-auto {
1191
    -ms-flex: 0 0 auto;
A
Abdullah Almsaeed 已提交
1192 1193
    flex: 0 0 auto;
    width: auto;
1194
    max-width: 100%;
A
Abdullah Almsaeed 已提交
1195
  }
A
Abdullah Almsaeed 已提交
1196
  .col-lg-1 {
1197
    -ms-flex: 0 0 8.333333%;
A
Abdullah Almsaeed 已提交
1198 1199 1200
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1201
  .col-lg-2 {
1202
    -ms-flex: 0 0 16.666667%;
A
Abdullah Almsaeed 已提交
1203 1204 1205
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1206
  .col-lg-3 {
1207
    -ms-flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
1208
    flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
1209 1210
    max-width: 25%;
  }
A
Abdullah Almsaeed 已提交
1211
  .col-lg-4 {
1212
    -ms-flex: 0 0 33.333333%;
A
Abdullah Almsaeed 已提交
1213 1214 1215
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1216
  .col-lg-5 {
1217
    -ms-flex: 0 0 41.666667%;
A
Abdullah Almsaeed 已提交
1218 1219 1220
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1221
  .col-lg-6 {
1222
    -ms-flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
1223
    flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
1224 1225
    max-width: 50%;
  }
A
Abdullah Almsaeed 已提交
1226
  .col-lg-7 {
1227
    -ms-flex: 0 0 58.333333%;
A
Abdullah Almsaeed 已提交
1228 1229 1230
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1231
  .col-lg-8 {
1232
    -ms-flex: 0 0 66.666667%;
A
Abdullah Almsaeed 已提交
1233 1234 1235
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1236
  .col-lg-9 {
1237
    -ms-flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
1238
    flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
1239 1240
    max-width: 75%;
  }
A
Abdullah Almsaeed 已提交
1241
  .col-lg-10 {
1242
    -ms-flex: 0 0 83.333333%;
A
Abdullah Almsaeed 已提交
1243 1244 1245
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1246
  .col-lg-11 {
1247
    -ms-flex: 0 0 91.666667%;
A
Abdullah Almsaeed 已提交
1248 1249 1250
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
A
Abdullah Almsaeed 已提交
1251
  .col-lg-12 {
1252
    -ms-flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
1253
    flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
1254 1255
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1256
  .order-lg-first {
1257
    -ms-flex-order: -1;
A
Abdullah Almsaeed 已提交
1258 1259 1260
    order: -1;
  }
  .order-lg-last {
1261
    -ms-flex-order: 13;
A
Abdullah Almsaeed 已提交
1262 1263 1264
    order: 13;
  }
  .order-lg-0 {
1265
    -ms-flex-order: 0;
A
Abdullah Almsaeed 已提交
1266 1267
    order: 0;
  }
A
Abdullah Almsaeed 已提交
1268
  .order-lg-1 {
1269
    -ms-flex-order: 1;
A
Abdullah Almsaeed 已提交
1270 1271
    order: 1;
  }
A
Abdullah Almsaeed 已提交
1272
  .order-lg-2 {
1273
    -ms-flex-order: 2;
A
Abdullah Almsaeed 已提交
1274 1275
    order: 2;
  }
A
Abdullah Almsaeed 已提交
1276
  .order-lg-3 {
1277
    -ms-flex-order: 3;
A
Abdullah Almsaeed 已提交
1278 1279
    order: 3;
  }
A
Abdullah Almsaeed 已提交
1280
  .order-lg-4 {
1281
    -ms-flex-order: 4;
A
Abdullah Almsaeed 已提交
1282 1283
    order: 4;
  }
A
Abdullah Almsaeed 已提交
1284
  .order-lg-5 {
1285
    -ms-flex-order: 5;
A
Abdullah Almsaeed 已提交
1286 1287
    order: 5;
  }
A
Abdullah Almsaeed 已提交
1288
  .order-lg-6 {
1289
    -ms-flex-order: 6;
A
Abdullah Almsaeed 已提交
1290 1291
    order: 6;
  }
A
Abdullah Almsaeed 已提交
1292
  .order-lg-7 {
1293
    -ms-flex-order: 7;
A
Abdullah Almsaeed 已提交
1294 1295
    order: 7;
  }
A
Abdullah Almsaeed 已提交
1296
  .order-lg-8 {
1297
    -ms-flex-order: 8;
A
Abdullah Almsaeed 已提交
1298 1299
    order: 8;
  }
A
Abdullah Almsaeed 已提交
1300
  .order-lg-9 {
1301
    -ms-flex-order: 9;
A
Abdullah Almsaeed 已提交
1302 1303
    order: 9;
  }
A
Abdullah Almsaeed 已提交
1304
  .order-lg-10 {
1305
    -ms-flex-order: 10;
A
Abdullah Almsaeed 已提交
1306 1307
    order: 10;
  }
A
Abdullah Almsaeed 已提交
1308
  .order-lg-11 {
1309
    -ms-flex-order: 11;
A
Abdullah Almsaeed 已提交
1310 1311
    order: 11;
  }
A
Abdullah Almsaeed 已提交
1312
  .order-lg-12 {
1313
    -ms-flex-order: 12;
A
Abdullah Almsaeed 已提交
1314 1315
    order: 12;
  }
A
Abdullah Almsaeed 已提交
1316
  .offset-lg-0 {
A
Abdullah Almsaeed 已提交
1317 1318
    margin-left: 0;
  }
A
Abdullah Almsaeed 已提交
1319
  .offset-lg-1 {
A
Abdullah Almsaeed 已提交
1320 1321
    margin-left: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1322
  .offset-lg-2 {
A
Abdullah Almsaeed 已提交
1323 1324
    margin-left: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1325
  .offset-lg-3 {
A
Abdullah Almsaeed 已提交
1326 1327
    margin-left: 25%;
  }
A
Abdullah Almsaeed 已提交
1328
  .offset-lg-4 {
A
Abdullah Almsaeed 已提交
1329 1330
    margin-left: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1331
  .offset-lg-5 {
A
Abdullah Almsaeed 已提交
1332 1333
    margin-left: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1334
  .offset-lg-6 {
A
Abdullah Almsaeed 已提交
1335 1336
    margin-left: 50%;
  }
A
Abdullah Almsaeed 已提交
1337
  .offset-lg-7 {
A
Abdullah Almsaeed 已提交
1338 1339
    margin-left: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1340
  .offset-lg-8 {
A
Abdullah Almsaeed 已提交
1341 1342
    margin-left: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1343
  .offset-lg-9 {
A
Abdullah Almsaeed 已提交
1344 1345
    margin-left: 75%;
  }
A
Abdullah Almsaeed 已提交
1346
  .offset-lg-10 {
A
Abdullah Almsaeed 已提交
1347 1348
    margin-left: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1349
  .offset-lg-11 {
A
Abdullah Almsaeed 已提交
1350 1351 1352
    margin-left: 91.666667%;
  }
}
A
Abdullah Almsaeed 已提交
1353 1354

@media (min-width: 1200px) {
A
Abdullah Almsaeed 已提交
1355
  .col-xl {
1356
    -ms-flex-preferred-size: 0;
A
Abdullah Almsaeed 已提交
1357
    flex-basis: 0;
1358
    -ms-flex-positive: 1;
A
Abdullah Almsaeed 已提交
1359
    flex-grow: 1;
A
Abdullah Almsaeed 已提交
1360 1361
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1362
  .col-xl-auto {
1363
    -ms-flex: 0 0 auto;
A
Abdullah Almsaeed 已提交
1364 1365
    flex: 0 0 auto;
    width: auto;
1366
    max-width: 100%;
A
Abdullah Almsaeed 已提交
1367
  }
A
Abdullah Almsaeed 已提交
1368
  .col-xl-1 {
1369
    -ms-flex: 0 0 8.333333%;
A
Abdullah Almsaeed 已提交
1370 1371 1372
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1373
  .col-xl-2 {
1374
    -ms-flex: 0 0 16.666667%;
A
Abdullah Almsaeed 已提交
1375 1376 1377
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1378
  .col-xl-3 {
1379
    -ms-flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
1380
    flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
1381 1382
    max-width: 25%;
  }
A
Abdullah Almsaeed 已提交
1383
  .col-xl-4 {
1384
    -ms-flex: 0 0 33.333333%;
A
Abdullah Almsaeed 已提交
1385 1386 1387
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1388
  .col-xl-5 {
1389
    -ms-flex: 0 0 41.666667%;
A
Abdullah Almsaeed 已提交
1390 1391 1392
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1393
  .col-xl-6 {
1394
    -ms-flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
1395
    flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
1396 1397
    max-width: 50%;
  }
A
Abdullah Almsaeed 已提交
1398
  .col-xl-7 {
1399
    -ms-flex: 0 0 58.333333%;
A
Abdullah Almsaeed 已提交
1400 1401 1402
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1403
  .col-xl-8 {
1404
    -ms-flex: 0 0 66.666667%;
A
Abdullah Almsaeed 已提交
1405 1406 1407
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1408
  .col-xl-9 {
1409
    -ms-flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
1410
    flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
1411 1412
    max-width: 75%;
  }
A
Abdullah Almsaeed 已提交
1413
  .col-xl-10 {
1414
    -ms-flex: 0 0 83.333333%;
A
Abdullah Almsaeed 已提交
1415 1416 1417
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1418
  .col-xl-11 {
1419
    -ms-flex: 0 0 91.666667%;
A
Abdullah Almsaeed 已提交
1420 1421 1422
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
A
Abdullah Almsaeed 已提交
1423
  .col-xl-12 {
1424
    -ms-flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
1425
    flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
1426 1427
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1428
  .order-xl-first {
1429
    -ms-flex-order: -1;
A
Abdullah Almsaeed 已提交
1430 1431 1432
    order: -1;
  }
  .order-xl-last {
1433
    -ms-flex-order: 13;
A
Abdullah Almsaeed 已提交
1434 1435 1436
    order: 13;
  }
  .order-xl-0 {
1437
    -ms-flex-order: 0;
A
Abdullah Almsaeed 已提交
1438 1439
    order: 0;
  }
A
Abdullah Almsaeed 已提交
1440
  .order-xl-1 {
1441
    -ms-flex-order: 1;
A
Abdullah Almsaeed 已提交
1442 1443
    order: 1;
  }
A
Abdullah Almsaeed 已提交
1444
  .order-xl-2 {
1445
    -ms-flex-order: 2;
A
Abdullah Almsaeed 已提交
1446 1447
    order: 2;
  }
A
Abdullah Almsaeed 已提交
1448
  .order-xl-3 {
1449
    -ms-flex-order: 3;
A
Abdullah Almsaeed 已提交
1450 1451
    order: 3;
  }
A
Abdullah Almsaeed 已提交
1452
  .order-xl-4 {
1453
    -ms-flex-order: 4;
A
Abdullah Almsaeed 已提交
1454 1455
    order: 4;
  }
A
Abdullah Almsaeed 已提交
1456
  .order-xl-5 {
1457
    -ms-flex-order: 5;
A
Abdullah Almsaeed 已提交
1458 1459
    order: 5;
  }
A
Abdullah Almsaeed 已提交
1460
  .order-xl-6 {
1461
    -ms-flex-order: 6;
A
Abdullah Almsaeed 已提交
1462 1463
    order: 6;
  }
A
Abdullah Almsaeed 已提交
1464
  .order-xl-7 {
1465
    -ms-flex-order: 7;
A
Abdullah Almsaeed 已提交
1466 1467
    order: 7;
  }
A
Abdullah Almsaeed 已提交
1468
  .order-xl-8 {
1469
    -ms-flex-order: 8;
A
Abdullah Almsaeed 已提交
1470 1471
    order: 8;
  }
A
Abdullah Almsaeed 已提交
1472
  .order-xl-9 {
1473
    -ms-flex-order: 9;
A
Abdullah Almsaeed 已提交
1474 1475
    order: 9;
  }
A
Abdullah Almsaeed 已提交
1476
  .order-xl-10 {
1477
    -ms-flex-order: 10;
A
Abdullah Almsaeed 已提交
1478 1479
    order: 10;
  }
A
Abdullah Almsaeed 已提交
1480
  .order-xl-11 {
1481
    -ms-flex-order: 11;
A
Abdullah Almsaeed 已提交
1482 1483
    order: 11;
  }
A
Abdullah Almsaeed 已提交
1484
  .order-xl-12 {
1485
    -ms-flex-order: 12;
A
Abdullah Almsaeed 已提交
1486 1487
    order: 12;
  }
A
Abdullah Almsaeed 已提交
1488
  .offset-xl-0 {
A
Abdullah Almsaeed 已提交
1489 1490
    margin-left: 0;
  }
A
Abdullah Almsaeed 已提交
1491
  .offset-xl-1 {
A
Abdullah Almsaeed 已提交
1492 1493
    margin-left: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1494
  .offset-xl-2 {
A
Abdullah Almsaeed 已提交
1495 1496
    margin-left: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1497
  .offset-xl-3 {
A
Abdullah Almsaeed 已提交
1498 1499
    margin-left: 25%;
  }
A
Abdullah Almsaeed 已提交
1500
  .offset-xl-4 {
A
Abdullah Almsaeed 已提交
1501 1502
    margin-left: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1503
  .offset-xl-5 {
A
Abdullah Almsaeed 已提交
1504 1505
    margin-left: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1506
  .offset-xl-6 {
A
Abdullah Almsaeed 已提交
1507 1508
    margin-left: 50%;
  }
A
Abdullah Almsaeed 已提交
1509
  .offset-xl-7 {
A
Abdullah Almsaeed 已提交
1510 1511
    margin-left: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1512
  .offset-xl-8 {
A
Abdullah Almsaeed 已提交
1513 1514
    margin-left: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1515
  .offset-xl-9 {
A
Abdullah Almsaeed 已提交
1516 1517
    margin-left: 75%;
  }
A
Abdullah Almsaeed 已提交
1518
  .offset-xl-10 {
A
Abdullah Almsaeed 已提交
1519 1520
    margin-left: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1521
  .offset-xl-11 {
A
Abdullah Almsaeed 已提交
1522 1523 1524
    margin-left: 91.666667%;
  }
}
A
Abdullah Almsaeed 已提交
1525 1526 1527 1528

.table {
  width: 100%;
  margin-bottom: 1rem;
1529
  color: #212529;
A
Abdullah Almsaeed 已提交
1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548
  background-color: transparent;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

A
Abdullah Almsaeed 已提交
1549 1550
.table-sm th,
.table-sm td {
A
Abdullah Almsaeed 已提交
1551 1552
  padding: 0.3rem;
}
A
Abdullah Almsaeed 已提交
1553 1554

.table-bordered {
A
Abdullah Almsaeed 已提交
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}
A
Abdullah Almsaeed 已提交
1567

A
Abdullah Almsaeed 已提交
1568 1569 1570 1571 1572 1573 1574
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

A
Abdullah Almsaeed 已提交
1575
.table-striped tbody tr:nth-of-type(odd) {
A
Abdullah Almsaeed 已提交
1576 1577
  background-color: rgba(0, 0, 0, 0.05);
}
A
Abdullah Almsaeed 已提交
1578 1579

.table-hover tbody tr:hover {
1580
  color: #212529;
A
Abdullah Almsaeed 已提交
1581 1582
  background-color: rgba(0, 0, 0, 0.075);
}
A
Abdullah Almsaeed 已提交
1583 1584 1585 1586

.table-primary,
.table-primary > th,
.table-primary > td {
A
Abdullah Almsaeed 已提交
1587 1588
  background-color: #b8daff;
}
A
Abdullah Almsaeed 已提交
1589

1590 1591 1592 1593 1594 1595 1596
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

A
Abdullah Almsaeed 已提交
1597
.table-hover .table-primary:hover {
A
Abdullah Almsaeed 已提交
1598 1599 1600 1601 1602 1603 1604
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}
A
Abdullah Almsaeed 已提交
1605 1606 1607 1608

.table-secondary,
.table-secondary > th,
.table-secondary > td {
A
Abdullah Almsaeed 已提交
1609 1610
  background-color: #d6d8db;
}
A
Abdullah Almsaeed 已提交
1611

1612 1613 1614 1615 1616 1617 1618
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

A
Abdullah Almsaeed 已提交
1619
.table-hover .table-secondary:hover {
A
Abdullah Almsaeed 已提交
1620 1621 1622 1623 1624 1625 1626
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}
A
Abdullah Almsaeed 已提交
1627 1628 1629 1630

.table-success,
.table-success > th,
.table-success > td {
A
Abdullah Almsaeed 已提交
1631 1632
  background-color: #c3e6cb;
}
A
Abdullah Almsaeed 已提交
1633

1634 1635 1636 1637 1638 1639 1640
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

A
Abdullah Almsaeed 已提交
1641
.table-hover .table-success:hover {
A
Abdullah Almsaeed 已提交
1642 1643 1644 1645 1646 1647 1648
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}
A
Abdullah Almsaeed 已提交
1649 1650 1651 1652

.table-info,
.table-info > th,
.table-info > td {
A
Abdullah Almsaeed 已提交
1653 1654
  background-color: #bee5eb;
}
A
Abdullah Almsaeed 已提交
1655

1656 1657 1658 1659 1660 1661 1662
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

A
Abdullah Almsaeed 已提交
1663
.table-hover .table-info:hover {
A
Abdullah Almsaeed 已提交
1664 1665 1666 1667 1668 1669 1670
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}
A
Abdullah Almsaeed 已提交
1671 1672 1673 1674

.table-warning,
.table-warning > th,
.table-warning > td {
A
Abdullah Almsaeed 已提交
1675 1676
  background-color: #ffeeba;
}
A
Abdullah Almsaeed 已提交
1677

1678 1679 1680 1681 1682 1683 1684
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

A
Abdullah Almsaeed 已提交
1685
.table-hover .table-warning:hover {
A
Abdullah Almsaeed 已提交
1686 1687 1688 1689 1690 1691 1692
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}
A
Abdullah Almsaeed 已提交
1693 1694 1695 1696

.table-danger,
.table-danger > th,
.table-danger > td {
A
Abdullah Almsaeed 已提交
1697 1698
  background-color: #f5c6cb;
}
A
Abdullah Almsaeed 已提交
1699

1700 1701 1702 1703 1704 1705 1706
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

A
Abdullah Almsaeed 已提交
1707
.table-hover .table-danger:hover {
A
Abdullah Almsaeed 已提交
1708 1709 1710 1711 1712 1713 1714
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}
A
Abdullah Almsaeed 已提交
1715 1716 1717 1718

.table-light,
.table-light > th,
.table-light > td {
A
Abdullah Almsaeed 已提交
1719 1720
  background-color: #fdfdfe;
}
A
Abdullah Almsaeed 已提交
1721

1722 1723 1724 1725 1726 1727 1728
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

A
Abdullah Almsaeed 已提交
1729
.table-hover .table-light:hover {
A
Abdullah Almsaeed 已提交
1730 1731 1732 1733 1734 1735 1736
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}
A
Abdullah Almsaeed 已提交
1737 1738 1739 1740

.table-dark,
.table-dark > th,
.table-dark > td {
A
Abdullah Almsaeed 已提交
1741 1742
  background-color: #c6c8ca;
}
A
Abdullah Almsaeed 已提交
1743

1744 1745 1746 1747 1748 1749 1750
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

A
Abdullah Almsaeed 已提交
1751
.table-hover .table-dark:hover {
A
Abdullah Almsaeed 已提交
1752 1753 1754 1755 1756 1757 1758
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}
A
Abdullah Almsaeed 已提交
1759

A
Abdullah Almsaeed 已提交
1760 1761 1762
.table-active,
.table-active > th,
.table-active > td {
A
Abdullah Almsaeed 已提交
1763 1764
  background-color: rgba(0, 0, 0, 0.075);
}
A
Abdullah Almsaeed 已提交
1765

A
Abdullah Almsaeed 已提交
1766
.table-hover .table-active:hover {
A
Abdullah Almsaeed 已提交
1767 1768 1769 1770 1771 1772 1773
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}
A
Abdullah Almsaeed 已提交
1774 1775

.table .thead-dark th {
A
Abdullah Almsaeed 已提交
1776
  color: #ffffff;
A
Abdullah Almsaeed 已提交
1777
  background-color: #212529;
A
Abdullah Almsaeed 已提交
1778 1779
  border-color: #32383e;
}
A
Abdullah Almsaeed 已提交
1780 1781 1782 1783

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
A
Abdullah Almsaeed 已提交
1784 1785
  border-color: #dee2e6;
}
A
Abdullah Almsaeed 已提交
1786 1787

.table-dark {
A
Abdullah Almsaeed 已提交
1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
  color: #ffffff;
  background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
1807
  color: #ffffff;
A
Abdullah Almsaeed 已提交
1808 1809 1810 1811
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
A
Abdullah Almsaeed 已提交
1812 1813 1814 1815 1816
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1817 1818 1819 1820 1821
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
A
Abdullah Almsaeed 已提交
1822

A
Abdullah Almsaeed 已提交
1823
@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
1824 1825 1826 1827 1828
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1829 1830 1831 1832 1833
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
A
Abdullah Almsaeed 已提交
1834

A
Abdullah Almsaeed 已提交
1835
@media (max-width: 991.98px) {
A
Abdullah Almsaeed 已提交
1836 1837 1838 1839 1840
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1841 1842 1843 1844 1845
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
A
Abdullah Almsaeed 已提交
1846

A
Abdullah Almsaeed 已提交
1847
@media (max-width: 1199.98px) {
A
Abdullah Almsaeed 已提交
1848 1849 1850 1851 1852
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1853 1854 1855 1856 1857
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
A
Abdullah Almsaeed 已提交
1858 1859 1860 1861 1862

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
A
Abdullah Almsaeed 已提交
1863
  -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1864 1865 1866 1867 1868
}

.table-responsive > .table-bordered {
  border: 0;
}
A
Abdullah Almsaeed 已提交
1869 1870 1871 1872

.form-control {
  display: block;
  width: 100%;
1873
  height: calc(2.25rem + 2px);
A
Abdullah Almsaeed 已提交
1874
  padding: 0.375rem 0.75rem;
A
Abdullah Almsaeed 已提交
1875
  font-size: 1rem;
1876
  font-weight: 400;
A
Abdullah Almsaeed 已提交
1877 1878
  line-height: 1.5;
  color: #495057;
A
Abdullah Almsaeed 已提交
1879
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
1880
  background-clip: padding-box;
A
Abdullah Almsaeed 已提交
1881
  border: 1px solid #ced4da;
A
Abdullah Almsaeed 已提交
1882
  border-radius: 0.25rem;
1883
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
A
Abdullah Almsaeed 已提交
1884 1885 1886
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

1887
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
1888 1889 1890 1891 1892
  .form-control {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
1893 1894 1895 1896 1897 1898 1899 1900 1901 1902
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: #80bdff;
  outline: 0;
1903
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
A
Abdullah Almsaeed 已提交
1904 1905
}

R
REJack 已提交
1906 1907 1908 1909 1910
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

1911 1912 1913 1914 1915
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

R
REJack 已提交
1916 1917 1918 1919 1920 1921 1922 1923 1924 1925
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

A
Abdullah Almsaeed 已提交
1926 1927 1928 1929 1930 1931 1932 1933 1934
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
A
Abdullah Almsaeed 已提交
1935 1936

select.form-control:focus::-ms-value {
A
Abdullah Almsaeed 已提交
1937
  color: #495057;
A
Abdullah Almsaeed 已提交
1938 1939
  background-color: #ffffff;
}
A
Abdullah Almsaeed 已提交
1940 1941 1942

.form-control-file,
.form-control-range {
A
Abdullah Almsaeed 已提交
1943 1944 1945
  display: block;
  width: 100%;
}
A
Abdullah Almsaeed 已提交
1946 1947

.col-form-label {
A
Abdullah Almsaeed 已提交
1948 1949
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
A
Abdullah Almsaeed 已提交
1950
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
1951 1952 1953
  font-size: inherit;
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
1954 1955

.col-form-label-lg {
A
Abdullah Almsaeed 已提交
1956 1957
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
A
Abdullah Almsaeed 已提交
1958
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
1959 1960
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
1961 1962

.col-form-label-sm {
A
Abdullah Almsaeed 已提交
1963 1964
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
A
Abdullah Almsaeed 已提交
1965
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
1966 1967
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
1968

A
Abdullah Almsaeed 已提交
1969
.form-control-plaintext {
A
Abdullah Almsaeed 已提交
1970 1971
  display: block;
  width: 100%;
A
Abdullah Almsaeed 已提交
1972 1973 1974 1975
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
1976
  color: #212529;
A
Abdullah Almsaeed 已提交
1977
  background-color: transparent;
A
Abdullah Almsaeed 已提交
1978
  border: solid transparent;
A
Abdullah Almsaeed 已提交
1979 1980 1981
  border-width: 1px 0;
}

1982
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
A
Abdullah Almsaeed 已提交
1983 1984 1985
  padding-right: 0;
  padding-left: 0;
}
A
Abdullah Almsaeed 已提交
1986

1987 1988
.form-control-sm {
  height: calc(1.8125rem + 2px);
A
Abdullah Almsaeed 已提交
1989 1990
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
1991
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
1992 1993
  border-radius: 0.2rem;
}
A
Abdullah Almsaeed 已提交
1994

1995 1996
.form-control-lg {
  height: calc(2.875rem + 2px);
A
Abdullah Almsaeed 已提交
1997
  padding: 0.5rem 1rem;
A
Abdullah Almsaeed 已提交
1998
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
1999
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
2000 2001
  border-radius: 0.3rem;
}
A
Abdullah Almsaeed 已提交
2002

2003 2004 2005 2006 2007 2008
select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
A
Abdullah Almsaeed 已提交
2009
}
A
Abdullah Almsaeed 已提交
2010 2011

.form-group {
A
Abdullah Almsaeed 已提交
2012 2013
  margin-bottom: 1rem;
}
A
Abdullah Almsaeed 已提交
2014 2015 2016

.form-text {
  display: block;
A
Abdullah Almsaeed 已提交
2017 2018
  margin-top: 0.25rem;
}
A
Abdullah Almsaeed 已提交
2019 2020

.form-row {
2021
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
2022
  display: flex;
2023
  -ms-flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
2024 2025
  flex-wrap: wrap;
  margin-right: -5px;
A
Abdullah Almsaeed 已提交
2026 2027 2028 2029 2030 2031 2032 2033
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
A
Abdullah Almsaeed 已提交
2034 2035 2036 2037 2038

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
A
Abdullah Almsaeed 已提交
2039
}
A
Abdullah Almsaeed 已提交
2040 2041 2042

.form-check-input {
  position: absolute;
A
Abdullah Almsaeed 已提交
2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
2054 2055

.form-check-inline {
2056
  display: -ms-inline-flexbox;
A
Abdullah Almsaeed 已提交
2057
  display: inline-flex;
2058
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}
A
Abdullah Almsaeed 已提交
2070

A
Abdullah Almsaeed 已提交
2071 2072
.valid-feedback {
  display: none;
A
Abdullah Almsaeed 已提交
2073 2074 2075 2076 2077
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}
A
Abdullah Almsaeed 已提交
2078

A
Abdullah Almsaeed 已提交
2079 2080 2081 2082 2083
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
A
Abdullah Almsaeed 已提交
2084
  max-width: 100%;
2085
  padding: 0.25rem 0.5rem;
A
Abdullah Almsaeed 已提交
2086
  margin-top: .1rem;
2087 2088
  font-size: 0.875rem;
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
2089
  color: #ffffff;
2090 2091
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
2092
}
A
Abdullah Almsaeed 已提交
2093

2094
.was-validated .form-control:valid, .form-control.is-valid {
A
Abdullah Almsaeed 已提交
2095
  border-color: #28a745;
2096 2097 2098 2099 2100
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
A
Abdullah Almsaeed 已提交
2101 2102
}

2103
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
A
Abdullah Almsaeed 已提交
2104 2105 2106 2107 2108 2109
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131
.form-control.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: 2.25rem;
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #ffffff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
A
Abdullah Almsaeed 已提交
2132 2133 2134 2135
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

2136 2137 2138 2139 2140 2141
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

A
Abdullah Almsaeed 已提交
2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
2157
  border-color: #28a745;
A
Abdullah Almsaeed 已提交
2158 2159 2160 2161 2162 2163 2164 2165 2166
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
2167
  border-color: #34ce57;
R
REJack 已提交
2168
  background-color: #34ce57;
A
Abdullah Almsaeed 已提交
2169 2170 2171
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
2172
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
A
Abdullah Almsaeed 已提交
2173 2174
}

2175
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
A
Abdullah Almsaeed 已提交
2176 2177 2178
  border-color: #28a745;
}

2179 2180
.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
A
Abdullah Almsaeed 已提交
2181 2182 2183 2184 2185 2186 2187 2188 2189
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
2190
  border-color: #28a745;
A
Abdullah Almsaeed 已提交
2191 2192
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
A
Abdullah Almsaeed 已提交
2193 2194 2195

.invalid-feedback {
  display: none;
A
Abdullah Almsaeed 已提交
2196 2197 2198 2199 2200
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
A
Abdullah Almsaeed 已提交
2201

A
Abdullah Almsaeed 已提交
2202 2203 2204 2205 2206
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
A
Abdullah Almsaeed 已提交
2207
  max-width: 100%;
2208
  padding: 0.25rem 0.5rem;
A
Abdullah Almsaeed 已提交
2209
  margin-top: .1rem;
2210 2211
  font-size: 0.875rem;
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
2212
  color: #ffffff;
2213 2214
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
2215
}
A
Abdullah Almsaeed 已提交
2216

2217
.was-validated .form-control:invalid, .form-control.is-invalid {
A
Abdullah Almsaeed 已提交
2218
  border-color: #dc3545;
2219 2220 2221 2222 2223
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
A
Abdullah Almsaeed 已提交
2224
}
A
Abdullah Almsaeed 已提交
2225

2226
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
A
Abdullah Almsaeed 已提交
2227 2228 2229 2230 2231 2232
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254
.form-control.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: 2.25rem;
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #ffffff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
A
Abdullah Almsaeed 已提交
2255 2256 2257
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}
A
Abdullah Almsaeed 已提交
2258

2259 2260 2261 2262 2263 2264
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

A
Abdullah Almsaeed 已提交
2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
2280
  border-color: #dc3545;
A
Abdullah Almsaeed 已提交
2281 2282 2283 2284 2285 2286 2287 2288 2289
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
2290
  border-color: #e4606d;
R
REJack 已提交
2291
  background-color: #e4606d;
A
Abdullah Almsaeed 已提交
2292 2293 2294
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
2295
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
A
Abdullah Almsaeed 已提交
2296 2297
}

2298
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
A
Abdullah Almsaeed 已提交
2299 2300 2301
  border-color: #dc3545;
}

2302 2303
.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
A
Abdullah Almsaeed 已提交
2304 2305 2306 2307 2308 2309 2310 2311 2312
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
2313
  border-color: #dc3545;
A
Abdullah Almsaeed 已提交
2314 2315 2316 2317
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
2318
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
2319
  display: flex;
2320
  -ms-flex-flow: row wrap;
A
Abdullah Almsaeed 已提交
2321
  flex-flow: row wrap;
2322
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
2323 2324 2325 2326 2327 2328 2329 2330 2331
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
2332
    display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
2333
    display: flex;
2334
    -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
2335
    align-items: center;
2336
    -ms-flex-pack: center;
A
Abdullah Almsaeed 已提交
2337 2338 2339 2340
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
2341
    display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
2342
    display: flex;
2343
    -ms-flex: 0 0 auto;
A
Abdullah Almsaeed 已提交
2344
    flex: 0 0 auto;
2345
    -ms-flex-flow: row wrap;
A
Abdullah Almsaeed 已提交
2346
    flex-flow: row wrap;
2347
    -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
A
Abdullah Almsaeed 已提交
2359 2360
  .form-inline .input-group,
  .form-inline .custom-select {
A
Abdullah Almsaeed 已提交
2361 2362 2363
    width: auto;
  }
  .form-inline .form-check {
2364
    display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
2365
    display: flex;
2366
    -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
2367
    align-items: center;
2368
    -ms-flex-pack: center;
A
Abdullah Almsaeed 已提交
2369 2370 2371 2372 2373 2374
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
2375
    -ms-flex-negative: 0;
2376
    flex-shrink: 0;
A
Abdullah Almsaeed 已提交
2377 2378 2379 2380 2381
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
2382
    -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
2383
    align-items: center;
2384
    -ms-flex-pack: center;
A
Abdullah Almsaeed 已提交
2385 2386 2387 2388 2389 2390 2391 2392 2393 2394
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
2395
  color: #212529;
A
Abdullah Almsaeed 已提交
2396 2397
  text-align: center;
  vertical-align: middle;
R
REJack 已提交
2398 2399 2400
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
A
Abdullah Almsaeed 已提交
2401
  user-select: none;
2402
  background-color: transparent;
A
Abdullah Almsaeed 已提交
2403
  border: 1px solid transparent;
A
Abdullah Almsaeed 已提交
2404
  padding: 0.375rem 0.75rem;
A
Abdullah Almsaeed 已提交
2405
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
2406
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
2407
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
2408 2409 2410
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

2411
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
2412 2413 2414 2415 2416
  .btn {
    transition: none;
  }
}

2417 2418
.btn:hover {
  color: #212529;
A
Abdullah Almsaeed 已提交
2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
  box-shadow: none;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn:not(:disabled):not(.disabled):active:focus, .btn:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25), inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
A
Abdullah Almsaeed 已提交
2439 2440

a.btn.disabled,
A
Abdullah Almsaeed 已提交
2441 2442 2443
fieldset:disabled a.btn {
  pointer-events: none;
}
A
Abdullah Almsaeed 已提交
2444 2445

.btn-primary {
A
Abdullah Almsaeed 已提交
2446
  color: #ffffff;
R
REJack 已提交
2447
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
2448 2449 2450 2451 2452 2453
  border-color: #007bff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-primary:hover {
  color: #ffffff;
R
REJack 已提交
2454
  background-color: #0069d9;
A
Abdullah Almsaeed 已提交
2455 2456 2457 2458
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
2459
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
A
Abdullah Almsaeed 已提交
2460 2461 2462 2463
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #ffffff;
A
Abdullah Almsaeed 已提交
2464
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
2477
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
A
Abdullah Almsaeed 已提交
2478
}
A
Abdullah Almsaeed 已提交
2479 2480

.btn-secondary {
A
Abdullah Almsaeed 已提交
2481
  color: #ffffff;
R
REJack 已提交
2482
  background-color: #6c757d;
A
Abdullah Almsaeed 已提交
2483 2484 2485 2486 2487 2488
  border-color: #6c757d;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-secondary:hover {
  color: #ffffff;
R
REJack 已提交
2489
  background-color: #5a6268;
A
Abdullah Almsaeed 已提交
2490 2491 2492 2493
  border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
2494
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
A
Abdullah Almsaeed 已提交
2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
2512
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
A
Abdullah Almsaeed 已提交
2513
}
A
Abdullah Almsaeed 已提交
2514 2515

.btn-success {
A
Abdullah Almsaeed 已提交
2516
  color: #ffffff;
R
REJack 已提交
2517
  background-color: #28a745;
A
Abdullah Almsaeed 已提交
2518 2519 2520 2521 2522 2523
  border-color: #28a745;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-success:hover {
  color: #ffffff;
R
REJack 已提交
2524
  background-color: #218838;
A
Abdullah Almsaeed 已提交
2525 2526 2527 2528
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
2529
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
A
Abdullah Almsaeed 已提交
2530 2531 2532 2533
}

.btn-success.disabled, .btn-success:disabled {
  color: #ffffff;
A
Abdullah Almsaeed 已提交
2534
  background-color: #28a745;
A
Abdullah Almsaeed 已提交
2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
2547
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
A
Abdullah Almsaeed 已提交
2548
}
A
Abdullah Almsaeed 已提交
2549

A
Abdullah Almsaeed 已提交
2550
.btn-info {
A
Abdullah Almsaeed 已提交
2551
  color: #ffffff;
R
REJack 已提交
2552
  background-color: #17a2b8;
A
Abdullah Almsaeed 已提交
2553 2554 2555 2556 2557 2558
  border-color: #17a2b8;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-info:hover {
  color: #ffffff;
R
REJack 已提交
2559
  background-color: #138496;
A
Abdullah Almsaeed 已提交
2560 2561 2562 2563
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
2564
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
A
Abdullah Almsaeed 已提交
2565 2566 2567 2568
}

.btn-info.disabled, .btn-info:disabled {
  color: #ffffff;
A
Abdullah Almsaeed 已提交
2569
  background-color: #17a2b8;
A
Abdullah Almsaeed 已提交
2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #ffffff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
2582
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
A
Abdullah Almsaeed 已提交
2583
}
A
Abdullah Almsaeed 已提交
2584 2585

.btn-warning {
A
Abdullah Almsaeed 已提交
2586
  color: #1F2D3D;
R
REJack 已提交
2587
  background-color: #ffc107;
A
Abdullah Almsaeed 已提交
2588 2589 2590 2591 2592 2593
  border-color: #ffc107;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-warning:hover {
  color: #1F2D3D;
R
REJack 已提交
2594
  background-color: #e0a800;
A
Abdullah Almsaeed 已提交
2595 2596 2597 2598
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
2599
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(221, 171, 15, 0.5);
A
Abdullah Almsaeed 已提交
2600 2601 2602 2603
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #1F2D3D;
A
Abdullah Almsaeed 已提交
2604
  background-color: #ffc107;
A
Abdullah Almsaeed 已提交
2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #1F2D3D;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
2617
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(221, 171, 15, 0.5);
A
Abdullah Almsaeed 已提交
2618
}
A
Abdullah Almsaeed 已提交
2619 2620

.btn-danger {
A
Abdullah Almsaeed 已提交
2621
  color: #ffffff;
R
REJack 已提交
2622
  background-color: #dc3545;
A
Abdullah Almsaeed 已提交
2623 2624 2625 2626 2627 2628
  border-color: #dc3545;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-danger:hover {
  color: #ffffff;
R
REJack 已提交
2629
  background-color: #c82333;
A
Abdullah Almsaeed 已提交
2630 2631 2632 2633
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
2634
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
A
Abdullah Almsaeed 已提交
2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
2652
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
A
Abdullah Almsaeed 已提交
2653
}
A
Abdullah Almsaeed 已提交
2654

A
Abdullah Almsaeed 已提交
2655
.btn-light {
A
Abdullah Almsaeed 已提交
2656
  color: #1F2D3D;
R
REJack 已提交
2657
  background-color: #f8f9fa;
A
Abdullah Almsaeed 已提交
2658 2659 2660 2661 2662 2663
  border-color: #f8f9fa;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-light:hover {
  color: #1F2D3D;
R
REJack 已提交
2664
  background-color: #e2e6ea;
A
Abdullah Almsaeed 已提交
2665 2666 2667 2668
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
2669
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(215, 218, 222, 0.5);
A
Abdullah Almsaeed 已提交
2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686
}

.btn-light.disabled, .btn-light:disabled {
  color: #1F2D3D;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #1F2D3D;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
2687
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(215, 218, 222, 0.5);
A
Abdullah Almsaeed 已提交
2688
}
A
Abdullah Almsaeed 已提交
2689 2690

.btn-dark {
A
Abdullah Almsaeed 已提交
2691
  color: #ffffff;
R
REJack 已提交
2692
  background-color: #343a40;
A
Abdullah Almsaeed 已提交
2693 2694 2695 2696 2697 2698
  border-color: #343a40;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-dark:hover {
  color: #ffffff;
R
REJack 已提交
2699
  background-color: #23272b;
A
Abdullah Almsaeed 已提交
2700 2701 2702 2703
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
2704
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
A
Abdullah Almsaeed 已提交
2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
2722
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
A
Abdullah Almsaeed 已提交
2723
}
A
Abdullah Almsaeed 已提交
2724 2725

.btn-outline-primary {
A
Abdullah Almsaeed 已提交
2726
  color: #007bff;
A
Abdullah Almsaeed 已提交
2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
A
Abdullah Almsaeed 已提交
2756 2757

.btn-outline-secondary {
A
Abdullah Almsaeed 已提交
2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
A
Abdullah Almsaeed 已提交
2788 2789

.btn-outline-success {
A
Abdullah Almsaeed 已提交
2790
  color: #28a745;
A
Abdullah Almsaeed 已提交
2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
A
Abdullah Almsaeed 已提交
2820

A
Abdullah Almsaeed 已提交
2821 2822
.btn-outline-info {
  color: #17a2b8;
A
Abdullah Almsaeed 已提交
2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
A
Abdullah Almsaeed 已提交
2852 2853

.btn-outline-warning {
A
Abdullah Almsaeed 已提交
2854
  color: #ffc107;
A
Abdullah Almsaeed 已提交
2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #1F2D3D;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #1F2D3D;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
A
Abdullah Almsaeed 已提交
2884 2885

.btn-outline-danger {
A
Abdullah Almsaeed 已提交
2886
  color: #dc3545;
A
Abdullah Almsaeed 已提交
2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
A
Abdullah Almsaeed 已提交
2916

A
Abdullah Almsaeed 已提交
2917 2918
.btn-outline-light {
  color: #f8f9fa;
A
Abdullah Almsaeed 已提交
2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #1F2D3D;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #1F2D3D;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
A
Abdullah Almsaeed 已提交
2948 2949 2950

.btn-outline-dark {
  color: #343a40;
A
Abdullah Almsaeed 已提交
2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
A
Abdullah Almsaeed 已提交
2980

A
Abdullah Almsaeed 已提交
2981 2982 2983
.btn-link {
  font-weight: 400;
  color: #007bff;
2984
  text-decoration: none;
A
Abdullah Almsaeed 已提交
2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: none;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: none;
  box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
A
Abdullah Almsaeed 已提交
2999
  pointer-events: none;
A
Abdullah Almsaeed 已提交
3000
}
A
Abdullah Almsaeed 已提交
3001 3002

.btn-lg, .btn-group-lg > .btn {
A
Abdullah Almsaeed 已提交
3003
  padding: 0.5rem 1rem;
A
Abdullah Almsaeed 已提交
3004
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
3005
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
3006 3007
  border-radius: 0.3rem;
}
A
Abdullah Almsaeed 已提交
3008 3009 3010 3011

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
3012
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
3013 3014
  border-radius: 0.2rem;
}
A
Abdullah Almsaeed 已提交
3015 3016 3017

.btn-block {
  display: block;
A
Abdullah Almsaeed 已提交
3018 3019
  width: 100%;
}
A
Abdullah Almsaeed 已提交
3020 3021

.btn-block + .btn-block {
A
Abdullah Almsaeed 已提交
3022 3023
  margin-top: 0.5rem;
}
A
Abdullah Almsaeed 已提交
3024 3025 3026 3027

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
A
Abdullah Almsaeed 已提交
3028 3029
  width: 100%;
}
A
Abdullah Almsaeed 已提交
3030 3031

.fade {
A
Abdullah Almsaeed 已提交
3032 3033 3034
  transition: opacity 0.15s linear;
}

3035
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
3036 3037 3038
  .fade {
    transition: none;
  }
A
Abdullah Almsaeed 已提交
3039
}
A
Abdullah Almsaeed 已提交
3040

A
Abdullah Almsaeed 已提交
3041 3042
.fade:not(.show) {
  opacity: 0;
A
Abdullah Almsaeed 已提交
3043
}
A
Abdullah Almsaeed 已提交
3044

A
Abdullah Almsaeed 已提交
3045 3046
.collapse:not(.show) {
  display: none;
A
Abdullah Almsaeed 已提交
3047
}
A
Abdullah Almsaeed 已提交
3048 3049 3050 3051 3052

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
A
Abdullah Almsaeed 已提交
3053 3054
  transition: height 0.35s ease;
}
A
Abdullah Almsaeed 已提交
3055

3056
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
3057 3058 3059 3060 3061
  .collapsing {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
3062
.dropup,
A
Abdullah Almsaeed 已提交
3063 3064 3065
.dropright,
.dropdown,
.dropleft {
A
Abdullah Almsaeed 已提交
3066 3067
  position: relative;
}
A
Abdullah Almsaeed 已提交
3068

3069 3070 3071 3072
.dropdown-toggle {
  white-space: nowrap;
}

A
Abdullah Almsaeed 已提交
3073 3074
.dropdown-toggle::after {
  display: inline-block;
A
Abdullah Almsaeed 已提交
3075 3076
  margin-left: 0.255em;
  vertical-align: 0.255em;
A
Abdullah Almsaeed 已提交
3077 3078 3079
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
A
Abdullah Almsaeed 已提交
3080
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
3081 3082
  border-left: 0.3em solid transparent;
}
A
Abdullah Almsaeed 已提交
3083

A
Abdullah Almsaeed 已提交
3084
.dropdown-toggle:empty::after {
A
Abdullah Almsaeed 已提交
3085 3086
  margin-left: 0;
}
A
Abdullah Almsaeed 已提交
3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
3099
  color: #212529;
A
Abdullah Almsaeed 已提交
3100 3101
  text-align: left;
  list-style: none;
A
Abdullah Almsaeed 已提交
3102
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
3103 3104
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
A
Abdullah Almsaeed 已提交
3105 3106 3107
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}
A
Abdullah Almsaeed 已提交
3108

3109 3110 3111 3112 3113
.dropdown-menu-left {
  right: auto;
  left: 0;
}

A
Abdullah Almsaeed 已提交
3114 3115 3116 3117 3118
.dropdown-menu-right {
  right: 0;
  left: auto;
}

3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162
@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

A
Abdullah Almsaeed 已提交
3163
.dropup .dropdown-menu {
A
Abdullah Almsaeed 已提交
3164 3165
  top: auto;
  bottom: 100%;
A
Abdullah Almsaeed 已提交
3166
  margin-top: 0;
A
Abdullah Almsaeed 已提交
3167 3168
  margin-bottom: 0.125rem;
}
A
Abdullah Almsaeed 已提交
3169 3170 3171 3172 3173 3174 3175 3176 3177

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
A
Abdullah Almsaeed 已提交
3178 3179
  border-left: 0.3em solid transparent;
}
A
Abdullah Almsaeed 已提交
3180 3181

.dropup .dropdown-toggle:empty::after {
A
Abdullah Almsaeed 已提交
3182 3183 3184 3185
  margin-left: 0;
}

.dropright .dropdown-menu {
A
Abdullah Almsaeed 已提交
3186 3187 3188
  top: 0;
  right: auto;
  left: 100%;
A
Abdullah Almsaeed 已提交
3189 3190 3191 3192 3193 3194 3195 3196 3197 3198
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
A
Abdullah Almsaeed 已提交
3199
  border-right: 0;
A
Abdullah Almsaeed 已提交
3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
A
Abdullah Almsaeed 已提交
3213 3214 3215
  top: 0;
  right: 100%;
  left: auto;
A
Abdullah Almsaeed 已提交
3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}
A
Abdullah Almsaeed 已提交
3248

A
Abdullah Almsaeed 已提交
3249 3250 3251 3252 3253
.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

A
Abdullah Almsaeed 已提交
3254
.dropdown-divider {
A
Abdullah Almsaeed 已提交
3255
  height: 0;
A
Abdullah Almsaeed 已提交
3256 3257
  margin: 0.5rem 0;
  overflow: hidden;
A
Abdullah Almsaeed 已提交
3258 3259
  border-top: 1px solid #e9ecef;
}
A
Abdullah Almsaeed 已提交
3260 3261 3262 3263

.dropdown-item {
  display: block;
  width: 100%;
A
Abdullah Almsaeed 已提交
3264
  padding: 0.25rem 1rem;
A
Abdullah Almsaeed 已提交
3265
  clear: both;
A
Abdullah Almsaeed 已提交
3266 3267
  font-weight: 400;
  color: #212529;
A
Abdullah Almsaeed 已提交
3268 3269
  text-align: inherit;
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
3270 3271 3272
  background-color: transparent;
  border: 0;
}
A
Abdullah Almsaeed 已提交
3273

A
Abdullah Almsaeed 已提交
3274 3275 3276
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
R
REJack 已提交
3277
  background-color: #f8f9fa;
A
Abdullah Almsaeed 已提交
3278 3279 3280 3281 3282
}

.dropdown-item.active, .dropdown-item:active {
  color: #ffffff;
  text-decoration: none;
R
REJack 已提交
3283
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3284 3285 3286 3287
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
3288
  pointer-events: none;
A
Abdullah Almsaeed 已提交
3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
A
Abdullah Almsaeed 已提交
3304

A
Abdullah Almsaeed 已提交
3305 3306 3307 3308 3309 3310
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

A
Abdullah Almsaeed 已提交
3311 3312 3313
.btn-group,
.btn-group-vertical {
  position: relative;
3314
  display: -ms-inline-flexbox;
A
Abdullah Almsaeed 已提交
3315
  display: inline-flex;
A
Abdullah Almsaeed 已提交
3316 3317 3318 3319 3320 3321
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
3322
  -ms-flex: 1 1 auto;
3323
  flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

A
Abdullah Almsaeed 已提交
3338
.btn-toolbar {
3339
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
3340
  display: flex;
3341
  -ms-flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
3342
  flex-wrap: wrap;
3343
  -ms-flex-pack: start;
A
Abdullah Almsaeed 已提交
3344 3345
  justify-content: flex-start;
}
A
Abdullah Almsaeed 已提交
3346

A
Abdullah Almsaeed 已提交
3347 3348 3349
.btn-toolbar .input-group {
  width: auto;
}
A
Abdullah Almsaeed 已提交
3350

3351 3352 3353
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
A
Abdullah Almsaeed 已提交
3354
}
A
Abdullah Almsaeed 已提交
3355

A
Abdullah Almsaeed 已提交
3356 3357
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
A
Abdullah Almsaeed 已提交
3358
  border-top-right-radius: 0;
A
Abdullah Almsaeed 已提交
3359 3360
  border-bottom-right-radius: 0;
}
A
Abdullah Almsaeed 已提交
3361

A
Abdullah Almsaeed 已提交
3362 3363
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
A
Abdullah Almsaeed 已提交
3364
  border-top-left-radius: 0;
A
Abdullah Almsaeed 已提交
3365 3366
  border-bottom-left-radius: 0;
}
A
Abdullah Almsaeed 已提交
3367

A
Abdullah Almsaeed 已提交
3368
.dropdown-toggle-split {
A
Abdullah Almsaeed 已提交
3369
  padding-right: 0.5625rem;
A
Abdullah Almsaeed 已提交
3370 3371 3372
  padding-left: 0.5625rem;
}

A
Abdullah Almsaeed 已提交
3373 3374 3375
.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
A
Abdullah Almsaeed 已提交
3376 3377
  margin-left: 0;
}
A
Abdullah Almsaeed 已提交
3378

A
Abdullah Almsaeed 已提交
3379 3380 3381 3382
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

A
Abdullah Almsaeed 已提交
3383 3384
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
A
Abdullah Almsaeed 已提交
3385 3386
  padding-left: 0.375rem;
}
A
Abdullah Almsaeed 已提交
3387 3388

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
A
Abdullah Almsaeed 已提交
3389
  padding-right: 0.75rem;
A
Abdullah Almsaeed 已提交
3390 3391 3392 3393 3394 3395 3396 3397 3398 3399
  padding-left: 0.75rem;
}

.btn-group.show .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.show .dropdown-toggle.btn-link {
  box-shadow: none;
}
A
Abdullah Almsaeed 已提交
3400

A
Abdullah Almsaeed 已提交
3401
.btn-group-vertical {
3402
  -ms-flex-direction: column;
A
Abdullah Almsaeed 已提交
3403
  flex-direction: column;
3404
  -ms-flex-align: start;
A
Abdullah Almsaeed 已提交
3405
  align-items: flex-start;
3406
  -ms-flex-pack: center;
A
Abdullah Almsaeed 已提交
3407 3408 3409
  justify-content: center;
}

3410 3411
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
A
Abdullah Almsaeed 已提交
3412 3413 3414
  width: 100%;
}

3415 3416
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
A
Abdullah Almsaeed 已提交
3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
A
Abdullah Almsaeed 已提交
3431

A
Abdullah Almsaeed 已提交
3432 3433 3434 3435 3436 3437 3438 3439 3440
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
A
Abdullah Almsaeed 已提交
3441 3442
  position: absolute;
  clip: rect(0, 0, 0, 0);
A
Abdullah Almsaeed 已提交
3443 3444
  pointer-events: none;
}
A
Abdullah Almsaeed 已提交
3445 3446 3447

.input-group {
  position: relative;
3448
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
3449
  display: flex;
3450
  -ms-flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
3451
  flex-wrap: wrap;
3452
  -ms-flex-align: stretch;
A
Abdullah Almsaeed 已提交
3453
  align-items: stretch;
A
Abdullah Almsaeed 已提交
3454 3455 3456 3457
  width: 100%;
}

.input-group > .form-control,
3458
.input-group > .form-control-plaintext,
A
Abdullah Almsaeed 已提交
3459 3460 3461
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
3462
  -ms-flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
3463 3464 3465 3466 3467 3468 3469 3470
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
3471 3472 3473
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
A
Abdullah Almsaeed 已提交
3474 3475 3476 3477 3478 3479 3480 3481 3482
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

3483 3484 3485 3486 3487 3488
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

3489 3490 3491 3492
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

A
Abdullah Almsaeed 已提交
3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
3506
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
3507
  display: flex;
3508
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
3509 3510 3511 3512
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
A
Abdullah Almsaeed 已提交
3513
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
A
Abdullah Almsaeed 已提交
3514 3515 3516 3517
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

3518
.input-group > .custom-file:not(:first-child) .custom-file-label {
A
Abdullah Almsaeed 已提交
3519 3520 3521 3522 3523 3524
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
3525
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
3526
  display: flex;
A
Abdullah Almsaeed 已提交
3527 3528 3529 3530 3531 3532 3533 3534
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

3535 3536 3537 3538 3539
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

A
Abdullah Almsaeed 已提交
3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}
A
Abdullah Almsaeed 已提交
3554

A
Abdullah Almsaeed 已提交
3555 3556 3557
.input-group-append {
  margin-left: -1px;
}
A
Abdullah Almsaeed 已提交
3558

A
Abdullah Almsaeed 已提交
3559
.input-group-text {
3560
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
3561
  display: flex;
3562
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
3563
  align-items: center;
A
Abdullah Almsaeed 已提交
3564
  padding: 0.375rem 0.75rem;
A
Abdullah Almsaeed 已提交
3565 3566
  margin-bottom: 0;
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
3567 3568 3569
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
A
Abdullah Almsaeed 已提交
3570
  text-align: center;
A
Abdullah Almsaeed 已提交
3571
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
3572 3573
  background-color: #e9ecef;
  border: 1px solid #ced4da;
A
Abdullah Almsaeed 已提交
3574 3575 3576 3577 3578 3579 3580 3581
  border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620
.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(2.875rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.8125rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

A
Abdullah Almsaeed 已提交
3621 3622 3623 3624 3625 3626
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
A
Abdullah Almsaeed 已提交
3627
  border-top-right-radius: 0;
A
Abdullah Almsaeed 已提交
3628 3629 3630 3631 3632 3633 3634 3635 3636
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
A
Abdullah Almsaeed 已提交
3637
  border-top-left-radius: 0;
A
Abdullah Almsaeed 已提交
3638 3639
  border-bottom-left-radius: 0;
}
A
Abdullah Almsaeed 已提交
3640 3641 3642

.custom-control {
  position: relative;
A
Abdullah Almsaeed 已提交
3643
  display: block;
A
Abdullah Almsaeed 已提交
3644
  min-height: 1.5rem;
3645
  padding-left: 2.5rem;
A
Abdullah Almsaeed 已提交
3646 3647 3648
}

.custom-control-inline {
3649
  display: -ms-inline-flexbox;
A
Abdullah Almsaeed 已提交
3650 3651 3652
  display: inline-flex;
  margin-right: 1rem;
}
A
Abdullah Almsaeed 已提交
3653 3654 3655 3656

.custom-control-input {
  position: absolute;
  z-index: -1;
A
Abdullah Almsaeed 已提交
3657 3658 3659 3660 3661
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #ffffff;
3662
  border-color: #007bff;
R
REJack 已提交
3663
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3664 3665 3666 3667
  box-shadow: none;
}

.custom-control-input:focus ~ .custom-control-label::before {
3668 3669 3670 3671 3672
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
A
Abdullah Almsaeed 已提交
3673 3674
}

3675
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
A
Abdullah Almsaeed 已提交
3676 3677
  color: #ffffff;
  background-color: #b3d7ff;
3678
  border-color: #b3d7ff;
A
Abdullah Almsaeed 已提交
3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690
  box-shadow: none;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
3691
  position: relative;
A
Abdullah Almsaeed 已提交
3692
  margin-bottom: 0;
3693
  vertical-align: top;
A
Abdullah Almsaeed 已提交
3694 3695 3696
}

.custom-control-label::before {
A
Abdullah Almsaeed 已提交
3697
  position: absolute;
A
Abdullah Almsaeed 已提交
3698
  top: 0.25rem;
3699
  left: -2.5rem;
A
Abdullah Almsaeed 已提交
3700 3701 3702 3703
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
A
Abdullah Almsaeed 已提交
3704 3705
  content: "";
  background-color: #dee2e6;
3706
  border: #adb5bd solid 1px;
A
Abdullah Almsaeed 已提交
3707 3708 3709 3710 3711 3712
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
3713
  left: -2.5rem;
A
Abdullah Almsaeed 已提交
3714 3715 3716 3717
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
3718
  background: no-repeat 50% / 50% 50%;
A
Abdullah Almsaeed 已提交
3719 3720 3721 3722 3723
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
3724

A
Abdullah Almsaeed 已提交
3725 3726 3727
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
A
Abdullah Almsaeed 已提交
3728

A
Abdullah Almsaeed 已提交
3729
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
3730
  border-color: #007bff;
R
REJack 已提交
3731
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3732 3733
  box-shadow: none;
}
A
Abdullah Almsaeed 已提交
3734

A
Abdullah Almsaeed 已提交
3735 3736 3737
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23ffffff' d='M0 2h4'/%3E%3C/svg%3E");
}
A
Abdullah Almsaeed 已提交
3738

A
Abdullah Almsaeed 已提交
3739 3740 3741
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
A
Abdullah Almsaeed 已提交
3742

A
Abdullah Almsaeed 已提交
3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23ffffff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
A
Abdullah Almsaeed 已提交
3758

3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776
.custom-switch {
  padding-left: 3.25rem;
}

.custom-switch .custom-control-label::before {
  left: -3.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-3.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
R
REJack 已提交
3777
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
3778
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
R
REJack 已提交
3779
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
3780 3781 3782 3783 3784 3785 3786 3787 3788 3789
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #dee2e6;
R
REJack 已提交
3790
  -webkit-transform: translateX(0.75rem);
3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px;
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
3810
  border: 1px solid #ced4da;
A
Abdullah Almsaeed 已提交
3811
  border-radius: 0.25rem;
3812
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
R
REJack 已提交
3813 3814
  -webkit-appearance: none;
  -moz-appearance: none;
A
Abdullah Almsaeed 已提交
3815 3816 3817 3818 3819 3820
  appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
3821
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
A
Abdullah Almsaeed 已提交
3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #ffffff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
3841
  display: none;
A
Abdullah Almsaeed 已提交
3842
}
A
Abdullah Almsaeed 已提交
3843 3844

.custom-select-sm {
A
Abdullah Almsaeed 已提交
3845
  height: calc(1.8125rem + 2px);
3846 3847 3848
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
A
Abdullah Almsaeed 已提交
3849 3850 3851 3852 3853
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.875rem + 2px);
3854 3855 3856
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
A
Abdullah Almsaeed 已提交
3857 3858
  font-size: 125%;
}
A
Abdullah Almsaeed 已提交
3859 3860 3861 3862

.custom-file {
  position: relative;
  display: inline-block;
A
Abdullah Almsaeed 已提交
3863
  width: 100%;
A
Abdullah Almsaeed 已提交
3864
  height: calc(2.25rem + 2px);
A
Abdullah Almsaeed 已提交
3865 3866
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
3867 3868

.custom-file-input {
A
Abdullah Almsaeed 已提交
3869 3870 3871
  position: relative;
  z-index: 2;
  width: 100%;
A
Abdullah Almsaeed 已提交
3872
  height: calc(2.25rem + 2px);
A
Abdullah Almsaeed 已提交
3873
  margin: 0;
A
Abdullah Almsaeed 已提交
3874 3875 3876
  opacity: 0;
}

A
Abdullah Almsaeed 已提交
3877
.custom-file-input:focus ~ .custom-file-label {
A
Abdullah Almsaeed 已提交
3878 3879 3880 3881
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

3882 3883 3884 3885
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

A
Abdullah Almsaeed 已提交
3886 3887 3888 3889
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

3890 3891 3892 3893
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

A
Abdullah Almsaeed 已提交
3894
.custom-file-label {
A
Abdullah Almsaeed 已提交
3895 3896 3897 3898
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
A
Abdullah Almsaeed 已提交
3899
  z-index: 1;
A
Abdullah Almsaeed 已提交
3900 3901
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
3902
  font-weight: 400;
A
Abdullah Almsaeed 已提交
3903
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
3904
  color: #495057;
A
Abdullah Almsaeed 已提交
3905
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
3906
  border: 1px solid #ced4da;
A
Abdullah Almsaeed 已提交
3907
  border-radius: 0.25rem;
3908
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
A
Abdullah Almsaeed 已提交
3909 3910 3911 3912 3913 3914 3915 3916 3917
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
3918
  height: 2.25rem;
A
Abdullah Almsaeed 已提交
3919 3920 3921 3922
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
R
REJack 已提交
3923
  background-color: #e9ecef;
3924
  border-left: inherit;
A
Abdullah Almsaeed 已提交
3925 3926
  border-radius: 0 0.25rem 0.25rem 0;
}
A
Abdullah Almsaeed 已提交
3927

A
Abdullah Almsaeed 已提交
3928 3929
.custom-range {
  width: 100%;
3930 3931
  height: calc(1rem + 0.4rem);
  padding: 0;
A
Abdullah Almsaeed 已提交
3932
  background-color: transparent;
R
REJack 已提交
3933 3934
  -webkit-appearance: none;
  -moz-appearance: none;
A
Abdullah Almsaeed 已提交
3935 3936 3937 3938 3939 3940 3941
  appearance: none;
}

.custom-range:focus {
  outline: none;
}

3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

A
Abdullah Almsaeed 已提交
3954 3955 3956 3957 3958 3959 3960 3961
.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
R
REJack 已提交
3962
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3963 3964 3965
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
3966
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
R
REJack 已提交
3967
  -webkit-appearance: none;
A
Abdullah Almsaeed 已提交
3968 3969 3970
  appearance: none;
}

3971
@media (prefers-reduced-motion: reduce) {
3972 3973 3974 3975 3976
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
3977
.custom-range::-webkit-slider-thumb:active {
R
REJack 已提交
3978
  background-color: #b3d7ff;
A
Abdullah Almsaeed 已提交
3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
R
REJack 已提交
3995
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3996 3997 3998
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
3999
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
R
REJack 已提交
4000
  -moz-appearance: none;
A
Abdullah Almsaeed 已提交
4001 4002 4003
  appearance: none;
}

4004
@media (prefers-reduced-motion: reduce) {
4005 4006 4007 4008 4009
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
4010
.custom-range::-moz-range-thumb:active {
R
REJack 已提交
4011
  background-color: #b3d7ff;
A
Abdullah Almsaeed 已提交
4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
4028 4029 4030
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
R
REJack 已提交
4031
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
4032 4033 4034
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
4035
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
A
Abdullah Almsaeed 已提交
4036 4037 4038
  appearance: none;
}

4039
@media (prefers-reduced-motion: reduce) {
4040 4041 4042 4043 4044
  .custom-range::-ms-thumb {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
4045
.custom-range::-ms-thumb:active {
R
REJack 已提交
4046
  background-color: #b3d7ff;
A
Abdullah Almsaeed 已提交
4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

4091 4092 4093 4094 4095 4096
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

4097
@media (prefers-reduced-motion: reduce) {
4098 4099 4100 4101 4102 4103 4104
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
4105
.nav {
4106
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4107
  display: flex;
4108
  -ms-flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
4109
  flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
4110 4111
  padding-left: 0;
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
4112 4113
  list-style: none;
}
A
Abdullah Almsaeed 已提交
4114 4115

.nav-link {
A
Abdullah Almsaeed 已提交
4116
  display: block;
A
Abdullah Almsaeed 已提交
4117 4118 4119 4120 4121 4122 4123 4124 4125
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
4126 4127
  pointer-events: none;
  cursor: default;
A
Abdullah Almsaeed 已提交
4128
}
A
Abdullah Almsaeed 已提交
4129

A
Abdullah Almsaeed 已提交
4130
.nav-tabs {
A
Abdullah Almsaeed 已提交
4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #ffffff;
  border-color: #dee2e6 #dee2e6 #ffffff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
A
Abdullah Almsaeed 已提交
4166

A
Abdullah Almsaeed 已提交
4167
.nav-pills .nav-link {
A
Abdullah Almsaeed 已提交
4168 4169
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
4170

A
Abdullah Almsaeed 已提交
4171 4172
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
A
Abdullah Almsaeed 已提交
4173 4174 4175
  color: #ffffff;
  background-color: #007bff;
}
A
Abdullah Almsaeed 已提交
4176

A
Abdullah Almsaeed 已提交
4177
.nav-fill .nav-item {
4178
  -ms-flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
4179
  flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
4180 4181
  text-align: center;
}
A
Abdullah Almsaeed 已提交
4182

A
Abdullah Almsaeed 已提交
4183
.nav-justified .nav-item {
4184
  -ms-flex-preferred-size: 0;
A
Abdullah Almsaeed 已提交
4185
  flex-basis: 0;
4186
  -ms-flex-positive: 1;
A
Abdullah Almsaeed 已提交
4187
  flex-grow: 1;
A
Abdullah Almsaeed 已提交
4188 4189
  text-align: center;
}
A
Abdullah Almsaeed 已提交
4190

A
Abdullah Almsaeed 已提交
4191
.tab-content > .tab-pane {
A
Abdullah Almsaeed 已提交
4192 4193
  display: none;
}
A
Abdullah Almsaeed 已提交
4194

A
Abdullah Almsaeed 已提交
4195
.tab-content > .active {
A
Abdullah Almsaeed 已提交
4196 4197
  display: block;
}
A
Abdullah Almsaeed 已提交
4198

A
Abdullah Almsaeed 已提交
4199 4200
.navbar {
  position: relative;
4201
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4202
  display: flex;
4203
  -ms-flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
4204
  flex-wrap: wrap;
4205
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
4206
  align-items: center;
4207
  -ms-flex-pack: justify;
A
Abdullah Almsaeed 已提交
4208
  justify-content: space-between;
A
Abdullah Almsaeed 已提交
4209 4210 4211 4212 4213
  padding: 0.5rem 0.5rem;
}

.navbar > .container,
.navbar > .container-fluid {
4214
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4215
  display: flex;
4216
  -ms-flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
4217
  flex-wrap: wrap;
4218
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
4219
  align-items: center;
4220
  -ms-flex-pack: justify;
A
Abdullah Almsaeed 已提交
4221 4222
  justify-content: space-between;
}
A
Abdullah Almsaeed 已提交
4223

A
Abdullah Almsaeed 已提交
4224 4225 4226 4227
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
A
Abdullah Almsaeed 已提交
4228
  margin-right: 0.5rem;
A
Abdullah Almsaeed 已提交
4229 4230
  font-size: 1.25rem;
  line-height: inherit;
A
Abdullah Almsaeed 已提交
4231 4232 4233 4234 4235 4236
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
A
Abdullah Almsaeed 已提交
4237

A
Abdullah Almsaeed 已提交
4238
.navbar-nav {
4239
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4240
  display: flex;
4241
  -ms-flex-direction: column;
A
Abdullah Almsaeed 已提交
4242 4243 4244
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
A
Abdullah Almsaeed 已提交
4257

A
Abdullah Almsaeed 已提交
4258 4259 4260
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
A
Abdullah Almsaeed 已提交
4261 4262
  padding-bottom: 0.5rem;
}
A
Abdullah Almsaeed 已提交
4263

A
Abdullah Almsaeed 已提交
4264
.navbar-collapse {
4265
  -ms-flex-preferred-size: 100%;
A
Abdullah Almsaeed 已提交
4266
  flex-basis: 100%;
4267
  -ms-flex-positive: 1;
A
Abdullah Almsaeed 已提交
4268
  flex-grow: 1;
4269
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
4270 4271
  align-items: center;
}
A
Abdullah Almsaeed 已提交
4272

A
Abdullah Almsaeed 已提交
4273
.navbar-toggler {
A
Abdullah Almsaeed 已提交
4274
  padding: 0.25rem 0.75rem;
A
Abdullah Almsaeed 已提交
4275 4276
  font-size: 1.25rem;
  line-height: 1;
A
Abdullah Almsaeed 已提交
4277
  background-color: transparent;
A
Abdullah Almsaeed 已提交
4278
  border: 1px solid transparent;
A
Abdullah Almsaeed 已提交
4279 4280 4281 4282 4283 4284 4285
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

A
Abdullah Almsaeed 已提交
4286 4287 4288 4289 4290
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
A
Abdullah Almsaeed 已提交
4291
  content: "";
A
Abdullah Almsaeed 已提交
4292
  background: no-repeat center center;
A
Abdullah Almsaeed 已提交
4293 4294
  background-size: 100% 100%;
}
A
Abdullah Almsaeed 已提交
4295

A
Abdullah Almsaeed 已提交
4296
@media (max-width: 575.98px) {
A
Abdullah Almsaeed 已提交
4297 4298 4299
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
A
Abdullah Almsaeed 已提交
4300 4301 4302
    padding-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
4303 4304

@media (min-width: 576px) {
A
Abdullah Almsaeed 已提交
4305
  .navbar-expand-sm {
4306
    -ms-flex-flow: row nowrap;
A
Abdullah Almsaeed 已提交
4307
    flex-flow: row nowrap;
4308
    -ms-flex-pack: start;
A
Abdullah Almsaeed 已提交
4309 4310 4311
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
4312
    -ms-flex-direction: row;
A
Abdullah Almsaeed 已提交
4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
4324
    -ms-flex-wrap: nowrap;
A
Abdullah Almsaeed 已提交
4325 4326 4327
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
4328
    display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
4329
    display: flex !important;
4330
    -ms-flex-preferred-size: auto;
A
Abdullah Almsaeed 已提交
4331 4332 4333 4334 4335 4336 4337 4338
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
4339 4340 4341
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
A
Abdullah Almsaeed 已提交
4342 4343 4344
    padding-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
4345 4346

@media (min-width: 768px) {
A
Abdullah Almsaeed 已提交
4347
  .navbar-expand-md {
4348
    -ms-flex-flow: row nowrap;
A
Abdullah Almsaeed 已提交
4349
    flex-flow: row nowrap;
4350
    -ms-flex-pack: start;
A
Abdullah Almsaeed 已提交
4351 4352 4353
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
4354
    -ms-flex-direction: row;
A
Abdullah Almsaeed 已提交
4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
4366
    -ms-flex-wrap: nowrap;
A
Abdullah Almsaeed 已提交
4367 4368 4369
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
4370
    display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
4371
    display: flex !important;
4372
    -ms-flex-preferred-size: auto;
A
Abdullah Almsaeed 已提交
4373 4374 4375 4376 4377 4378 4379 4380
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
A
Abdullah Almsaeed 已提交
4381 4382 4383
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
A
Abdullah Almsaeed 已提交
4384 4385 4386
    padding-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
4387 4388

@media (min-width: 992px) {
A
Abdullah Almsaeed 已提交
4389
  .navbar-expand-lg {
4390
    -ms-flex-flow: row nowrap;
A
Abdullah Almsaeed 已提交
4391
    flex-flow: row nowrap;
4392
    -ms-flex-pack: start;
A
Abdullah Almsaeed 已提交
4393 4394 4395
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
4396
    -ms-flex-direction: row;
A
Abdullah Almsaeed 已提交
4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
4408
    -ms-flex-wrap: nowrap;
A
Abdullah Almsaeed 已提交
4409 4410 4411
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
4412
    display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
4413
    display: flex !important;
4414
    -ms-flex-preferred-size: auto;
A
Abdullah Almsaeed 已提交
4415 4416 4417 4418 4419 4420 4421 4422
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
A
Abdullah Almsaeed 已提交
4423 4424 4425
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
A
Abdullah Almsaeed 已提交
4426 4427 4428
    padding-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
4429 4430

@media (min-width: 1200px) {
A
Abdullah Almsaeed 已提交
4431
  .navbar-expand-xl {
4432
    -ms-flex-flow: row nowrap;
A
Abdullah Almsaeed 已提交
4433
    flex-flow: row nowrap;
4434
    -ms-flex-pack: start;
A
Abdullah Almsaeed 已提交
4435 4436 4437
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
4438
    -ms-flex-direction: row;
A
Abdullah Almsaeed 已提交
4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
4450
    -ms-flex-wrap: nowrap;
A
Abdullah Almsaeed 已提交
4451 4452 4453
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
4454
    display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
4455
    display: flex !important;
4456
    -ms-flex-preferred-size: auto;
A
Abdullah Almsaeed 已提交
4457 4458 4459 4460 4461 4462 4463 4464
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
4465
  -ms-flex-flow: row nowrap;
A
Abdullah Almsaeed 已提交
4466
  flex-flow: row nowrap;
4467
  -ms-flex-pack: start;
A
Abdullah Almsaeed 已提交
4468 4469 4470 4471 4472 4473 4474 4475 4476 4477
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
4478
  -ms-flex-direction: row;
A
Abdullah Almsaeed 已提交
4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
4493
  -ms-flex-wrap: nowrap;
A
Abdullah Almsaeed 已提交
4494 4495 4496 4497
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
4498
  display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
4499
  display: flex !important;
4500
  -ms-flex-preferred-size: auto;
A
Abdullah Almsaeed 已提交
4501 4502 4503 4504 4505 4506 4507
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

A
Abdullah Almsaeed 已提交
4508
.navbar-light .navbar-brand {
A
Abdullah Almsaeed 已提交
4509 4510 4511 4512 4513 4514
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
A
Abdullah Almsaeed 已提交
4515 4516

.navbar-light .navbar-nav .nav-link {
A
Abdullah Almsaeed 已提交
4517 4518 4519 4520 4521 4522 4523 4524 4525 4526
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
A
Abdullah Almsaeed 已提交
4527

A
Abdullah Almsaeed 已提交
4528
.navbar-light .navbar-nav .show > .nav-link,
A
Abdullah Almsaeed 已提交
4529
.navbar-light .navbar-nav .active > .nav-link,
A
Abdullah Almsaeed 已提交
4530 4531
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
A
Abdullah Almsaeed 已提交
4532 4533
  color: rgba(0, 0, 0, 0.9);
}
A
Abdullah Almsaeed 已提交
4534 4535

.navbar-light .navbar-toggler {
A
Abdullah Almsaeed 已提交
4536
  color: rgba(0, 0, 0, 0.5);
A
Abdullah Almsaeed 已提交
4537 4538
  border-color: rgba(0, 0, 0, 0.1);
}
A
Abdullah Almsaeed 已提交
4539

A
Abdullah Almsaeed 已提交
4540
.navbar-light .navbar-toggler-icon {
A
Abdullah Almsaeed 已提交
4541 4542
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
A
Abdullah Almsaeed 已提交
4543

A
Abdullah Almsaeed 已提交
4544
.navbar-light .navbar-text {
A
Abdullah Almsaeed 已提交
4545 4546 4547 4548 4549 4550 4551 4552 4553 4554
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}
A
Abdullah Almsaeed 已提交
4555

A
Abdullah Almsaeed 已提交
4556
.navbar-dark .navbar-brand {
A
Abdullah Almsaeed 已提交
4557 4558 4559 4560 4561 4562
  color: #ffffff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
4563 4564

.navbar-dark .navbar-nav .nav-link {
A
Abdullah Almsaeed 已提交
4565 4566 4567 4568 4569 4570 4571 4572 4573 4574
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: white;
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
A
Abdullah Almsaeed 已提交
4575

A
Abdullah Almsaeed 已提交
4576
.navbar-dark .navbar-nav .show > .nav-link,
A
Abdullah Almsaeed 已提交
4577
.navbar-dark .navbar-nav .active > .nav-link,
A
Abdullah Almsaeed 已提交
4578 4579
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
A
Abdullah Almsaeed 已提交
4580 4581
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
4582 4583

.navbar-dark .navbar-toggler {
A
Abdullah Almsaeed 已提交
4584 4585 4586
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
}
A
Abdullah Almsaeed 已提交
4587

A
Abdullah Almsaeed 已提交
4588
.navbar-dark .navbar-toggler-icon {
A
Abdullah Almsaeed 已提交
4589 4590
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.75)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
A
Abdullah Almsaeed 已提交
4591

A
Abdullah Almsaeed 已提交
4592
.navbar-dark .navbar-text {
A
Abdullah Almsaeed 已提交
4593 4594 4595 4596 4597 4598 4599 4600 4601 4602
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-text a {
  color: #ffffff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
4603 4604 4605

.card {
  position: relative;
4606
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4607
  display: flex;
4608
  -ms-flex-direction: column;
A
Abdullah Almsaeed 已提交
4609 4610 4611
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
A
Abdullah Almsaeed 已提交
4612
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
4613
  background-clip: border-box;
A
Abdullah Almsaeed 已提交
4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631
  border: 0 solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
4632

A
Abdullah Almsaeed 已提交
4633
.card-body {
4634
  -ms-flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
4635
  flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
4636 4637
  padding: 1.25rem;
}
A
Abdullah Almsaeed 已提交
4638 4639

.card-title {
A
Abdullah Almsaeed 已提交
4640 4641
  margin-bottom: 0.75rem;
}
A
Abdullah Almsaeed 已提交
4642 4643 4644

.card-subtitle {
  margin-top: -0.375rem;
A
Abdullah Almsaeed 已提交
4645 4646
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
4647 4648

.card-text:last-child {
A
Abdullah Almsaeed 已提交
4649 4650
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
4651 4652

.card-link:hover {
A
Abdullah Almsaeed 已提交
4653 4654
  text-decoration: none;
}
A
Abdullah Almsaeed 已提交
4655 4656

.card-link + .card-link {
A
Abdullah Almsaeed 已提交
4657 4658
  margin-left: 1.25rem;
}
A
Abdullah Almsaeed 已提交
4659 4660 4661 4662

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
4663
  background-color: rgba(0, 0, 0, 0.03);
A
Abdullah Almsaeed 已提交
4664 4665 4666 4667 4668 4669 4670 4671 4672 4673
  border-bottom: 0 solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 0) calc(0.25rem - 0) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}
A
Abdullah Almsaeed 已提交
4674 4675 4676

.card-footer {
  padding: 0.75rem 1.25rem;
A
Abdullah Almsaeed 已提交
4677
  background-color: rgba(0, 0, 0, 0.03);
A
Abdullah Almsaeed 已提交
4678 4679 4680 4681 4682 4683
  border-top: 0 solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 0) calc(0.25rem - 0);
}
A
Abdullah Almsaeed 已提交
4684 4685 4686 4687 4688

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
A
Abdullah Almsaeed 已提交
4689 4690
  border-bottom: 0;
}
A
Abdullah Almsaeed 已提交
4691 4692 4693

.card-header-pills {
  margin-right: -0.625rem;
A
Abdullah Almsaeed 已提交
4694 4695
  margin-left: -0.625rem;
}
A
Abdullah Almsaeed 已提交
4696 4697 4698 4699 4700 4701 4702

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
A
Abdullah Almsaeed 已提交
4703 4704
  padding: 1.25rem;
}
A
Abdullah Almsaeed 已提交
4705 4706 4707

.card-img {
  width: 100%;
A
Abdullah Almsaeed 已提交
4708 4709
  border-radius: calc(0.25rem - 0);
}
A
Abdullah Almsaeed 已提交
4710 4711

.card-img-top {
A
Abdullah Almsaeed 已提交
4712
  width: 100%;
A
Abdullah Almsaeed 已提交
4713 4714 4715
  border-top-left-radius: calc(0.25rem - 0);
  border-top-right-radius: calc(0.25rem - 0);
}
A
Abdullah Almsaeed 已提交
4716 4717

.card-img-bottom {
A
Abdullah Almsaeed 已提交
4718
  width: 100%;
A
Abdullah Almsaeed 已提交
4719 4720 4721
  border-bottom-right-radius: calc(0.25rem - 0);
  border-bottom-left-radius: calc(0.25rem - 0);
}
A
Abdullah Almsaeed 已提交
4722

A
Abdullah Almsaeed 已提交
4723
.card-deck {
4724
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4725
  display: flex;
4726
  -ms-flex-direction: column;
A
Abdullah Almsaeed 已提交
4727 4728 4729 4730 4731 4732 4733 4734 4735
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 7.5px;
}

@media (min-width: 576px) {
  .card-deck {
4736
    -ms-flex-flow: row wrap;
A
Abdullah Almsaeed 已提交
4737 4738 4739 4740
    flex-flow: row wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
  }
A
Abdullah Almsaeed 已提交
4741
  .card-deck .card {
4742
    display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4743
    display: flex;
4744
    -ms-flex: 1 0 0%;
A
Abdullah Almsaeed 已提交
4745
    flex: 1 0 0%;
4746
    -ms-flex-direction: column;
A
Abdullah Almsaeed 已提交
4747 4748 4749 4750 4751 4752
    flex-direction: column;
    margin-right: 7.5px;
    margin-bottom: 0;
    margin-left: 7.5px;
  }
}
A
Abdullah Almsaeed 已提交
4753 4754

.card-group {
4755
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4756
  display: flex;
4757
  -ms-flex-direction: column;
A
Abdullah Almsaeed 已提交
4758 4759 4760 4761 4762 4763 4764 4765 4766
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 7.5px;
}

@media (min-width: 576px) {
  .card-group {
4767
    -ms-flex-flow: row wrap;
A
Abdullah Almsaeed 已提交
4768 4769 4770
    flex-flow: row wrap;
  }
  .card-group > .card {
4771
    -ms-flex: 1 0 0%;
A
Abdullah Almsaeed 已提交
4772 4773 4774 4775 4776 4777 4778
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
4779
  .card-group > .card:not(:last-child) {
A
Abdullah Almsaeed 已提交
4780 4781 4782
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
4783 4784
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
A
Abdullah Almsaeed 已提交
4785 4786
    border-top-right-radius: 0;
  }
4787 4788
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
A
Abdullah Almsaeed 已提交
4789 4790
    border-bottom-right-radius: 0;
  }
4791
  .card-group > .card:not(:first-child) {
A
Abdullah Almsaeed 已提交
4792 4793 4794
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
4795 4796
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
A
Abdullah Almsaeed 已提交
4797 4798
    border-top-left-radius: 0;
  }
4799 4800
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
A
Abdullah Almsaeed 已提交
4801 4802 4803
    border-bottom-left-radius: 0;
  }
}
A
Abdullah Almsaeed 已提交
4804 4805

.card-columns .card {
A
Abdullah Almsaeed 已提交
4806 4807
  margin-bottom: 0.75rem;
}
A
Abdullah Almsaeed 已提交
4808 4809 4810

@media (min-width: 576px) {
  .card-columns {
R
REJack 已提交
4811
    -webkit-column-count: 3;
4812
    -moz-column-count: 3;
A
Abdullah Almsaeed 已提交
4813
    column-count: 3;
R
REJack 已提交
4814
    -webkit-column-gap: 1.25rem;
4815
    -moz-column-gap: 1.25rem;
A
Abdullah Almsaeed 已提交
4816
    column-gap: 1.25rem;
A
Abdullah Almsaeed 已提交
4817 4818
    orphans: 1;
    widows: 1;
A
Abdullah Almsaeed 已提交
4819 4820 4821 4822 4823 4824
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
A
Abdullah Almsaeed 已提交
4825

4826 4827 4828 4829 4830
.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:first-of-type) .card-header:first-child {
A
Abdullah Almsaeed 已提交
4831 4832 4833
  border-radius: 0;
}

4834 4835
.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
4836 4837 4838
  border-radius: 0;
}

4839
.accordion > .card:first-of-type {
A
Abdullah Almsaeed 已提交
4840 4841 4842 4843 4844
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

4845
.accordion > .card:last-of-type {
A
Abdullah Almsaeed 已提交
4846 4847 4848 4849
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

4850 4851 4852 4853
.accordion > .card .card-header {
  margin-bottom: 0;
}

A
Abdullah Almsaeed 已提交
4854
.breadcrumb {
4855
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4856
  display: flex;
4857
  -ms-flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
4858
  flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
4859 4860 4861
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
A
Abdullah Almsaeed 已提交
4862
  background-color: #e9ecef;
A
Abdullah Almsaeed 已提交
4863 4864
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
4865

A
Abdullah Almsaeed 已提交
4866 4867 4868 4869
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

A
Abdullah Almsaeed 已提交
4870 4871 4872
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
A
Abdullah Almsaeed 已提交
4873 4874 4875
  color: #6c757d;
  content: "/";
}
A
Abdullah Almsaeed 已提交
4876 4877

.breadcrumb-item + .breadcrumb-item:hover::before {
A
Abdullah Almsaeed 已提交
4878 4879
  text-decoration: underline;
}
A
Abdullah Almsaeed 已提交
4880 4881

.breadcrumb-item + .breadcrumb-item:hover::before {
A
Abdullah Almsaeed 已提交
4882 4883
  text-decoration: none;
}
A
Abdullah Almsaeed 已提交
4884 4885

.breadcrumb-item.active {
A
Abdullah Almsaeed 已提交
4886 4887
  color: #6c757d;
}
A
Abdullah Almsaeed 已提交
4888 4889

.pagination {
4890
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
4891
  display: flex;
A
Abdullah Almsaeed 已提交
4892
  padding-left: 0;
A
Abdullah Almsaeed 已提交
4893
  list-style: none;
A
Abdullah Almsaeed 已提交
4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
A
Abdullah Almsaeed 已提交
4909
  z-index: 2;
A
Abdullah Almsaeed 已提交
4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

A
Abdullah Almsaeed 已提交
4922 4923 4924
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
4925 4926
  border-bottom-left-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
4927 4928 4929

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
4930 4931
  border-bottom-right-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
4932

A
Abdullah Almsaeed 已提交
4933
.page-item.active .page-link {
A
Abdullah Almsaeed 已提交
4934 4935
  z-index: 1;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
4936
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
4937 4938
  border-color: #007bff;
}
A
Abdullah Almsaeed 已提交
4939

A
Abdullah Almsaeed 已提交
4940
.page-item.disabled .page-link {
A
Abdullah Almsaeed 已提交
4941
  color: #6c757d;
A
Abdullah Almsaeed 已提交
4942
  pointer-events: none;
A
Abdullah Almsaeed 已提交
4943 4944 4945 4946
  cursor: auto;
  background-color: #ffffff;
  border-color: #dee2e6;
}
A
Abdullah Almsaeed 已提交
4947 4948 4949 4950

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
4951 4952
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
4953 4954 4955

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
4956 4957
  border-bottom-left-radius: 0.3rem;
}
A
Abdullah Almsaeed 已提交
4958 4959 4960

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
4961 4962
  border-bottom-right-radius: 0.3rem;
}
A
Abdullah Almsaeed 已提交
4963 4964

.pagination-sm .page-link {
A
Abdullah Almsaeed 已提交
4965
  padding: 0.25rem 0.5rem;
A
Abdullah Almsaeed 已提交
4966
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
4967 4968
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
4969 4970 4971

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
A
Abdullah Almsaeed 已提交
4972 4973
  border-bottom-left-radius: 0.2rem;
}
A
Abdullah Almsaeed 已提交
4974 4975 4976

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
A
Abdullah Almsaeed 已提交
4977 4978
  border-bottom-right-radius: 0.2rem;
}
A
Abdullah Almsaeed 已提交
4979

A
Abdullah Almsaeed 已提交
4980
.badge {
A
Abdullah Almsaeed 已提交
4981 4982 4983
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
A
Abdullah Almsaeed 已提交
4984
  font-weight: 700;
A
Abdullah Almsaeed 已提交
4985 4986 4987 4988
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
A
Abdullah Almsaeed 已提交
4989
  border-radius: 0.25rem;
4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}

a.badge:hover, a.badge:focus {
  text-decoration: none;
A
Abdullah Almsaeed 已提交
5001 5002 5003 5004 5005
}

.badge:empty {
  display: none;
}
A
Abdullah Almsaeed 已提交
5006

A
Abdullah Almsaeed 已提交
5007
.btn .badge {
A
Abdullah Almsaeed 已提交
5008
  position: relative;
A
Abdullah Almsaeed 已提交
5009 5010
  top: -1px;
}
A
Abdullah Almsaeed 已提交
5011

A
Abdullah Almsaeed 已提交
5012
.badge-pill {
A
Abdullah Almsaeed 已提交
5013 5014
  padding-right: 0.6em;
  padding-left: 0.6em;
A
Abdullah Almsaeed 已提交
5015 5016
  border-radius: 10rem;
}
A
Abdullah Almsaeed 已提交
5017

A
Abdullah Almsaeed 已提交
5018
.badge-primary {
A
Abdullah Almsaeed 已提交
5019 5020 5021 5022
  color: #ffffff;
  background-color: #007bff;
}

5023
a.badge-primary:hover, a.badge-primary:focus {
A
Abdullah Almsaeed 已提交
5024 5025 5026
  color: #ffffff;
  background-color: #0062cc;
}
A
Abdullah Almsaeed 已提交
5027

5028 5029 5030 5031 5032
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

A
Abdullah Almsaeed 已提交
5033
.badge-secondary {
A
Abdullah Almsaeed 已提交
5034 5035 5036 5037
  color: #ffffff;
  background-color: #6c757d;
}

5038
a.badge-secondary:hover, a.badge-secondary:focus {
A
Abdullah Almsaeed 已提交
5039 5040 5041
  color: #ffffff;
  background-color: #545b62;
}
A
Abdullah Almsaeed 已提交
5042

5043 5044 5045 5046 5047
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

A
Abdullah Almsaeed 已提交
5048
.badge-success {
A
Abdullah Almsaeed 已提交
5049 5050 5051 5052
  color: #ffffff;
  background-color: #28a745;
}

5053
a.badge-success:hover, a.badge-success:focus {
A
Abdullah Almsaeed 已提交
5054 5055 5056
  color: #ffffff;
  background-color: #1e7e34;
}
A
Abdullah Almsaeed 已提交
5057

5058 5059 5060 5061 5062
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

A
Abdullah Almsaeed 已提交
5063
.badge-info {
A
Abdullah Almsaeed 已提交
5064 5065 5066 5067
  color: #ffffff;
  background-color: #17a2b8;
}

5068
a.badge-info:hover, a.badge-info:focus {
A
Abdullah Almsaeed 已提交
5069 5070 5071
  color: #ffffff;
  background-color: #117a8b;
}
A
Abdullah Almsaeed 已提交
5072

5073 5074 5075 5076 5077
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

A
Abdullah Almsaeed 已提交
5078
.badge-warning {
A
Abdullah Almsaeed 已提交
5079 5080 5081 5082
  color: #1F2D3D;
  background-color: #ffc107;
}

5083
a.badge-warning:hover, a.badge-warning:focus {
A
Abdullah Almsaeed 已提交
5084 5085 5086
  color: #1F2D3D;
  background-color: #d39e00;
}
A
Abdullah Almsaeed 已提交
5087

5088 5089 5090 5091 5092
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

A
Abdullah Almsaeed 已提交
5093
.badge-danger {
A
Abdullah Almsaeed 已提交
5094 5095 5096 5097
  color: #ffffff;
  background-color: #dc3545;
}

5098
a.badge-danger:hover, a.badge-danger:focus {
A
Abdullah Almsaeed 已提交
5099 5100 5101
  color: #ffffff;
  background-color: #bd2130;
}
A
Abdullah Almsaeed 已提交
5102

5103 5104 5105 5106 5107
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

A
Abdullah Almsaeed 已提交
5108
.badge-light {
A
Abdullah Almsaeed 已提交
5109 5110 5111 5112
  color: #1F2D3D;
  background-color: #f8f9fa;
}

5113
a.badge-light:hover, a.badge-light:focus {
A
Abdullah Almsaeed 已提交
5114 5115 5116
  color: #1F2D3D;
  background-color: #dae0e5;
}
A
Abdullah Almsaeed 已提交
5117

5118 5119 5120 5121 5122
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

A
Abdullah Almsaeed 已提交
5123
.badge-dark {
A
Abdullah Almsaeed 已提交
5124 5125 5126 5127
  color: #ffffff;
  background-color: #343a40;
}

5128
a.badge-dark:hover, a.badge-dark:focus {
A
Abdullah Almsaeed 已提交
5129 5130 5131
  color: #ffffff;
  background-color: #1d2124;
}
A
Abdullah Almsaeed 已提交
5132

5133 5134 5135 5136 5137
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

A
Abdullah Almsaeed 已提交
5138 5139 5140
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
A
Abdullah Almsaeed 已提交
5141
  background-color: #e9ecef;
A
Abdullah Almsaeed 已提交
5142 5143 5144 5145 5146 5147 5148 5149
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
A
Abdullah Almsaeed 已提交
5150 5151 5152 5153

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
A
Abdullah Almsaeed 已提交
5154 5155
  border-radius: 0;
}
A
Abdullah Almsaeed 已提交
5156 5157

.alert {
A
Abdullah Almsaeed 已提交
5158
  position: relative;
A
Abdullah Almsaeed 已提交
5159
  padding: 0.75rem 1.25rem;
A
Abdullah Almsaeed 已提交
5160 5161
  margin-bottom: 1rem;
  border: 1px solid transparent;
A
Abdullah Almsaeed 已提交
5162 5163
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
5164 5165

.alert-heading {
A
Abdullah Almsaeed 已提交
5166 5167
  color: inherit;
}
A
Abdullah Almsaeed 已提交
5168 5169

.alert-link {
A
Abdullah Almsaeed 已提交
5170 5171 5172 5173 5174 5175
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
A
Abdullah Almsaeed 已提交
5176 5177

.alert-dismissible .close, .alert-dismissible .mailbox-attachment-close {
A
Abdullah Almsaeed 已提交
5178 5179 5180 5181
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
A
Abdullah Almsaeed 已提交
5182 5183
  color: inherit;
}
A
Abdullah Almsaeed 已提交
5184 5185 5186

.alert-primary {
  color: #004085;
R
REJack 已提交
5187
  background-color: #cce5ff;
A
Abdullah Almsaeed 已提交
5188 5189 5190 5191 5192 5193 5194 5195 5196 5197
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}
A
Abdullah Almsaeed 已提交
5198 5199

.alert-secondary {
A
Abdullah Almsaeed 已提交
5200
  color: #383d41;
R
REJack 已提交
5201
  background-color: #e2e3e5;
A
Abdullah Almsaeed 已提交
5202 5203 5204 5205 5206 5207 5208 5209 5210 5211
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}
A
Abdullah Almsaeed 已提交
5212 5213

.alert-success {
A
Abdullah Almsaeed 已提交
5214
  color: #155724;
R
REJack 已提交
5215
  background-color: #d4edda;
A
Abdullah Almsaeed 已提交
5216 5217 5218 5219 5220 5221 5222 5223 5224 5225
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}
A
Abdullah Almsaeed 已提交
5226 5227

.alert-info {
A
Abdullah Almsaeed 已提交
5228
  color: #0c5460;
R
REJack 已提交
5229
  background-color: #d1ecf1;
A
Abdullah Almsaeed 已提交
5230 5231 5232 5233 5234 5235 5236 5237 5238 5239
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}
A
Abdullah Almsaeed 已提交
5240 5241

.alert-warning {
A
Abdullah Almsaeed 已提交
5242
  color: #856404;
R
REJack 已提交
5243
  background-color: #fff3cd;
A
Abdullah Almsaeed 已提交
5244 5245 5246 5247 5248 5249 5250 5251 5252 5253
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}
A
Abdullah Almsaeed 已提交
5254 5255

.alert-danger {
A
Abdullah Almsaeed 已提交
5256
  color: #721c24;
R
REJack 已提交
5257
  background-color: #f8d7da;
A
Abdullah Almsaeed 已提交
5258 5259 5260 5261 5262 5263 5264 5265 5266 5267
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}
A
Abdullah Almsaeed 已提交
5268 5269 5270

.alert-light {
  color: #818182;
R
REJack 已提交
5271
  background-color: #fefefe;
A
Abdullah Almsaeed 已提交
5272 5273 5274 5275 5276 5277 5278 5279 5280 5281
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}
A
Abdullah Almsaeed 已提交
5282 5283 5284

.alert-dark {
  color: #1b1e21;
R
REJack 已提交
5285
  background-color: #d6d8d9;
A
Abdullah Almsaeed 已提交
5286 5287 5288 5289 5290 5291 5292 5293 5294 5295
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}
A
Abdullah Almsaeed 已提交
5296

R
REJack 已提交
5297 5298 5299 5300 5301 5302 5303 5304 5305
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

A
Abdullah Almsaeed 已提交
5306 5307
@keyframes progress-bar-stripes {
  from {
A
Abdullah Almsaeed 已提交
5308 5309
    background-position: 1rem 0;
  }
A
Abdullah Almsaeed 已提交
5310
  to {
A
Abdullah Almsaeed 已提交
5311 5312 5313
    background-position: 0 0;
  }
}
A
Abdullah Almsaeed 已提交
5314 5315

.progress {
5316
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
5317
  display: flex;
A
Abdullah Almsaeed 已提交
5318
  height: 1rem;
A
Abdullah Almsaeed 已提交
5319 5320 5321
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
A
Abdullah Almsaeed 已提交
5322 5323 5324
  border-radius: 0.25rem;
  box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
A
Abdullah Almsaeed 已提交
5325

A
Abdullah Almsaeed 已提交
5326
.progress-bar {
5327
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
5328
  display: flex;
5329
  -ms-flex-direction: column;
A
Abdullah Almsaeed 已提交
5330
  flex-direction: column;
5331
  -ms-flex-pack: center;
A
Abdullah Almsaeed 已提交
5332
  justify-content: center;
A
Abdullah Almsaeed 已提交
5333 5334
  color: #ffffff;
  text-align: center;
A
Abdullah Almsaeed 已提交
5335
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
5336 5337 5338
  background-color: #007bff;
  transition: width 0.6s ease;
}
A
Abdullah Almsaeed 已提交
5339

5340
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
5341 5342 5343 5344 5345
  .progress-bar {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
5346
.progress-bar-striped {
A
Abdullah Almsaeed 已提交
5347
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
A
Abdullah Almsaeed 已提交
5348 5349
  background-size: 1rem 1rem;
}
A
Abdullah Almsaeed 已提交
5350

A
Abdullah Almsaeed 已提交
5351
.progress-bar-animated {
R
REJack 已提交
5352
  -webkit-animation: progress-bar-stripes 1s linear infinite;
A
Abdullah Almsaeed 已提交
5353 5354
  animation: progress-bar-stripes 1s linear infinite;
}
A
Abdullah Almsaeed 已提交
5355

5356 5357
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
R
REJack 已提交
5358
    -webkit-animation: none;
5359 5360 5361 5362
    animation: none;
  }
}

A
Abdullah Almsaeed 已提交
5363
.media {
5364
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
5365
  display: flex;
5366
  -ms-flex-align: start;
A
Abdullah Almsaeed 已提交
5367 5368
  align-items: flex-start;
}
A
Abdullah Almsaeed 已提交
5369 5370

.media-body {
5371
  -ms-flex: 1;
A
Abdullah Almsaeed 已提交
5372 5373
  flex: 1;
}
A
Abdullah Almsaeed 已提交
5374 5375

.list-group {
5376
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
5377
  display: flex;
5378
  -ms-flex-direction: column;
A
Abdullah Almsaeed 已提交
5379
  flex-direction: column;
A
Abdullah Almsaeed 已提交
5380
  padding-left: 0;
A
Abdullah Almsaeed 已提交
5381 5382
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
5383 5384 5385 5386

.list-group-item-action {
  width: 100%;
  color: #495057;
A
Abdullah Almsaeed 已提交
5387 5388 5389 5390
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
5391
  z-index: 1;
A
Abdullah Almsaeed 已提交
5392 5393 5394 5395 5396 5397 5398 5399 5400
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
A
Abdullah Almsaeed 已提交
5401 5402 5403 5404 5405 5406

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
A
Abdullah Almsaeed 已提交
5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
5424
  pointer-events: none;
A
Abdullah Almsaeed 已提交
5425 5426 5427 5428 5429 5430 5431 5432 5433
  background-color: #ffffff;
}

.list-group-item.active {
  z-index: 2;
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
}
A
Abdullah Almsaeed 已提交
5434

5435
.list-group-horizontal {
5436
  -ms-flex-direction: row;
5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459
  flex-direction: row;
}

.list-group-horizontal .list-group-item {
  margin-right: -1px;
  margin-bottom: 0;
}

.list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
5460
    -ms-flex-direction: row;
5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481
    flex-direction: row;
  }
  .list-group-horizontal-sm .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-sm .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
5482
    -ms-flex-direction: row;
5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503
    flex-direction: row;
  }
  .list-group-horizontal-md .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-md .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
5504
    -ms-flex-direction: row;
5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525
    flex-direction: row;
  }
  .list-group-horizontal-lg .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-lg .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
5526
    -ms-flex-direction: row;
5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545
    flex-direction: row;
  }
  .list-group-horizontal-xl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-xl .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

A
Abdullah Almsaeed 已提交
5546 5547 5548
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
A
Abdullah Almsaeed 已提交
5549 5550
  border-radius: 0;
}
A
Abdullah Almsaeed 已提交
5551

5552 5553 5554 5555
.list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}

A
Abdullah Almsaeed 已提交
5556
.list-group-flush:first-child .list-group-item:first-child {
A
Abdullah Almsaeed 已提交
5557 5558
  border-top: 0;
}
A
Abdullah Almsaeed 已提交
5559 5560

.list-group-flush:last-child .list-group-item:last-child {
5561
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
5562 5563
  border-bottom: 0;
}
A
Abdullah Almsaeed 已提交
5564 5565 5566

.list-group-item-primary {
  color: #004085;
A
Abdullah Almsaeed 已提交
5567 5568 5569 5570 5571 5572 5573 5574 5575
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
A
Abdullah Almsaeed 已提交
5576
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5577 5578 5579
  background-color: #004085;
  border-color: #004085;
}
A
Abdullah Almsaeed 已提交
5580 5581

.list-group-item-secondary {
A
Abdullah Almsaeed 已提交
5582 5583 5584 5585 5586 5587 5588 5589 5590 5591
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
A
Abdullah Almsaeed 已提交
5592
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5593 5594 5595
  background-color: #383d41;
  border-color: #383d41;
}
A
Abdullah Almsaeed 已提交
5596 5597

.list-group-item-success {
A
Abdullah Almsaeed 已提交
5598
  color: #155724;
A
Abdullah Almsaeed 已提交
5599 5600 5601 5602 5603 5604 5605 5606 5607
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
A
Abdullah Almsaeed 已提交
5608
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5609 5610 5611
  background-color: #155724;
  border-color: #155724;
}
A
Abdullah Almsaeed 已提交
5612 5613

.list-group-item-info {
A
Abdullah Almsaeed 已提交
5614
  color: #0c5460;
A
Abdullah Almsaeed 已提交
5615 5616 5617 5618 5619 5620 5621 5622 5623
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
A
Abdullah Almsaeed 已提交
5624
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5625 5626 5627
  background-color: #0c5460;
  border-color: #0c5460;
}
A
Abdullah Almsaeed 已提交
5628 5629

.list-group-item-warning {
A
Abdullah Almsaeed 已提交
5630
  color: #856404;
A
Abdullah Almsaeed 已提交
5631 5632 5633 5634 5635 5636 5637 5638 5639
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
A
Abdullah Almsaeed 已提交
5640
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5641 5642 5643
  background-color: #856404;
  border-color: #856404;
}
A
Abdullah Almsaeed 已提交
5644 5645

.list-group-item-danger {
A
Abdullah Almsaeed 已提交
5646
  color: #721c24;
A
Abdullah Almsaeed 已提交
5647 5648 5649 5650 5651 5652 5653 5654 5655
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
A
Abdullah Almsaeed 已提交
5656
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5657 5658 5659
  background-color: #721c24;
  border-color: #721c24;
}
A
Abdullah Almsaeed 已提交
5660 5661 5662

.list-group-item-light {
  color: #818182;
A
Abdullah Almsaeed 已提交
5663 5664 5665 5666 5667 5668 5669 5670 5671
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
A
Abdullah Almsaeed 已提交
5672
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5673 5674 5675
  background-color: #818182;
  border-color: #818182;
}
A
Abdullah Almsaeed 已提交
5676 5677 5678

.list-group-item-dark {
  color: #1b1e21;
A
Abdullah Almsaeed 已提交
5679 5680 5681 5682 5683 5684 5685 5686 5687
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
A
Abdullah Almsaeed 已提交
5688
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5689 5690 5691
  background-color: #1b1e21;
  border-color: #1b1e21;
}
A
Abdullah Almsaeed 已提交
5692 5693 5694 5695

.close, .mailbox-attachment-close {
  float: right;
  font-size: 1.5rem;
A
Abdullah Almsaeed 已提交
5696
  font-weight: 700;
A
Abdullah Almsaeed 已提交
5697 5698
  line-height: 1;
  color: #000;
A
Abdullah Almsaeed 已提交
5699 5700 5701 5702
  text-shadow: 0 1px 0 #ffffff;
  opacity: .5;
}

5703 5704 5705
.close:hover, .mailbox-attachment-close:hover {
  color: #000;
  text-decoration: none;
5706 5707 5708
}

.close:not(:disabled):not(.disabled):hover, .mailbox-attachment-close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus, .mailbox-attachment-close:not(:disabled):not(.disabled):focus {
A
Abdullah Almsaeed 已提交
5709 5710 5711
  opacity: .75;
}

A
Abdullah Almsaeed 已提交
5712 5713
button.close, button.mailbox-attachment-close {
  padding: 0;
A
Abdullah Almsaeed 已提交
5714
  background-color: transparent;
A
Abdullah Almsaeed 已提交
5715
  border: 0;
R
REJack 已提交
5716 5717
  -webkit-appearance: none;
  -moz-appearance: none;
5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732
  appearance: none;
}

a.close.disabled, a.disabled.mailbox-attachment-close {
  pointer-events: none;
}

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
R
REJack 已提交
5733
  -webkit-backdrop-filter: blur(10px);
5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756
  backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
5757
  display: -ms-flexbox;
5758
  display: flex;
5759
  -ms-flex-align: center;
5760 5761 5762 5763 5764 5765 5766 5767 5768 5769
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
  padding: 0.75rem;
A
Abdullah Almsaeed 已提交
5770
}
A
Abdullah Almsaeed 已提交
5771 5772

.modal-open {
A
Abdullah Almsaeed 已提交
5773 5774
  overflow: hidden;
}
A
Abdullah Almsaeed 已提交
5775

5776 5777 5778 5779 5780
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

A
Abdullah Almsaeed 已提交
5781 5782 5783 5784 5785 5786
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
5787 5788
  width: 100%;
  height: 100%;
A
Abdullah Almsaeed 已提交
5789
  overflow: hidden;
A
Abdullah Almsaeed 已提交
5790 5791
  outline: 0;
}
A
Abdullah Almsaeed 已提交
5792 5793 5794 5795

.modal-dialog {
  position: relative;
  width: auto;
A
Abdullah Almsaeed 已提交
5796 5797 5798 5799 5800
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
R
REJack 已提交
5801
  transition: -webkit-transform 0.3s ease-out;
A
Abdullah Almsaeed 已提交
5802
  transition: transform 0.3s ease-out;
R
REJack 已提交
5803 5804
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
5805
  transform: translate(0, -50px);
A
Abdullah Almsaeed 已提交
5806 5807
}

5808
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
5809 5810 5811 5812 5813
  .modal.fade .modal-dialog {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
5814
.modal.show .modal-dialog {
R
REJack 已提交
5815
  -webkit-transform: none;
5816 5817 5818 5819
  transform: none;
}

.modal-dialog-scrollable {
5820
  display: -ms-flexbox;
5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
5832
  -ms-flex-negative: 0;
5833 5834 5835 5836 5837
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
A
Abdullah Almsaeed 已提交
5838 5839 5840
}

.modal-dialog-centered {
5841
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
5842
  display: flex;
5843
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
5844
  align-items: center;
5845 5846 5847 5848 5849 5850 5851 5852 5853 5854
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
5855
  -ms-flex-direction: column;
5856
  flex-direction: column;
5857
  -ms-flex-pack: center;
5858 5859 5860 5861 5862 5863 5864 5865 5866 5867
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
A
Abdullah Almsaeed 已提交
5868
}
A
Abdullah Almsaeed 已提交
5869 5870 5871

.modal-content {
  position: relative;
5872
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
5873
  display: flex;
5874
  -ms-flex-direction: column;
A
Abdullah Almsaeed 已提交
5875
  flex-direction: column;
A
Abdullah Almsaeed 已提交
5876
  width: 100%;
A
Abdullah Almsaeed 已提交
5877
  pointer-events: auto;
A
Abdullah Almsaeed 已提交
5878
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
5879 5880 5881
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
5882 5883 5884
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  outline: 0;
}
A
Abdullah Almsaeed 已提交
5885 5886 5887 5888 5889 5890

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
5891 5892
  width: 100vw;
  height: 100vh;
A
Abdullah Almsaeed 已提交
5893 5894
  background-color: #000;
}
A
Abdullah Almsaeed 已提交
5895

A
Abdullah Almsaeed 已提交
5896 5897 5898 5899 5900 5901 5902 5903 5904
.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
5905
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
5906
  display: flex;
5907
  -ms-flex-align: start;
A
Abdullah Almsaeed 已提交
5908
  align-items: flex-start;
5909
  -ms-flex-pack: justify;
A
Abdullah Almsaeed 已提交
5910
  justify-content: space-between;
A
Abdullah Almsaeed 已提交
5911
  padding: 1rem;
A
Abdullah Almsaeed 已提交
5912 5913
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
5914 5915 5916 5917 5918 5919 5920
  border-top-right-radius: 0.3rem;
}

.modal-header .close, .modal-header .mailbox-attachment-close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}
A
Abdullah Almsaeed 已提交
5921 5922

.modal-title {
A
Abdullah Almsaeed 已提交
5923
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
5924 5925
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
5926 5927 5928

.modal-body {
  position: relative;
5929
  -ms-flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
5930
  flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
5931 5932
  padding: 1rem;
}
A
Abdullah Almsaeed 已提交
5933 5934

.modal-footer {
5935
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
5936
  display: flex;
5937
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
5938
  align-items: center;
5939
  -ms-flex-pack: end;
A
Abdullah Almsaeed 已提交
5940
  justify-content: flex-end;
A
Abdullah Almsaeed 已提交
5941 5942
  padding: 1rem;
  border-top: 1px solid #e9ecef;
5943 5944
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
5945 5946 5947 5948 5949 5950 5951 5952 5953
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}
A
Abdullah Almsaeed 已提交
5954 5955 5956 5957 5958 5959

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
A
Abdullah Almsaeed 已提交
5960 5961
  overflow: scroll;
}
A
Abdullah Almsaeed 已提交
5962 5963 5964

@media (min-width: 576px) {
  .modal-dialog {
A
Abdullah Almsaeed 已提交
5965
    max-width: 500px;
A
Abdullah Almsaeed 已提交
5966 5967
    margin: 1.75rem auto;
  }
5968 5969 5970 5971 5972 5973
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
A
Abdullah Almsaeed 已提交
5974
  .modal-dialog-centered {
5975 5976 5977 5978
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
A
Abdullah Almsaeed 已提交
5979 5980 5981 5982
  }
  .modal-content {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  }
A
Abdullah Almsaeed 已提交
5983
  .modal-sm {
A
Abdullah Almsaeed 已提交
5984 5985 5986
    max-width: 300px;
  }
}
A
Abdullah Almsaeed 已提交
5987 5988

@media (min-width: 992px) {
5989 5990
  .modal-lg,
  .modal-xl {
A
Abdullah Almsaeed 已提交
5991 5992 5993
    max-width: 800px;
  }
}
A
Abdullah Almsaeed 已提交
5994

5995 5996 5997 5998 5999 6000
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

A
Abdullah Almsaeed 已提交
6001 6002 6003 6004
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
A
Abdullah Almsaeed 已提交
6005
  margin: 0;
A
Abdullah Almsaeed 已提交
6006
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
A
Abdullah Almsaeed 已提交
6007
  font-style: normal;
A
Abdullah Almsaeed 已提交
6008
  font-weight: 400;
A
Abdullah Almsaeed 已提交
6009 6010 6011 6012 6013 6014
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
A
Abdullah Almsaeed 已提交
6015
  letter-spacing: normal;
A
Abdullah Almsaeed 已提交
6016 6017
  word-break: normal;
  word-spacing: normal;
A
Abdullah Almsaeed 已提交
6018 6019
  white-space: normal;
  line-break: auto;
A
Abdullah Almsaeed 已提交
6020 6021
  font-size: 0.875rem;
  word-wrap: break-word;
A
Abdullah Almsaeed 已提交
6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}
A
Abdullah Almsaeed 已提交
6102

A
Abdullah Almsaeed 已提交
6103 6104
.tooltip-inner {
  max-width: 200px;
A
Abdullah Almsaeed 已提交
6105 6106
  padding: 0.25rem 0.5rem;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
6107 6108
  text-align: center;
  background-color: #000;
A
Abdullah Almsaeed 已提交
6109 6110
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
6111

A
Abdullah Almsaeed 已提交
6112 6113 6114
.popover {
  position: absolute;
  top: 0;
A
Abdullah Almsaeed 已提交
6115 6116 6117 6118
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
A
Abdullah Almsaeed 已提交
6119
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
A
Abdullah Almsaeed 已提交
6120
  font-style: normal;
A
Abdullah Almsaeed 已提交
6121
  font-weight: 400;
A
Abdullah Almsaeed 已提交
6122 6123 6124 6125 6126 6127
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
A
Abdullah Almsaeed 已提交
6128
  letter-spacing: normal;
A
Abdullah Almsaeed 已提交
6129 6130
  word-break: normal;
  word-spacing: normal;
A
Abdullah Almsaeed 已提交
6131 6132
  white-space: normal;
  line-break: auto;
A
Abdullah Almsaeed 已提交
6133 6134
  font-size: 0.875rem;
  word-wrap: break-word;
A
Abdullah Almsaeed 已提交
6135
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
6136 6137
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
A
Abdullah Almsaeed 已提交
6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161
  border-radius: 0.3rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

6162
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
A
Abdullah Almsaeed 已提交
6163 6164 6165
  bottom: calc((0.5rem + 1px) * -1);
}

6166
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
A
Abdullah Almsaeed 已提交
6167
  bottom: 0;
6168
  border-width: 0.5rem 0.5rem 0;
A
Abdullah Almsaeed 已提交
6169 6170 6171
  border-top-color: rgba(0, 0, 0, 0.25);
}

6172
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
A
Abdullah Almsaeed 已提交
6173
  bottom: 1px;
6174
  border-width: 0.5rem 0.5rem 0;
A
Abdullah Almsaeed 已提交
6175 6176 6177 6178 6179 6180 6181
  border-top-color: #ffffff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

6182
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
A
Abdullah Almsaeed 已提交
6183 6184 6185 6186 6187 6188
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

6189
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
A
Abdullah Almsaeed 已提交
6190
  left: 0;
6191
  border-width: 0.5rem 0.5rem 0.5rem 0;
A
Abdullah Almsaeed 已提交
6192 6193 6194
  border-right-color: rgba(0, 0, 0, 0.25);
}

6195
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
A
Abdullah Almsaeed 已提交
6196
  left: 1px;
6197
  border-width: 0.5rem 0.5rem 0.5rem 0;
A
Abdullah Almsaeed 已提交
6198 6199 6200 6201 6202 6203 6204
  border-right-color: #ffffff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

6205
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
A
Abdullah Almsaeed 已提交
6206 6207 6208
  top: calc((0.5rem + 1px) * -1);
}

6209
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
A
Abdullah Almsaeed 已提交
6210
  top: 0;
6211
  border-width: 0 0.5rem 0.5rem 0.5rem;
A
Abdullah Almsaeed 已提交
6212 6213 6214
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

6215
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
A
Abdullah Almsaeed 已提交
6216
  top: 1px;
6217
  border-width: 0 0.5rem 0.5rem 0.5rem;
A
Abdullah Almsaeed 已提交
6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235
  border-bottom-color: #ffffff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

6236
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
A
Abdullah Almsaeed 已提交
6237 6238 6239 6240 6241 6242
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

6243
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
A
Abdullah Almsaeed 已提交
6244
  right: 0;
6245
  border-width: 0.5rem 0 0.5rem 0.5rem;
A
Abdullah Almsaeed 已提交
6246 6247 6248
  border-left-color: rgba(0, 0, 0, 0.25);
}

6249
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
A
Abdullah Almsaeed 已提交
6250
  right: 1px;
6251
  border-width: 0.5rem 0 0.5rem 0.5rem;
A
Abdullah Almsaeed 已提交
6252 6253
  border-left-color: #ffffff;
}
A
Abdullah Almsaeed 已提交
6254 6255 6256 6257

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
6258
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
6259
  color: inherit;
A
Abdullah Almsaeed 已提交
6260 6261
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
A
Abdullah Almsaeed 已提交
6262
  border-top-left-radius: calc(0.3rem - 1px);
A
Abdullah Almsaeed 已提交
6263 6264 6265 6266 6267 6268
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}
A
Abdullah Almsaeed 已提交
6269

A
Abdullah Almsaeed 已提交
6270 6271
.popover-body {
  padding: 0.5rem 0.75rem;
A
Abdullah Almsaeed 已提交
6272 6273
  color: #212529;
}
A
Abdullah Almsaeed 已提交
6274 6275

.carousel {
A
Abdullah Almsaeed 已提交
6276 6277
  position: relative;
}
A
Abdullah Almsaeed 已提交
6278

6279
.carousel.pointer-event {
6280
  -ms-touch-action: pan-y;
6281 6282 6283
  touch-action: pan-y;
}

A
Abdullah Almsaeed 已提交
6284 6285 6286
.carousel-inner {
  position: relative;
  width: 100%;
A
Abdullah Almsaeed 已提交
6287 6288
  overflow: hidden;
}
A
Abdullah Almsaeed 已提交
6289

6290 6291 6292 6293 6294 6295
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

A
Abdullah Almsaeed 已提交
6296
.carousel-item {
A
Abdullah Almsaeed 已提交
6297 6298
  position: relative;
  display: none;
6299
  float: left;
A
Abdullah Almsaeed 已提交
6300
  width: 100%;
6301
  margin-right: -100%;
R
REJack 已提交
6302
  -webkit-backface-visibility: hidden;
A
Abdullah Almsaeed 已提交
6303
  backface-visibility: hidden;
R
REJack 已提交
6304
  transition: -webkit-transform 0.6s ease;
6305
  transition: transform 0.6s ease;
R
REJack 已提交
6306
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
6307 6308
}

6309 6310
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
6311 6312
    transition: none;
  }
A
Abdullah Almsaeed 已提交
6313
}
A
Abdullah Almsaeed 已提交
6314

6315
.carousel-item.active,
A
Abdullah Almsaeed 已提交
6316 6317
.carousel-item-next,
.carousel-item-prev {
6318
  display: block;
A
Abdullah Almsaeed 已提交
6319
}
A
Abdullah Almsaeed 已提交
6320

6321
.carousel-item-next:not(.carousel-item-left),
A
Abdullah Almsaeed 已提交
6322
.active.carousel-item-right {
R
REJack 已提交
6323
  -webkit-transform: translateX(100%);
6324
  transform: translateX(100%);
A
Abdullah Almsaeed 已提交
6325
}
A
Abdullah Almsaeed 已提交
6326

6327
.carousel-item-prev:not(.carousel-item-right),
A
Abdullah Almsaeed 已提交
6328
.active.carousel-item-left {
R
REJack 已提交
6329
  -webkit-transform: translateX(-100%);
A
Abdullah Almsaeed 已提交
6330 6331 6332
  transform: translateX(-100%);
}

A
Abdullah Almsaeed 已提交
6333 6334 6335
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
R
REJack 已提交
6336
  -webkit-transform: none;
6337
  transform: none;
A
Abdullah Almsaeed 已提交
6338 6339 6340 6341 6342
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
6343
  z-index: 1;
A
Abdullah Almsaeed 已提交
6344 6345 6346 6347 6348
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
6349
  z-index: 0;
A
Abdullah Almsaeed 已提交
6350
  opacity: 0;
6351
  transition: 0s 0.6s opacity;
A
Abdullah Almsaeed 已提交
6352 6353
}

6354
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
6355
  .carousel-fade .active.carousel-item-left,
6356 6357
  .carousel-fade .active.carousel-item-right {
    transition: none;
A
Abdullah Almsaeed 已提交
6358 6359 6360
  }
}

A
Abdullah Almsaeed 已提交
6361 6362
.carousel-control-prev,
.carousel-control-next {
A
Abdullah Almsaeed 已提交
6363 6364 6365
  position: absolute;
  top: 0;
  bottom: 0;
6366
  z-index: 1;
6367
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
6368
  display: flex;
6369
  -ms-flex-align: center;
A
Abdullah Almsaeed 已提交
6370
  align-items: center;
6371
  -ms-flex-pack: center;
A
Abdullah Almsaeed 已提交
6372
  justify-content: center;
A
Abdullah Almsaeed 已提交
6373
  width: 15%;
A
Abdullah Almsaeed 已提交
6374
  color: #ffffff;
A
Abdullah Almsaeed 已提交
6375
  text-align: center;
A
Abdullah Almsaeed 已提交
6376
  opacity: 0.5;
6377 6378 6379 6380 6381 6382 6383 6384
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
A
Abdullah Almsaeed 已提交
6385 6386 6387 6388 6389 6390 6391 6392
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
6393
  opacity: 0.9;
A
Abdullah Almsaeed 已提交
6394
}
A
Abdullah Almsaeed 已提交
6395

A
Abdullah Almsaeed 已提交
6396
.carousel-control-prev {
A
Abdullah Almsaeed 已提交
6397 6398
  left: 0;
}
A
Abdullah Almsaeed 已提交
6399

A
Abdullah Almsaeed 已提交
6400
.carousel-control-next {
A
Abdullah Almsaeed 已提交
6401 6402
  right: 0;
}
A
Abdullah Almsaeed 已提交
6403

A
Abdullah Almsaeed 已提交
6404 6405
.carousel-control-prev-icon,
.carousel-control-next-icon {
A
Abdullah Almsaeed 已提交
6406 6407 6408
  display: inline-block;
  width: 20px;
  height: 20px;
6409
  background: no-repeat 50% / 100% 100%;
A
Abdullah Almsaeed 已提交
6410
}
A
Abdullah Almsaeed 已提交
6411

A
Abdullah Almsaeed 已提交
6412
.carousel-control-prev-icon {
A
Abdullah Almsaeed 已提交
6413 6414
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
A
Abdullah Almsaeed 已提交
6415

A
Abdullah Almsaeed 已提交
6416
.carousel-control-next-icon {
A
Abdullah Almsaeed 已提交
6417 6418
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
A
Abdullah Almsaeed 已提交
6419 6420 6421

.carousel-indicators {
  position: absolute;
A
Abdullah Almsaeed 已提交
6422
  right: 0;
6423
  bottom: 0;
A
Abdullah Almsaeed 已提交
6424
  left: 0;
A
Abdullah Almsaeed 已提交
6425
  z-index: 15;
6426
  display: -ms-flexbox;
A
Abdullah Almsaeed 已提交
6427
  display: flex;
6428
  -ms-flex-pack: center;
A
Abdullah Almsaeed 已提交
6429
  justify-content: center;
A
Abdullah Almsaeed 已提交
6430
  padding-left: 0;
A
Abdullah Almsaeed 已提交
6431 6432
  margin-right: 15%;
  margin-left: 15%;
A
Abdullah Almsaeed 已提交
6433 6434 6435 6436
  list-style: none;
}

.carousel-indicators li {
6437
  box-sizing: content-box;
6438
  -ms-flex: 0 1 auto;
A
Abdullah Almsaeed 已提交
6439 6440 6441 6442 6443 6444
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
6445
  cursor: pointer;
6446 6447 6448 6449 6450 6451
  background-color: #ffffff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
A
Abdullah Almsaeed 已提交
6452 6453
}

6454 6455 6456 6457
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
A
Abdullah Almsaeed 已提交
6458 6459 6460
}

.carousel-indicators .active {
6461
  opacity: 1;
A
Abdullah Almsaeed 已提交
6462
}
A
Abdullah Almsaeed 已提交
6463 6464 6465 6466 6467 6468 6469 6470 6471

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
A
Abdullah Almsaeed 已提交
6472 6473 6474
  color: #ffffff;
  text-align: center;
}
A
Abdullah Almsaeed 已提交
6475

R
REJack 已提交
6476 6477 6478 6479 6480 6481 6482
@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

6483 6484
@keyframes spinner-border {
  to {
R
REJack 已提交
6485
    -webkit-transform: rotate(360deg);
6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497
    transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
R
REJack 已提交
6498
  -webkit-animation: spinner-border .75s linear infinite;
6499 6500 6501 6502 6503 6504 6505 6506 6507
  animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

R
REJack 已提交
6508 6509 6510 6511 6512 6513 6514 6515 6516 6517
@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

6518 6519
@keyframes spinner-grow {
  0% {
R
REJack 已提交
6520
    -webkit-transform: scale(0);
6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
R
REJack 已提交
6536
  -webkit-animation: spinner-grow .75s linear infinite;
6537 6538 6539 6540 6541 6542 6543 6544
  animation: spinner-grow .75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

A
Abdullah Almsaeed 已提交
6545
.align-baseline {
A
Abdullah Almsaeed 已提交
6546 6547
  vertical-align: baseline !important;
}
A
Abdullah Almsaeed 已提交
6548 6549

.align-top {
A
Abdullah Almsaeed 已提交
6550 6551
  vertical-align: top !important;
}
A
Abdullah Almsaeed 已提交
6552 6553

.align-middle {
A
Abdullah Almsaeed 已提交
6554 6555
  vertical-align: middle !important;
}
A
Abdullah Almsaeed 已提交
6556 6557

.align-bottom {
A
Abdullah Almsaeed 已提交
6558 6559
  vertical-align: bottom !important;
}
A
Abdullah Almsaeed 已提交
6560 6561

.align-text-bottom {
A
Abdullah Almsaeed 已提交
6562 6563
  vertical-align: text-bottom !important;
}
A
Abdullah Almsaeed 已提交
6564 6565

.align-text-top {
A
Abdullah Almsaeed 已提交
6566 6567
  vertical-align: text-top !important;
}
A
Abdullah Almsaeed 已提交
6568

A
Abdullah Almsaeed 已提交
6569
.bg-primary, .label-primary {
A
Abdullah Almsaeed 已提交
6570 6571 6572
  background-color: #007bff !important;
}

A
Abdullah Almsaeed 已提交
6573
a.bg-primary:hover, a.label-primary:hover, a.bg-primary:focus, a.label-primary:focus,
A
Abdullah Almsaeed 已提交
6574 6575 6576
button.bg-primary:hover,
button.label-primary:hover,
button.bg-primary:focus,
A
Abdullah Almsaeed 已提交
6577
button.label-primary:focus {
A
Abdullah Almsaeed 已提交
6578 6579
  background-color: #0062cc !important;
}
A
Abdullah Almsaeed 已提交
6580 6581

.bg-secondary {
A
Abdullah Almsaeed 已提交
6582 6583
  background-color: #6c757d !important;
}
A
Abdullah Almsaeed 已提交
6584

A
Abdullah Almsaeed 已提交
6585 6586 6587 6588 6589
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}
A
Abdullah Almsaeed 已提交
6590

A
Abdullah Almsaeed 已提交
6591
.bg-success, .alert-success, .label-success {
A
Abdullah Almsaeed 已提交
6592 6593 6594
  background-color: #28a745 !important;
}

A
Abdullah Almsaeed 已提交
6595
a.bg-success:hover, a.alert-success:hover, a.label-success:hover, a.bg-success:focus, a.alert-success:focus, a.label-success:focus,
A
Abdullah Almsaeed 已提交
6596 6597 6598 6599 6600
button.bg-success:hover,
button.alert-success:hover,
button.label-success:hover,
button.bg-success:focus,
button.alert-success:focus,
A
Abdullah Almsaeed 已提交
6601
button.label-success:focus {
A
Abdullah Almsaeed 已提交
6602 6603 6604
  background-color: #1e7e34 !important;
}

A
Abdullah Almsaeed 已提交
6605
.bg-info, .alert-info, .label-info {
A
Abdullah Almsaeed 已提交
6606 6607 6608
  background-color: #17a2b8 !important;
}

A
Abdullah Almsaeed 已提交
6609
a.bg-info:hover, a.alert-info:hover, a.label-info:hover, a.bg-info:focus, a.alert-info:focus, a.label-info:focus,
A
Abdullah Almsaeed 已提交
6610 6611 6612 6613 6614
button.bg-info:hover,
button.alert-info:hover,
button.label-info:hover,
button.bg-info:focus,
button.alert-info:focus,
A
Abdullah Almsaeed 已提交
6615
button.label-info:focus {
A
Abdullah Almsaeed 已提交
6616 6617 6618
  background-color: #117a8b !important;
}

A
Abdullah Almsaeed 已提交
6619
.bg-warning, .alert-warning, .label-warning {
A
Abdullah Almsaeed 已提交
6620 6621 6622
  background-color: #ffc107 !important;
}

A
Abdullah Almsaeed 已提交
6623
a.bg-warning:hover, a.alert-warning:hover, a.label-warning:hover, a.bg-warning:focus, a.alert-warning:focus, a.label-warning:focus,
A
Abdullah Almsaeed 已提交
6624 6625 6626 6627 6628
button.bg-warning:hover,
button.alert-warning:hover,
button.label-warning:hover,
button.bg-warning:focus,
button.alert-warning:focus,
A
Abdullah Almsaeed 已提交
6629
button.label-warning:focus {
A
Abdullah Almsaeed 已提交
6630 6631 6632 6633
  background-color: #d39e00 !important;
}

.bg-danger, .alert-danger,
A
Abdullah Almsaeed 已提交
6634
.alert-error, .label-danger {
A
Abdullah Almsaeed 已提交
6635 6636 6637 6638
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.alert-danger:hover,
A
Abdullah Almsaeed 已提交
6639 6640
a.alert-error:hover, a.label-danger:hover, a.bg-danger:focus, a.alert-danger:focus,
a.alert-error:focus, a.label-danger:focus,
A
Abdullah Almsaeed 已提交
6641 6642 6643 6644 6645 6646 6647
button.bg-danger:hover,
button.alert-danger:hover,
button.alert-error:hover,
button.label-danger:hover,
button.bg-danger:focus,
button.alert-danger:focus,
button.alert-error:focus,
A
Abdullah Almsaeed 已提交
6648
button.label-danger:focus {
A
Abdullah Almsaeed 已提交
6649 6650
  background-color: #bd2130 !important;
}
A
Abdullah Almsaeed 已提交
6651

A
Abdullah Almsaeed 已提交
6652
.bg-light {
A
Abdullah Almsaeed 已提交
6653 6654
  background-color: #f8f9fa !important;
}
A
Abdullah Almsaeed 已提交
6655

A
Abdullah Almsaeed 已提交
6656 6657 6658 6659 6660
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}
A
Abdullah Almsaeed 已提交
6661

A
Abdullah Almsaeed 已提交
6662
.bg-dark {
A
Abdullah Almsaeed 已提交
6663 6664
  background-color: #343a40 !important;
}
A
Abdullah Almsaeed 已提交
6665

A
Abdullah Almsaeed 已提交
6666 6667 6668 6669 6670
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}
A
Abdullah Almsaeed 已提交
6671

A
Abdullah Almsaeed 已提交
6672
.bg-white {
A
Abdullah Almsaeed 已提交
6673 6674
  background-color: #ffffff !important;
}
A
Abdullah Almsaeed 已提交
6675

A
Abdullah Almsaeed 已提交
6676
.bg-transparent {
A
Abdullah Almsaeed 已提交
6677 6678
  background-color: transparent !important;
}
A
Abdullah Almsaeed 已提交
6679

A
Abdullah Almsaeed 已提交
6680
.border {
A
Abdullah Almsaeed 已提交
6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}
A
Abdullah Almsaeed 已提交
6699

A
Abdullah Almsaeed 已提交
6700
.border-0 {
A
Abdullah Almsaeed 已提交
6701 6702
  border: 0 !important;
}
A
Abdullah Almsaeed 已提交
6703

A
Abdullah Almsaeed 已提交
6704
.border-top-0 {
A
Abdullah Almsaeed 已提交
6705 6706
  border-top: 0 !important;
}
A
Abdullah Almsaeed 已提交
6707

A
Abdullah Almsaeed 已提交
6708
.border-right-0 {
A
Abdullah Almsaeed 已提交
6709 6710
  border-right: 0 !important;
}
A
Abdullah Almsaeed 已提交
6711

A
Abdullah Almsaeed 已提交
6712
.border-bottom-0 {
A
Abdullah Almsaeed 已提交
6713 6714
  border-bottom: 0 !important;
}
A
Abdullah Almsaeed 已提交
6715

A
Abdullah Almsaeed 已提交
6716
.border-left-0 {
A
Abdullah Almsaeed 已提交
6717 6718
  border-left: 0 !important;
}
A
Abdullah Almsaeed 已提交
6719

A
Abdullah Almsaeed 已提交
6720
.border-primary {
A
Abdullah Almsaeed 已提交
6721 6722
  border-color: #007bff !important;
}
A
Abdullah Almsaeed 已提交
6723

A
Abdullah Almsaeed 已提交
6724
.border-secondary {
A
Abdullah Almsaeed 已提交
6725 6726
  border-color: #6c757d !important;
}
A
Abdullah Almsaeed 已提交
6727

A
Abdullah Almsaeed 已提交
6728
.border-success {
A
Abdullah Almsaeed 已提交
6729 6730
  border-color: #28a745 !important;
}
A
Abdullah Almsaeed 已提交
6731

A
Abdullah Almsaeed 已提交
6732
.border-info {
A
Abdullah Almsaeed 已提交
6733 6734
  border-color: #17a2b8 !important;
}
A
Abdullah Almsaeed 已提交
6735

A
Abdullah Almsaeed 已提交
6736
.border-warning {
A
Abdullah Almsaeed 已提交
6737 6738
  border-color: #ffc107 !important;
}
A
Abdullah Almsaeed 已提交
6739

A
Abdullah Almsaeed 已提交
6740
.border-danger {
A
Abdullah Almsaeed 已提交
6741 6742
  border-color: #dc3545 !important;
}
A
Abdullah Almsaeed 已提交
6743

A
Abdullah Almsaeed 已提交
6744
.border-light {
A
Abdullah Almsaeed 已提交
6745 6746
  border-color: #f8f9fa !important;
}
A
Abdullah Almsaeed 已提交
6747

A
Abdullah Almsaeed 已提交
6748
.border-dark {
A
Abdullah Almsaeed 已提交
6749 6750
  border-color: #343a40 !important;
}
A
Abdullah Almsaeed 已提交
6751

A
Abdullah Almsaeed 已提交
6752
.border-white {
A
Abdullah Almsaeed 已提交
6753 6754
  border-color: #ffffff !important;
}
A
Abdullah Almsaeed 已提交
6755

6756 6757 6758 6759
.rounded-sm {
  border-radius: 0.2rem !important;
}

A
Abdullah Almsaeed 已提交
6760
.rounded {
A
Abdullah Almsaeed 已提交
6761 6762
  border-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6763

A
Abdullah Almsaeed 已提交
6764 6765
.rounded-top {
  border-top-left-radius: 0.25rem !important;
A
Abdullah Almsaeed 已提交
6766 6767
  border-top-right-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6768

A
Abdullah Almsaeed 已提交
6769 6770
.rounded-right {
  border-top-right-radius: 0.25rem !important;
A
Abdullah Almsaeed 已提交
6771 6772
  border-bottom-right-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6773

A
Abdullah Almsaeed 已提交
6774 6775
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
A
Abdullah Almsaeed 已提交
6776 6777
  border-bottom-left-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6778

A
Abdullah Almsaeed 已提交
6779 6780
.rounded-left {
  border-top-left-radius: 0.25rem !important;
A
Abdullah Almsaeed 已提交
6781 6782
  border-bottom-left-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6783

6784 6785 6786 6787
.rounded-lg {
  border-radius: 0.3rem !important;
}

A
Abdullah Almsaeed 已提交
6788
.rounded-circle {
A
Abdullah Almsaeed 已提交
6789 6790
  border-radius: 50% !important;
}
A
Abdullah Almsaeed 已提交
6791

6792 6793 6794 6795
.rounded-pill {
  border-radius: 50rem !important;
}

A
Abdullah Almsaeed 已提交
6796
.rounded-0 {
A
Abdullah Almsaeed 已提交
6797 6798
  border-radius: 0 !important;
}
A
Abdullah Almsaeed 已提交
6799

A
Abdullah Almsaeed 已提交
6800 6801 6802
.clearfix::after {
  display: block;
  clear: both;
A
Abdullah Almsaeed 已提交
6803 6804
  content: "";
}
A
Abdullah Almsaeed 已提交
6805

A
Abdullah Almsaeed 已提交
6806
.d-none {
A
Abdullah Almsaeed 已提交
6807 6808
  display: none !important;
}
A
Abdullah Almsaeed 已提交
6809

A
Abdullah Almsaeed 已提交
6810
.d-inline {
A
Abdullah Almsaeed 已提交
6811 6812
  display: inline !important;
}
A
Abdullah Almsaeed 已提交
6813

A
Abdullah Almsaeed 已提交
6814
.d-inline-block {
A
Abdullah Almsaeed 已提交
6815 6816
  display: inline-block !important;
}
A
Abdullah Almsaeed 已提交
6817

A
Abdullah Almsaeed 已提交
6818
.d-block {
A
Abdullah Almsaeed 已提交
6819 6820
  display: block !important;
}
A
Abdullah Almsaeed 已提交
6821

A
Abdullah Almsaeed 已提交
6822
.d-table {
A
Abdullah Almsaeed 已提交
6823 6824
  display: table !important;
}
A
Abdullah Almsaeed 已提交
6825

A
Abdullah Almsaeed 已提交
6826
.d-table-row {
A
Abdullah Almsaeed 已提交
6827 6828
  display: table-row !important;
}
A
Abdullah Almsaeed 已提交
6829

A
Abdullah Almsaeed 已提交
6830
.d-table-cell {
A
Abdullah Almsaeed 已提交
6831 6832
  display: table-cell !important;
}
A
Abdullah Almsaeed 已提交
6833

6834
.d-flex, .info-box, .info-box .info-box-icon {
6835
  display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
6836 6837
  display: flex !important;
}
A
Abdullah Almsaeed 已提交
6838

A
Abdullah Almsaeed 已提交
6839
.d-inline-flex {
6840
  display: -ms-inline-flexbox !important;
A
Abdullah Almsaeed 已提交
6841 6842
  display: inline-flex !important;
}
A
Abdullah Almsaeed 已提交
6843

A
Abdullah Almsaeed 已提交
6844 6845
@media (min-width: 576px) {
  .d-sm-none {
A
Abdullah Almsaeed 已提交
6846 6847
    display: none !important;
  }
A
Abdullah Almsaeed 已提交
6848
  .d-sm-inline {
A
Abdullah Almsaeed 已提交
6849 6850
    display: inline !important;
  }
A
Abdullah Almsaeed 已提交
6851
  .d-sm-inline-block {
A
Abdullah Almsaeed 已提交
6852 6853
    display: inline-block !important;
  }
A
Abdullah Almsaeed 已提交
6854
  .d-sm-block {
A
Abdullah Almsaeed 已提交
6855 6856
    display: block !important;
  }
A
Abdullah Almsaeed 已提交
6857
  .d-sm-table {
A
Abdullah Almsaeed 已提交
6858 6859
    display: table !important;
  }
A
Abdullah Almsaeed 已提交
6860
  .d-sm-table-row {
A
Abdullah Almsaeed 已提交
6861 6862
    display: table-row !important;
  }
A
Abdullah Almsaeed 已提交
6863
  .d-sm-table-cell {
A
Abdullah Almsaeed 已提交
6864 6865
    display: table-cell !important;
  }
A
Abdullah Almsaeed 已提交
6866
  .d-sm-flex {
6867
    display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
6868 6869
    display: flex !important;
  }
A
Abdullah Almsaeed 已提交
6870
  .d-sm-inline-flex {
6871
    display: -ms-inline-flexbox !important;
A
Abdullah Almsaeed 已提交
6872 6873 6874
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
6875

A
Abdullah Almsaeed 已提交
6876 6877
@media (min-width: 768px) {
  .d-md-none {
A
Abdullah Almsaeed 已提交
6878 6879
    display: none !important;
  }
A
Abdullah Almsaeed 已提交
6880
  .d-md-inline {
A
Abdullah Almsaeed 已提交
6881 6882
    display: inline !important;
  }
A
Abdullah Almsaeed 已提交
6883
  .d-md-inline-block {
A
Abdullah Almsaeed 已提交
6884 6885
    display: inline-block !important;
  }
A
Abdullah Almsaeed 已提交
6886
  .d-md-block {
A
Abdullah Almsaeed 已提交
6887 6888
    display: block !important;
  }
A
Abdullah Almsaeed 已提交
6889
  .d-md-table {
A
Abdullah Almsaeed 已提交
6890 6891
    display: table !important;
  }
A
Abdullah Almsaeed 已提交
6892
  .d-md-table-row {
A
Abdullah Almsaeed 已提交
6893 6894
    display: table-row !important;
  }
A
Abdullah Almsaeed 已提交
6895
  .d-md-table-cell {
A
Abdullah Almsaeed 已提交
6896 6897
    display: table-cell !important;
  }
A
Abdullah Almsaeed 已提交
6898
  .d-md-flex {
6899
    display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
6900 6901
    display: flex !important;
  }
A
Abdullah Almsaeed 已提交
6902
  .d-md-inline-flex {
6903
    display: -ms-inline-flexbox !important;
A
Abdullah Almsaeed 已提交
6904 6905 6906
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
6907

A
Abdullah Almsaeed 已提交
6908 6909
@media (min-width: 992px) {
  .d-lg-none {
A
Abdullah Almsaeed 已提交
6910 6911
    display: none !important;
  }
A
Abdullah Almsaeed 已提交
6912
  .d-lg-inline {
A
Abdullah Almsaeed 已提交
6913 6914
    display: inline !important;
  }
A
Abdullah Almsaeed 已提交
6915
  .d-lg-inline-block {
A
Abdullah Almsaeed 已提交
6916 6917
    display: inline-block !important;
  }
A
Abdullah Almsaeed 已提交
6918
  .d-lg-block {
A
Abdullah Almsaeed 已提交
6919 6920
    display: block !important;
  }
A
Abdullah Almsaeed 已提交
6921
  .d-lg-table {
A
Abdullah Almsaeed 已提交
6922 6923
    display: table !important;
  }
A
Abdullah Almsaeed 已提交
6924
  .d-lg-table-row {
A
Abdullah Almsaeed 已提交
6925 6926
    display: table-row !important;
  }
A
Abdullah Almsaeed 已提交
6927
  .d-lg-table-cell {
A
Abdullah Almsaeed 已提交
6928 6929
    display: table-cell !important;
  }
A
Abdullah Almsaeed 已提交
6930
  .d-lg-flex {
6931
    display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
6932 6933
    display: flex !important;
  }
A
Abdullah Almsaeed 已提交
6934
  .d-lg-inline-flex {
6935
    display: -ms-inline-flexbox !important;
A
Abdullah Almsaeed 已提交
6936 6937 6938
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
6939

A
Abdullah Almsaeed 已提交
6940 6941
@media (min-width: 1200px) {
  .d-xl-none {
A
Abdullah Almsaeed 已提交
6942 6943
    display: none !important;
  }
A
Abdullah Almsaeed 已提交
6944
  .d-xl-inline {
A
Abdullah Almsaeed 已提交
6945 6946
    display: inline !important;
  }
A
Abdullah Almsaeed 已提交
6947
  .d-xl-inline-block {
A
Abdullah Almsaeed 已提交
6948 6949
    display: inline-block !important;
  }
A
Abdullah Almsaeed 已提交
6950
  .d-xl-block {
A
Abdullah Almsaeed 已提交
6951 6952
    display: block !important;
  }
A
Abdullah Almsaeed 已提交
6953
  .d-xl-table {
A
Abdullah Almsaeed 已提交
6954 6955
    display: table !important;
  }
A
Abdullah Almsaeed 已提交
6956
  .d-xl-table-row {
A
Abdullah Almsaeed 已提交
6957 6958
    display: table-row !important;
  }
A
Abdullah Almsaeed 已提交
6959
  .d-xl-table-cell {
A
Abdullah Almsaeed 已提交
6960 6961
    display: table-cell !important;
  }
A
Abdullah Almsaeed 已提交
6962
  .d-xl-flex {
6963
    display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
6964 6965
    display: flex !important;
  }
A
Abdullah Almsaeed 已提交
6966
  .d-xl-inline-flex {
6967
    display: -ms-inline-flexbox !important;
A
Abdullah Almsaeed 已提交
6968 6969 6970
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
6971

A
Abdullah Almsaeed 已提交
6972 6973
@media print {
  .d-print-none {
A
Abdullah Almsaeed 已提交
6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
6995
    display: -ms-flexbox !important;
A
Abdullah Almsaeed 已提交
6996 6997 6998
    display: flex !important;
  }
  .d-print-inline-flex {
6999
    display: -ms-inline-flexbox !important;
A
Abdullah Almsaeed 已提交
7000 7001 7002
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
7003

A
Abdullah Almsaeed 已提交
7004 7005 7006 7007 7008
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
A
Abdullah Almsaeed 已提交
7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
A
Abdullah Almsaeed 已提交
7030

A
Abdullah Almsaeed 已提交
7031
.embed-responsive-21by9::before {
A
Abdullah Almsaeed 已提交
7032 7033
  padding-top: 42.857143%;
}
A
Abdullah Almsaeed 已提交
7034

A
Abdullah Almsaeed 已提交
7035
.embed-responsive-16by9::before {
A
Abdullah Almsaeed 已提交
7036 7037
  padding-top: 56.25%;
}
A
Abdullah Almsaeed 已提交
7038

A
Abdullah Almsaeed 已提交
7039
.embed-responsive-4by3::before {
A
Abdullah Almsaeed 已提交
7040 7041
  padding-top: 75%;
}
A
Abdullah Almsaeed 已提交
7042

A
Abdullah Almsaeed 已提交
7043
.embed-responsive-1by1::before {
A
Abdullah Almsaeed 已提交
7044 7045
  padding-top: 100%;
}
A
Abdullah Almsaeed 已提交
7046

A
Abdullah Almsaeed 已提交
7047
.flex-row {
7048
  -ms-flex-direction: row !important;
A
Abdullah Almsaeed 已提交
7049 7050
  flex-direction: row !important;
}
A
Abdullah Almsaeed 已提交
7051

A
Abdullah Almsaeed 已提交
7052
.flex-column {
7053
  -ms-flex-direction: column !important;
A
Abdullah Almsaeed 已提交
7054 7055
  flex-direction: column !important;
}
A
Abdullah Almsaeed 已提交
7056

A
Abdullah Almsaeed 已提交
7057
.flex-row-reverse {
7058
  -ms-flex-direction: row-reverse !important;
A
Abdullah Almsaeed 已提交
7059 7060
  flex-direction: row-reverse !important;
}
A
Abdullah Almsaeed 已提交
7061

A
Abdullah Almsaeed 已提交
7062
.flex-column-reverse {
7063
  -ms-flex-direction: column-reverse !important;
A
Abdullah Almsaeed 已提交
7064 7065
  flex-direction: column-reverse !important;
}
A
Abdullah Almsaeed 已提交
7066

A
Abdullah Almsaeed 已提交
7067
.flex-wrap {
7068
  -ms-flex-wrap: wrap !important;
A
Abdullah Almsaeed 已提交
7069 7070
  flex-wrap: wrap !important;
}
A
Abdullah Almsaeed 已提交
7071

A
Abdullah Almsaeed 已提交
7072
.flex-nowrap {
7073
  -ms-flex-wrap: nowrap !important;
A
Abdullah Almsaeed 已提交
7074 7075
  flex-wrap: nowrap !important;
}
A
Abdullah Almsaeed 已提交
7076

A
Abdullah Almsaeed 已提交
7077
.flex-wrap-reverse {
7078
  -ms-flex-wrap: wrap-reverse !important;
A
Abdullah Almsaeed 已提交
7079 7080
  flex-wrap: wrap-reverse !important;
}
A
Abdullah Almsaeed 已提交
7081

A
Abdullah Almsaeed 已提交
7082
.flex-fill {
7083
  -ms-flex: 1 1 auto !important;
A
Abdullah Almsaeed 已提交
7084 7085 7086 7087
  flex: 1 1 auto !important;
}

.flex-grow-0 {
7088
  -ms-flex-positive: 0 !important;
A
Abdullah Almsaeed 已提交
7089 7090 7091 7092
  flex-grow: 0 !important;
}

.flex-grow-1 {
7093
  -ms-flex-positive: 1 !important;
A
Abdullah Almsaeed 已提交
7094 7095 7096 7097
  flex-grow: 1 !important;
}

.flex-shrink-0 {
7098
  -ms-flex-negative: 0 !important;
A
Abdullah Almsaeed 已提交
7099 7100 7101 7102
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
7103
  -ms-flex-negative: 1 !important;
A
Abdullah Almsaeed 已提交
7104 7105 7106
  flex-shrink: 1 !important;
}

A
Abdullah Almsaeed 已提交
7107
.justify-content-start {
7108
  -ms-flex-pack: start !important;
A
Abdullah Almsaeed 已提交
7109 7110
  justify-content: flex-start !important;
}
A
Abdullah Almsaeed 已提交
7111

A
Abdullah Almsaeed 已提交
7112
.justify-content-end {
7113
  -ms-flex-pack: end !important;
A
Abdullah Almsaeed 已提交
7114 7115
  justify-content: flex-end !important;
}
A
Abdullah Almsaeed 已提交
7116

7117
.justify-content-center, .info-box .info-box-icon {
7118
  -ms-flex-pack: center !important;
A
Abdullah Almsaeed 已提交
7119 7120
  justify-content: center !important;
}
A
Abdullah Almsaeed 已提交
7121

A
Abdullah Almsaeed 已提交
7122
.justify-content-between {
7123
  -ms-flex-pack: justify !important;
A
Abdullah Almsaeed 已提交
7124 7125
  justify-content: space-between !important;
}
A
Abdullah Almsaeed 已提交
7126

A
Abdullah Almsaeed 已提交
7127
.justify-content-around {
7128
  -ms-flex-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7129 7130
  justify-content: space-around !important;
}
A
Abdullah Almsaeed 已提交
7131

A
Abdullah Almsaeed 已提交
7132
.align-items-start {
7133
  -ms-flex-align: start !important;
A
Abdullah Almsaeed 已提交
7134 7135
  align-items: flex-start !important;
}
A
Abdullah Almsaeed 已提交
7136

A
Abdullah Almsaeed 已提交
7137
.align-items-end {
7138
  -ms-flex-align: end !important;
A
Abdullah Almsaeed 已提交
7139 7140
  align-items: flex-end !important;
}
A
Abdullah Almsaeed 已提交
7141

7142
.align-items-center, .info-box .info-box-icon {
7143
  -ms-flex-align: center !important;
A
Abdullah Almsaeed 已提交
7144 7145
  align-items: center !important;
}
A
Abdullah Almsaeed 已提交
7146

A
Abdullah Almsaeed 已提交
7147
.align-items-baseline {
7148
  -ms-flex-align: baseline !important;
A
Abdullah Almsaeed 已提交
7149 7150
  align-items: baseline !important;
}
A
Abdullah Almsaeed 已提交
7151

A
Abdullah Almsaeed 已提交
7152
.align-items-stretch {
7153
  -ms-flex-align: stretch !important;
A
Abdullah Almsaeed 已提交
7154 7155
  align-items: stretch !important;
}
A
Abdullah Almsaeed 已提交
7156

A
Abdullah Almsaeed 已提交
7157
.align-content-start {
7158
  -ms-flex-line-pack: start !important;
A
Abdullah Almsaeed 已提交
7159 7160
  align-content: flex-start !important;
}
A
Abdullah Almsaeed 已提交
7161

A
Abdullah Almsaeed 已提交
7162
.align-content-end {
7163
  -ms-flex-line-pack: end !important;
A
Abdullah Almsaeed 已提交
7164 7165
  align-content: flex-end !important;
}
A
Abdullah Almsaeed 已提交
7166

A
Abdullah Almsaeed 已提交
7167
.align-content-center {
7168
  -ms-flex-line-pack: center !important;
A
Abdullah Almsaeed 已提交
7169 7170
  align-content: center !important;
}
A
Abdullah Almsaeed 已提交
7171

A
Abdullah Almsaeed 已提交
7172
.align-content-between {
7173
  -ms-flex-line-pack: justify !important;
A
Abdullah Almsaeed 已提交
7174 7175
  align-content: space-between !important;
}
A
Abdullah Almsaeed 已提交
7176

A
Abdullah Almsaeed 已提交
7177
.align-content-around {
7178
  -ms-flex-line-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7179 7180
  align-content: space-around !important;
}
A
Abdullah Almsaeed 已提交
7181

A
Abdullah Almsaeed 已提交
7182
.align-content-stretch {
7183
  -ms-flex-line-pack: stretch !important;
A
Abdullah Almsaeed 已提交
7184 7185
  align-content: stretch !important;
}
A
Abdullah Almsaeed 已提交
7186

A
Abdullah Almsaeed 已提交
7187
.align-self-auto {
7188
  -ms-flex-item-align: auto !important;
A
Abdullah Almsaeed 已提交
7189 7190
  align-self: auto !important;
}
A
Abdullah Almsaeed 已提交
7191

A
Abdullah Almsaeed 已提交
7192
.align-self-start {
7193
  -ms-flex-item-align: start !important;
A
Abdullah Almsaeed 已提交
7194 7195
  align-self: flex-start !important;
}
A
Abdullah Almsaeed 已提交
7196

A
Abdullah Almsaeed 已提交
7197
.align-self-end {
7198
  -ms-flex-item-align: end !important;
A
Abdullah Almsaeed 已提交
7199 7200
  align-self: flex-end !important;
}
A
Abdullah Almsaeed 已提交
7201

A
Abdullah Almsaeed 已提交
7202
.align-self-center {
7203
  -ms-flex-item-align: center !important;
A
Abdullah Almsaeed 已提交
7204 7205
  align-self: center !important;
}
A
Abdullah Almsaeed 已提交
7206

A
Abdullah Almsaeed 已提交
7207
.align-self-baseline {
7208
  -ms-flex-item-align: baseline !important;
A
Abdullah Almsaeed 已提交
7209 7210
  align-self: baseline !important;
}
A
Abdullah Almsaeed 已提交
7211

A
Abdullah Almsaeed 已提交
7212
.align-self-stretch {
7213
  -ms-flex-item-align: stretch !important;
A
Abdullah Almsaeed 已提交
7214 7215
  align-self: stretch !important;
}
A
Abdullah Almsaeed 已提交
7216

A
Abdullah Almsaeed 已提交
7217 7218
@media (min-width: 576px) {
  .flex-sm-row {
7219
    -ms-flex-direction: row !important;
A
Abdullah Almsaeed 已提交
7220 7221
    flex-direction: row !important;
  }
A
Abdullah Almsaeed 已提交
7222
  .flex-sm-column {
7223
    -ms-flex-direction: column !important;
A
Abdullah Almsaeed 已提交
7224 7225
    flex-direction: column !important;
  }
A
Abdullah Almsaeed 已提交
7226
  .flex-sm-row-reverse {
7227
    -ms-flex-direction: row-reverse !important;
A
Abdullah Almsaeed 已提交
7228 7229
    flex-direction: row-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7230
  .flex-sm-column-reverse {
7231
    -ms-flex-direction: column-reverse !important;
A
Abdullah Almsaeed 已提交
7232 7233
    flex-direction: column-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7234
  .flex-sm-wrap {
7235
    -ms-flex-wrap: wrap !important;
A
Abdullah Almsaeed 已提交
7236 7237
    flex-wrap: wrap !important;
  }
A
Abdullah Almsaeed 已提交
7238
  .flex-sm-nowrap {
7239
    -ms-flex-wrap: nowrap !important;
A
Abdullah Almsaeed 已提交
7240 7241
    flex-wrap: nowrap !important;
  }
A
Abdullah Almsaeed 已提交
7242
  .flex-sm-wrap-reverse {
7243
    -ms-flex-wrap: wrap-reverse !important;
A
Abdullah Almsaeed 已提交
7244 7245
    flex-wrap: wrap-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7246
  .flex-sm-fill {
7247
    -ms-flex: 1 1 auto !important;
A
Abdullah Almsaeed 已提交
7248 7249 7250
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
7251
    -ms-flex-positive: 0 !important;
A
Abdullah Almsaeed 已提交
7252 7253 7254
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
7255
    -ms-flex-positive: 1 !important;
A
Abdullah Almsaeed 已提交
7256 7257 7258
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
7259
    -ms-flex-negative: 0 !important;
A
Abdullah Almsaeed 已提交
7260 7261 7262
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
7263
    -ms-flex-negative: 1 !important;
A
Abdullah Almsaeed 已提交
7264 7265
    flex-shrink: 1 !important;
  }
A
Abdullah Almsaeed 已提交
7266
  .justify-content-sm-start {
7267
    -ms-flex-pack: start !important;
A
Abdullah Almsaeed 已提交
7268 7269
    justify-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7270
  .justify-content-sm-end {
7271
    -ms-flex-pack: end !important;
A
Abdullah Almsaeed 已提交
7272 7273
    justify-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7274
  .justify-content-sm-center {
7275
    -ms-flex-pack: center !important;
A
Abdullah Almsaeed 已提交
7276 7277
    justify-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7278
  .justify-content-sm-between {
7279
    -ms-flex-pack: justify !important;
A
Abdullah Almsaeed 已提交
7280 7281
    justify-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7282
  .justify-content-sm-around {
7283
    -ms-flex-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7284 7285
    justify-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7286
  .align-items-sm-start {
7287
    -ms-flex-align: start !important;
A
Abdullah Almsaeed 已提交
7288 7289
    align-items: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7290
  .align-items-sm-end {
7291
    -ms-flex-align: end !important;
A
Abdullah Almsaeed 已提交
7292 7293
    align-items: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7294
  .align-items-sm-center {
7295
    -ms-flex-align: center !important;
A
Abdullah Almsaeed 已提交
7296 7297
    align-items: center !important;
  }
A
Abdullah Almsaeed 已提交
7298
  .align-items-sm-baseline {
7299
    -ms-flex-align: baseline !important;
A
Abdullah Almsaeed 已提交
7300 7301
    align-items: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7302
  .align-items-sm-stretch {
7303
    -ms-flex-align: stretch !important;
A
Abdullah Almsaeed 已提交
7304 7305
    align-items: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7306
  .align-content-sm-start {
7307
    -ms-flex-line-pack: start !important;
A
Abdullah Almsaeed 已提交
7308 7309
    align-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7310
  .align-content-sm-end {
7311
    -ms-flex-line-pack: end !important;
A
Abdullah Almsaeed 已提交
7312 7313
    align-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7314
  .align-content-sm-center {
7315
    -ms-flex-line-pack: center !important;
A
Abdullah Almsaeed 已提交
7316 7317
    align-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7318
  .align-content-sm-between {
7319
    -ms-flex-line-pack: justify !important;
A
Abdullah Almsaeed 已提交
7320 7321
    align-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7322
  .align-content-sm-around {
7323
    -ms-flex-line-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7324 7325
    align-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7326
  .align-content-sm-stretch {
7327
    -ms-flex-line-pack: stretch !important;
A
Abdullah Almsaeed 已提交
7328 7329
    align-content: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7330
  .align-self-sm-auto {
7331
    -ms-flex-item-align: auto !important;
A
Abdullah Almsaeed 已提交
7332 7333
    align-self: auto !important;
  }
A
Abdullah Almsaeed 已提交
7334
  .align-self-sm-start {
7335
    -ms-flex-item-align: start !important;
A
Abdullah Almsaeed 已提交
7336 7337
    align-self: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7338
  .align-self-sm-end {
7339
    -ms-flex-item-align: end !important;
A
Abdullah Almsaeed 已提交
7340 7341
    align-self: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7342
  .align-self-sm-center {
7343
    -ms-flex-item-align: center !important;
A
Abdullah Almsaeed 已提交
7344 7345
    align-self: center !important;
  }
A
Abdullah Almsaeed 已提交
7346
  .align-self-sm-baseline {
7347
    -ms-flex-item-align: baseline !important;
A
Abdullah Almsaeed 已提交
7348 7349
    align-self: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7350
  .align-self-sm-stretch {
7351
    -ms-flex-item-align: stretch !important;
A
Abdullah Almsaeed 已提交
7352 7353 7354
    align-self: stretch !important;
  }
}
A
Abdullah Almsaeed 已提交
7355

A
Abdullah Almsaeed 已提交
7356 7357
@media (min-width: 768px) {
  .flex-md-row {
7358
    -ms-flex-direction: row !important;
A
Abdullah Almsaeed 已提交
7359 7360
    flex-direction: row !important;
  }
A
Abdullah Almsaeed 已提交
7361
  .flex-md-column {
7362
    -ms-flex-direction: column !important;
A
Abdullah Almsaeed 已提交
7363 7364
    flex-direction: column !important;
  }
A
Abdullah Almsaeed 已提交
7365
  .flex-md-row-reverse {
7366
    -ms-flex-direction: row-reverse !important;
A
Abdullah Almsaeed 已提交
7367 7368
    flex-direction: row-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7369
  .flex-md-column-reverse {
7370
    -ms-flex-direction: column-reverse !important;
A
Abdullah Almsaeed 已提交
7371 7372
    flex-direction: column-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7373
  .flex-md-wrap {
7374
    -ms-flex-wrap: wrap !important;
A
Abdullah Almsaeed 已提交
7375 7376
    flex-wrap: wrap !important;
  }
A
Abdullah Almsaeed 已提交
7377
  .flex-md-nowrap {
7378
    -ms-flex-wrap: nowrap !important;
A
Abdullah Almsaeed 已提交
7379 7380
    flex-wrap: nowrap !important;
  }
A
Abdullah Almsaeed 已提交
7381
  .flex-md-wrap-reverse {
7382
    -ms-flex-wrap: wrap-reverse !important;
A
Abdullah Almsaeed 已提交
7383 7384
    flex-wrap: wrap-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7385
  .flex-md-fill {
7386
    -ms-flex: 1 1 auto !important;
A
Abdullah Almsaeed 已提交
7387 7388 7389
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
7390
    -ms-flex-positive: 0 !important;
A
Abdullah Almsaeed 已提交
7391 7392 7393
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
7394
    -ms-flex-positive: 1 !important;
A
Abdullah Almsaeed 已提交
7395 7396 7397
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
7398
    -ms-flex-negative: 0 !important;
A
Abdullah Almsaeed 已提交
7399 7400 7401
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
7402
    -ms-flex-negative: 1 !important;
A
Abdullah Almsaeed 已提交
7403 7404
    flex-shrink: 1 !important;
  }
A
Abdullah Almsaeed 已提交
7405
  .justify-content-md-start {
7406
    -ms-flex-pack: start !important;
A
Abdullah Almsaeed 已提交
7407 7408
    justify-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7409
  .justify-content-md-end {
7410
    -ms-flex-pack: end !important;
A
Abdullah Almsaeed 已提交
7411 7412
    justify-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7413
  .justify-content-md-center {
7414
    -ms-flex-pack: center !important;
A
Abdullah Almsaeed 已提交
7415 7416
    justify-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7417
  .justify-content-md-between {
7418
    -ms-flex-pack: justify !important;
A
Abdullah Almsaeed 已提交
7419 7420
    justify-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7421
  .justify-content-md-around {
7422
    -ms-flex-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7423 7424
    justify-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7425
  .align-items-md-start {
7426
    -ms-flex-align: start !important;
A
Abdullah Almsaeed 已提交
7427 7428
    align-items: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7429
  .align-items-md-end {
7430
    -ms-flex-align: end !important;
A
Abdullah Almsaeed 已提交
7431 7432
    align-items: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7433
  .align-items-md-center {
7434
    -ms-flex-align: center !important;
A
Abdullah Almsaeed 已提交
7435 7436
    align-items: center !important;
  }
A
Abdullah Almsaeed 已提交
7437
  .align-items-md-baseline {
7438
    -ms-flex-align: baseline !important;
A
Abdullah Almsaeed 已提交
7439 7440
    align-items: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7441
  .align-items-md-stretch {
7442
    -ms-flex-align: stretch !important;
A
Abdullah Almsaeed 已提交
7443 7444
    align-items: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7445
  .align-content-md-start {
7446
    -ms-flex-line-pack: start !important;
A
Abdullah Almsaeed 已提交
7447 7448
    align-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7449
  .align-content-md-end {
7450
    -ms-flex-line-pack: end !important;
A
Abdullah Almsaeed 已提交
7451 7452
    align-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7453
  .align-content-md-center {
7454
    -ms-flex-line-pack: center !important;
A
Abdullah Almsaeed 已提交
7455 7456
    align-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7457
  .align-content-md-between {
7458
    -ms-flex-line-pack: justify !important;
A
Abdullah Almsaeed 已提交
7459 7460
    align-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7461
  .align-content-md-around {
7462
    -ms-flex-line-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7463 7464
    align-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7465
  .align-content-md-stretch {
7466
    -ms-flex-line-pack: stretch !important;
A
Abdullah Almsaeed 已提交
7467 7468
    align-content: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7469
  .align-self-md-auto {
7470
    -ms-flex-item-align: auto !important;
A
Abdullah Almsaeed 已提交
7471 7472
    align-self: auto !important;
  }
A
Abdullah Almsaeed 已提交
7473
  .align-self-md-start {
7474
    -ms-flex-item-align: start !important;
A
Abdullah Almsaeed 已提交
7475 7476
    align-self: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7477
  .align-self-md-end {
7478
    -ms-flex-item-align: end !important;
A
Abdullah Almsaeed 已提交
7479 7480
    align-self: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7481
  .align-self-md-center {
7482
    -ms-flex-item-align: center !important;
A
Abdullah Almsaeed 已提交
7483 7484
    align-self: center !important;
  }
A
Abdullah Almsaeed 已提交
7485
  .align-self-md-baseline {
7486
    -ms-flex-item-align: baseline !important;
A
Abdullah Almsaeed 已提交
7487 7488
    align-self: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7489
  .align-self-md-stretch {
7490
    -ms-flex-item-align: stretch !important;
A
Abdullah Almsaeed 已提交
7491 7492 7493
    align-self: stretch !important;
  }
}
A
Abdullah Almsaeed 已提交
7494

A
Abdullah Almsaeed 已提交
7495 7496
@media (min-width: 992px) {
  .flex-lg-row {
7497
    -ms-flex-direction: row !important;
A
Abdullah Almsaeed 已提交
7498 7499
    flex-direction: row !important;
  }
A
Abdullah Almsaeed 已提交
7500
  .flex-lg-column {
7501
    -ms-flex-direction: column !important;
A
Abdullah Almsaeed 已提交
7502 7503
    flex-direction: column !important;
  }
A
Abdullah Almsaeed 已提交
7504
  .flex-lg-row-reverse {
7505
    -ms-flex-direction: row-reverse !important;
A
Abdullah Almsaeed 已提交
7506 7507
    flex-direction: row-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7508
  .flex-lg-column-reverse {
7509
    -ms-flex-direction: column-reverse !important;
A
Abdullah Almsaeed 已提交
7510 7511
    flex-direction: column-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7512
  .flex-lg-wrap {
7513
    -ms-flex-wrap: wrap !important;
A
Abdullah Almsaeed 已提交
7514 7515
    flex-wrap: wrap !important;
  }
A
Abdullah Almsaeed 已提交
7516
  .flex-lg-nowrap {
7517
    -ms-flex-wrap: nowrap !important;
A
Abdullah Almsaeed 已提交
7518 7519
    flex-wrap: nowrap !important;
  }
A
Abdullah Almsaeed 已提交
7520
  .flex-lg-wrap-reverse {
7521
    -ms-flex-wrap: wrap-reverse !important;
A
Abdullah Almsaeed 已提交
7522 7523
    flex-wrap: wrap-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7524
  .flex-lg-fill {
7525
    -ms-flex: 1 1 auto !important;
A
Abdullah Almsaeed 已提交
7526 7527 7528
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
7529
    -ms-flex-positive: 0 !important;
A
Abdullah Almsaeed 已提交
7530 7531 7532
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
7533
    -ms-flex-positive: 1 !important;
A
Abdullah Almsaeed 已提交
7534 7535 7536
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
7537
    -ms-flex-negative: 0 !important;
A
Abdullah Almsaeed 已提交
7538 7539 7540
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
7541
    -ms-flex-negative: 1 !important;
A
Abdullah Almsaeed 已提交
7542 7543
    flex-shrink: 1 !important;
  }
A
Abdullah Almsaeed 已提交
7544
  .justify-content-lg-start {
7545
    -ms-flex-pack: start !important;
A
Abdullah Almsaeed 已提交
7546 7547
    justify-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7548
  .justify-content-lg-end {
7549
    -ms-flex-pack: end !important;
A
Abdullah Almsaeed 已提交
7550 7551
    justify-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7552
  .justify-content-lg-center {
7553
    -ms-flex-pack: center !important;
A
Abdullah Almsaeed 已提交
7554 7555
    justify-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7556
  .justify-content-lg-between {
7557
    -ms-flex-pack: justify !important;
A
Abdullah Almsaeed 已提交
7558 7559
    justify-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7560
  .justify-content-lg-around {
7561
    -ms-flex-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7562 7563
    justify-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7564
  .align-items-lg-start {
7565
    -ms-flex-align: start !important;
A
Abdullah Almsaeed 已提交
7566 7567
    align-items: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7568
  .align-items-lg-end {
7569
    -ms-flex-align: end !important;
A
Abdullah Almsaeed 已提交
7570 7571
    align-items: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7572
  .align-items-lg-center {
7573
    -ms-flex-align: center !important;
A
Abdullah Almsaeed 已提交
7574 7575
    align-items: center !important;
  }
A
Abdullah Almsaeed 已提交
7576
  .align-items-lg-baseline {
7577
    -ms-flex-align: baseline !important;
A
Abdullah Almsaeed 已提交
7578 7579
    align-items: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7580
  .align-items-lg-stretch {
7581
    -ms-flex-align: stretch !important;
A
Abdullah Almsaeed 已提交
7582 7583
    align-items: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7584
  .align-content-lg-start {
7585
    -ms-flex-line-pack: start !important;
A
Abdullah Almsaeed 已提交
7586 7587
    align-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7588
  .align-content-lg-end {
7589
    -ms-flex-line-pack: end !important;
A
Abdullah Almsaeed 已提交
7590 7591
    align-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7592
  .align-content-lg-center {
7593
    -ms-flex-line-pack: center !important;
A
Abdullah Almsaeed 已提交
7594 7595
    align-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7596
  .align-content-lg-between {
7597
    -ms-flex-line-pack: justify !important;
A
Abdullah Almsaeed 已提交
7598 7599
    align-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7600
  .align-content-lg-around {
7601
    -ms-flex-line-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7602 7603
    align-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7604
  .align-content-lg-stretch {
7605
    -ms-flex-line-pack: stretch !important;
A
Abdullah Almsaeed 已提交
7606 7607
    align-content: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7608
  .align-self-lg-auto {
7609
    -ms-flex-item-align: auto !important;
A
Abdullah Almsaeed 已提交
7610 7611
    align-self: auto !important;
  }
A
Abdullah Almsaeed 已提交
7612
  .align-self-lg-start {
7613
    -ms-flex-item-align: start !important;
A
Abdullah Almsaeed 已提交
7614 7615
    align-self: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7616
  .align-self-lg-end {
7617
    -ms-flex-item-align: end !important;
A
Abdullah Almsaeed 已提交
7618 7619
    align-self: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7620
  .align-self-lg-center {
7621
    -ms-flex-item-align: center !important;
A
Abdullah Almsaeed 已提交
7622 7623
    align-self: center !important;
  }
A
Abdullah Almsaeed 已提交
7624
  .align-self-lg-baseline {
7625
    -ms-flex-item-align: baseline !important;
A
Abdullah Almsaeed 已提交
7626 7627
    align-self: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7628
  .align-self-lg-stretch {
7629
    -ms-flex-item-align: stretch !important;
A
Abdullah Almsaeed 已提交
7630 7631 7632
    align-self: stretch !important;
  }
}
A
Abdullah Almsaeed 已提交
7633

A
Abdullah Almsaeed 已提交
7634 7635
@media (min-width: 1200px) {
  .flex-xl-row {
7636
    -ms-flex-direction: row !important;
A
Abdullah Almsaeed 已提交
7637 7638
    flex-direction: row !important;
  }
A
Abdullah Almsaeed 已提交
7639
  .flex-xl-column {
7640
    -ms-flex-direction: column !important;
A
Abdullah Almsaeed 已提交
7641 7642
    flex-direction: column !important;
  }
A
Abdullah Almsaeed 已提交
7643
  .flex-xl-row-reverse {
7644
    -ms-flex-direction: row-reverse !important;
A
Abdullah Almsaeed 已提交
7645 7646
    flex-direction: row-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7647
  .flex-xl-column-reverse {
7648
    -ms-flex-direction: column-reverse !important;
A
Abdullah Almsaeed 已提交
7649 7650
    flex-direction: column-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7651
  .flex-xl-wrap {
7652
    -ms-flex-wrap: wrap !important;
A
Abdullah Almsaeed 已提交
7653 7654
    flex-wrap: wrap !important;
  }
A
Abdullah Almsaeed 已提交
7655
  .flex-xl-nowrap {
7656
    -ms-flex-wrap: nowrap !important;
A
Abdullah Almsaeed 已提交
7657 7658
    flex-wrap: nowrap !important;
  }
A
Abdullah Almsaeed 已提交
7659
  .flex-xl-wrap-reverse {
7660
    -ms-flex-wrap: wrap-reverse !important;
A
Abdullah Almsaeed 已提交
7661 7662
    flex-wrap: wrap-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7663
  .flex-xl-fill {
7664
    -ms-flex: 1 1 auto !important;
A
Abdullah Almsaeed 已提交
7665 7666 7667
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
7668
    -ms-flex-positive: 0 !important;
A
Abdullah Almsaeed 已提交
7669 7670 7671
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
7672
    -ms-flex-positive: 1 !important;
A
Abdullah Almsaeed 已提交
7673 7674 7675
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
7676
    -ms-flex-negative: 0 !important;
A
Abdullah Almsaeed 已提交
7677 7678 7679
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
7680
    -ms-flex-negative: 1 !important;
A
Abdullah Almsaeed 已提交
7681 7682
    flex-shrink: 1 !important;
  }
A
Abdullah Almsaeed 已提交
7683
  .justify-content-xl-start {
7684
    -ms-flex-pack: start !important;
A
Abdullah Almsaeed 已提交
7685 7686
    justify-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7687
  .justify-content-xl-end {
7688
    -ms-flex-pack: end !important;
A
Abdullah Almsaeed 已提交
7689 7690
    justify-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7691
  .justify-content-xl-center {
7692
    -ms-flex-pack: center !important;
A
Abdullah Almsaeed 已提交
7693 7694
    justify-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7695
  .justify-content-xl-between {
7696
    -ms-flex-pack: justify !important;
A
Abdullah Almsaeed 已提交
7697 7698
    justify-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7699
  .justify-content-xl-around {
7700
    -ms-flex-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7701 7702
    justify-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7703
  .align-items-xl-start {
7704
    -ms-flex-align: start !important;
A
Abdullah Almsaeed 已提交
7705 7706
    align-items: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7707
  .align-items-xl-end {
7708
    -ms-flex-align: end !important;
A
Abdullah Almsaeed 已提交
7709 7710
    align-items: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7711
  .align-items-xl-center {
7712
    -ms-flex-align: center !important;
A
Abdullah Almsaeed 已提交
7713 7714
    align-items: center !important;
  }
A
Abdullah Almsaeed 已提交
7715
  .align-items-xl-baseline {
7716
    -ms-flex-align: baseline !important;
A
Abdullah Almsaeed 已提交
7717 7718
    align-items: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7719
  .align-items-xl-stretch {
7720
    -ms-flex-align: stretch !important;
A
Abdullah Almsaeed 已提交
7721 7722
    align-items: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7723
  .align-content-xl-start {
7724
    -ms-flex-line-pack: start !important;
A
Abdullah Almsaeed 已提交
7725 7726
    align-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7727
  .align-content-xl-end {
7728
    -ms-flex-line-pack: end !important;
A
Abdullah Almsaeed 已提交
7729 7730
    align-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7731
  .align-content-xl-center {
7732
    -ms-flex-line-pack: center !important;
A
Abdullah Almsaeed 已提交
7733 7734
    align-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7735
  .align-content-xl-between {
7736
    -ms-flex-line-pack: justify !important;
A
Abdullah Almsaeed 已提交
7737 7738
    align-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7739
  .align-content-xl-around {
7740
    -ms-flex-line-pack: distribute !important;
A
Abdullah Almsaeed 已提交
7741 7742
    align-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7743
  .align-content-xl-stretch {
7744
    -ms-flex-line-pack: stretch !important;
A
Abdullah Almsaeed 已提交
7745 7746
    align-content: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7747
  .align-self-xl-auto {
7748
    -ms-flex-item-align: auto !important;
A
Abdullah Almsaeed 已提交
7749 7750
    align-self: auto !important;
  }
A
Abdullah Almsaeed 已提交
7751
  .align-self-xl-start {
7752
    -ms-flex-item-align: start !important;
A
Abdullah Almsaeed 已提交
7753 7754
    align-self: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7755
  .align-self-xl-end {
7756
    -ms-flex-item-align: end !important;
A
Abdullah Almsaeed 已提交
7757 7758
    align-self: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7759
  .align-self-xl-center {
7760
    -ms-flex-item-align: center !important;
A
Abdullah Almsaeed 已提交
7761 7762
    align-self: center !important;
  }
A
Abdullah Almsaeed 已提交
7763
  .align-self-xl-baseline {
7764
    -ms-flex-item-align: baseline !important;
A
Abdullah Almsaeed 已提交
7765 7766
    align-self: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7767
  .align-self-xl-stretch {
7768
    -ms-flex-item-align: stretch !important;
A
Abdullah Almsaeed 已提交
7769 7770 7771
    align-self: stretch !important;
  }
}
A
Abdullah Almsaeed 已提交
7772 7773

.float-left {
A
Abdullah Almsaeed 已提交
7774 7775
  float: left !important;
}
A
Abdullah Almsaeed 已提交
7776 7777

.float-right {
A
Abdullah Almsaeed 已提交
7778 7779
  float: right !important;
}
A
Abdullah Almsaeed 已提交
7780 7781

.float-none {
A
Abdullah Almsaeed 已提交
7782 7783
  float: none !important;
}
A
Abdullah Almsaeed 已提交
7784

A
Abdullah Almsaeed 已提交
7785 7786
@media (min-width: 576px) {
  .float-sm-left {
A
Abdullah Almsaeed 已提交
7787 7788
    float: left !important;
  }
A
Abdullah Almsaeed 已提交
7789
  .float-sm-right {
A
Abdullah Almsaeed 已提交
7790 7791
    float: right !important;
  }
A
Abdullah Almsaeed 已提交
7792
  .float-sm-none {
A
Abdullah Almsaeed 已提交
7793 7794 7795
    float: none !important;
  }
}
A
Abdullah Almsaeed 已提交
7796 7797 7798

@media (min-width: 768px) {
  .float-md-left {
A
Abdullah Almsaeed 已提交
7799 7800
    float: left !important;
  }
A
Abdullah Almsaeed 已提交
7801
  .float-md-right {
A
Abdullah Almsaeed 已提交
7802 7803
    float: right !important;
  }
A
Abdullah Almsaeed 已提交
7804
  .float-md-none {
A
Abdullah Almsaeed 已提交
7805 7806 7807
    float: none !important;
  }
}
A
Abdullah Almsaeed 已提交
7808 7809 7810

@media (min-width: 992px) {
  .float-lg-left {
A
Abdullah Almsaeed 已提交
7811 7812
    float: left !important;
  }
A
Abdullah Almsaeed 已提交
7813
  .float-lg-right {
A
Abdullah Almsaeed 已提交
7814 7815
    float: right !important;
  }
A
Abdullah Almsaeed 已提交
7816
  .float-lg-none {
A
Abdullah Almsaeed 已提交
7817 7818 7819
    float: none !important;
  }
}
A
Abdullah Almsaeed 已提交
7820 7821 7822

@media (min-width: 1200px) {
  .float-xl-left {
A
Abdullah Almsaeed 已提交
7823 7824
    float: left !important;
  }
A
Abdullah Almsaeed 已提交
7825
  .float-xl-right {
A
Abdullah Almsaeed 已提交
7826 7827
    float: right !important;
  }
A
Abdullah Almsaeed 已提交
7828
  .float-xl-none {
A
Abdullah Almsaeed 已提交
7829 7830 7831
    float: none !important;
  }
}
A
Abdullah Almsaeed 已提交
7832

7833 7834 7835 7836 7837 7838 7839 7840
.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

A
Abdullah Almsaeed 已提交
7841
.position-static {
A
Abdullah Almsaeed 已提交
7842 7843
  position: static !important;
}
A
Abdullah Almsaeed 已提交
7844 7845

.position-relative {
A
Abdullah Almsaeed 已提交
7846 7847
  position: relative !important;
}
A
Abdullah Almsaeed 已提交
7848 7849

.position-absolute {
A
Abdullah Almsaeed 已提交
7850 7851
  position: absolute !important;
}
A
Abdullah Almsaeed 已提交
7852 7853

.position-fixed {
A
Abdullah Almsaeed 已提交
7854 7855
  position: fixed !important;
}
A
Abdullah Almsaeed 已提交
7856 7857

.position-sticky {
R
REJack 已提交
7858
  position: -webkit-sticky !important;
A
Abdullah Almsaeed 已提交
7859 7860
  position: sticky !important;
}
A
Abdullah Almsaeed 已提交
7861 7862 7863 7864 7865 7866

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
A
Abdullah Almsaeed 已提交
7867 7868
  z-index: 1030;
}
A
Abdullah Almsaeed 已提交
7869 7870 7871 7872 7873 7874

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
A
Abdullah Almsaeed 已提交
7875 7876
  z-index: 1030;
}
A
Abdullah Almsaeed 已提交
7877

R
REJack 已提交
7878
@supports ((position: -webkit-sticky) or (position: sticky)) {
A
Abdullah Almsaeed 已提交
7879
  .sticky-top {
R
REJack 已提交
7880
    position: -webkit-sticky;
A
Abdullah Almsaeed 已提交
7881 7882
    position: sticky;
    top: 0;
A
Abdullah Almsaeed 已提交
7883 7884 7885
    z-index: 1020;
  }
}
A
Abdullah Almsaeed 已提交
7886 7887 7888 7889 7890 7891 7892 7893 7894

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
7895 7896
  border: 0;
}
A
Abdullah Almsaeed 已提交
7897 7898 7899 7900 7901 7902 7903 7904

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
A
Abdullah Almsaeed 已提交
7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
A
Abdullah Almsaeed 已提交
7921
}
A
Abdullah Almsaeed 已提交
7922 7923

.w-25 {
A
Abdullah Almsaeed 已提交
7924 7925
  width: 25% !important;
}
A
Abdullah Almsaeed 已提交
7926 7927

.w-50 {
A
Abdullah Almsaeed 已提交
7928 7929
  width: 50% !important;
}
A
Abdullah Almsaeed 已提交
7930 7931

.w-75 {
A
Abdullah Almsaeed 已提交
7932 7933
  width: 75% !important;
}
A
Abdullah Almsaeed 已提交
7934 7935

.w-100 {
A
Abdullah Almsaeed 已提交
7936 7937
  width: 100% !important;
}
A
Abdullah Almsaeed 已提交
7938

A
Abdullah Almsaeed 已提交
7939 7940 7941 7942
.w-auto {
  width: auto !important;
}

A
Abdullah Almsaeed 已提交
7943
.h-25 {
A
Abdullah Almsaeed 已提交
7944 7945
  height: 25% !important;
}
A
Abdullah Almsaeed 已提交
7946 7947

.h-50 {
A
Abdullah Almsaeed 已提交
7948 7949
  height: 50% !important;
}
A
Abdullah Almsaeed 已提交
7950 7951

.h-75 {
A
Abdullah Almsaeed 已提交
7952 7953
  height: 75% !important;
}
A
Abdullah Almsaeed 已提交
7954 7955

.h-100 {
A
Abdullah Almsaeed 已提交
7956 7957
  height: 100% !important;
}
A
Abdullah Almsaeed 已提交
7958

A
Abdullah Almsaeed 已提交
7959 7960 7961 7962
.h-auto {
  height: auto !important;
}

A
Abdullah Almsaeed 已提交
7963
.mw-100 {
A
Abdullah Almsaeed 已提交
7964 7965
  max-width: 100% !important;
}
A
Abdullah Almsaeed 已提交
7966 7967

.mh-100 {
A
Abdullah Almsaeed 已提交
7968 7969
  max-height: 100% !important;
}
A
Abdullah Almsaeed 已提交
7970

7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998
.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

A
Abdullah Almsaeed 已提交
7999
.m-0 {
A
Abdullah Almsaeed 已提交
8000 8001
  margin: 0 !important;
}
A
Abdullah Almsaeed 已提交
8002 8003 8004

.mt-0,
.my-0 {
A
Abdullah Almsaeed 已提交
8005 8006
  margin-top: 0 !important;
}
A
Abdullah Almsaeed 已提交
8007 8008 8009

.mr-0,
.mx-0 {
A
Abdullah Almsaeed 已提交
8010 8011
  margin-right: 0 !important;
}
A
Abdullah Almsaeed 已提交
8012 8013 8014

.mb-0,
.my-0 {
A
Abdullah Almsaeed 已提交
8015 8016
  margin-bottom: 0 !important;
}
A
Abdullah Almsaeed 已提交
8017 8018 8019

.ml-0,
.mx-0 {
A
Abdullah Almsaeed 已提交
8020 8021
  margin-left: 0 !important;
}
A
Abdullah Almsaeed 已提交
8022 8023

.m-1 {
A
Abdullah Almsaeed 已提交
8024 8025
  margin: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8026 8027 8028

.mt-1,
.my-1 {
A
Abdullah Almsaeed 已提交
8029 8030
  margin-top: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8031 8032 8033

.mr-1,
.mx-1 {
A
Abdullah Almsaeed 已提交
8034 8035
  margin-right: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8036 8037 8038

.mb-1,
.my-1 {
A
Abdullah Almsaeed 已提交
8039 8040
  margin-bottom: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8041 8042 8043

.ml-1,
.mx-1 {
A
Abdullah Almsaeed 已提交
8044 8045
  margin-left: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8046 8047

.m-2 {
A
Abdullah Almsaeed 已提交
8048 8049
  margin: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8050 8051 8052

.mt-2,
.my-2 {
A
Abdullah Almsaeed 已提交
8053 8054
  margin-top: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8055 8056 8057

.mr-2,
.mx-2 {
A
Abdullah Almsaeed 已提交
8058 8059
  margin-right: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8060

A
Abdullah Almsaeed 已提交
8061
.mb-2, .progress-group,
A
Abdullah Almsaeed 已提交
8062
.my-2 {
A
Abdullah Almsaeed 已提交
8063 8064
  margin-bottom: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8065 8066 8067

.ml-2,
.mx-2 {
A
Abdullah Almsaeed 已提交
8068 8069
  margin-left: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8070 8071

.m-3 {
A
Abdullah Almsaeed 已提交
8072 8073
  margin: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8074 8075 8076

.mt-3,
.my-3 {
A
Abdullah Almsaeed 已提交
8077 8078
  margin-top: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8079 8080 8081

.mr-3,
.mx-3 {
A
Abdullah Almsaeed 已提交
8082 8083
  margin-right: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8084

A
Abdullah Almsaeed 已提交
8085
.mb-3, .small-box, .card, .info-box, .callout,
A
Abdullah Almsaeed 已提交
8086
.my-3 {
A
Abdullah Almsaeed 已提交
8087 8088
  margin-bottom: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8089 8090 8091

.ml-3,
.mx-3 {
A
Abdullah Almsaeed 已提交
8092 8093
  margin-left: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8094 8095

.m-4 {
A
Abdullah Almsaeed 已提交
8096 8097
  margin: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8098 8099 8100

.mt-4,
.my-4 {
A
Abdullah Almsaeed 已提交
8101 8102
  margin-top: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8103 8104 8105

.mr-4,
.mx-4 {
A
Abdullah Almsaeed 已提交
8106 8107
  margin-right: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8108 8109 8110

.mb-4,
.my-4 {
A
Abdullah Almsaeed 已提交
8111 8112
  margin-bottom: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8113 8114 8115

.ml-4,
.mx-4 {
A
Abdullah Almsaeed 已提交
8116 8117
  margin-left: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8118 8119

.m-5 {
A
Abdullah Almsaeed 已提交
8120 8121
  margin: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8122 8123 8124

.mt-5,
.my-5 {
A
Abdullah Almsaeed 已提交
8125 8126
  margin-top: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8127 8128 8129

.mr-5,
.mx-5 {
A
Abdullah Almsaeed 已提交
8130 8131
  margin-right: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8132 8133 8134

.mb-5,
.my-5 {
A
Abdullah Almsaeed 已提交
8135 8136
  margin-bottom: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8137 8138 8139

.ml-5,
.mx-5 {
A
Abdullah Almsaeed 已提交
8140 8141
  margin-left: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8142 8143

.p-0 {
A
Abdullah Almsaeed 已提交
8144 8145
  padding: 0 !important;
}
A
Abdullah Almsaeed 已提交
8146 8147 8148

.pt-0,
.py-0 {
A
Abdullah Almsaeed 已提交
8149 8150
  padding-top: 0 !important;
}
A
Abdullah Almsaeed 已提交
8151 8152 8153

.pr-0,
.px-0 {
A
Abdullah Almsaeed 已提交
8154 8155
  padding-right: 0 !important;
}
A
Abdullah Almsaeed 已提交
8156 8157 8158

.pb-0,
.py-0 {
A
Abdullah Almsaeed 已提交
8159 8160
  padding-bottom: 0 !important;
}
A
Abdullah Almsaeed 已提交
8161 8162 8163

.pl-0,
.px-0 {
A
Abdullah Almsaeed 已提交
8164 8165
  padding-left: 0 !important;
}
A
Abdullah Almsaeed 已提交
8166 8167

.p-1 {
A
Abdullah Almsaeed 已提交
8168 8169
  padding: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8170 8171 8172

.pt-1,
.py-1 {
A
Abdullah Almsaeed 已提交
8173 8174
  padding-top: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8175 8176 8177

.pr-1,
.px-1 {
A
Abdullah Almsaeed 已提交
8178 8179
  padding-right: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8180 8181 8182

.pb-1,
.py-1 {
A
Abdullah Almsaeed 已提交
8183 8184
  padding-bottom: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8185 8186 8187

.pl-1,
.px-1 {
A
Abdullah Almsaeed 已提交
8188 8189
  padding-left: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
8190 8191

.p-2 {
A
Abdullah Almsaeed 已提交
8192 8193
  padding: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8194 8195 8196

.pt-2,
.py-2 {
A
Abdullah Almsaeed 已提交
8197 8198
  padding-top: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8199 8200 8201

.pr-2,
.px-2 {
A
Abdullah Almsaeed 已提交
8202 8203
  padding-right: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8204 8205 8206

.pb-2,
.py-2 {
A
Abdullah Almsaeed 已提交
8207 8208
  padding-bottom: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8209 8210 8211

.pl-2,
.px-2 {
A
Abdullah Almsaeed 已提交
8212 8213
  padding-left: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
8214 8215

.p-3 {
A
Abdullah Almsaeed 已提交
8216 8217
  padding: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8218 8219 8220

.pt-3,
.py-3 {
A
Abdullah Almsaeed 已提交
8221 8222
  padding-top: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8223 8224 8225

.pr-3,
.px-3 {
A
Abdullah Almsaeed 已提交
8226 8227
  padding-right: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8228 8229 8230

.pb-3,
.py-3 {
A
Abdullah Almsaeed 已提交
8231 8232
  padding-bottom: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8233 8234 8235

.pl-3,
.px-3 {
A
Abdullah Almsaeed 已提交
8236 8237
  padding-left: 1rem !important;
}
A
Abdullah Almsaeed 已提交
8238 8239

.p-4 {
A
Abdullah Almsaeed 已提交
8240 8241
  padding: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8242 8243 8244

.pt-4,
.py-4 {
A
Abdullah Almsaeed 已提交
8245 8246
  padding-top: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8247

A
Abdullah Almsaeed 已提交
8248 8249 8250 8251
.pr-4, .card-body.p-0 .table thead > tr > th:last-of-type,
.card-body.p-0 .table thead > tr > td:last-of-type,
.card-body.p-0 .table tbody > tr > th:last-of-type,
.card-body.p-0 .table tbody > tr > td:last-of-type,
A
Abdullah Almsaeed 已提交
8252
.px-4 {
A
Abdullah Almsaeed 已提交
8253 8254
  padding-right: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8255 8256 8257

.pb-4,
.py-4 {
A
Abdullah Almsaeed 已提交
8258 8259
  padding-bottom: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8260

A
Abdullah Almsaeed 已提交
8261 8262 8263 8264
.pl-4, .card-body.p-0 .table thead > tr > th:first-of-type,
.card-body.p-0 .table thead > tr > td:first-of-type,
.card-body.p-0 .table tbody > tr > th:first-of-type,
.card-body.p-0 .table tbody > tr > td:first-of-type,
A
Abdullah Almsaeed 已提交
8265
.px-4 {
A
Abdullah Almsaeed 已提交
8266 8267
  padding-left: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
8268 8269

.p-5 {
A
Abdullah Almsaeed 已提交
8270 8271
  padding: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8272 8273 8274

.pt-5,
.py-5 {
A
Abdullah Almsaeed 已提交
8275 8276
  padding-top: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8277 8278 8279

.pr-5,
.px-5 {
A
Abdullah Almsaeed 已提交
8280 8281
  padding-right: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8282 8283 8284

.pb-5,
.py-5 {
A
Abdullah Almsaeed 已提交
8285 8286
  padding-bottom: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8287 8288 8289

.pl-5,
.px-5 {
A
Abdullah Almsaeed 已提交
8290 8291
  padding-left: 3rem !important;
}
A
Abdullah Almsaeed 已提交
8292

8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412
.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

A
Abdullah Almsaeed 已提交
8413
.m-auto {
A
Abdullah Almsaeed 已提交
8414 8415
  margin: auto !important;
}
A
Abdullah Almsaeed 已提交
8416 8417 8418

.mt-auto,
.my-auto {
A
Abdullah Almsaeed 已提交
8419 8420
  margin-top: auto !important;
}
A
Abdullah Almsaeed 已提交
8421 8422 8423

.mr-auto,
.mx-auto {
A
Abdullah Almsaeed 已提交
8424 8425
  margin-right: auto !important;
}
A
Abdullah Almsaeed 已提交
8426 8427 8428

.mb-auto,
.my-auto {
A
Abdullah Almsaeed 已提交
8429 8430
  margin-bottom: auto !important;
}
A
Abdullah Almsaeed 已提交
8431 8432 8433

.ml-auto,
.mx-auto {
A
Abdullah Almsaeed 已提交
8434 8435
  margin-left: auto !important;
}
A
Abdullah Almsaeed 已提交
8436 8437 8438

@media (min-width: 576px) {
  .m-sm-0 {
A
Abdullah Almsaeed 已提交
8439 8440
    margin: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8441 8442
  .mt-sm-0,
  .my-sm-0 {
A
Abdullah Almsaeed 已提交
8443 8444
    margin-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8445 8446
  .mr-sm-0,
  .mx-sm-0 {
A
Abdullah Almsaeed 已提交
8447 8448
    margin-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8449 8450
  .mb-sm-0,
  .my-sm-0 {
A
Abdullah Almsaeed 已提交
8451 8452
    margin-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8453 8454
  .ml-sm-0,
  .mx-sm-0 {
A
Abdullah Almsaeed 已提交
8455 8456
    margin-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8457
  .m-sm-1 {
A
Abdullah Almsaeed 已提交
8458 8459
    margin: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8460 8461
  .mt-sm-1,
  .my-sm-1 {
A
Abdullah Almsaeed 已提交
8462 8463
    margin-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8464 8465
  .mr-sm-1,
  .mx-sm-1 {
A
Abdullah Almsaeed 已提交
8466 8467
    margin-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8468 8469
  .mb-sm-1,
  .my-sm-1 {
A
Abdullah Almsaeed 已提交
8470 8471
    margin-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8472 8473
  .ml-sm-1,
  .mx-sm-1 {
A
Abdullah Almsaeed 已提交
8474 8475
    margin-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8476
  .m-sm-2 {
A
Abdullah Almsaeed 已提交
8477 8478
    margin: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8479 8480
  .mt-sm-2,
  .my-sm-2 {
A
Abdullah Almsaeed 已提交
8481 8482
    margin-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8483 8484
  .mr-sm-2,
  .mx-sm-2 {
A
Abdullah Almsaeed 已提交
8485 8486
    margin-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8487 8488
  .mb-sm-2,
  .my-sm-2 {
A
Abdullah Almsaeed 已提交
8489 8490
    margin-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8491 8492
  .ml-sm-2,
  .mx-sm-2 {
A
Abdullah Almsaeed 已提交
8493 8494
    margin-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8495
  .m-sm-3 {
A
Abdullah Almsaeed 已提交
8496 8497
    margin: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8498 8499
  .mt-sm-3,
  .my-sm-3 {
A
Abdullah Almsaeed 已提交
8500 8501
    margin-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8502 8503
  .mr-sm-3,
  .mx-sm-3 {
A
Abdullah Almsaeed 已提交
8504 8505
    margin-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8506 8507
  .mb-sm-3,
  .my-sm-3 {
A
Abdullah Almsaeed 已提交
8508 8509
    margin-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8510 8511
  .ml-sm-3,
  .mx-sm-3 {
A
Abdullah Almsaeed 已提交
8512 8513
    margin-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8514
  .m-sm-4 {
A
Abdullah Almsaeed 已提交
8515 8516
    margin: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8517 8518
  .mt-sm-4,
  .my-sm-4 {
A
Abdullah Almsaeed 已提交
8519 8520
    margin-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8521 8522
  .mr-sm-4,
  .mx-sm-4 {
A
Abdullah Almsaeed 已提交
8523 8524
    margin-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8525 8526
  .mb-sm-4,
  .my-sm-4 {
A
Abdullah Almsaeed 已提交
8527 8528
    margin-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8529 8530
  .ml-sm-4,
  .mx-sm-4 {
A
Abdullah Almsaeed 已提交
8531 8532
    margin-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8533
  .m-sm-5 {
A
Abdullah Almsaeed 已提交
8534 8535
    margin: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8536 8537
  .mt-sm-5,
  .my-sm-5 {
A
Abdullah Almsaeed 已提交
8538 8539
    margin-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8540 8541
  .mr-sm-5,
  .mx-sm-5 {
A
Abdullah Almsaeed 已提交
8542 8543
    margin-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8544 8545
  .mb-sm-5,
  .my-sm-5 {
A
Abdullah Almsaeed 已提交
8546 8547
    margin-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8548 8549
  .ml-sm-5,
  .mx-sm-5 {
A
Abdullah Almsaeed 已提交
8550 8551
    margin-left: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8552
  .p-sm-0 {
A
Abdullah Almsaeed 已提交
8553 8554
    padding: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8555 8556
  .pt-sm-0,
  .py-sm-0 {
A
Abdullah Almsaeed 已提交
8557 8558
    padding-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8559 8560
  .pr-sm-0,
  .px-sm-0 {
A
Abdullah Almsaeed 已提交
8561 8562
    padding-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8563 8564
  .pb-sm-0,
  .py-sm-0 {
A
Abdullah Almsaeed 已提交
8565 8566
    padding-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8567 8568
  .pl-sm-0,
  .px-sm-0 {
A
Abdullah Almsaeed 已提交
8569 8570
    padding-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8571
  .p-sm-1 {
A
Abdullah Almsaeed 已提交
8572 8573
    padding: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8574 8575
  .pt-sm-1,
  .py-sm-1 {
A
Abdullah Almsaeed 已提交
8576 8577
    padding-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8578 8579
  .pr-sm-1,
  .px-sm-1 {
A
Abdullah Almsaeed 已提交
8580 8581
    padding-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8582 8583
  .pb-sm-1,
  .py-sm-1 {
A
Abdullah Almsaeed 已提交
8584 8585
    padding-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8586 8587
  .pl-sm-1,
  .px-sm-1 {
A
Abdullah Almsaeed 已提交
8588 8589
    padding-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8590
  .p-sm-2 {
A
Abdullah Almsaeed 已提交
8591 8592
    padding: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8593 8594
  .pt-sm-2,
  .py-sm-2 {
A
Abdullah Almsaeed 已提交
8595 8596
    padding-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8597 8598
  .pr-sm-2,
  .px-sm-2 {
A
Abdullah Almsaeed 已提交
8599 8600
    padding-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8601 8602
  .pb-sm-2,
  .py-sm-2 {
A
Abdullah Almsaeed 已提交
8603 8604
    padding-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8605 8606
  .pl-sm-2,
  .px-sm-2 {
A
Abdullah Almsaeed 已提交
8607 8608
    padding-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8609
  .p-sm-3 {
A
Abdullah Almsaeed 已提交
8610 8611
    padding: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8612 8613
  .pt-sm-3,
  .py-sm-3 {
A
Abdullah Almsaeed 已提交
8614 8615
    padding-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8616 8617
  .pr-sm-3,
  .px-sm-3 {
A
Abdullah Almsaeed 已提交
8618 8619
    padding-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8620 8621
  .pb-sm-3,
  .py-sm-3 {
A
Abdullah Almsaeed 已提交
8622 8623
    padding-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8624 8625
  .pl-sm-3,
  .px-sm-3 {
A
Abdullah Almsaeed 已提交
8626 8627
    padding-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8628
  .p-sm-4 {
A
Abdullah Almsaeed 已提交
8629 8630
    padding: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8631 8632
  .pt-sm-4,
  .py-sm-4 {
A
Abdullah Almsaeed 已提交
8633 8634
    padding-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8635 8636
  .pr-sm-4,
  .px-sm-4 {
A
Abdullah Almsaeed 已提交
8637 8638
    padding-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8639 8640
  .pb-sm-4,
  .py-sm-4 {
A
Abdullah Almsaeed 已提交
8641 8642
    padding-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8643 8644
  .pl-sm-4,
  .px-sm-4 {
A
Abdullah Almsaeed 已提交
8645 8646
    padding-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8647
  .p-sm-5 {
A
Abdullah Almsaeed 已提交
8648 8649
    padding: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8650 8651
  .pt-sm-5,
  .py-sm-5 {
A
Abdullah Almsaeed 已提交
8652 8653
    padding-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8654 8655
  .pr-sm-5,
  .px-sm-5 {
A
Abdullah Almsaeed 已提交
8656 8657
    padding-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8658 8659
  .pb-sm-5,
  .py-sm-5 {
A
Abdullah Almsaeed 已提交
8660 8661
    padding-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8662 8663
  .pl-sm-5,
  .px-sm-5 {
A
Abdullah Almsaeed 已提交
8664 8665
    padding-left: 3rem !important;
  }
8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
A
Abdullah Almsaeed 已提交
8761
  .m-sm-auto {
A
Abdullah Almsaeed 已提交
8762 8763
    margin: auto !important;
  }
A
Abdullah Almsaeed 已提交
8764 8765
  .mt-sm-auto,
  .my-sm-auto {
A
Abdullah Almsaeed 已提交
8766 8767
    margin-top: auto !important;
  }
A
Abdullah Almsaeed 已提交
8768 8769
  .mr-sm-auto,
  .mx-sm-auto {
A
Abdullah Almsaeed 已提交
8770 8771
    margin-right: auto !important;
  }
A
Abdullah Almsaeed 已提交
8772 8773
  .mb-sm-auto,
  .my-sm-auto {
A
Abdullah Almsaeed 已提交
8774 8775
    margin-bottom: auto !important;
  }
A
Abdullah Almsaeed 已提交
8776 8777
  .ml-sm-auto,
  .mx-sm-auto {
A
Abdullah Almsaeed 已提交
8778 8779 8780
    margin-left: auto !important;
  }
}
A
Abdullah Almsaeed 已提交
8781 8782 8783

@media (min-width: 768px) {
  .m-md-0 {
A
Abdullah Almsaeed 已提交
8784 8785
    margin: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8786 8787
  .mt-md-0,
  .my-md-0 {
A
Abdullah Almsaeed 已提交
8788 8789
    margin-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8790 8791
  .mr-md-0,
  .mx-md-0 {
A
Abdullah Almsaeed 已提交
8792 8793
    margin-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8794 8795
  .mb-md-0,
  .my-md-0 {
A
Abdullah Almsaeed 已提交
8796 8797
    margin-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8798 8799
  .ml-md-0,
  .mx-md-0 {
A
Abdullah Almsaeed 已提交
8800 8801
    margin-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8802
  .m-md-1 {
A
Abdullah Almsaeed 已提交
8803 8804
    margin: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8805 8806
  .mt-md-1,
  .my-md-1 {
A
Abdullah Almsaeed 已提交
8807 8808
    margin-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8809 8810
  .mr-md-1,
  .mx-md-1 {
A
Abdullah Almsaeed 已提交
8811 8812
    margin-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8813 8814
  .mb-md-1,
  .my-md-1 {
A
Abdullah Almsaeed 已提交
8815 8816
    margin-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8817 8818
  .ml-md-1,
  .mx-md-1 {
A
Abdullah Almsaeed 已提交
8819 8820
    margin-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8821
  .m-md-2 {
A
Abdullah Almsaeed 已提交
8822 8823
    margin: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8824 8825
  .mt-md-2,
  .my-md-2 {
A
Abdullah Almsaeed 已提交
8826 8827
    margin-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8828 8829
  .mr-md-2,
  .mx-md-2 {
A
Abdullah Almsaeed 已提交
8830 8831
    margin-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8832 8833
  .mb-md-2,
  .my-md-2 {
A
Abdullah Almsaeed 已提交
8834 8835
    margin-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8836 8837
  .ml-md-2,
  .mx-md-2 {
A
Abdullah Almsaeed 已提交
8838 8839
    margin-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8840
  .m-md-3 {
A
Abdullah Almsaeed 已提交
8841 8842
    margin: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8843 8844
  .mt-md-3,
  .my-md-3 {
A
Abdullah Almsaeed 已提交
8845 8846
    margin-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8847 8848
  .mr-md-3,
  .mx-md-3 {
A
Abdullah Almsaeed 已提交
8849 8850
    margin-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8851 8852
  .mb-md-3,
  .my-md-3 {
A
Abdullah Almsaeed 已提交
8853 8854
    margin-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8855 8856
  .ml-md-3,
  .mx-md-3 {
A
Abdullah Almsaeed 已提交
8857 8858
    margin-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8859
  .m-md-4 {
A
Abdullah Almsaeed 已提交
8860 8861
    margin: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8862 8863
  .mt-md-4,
  .my-md-4 {
A
Abdullah Almsaeed 已提交
8864 8865
    margin-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8866 8867
  .mr-md-4,
  .mx-md-4 {
A
Abdullah Almsaeed 已提交
8868 8869
    margin-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8870 8871
  .mb-md-4,
  .my-md-4 {
A
Abdullah Almsaeed 已提交
8872 8873
    margin-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8874 8875
  .ml-md-4,
  .mx-md-4 {
A
Abdullah Almsaeed 已提交
8876 8877
    margin-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8878
  .m-md-5 {
A
Abdullah Almsaeed 已提交
8879 8880
    margin: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8881 8882
  .mt-md-5,
  .my-md-5 {
A
Abdullah Almsaeed 已提交
8883 8884
    margin-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8885 8886
  .mr-md-5,
  .mx-md-5 {
A
Abdullah Almsaeed 已提交
8887 8888
    margin-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8889 8890
  .mb-md-5,
  .my-md-5 {
A
Abdullah Almsaeed 已提交
8891 8892
    margin-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8893 8894
  .ml-md-5,
  .mx-md-5 {
A
Abdullah Almsaeed 已提交
8895 8896
    margin-left: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8897
  .p-md-0 {
A
Abdullah Almsaeed 已提交
8898 8899
    padding: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8900 8901
  .pt-md-0,
  .py-md-0 {
A
Abdullah Almsaeed 已提交
8902 8903
    padding-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8904 8905
  .pr-md-0,
  .px-md-0 {
A
Abdullah Almsaeed 已提交
8906 8907
    padding-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8908 8909
  .pb-md-0,
  .py-md-0 {
A
Abdullah Almsaeed 已提交
8910 8911
    padding-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8912 8913
  .pl-md-0,
  .px-md-0 {
A
Abdullah Almsaeed 已提交
8914 8915
    padding-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8916
  .p-md-1 {
A
Abdullah Almsaeed 已提交
8917 8918
    padding: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8919 8920
  .pt-md-1,
  .py-md-1 {
A
Abdullah Almsaeed 已提交
8921 8922
    padding-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8923 8924
  .pr-md-1,
  .px-md-1 {
A
Abdullah Almsaeed 已提交
8925 8926
    padding-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8927 8928
  .pb-md-1,
  .py-md-1 {
A
Abdullah Almsaeed 已提交
8929 8930
    padding-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8931 8932
  .pl-md-1,
  .px-md-1 {
A
Abdullah Almsaeed 已提交
8933 8934
    padding-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8935
  .p-md-2 {
A
Abdullah Almsaeed 已提交
8936 8937
    padding: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8938 8939
  .pt-md-2,
  .py-md-2 {
A
Abdullah Almsaeed 已提交
8940 8941
    padding-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8942 8943
  .pr-md-2,
  .px-md-2 {
A
Abdullah Almsaeed 已提交
8944 8945
    padding-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8946 8947
  .pb-md-2,
  .py-md-2 {
A
Abdullah Almsaeed 已提交
8948 8949
    padding-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8950 8951
  .pl-md-2,
  .px-md-2 {
A
Abdullah Almsaeed 已提交
8952 8953
    padding-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8954
  .p-md-3 {
A
Abdullah Almsaeed 已提交
8955 8956
    padding: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8957 8958
  .pt-md-3,
  .py-md-3 {
A
Abdullah Almsaeed 已提交
8959 8960
    padding-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8961 8962
  .pr-md-3,
  .px-md-3 {
A
Abdullah Almsaeed 已提交
8963 8964
    padding-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8965 8966
  .pb-md-3,
  .py-md-3 {
A
Abdullah Almsaeed 已提交
8967 8968
    padding-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8969 8970
  .pl-md-3,
  .px-md-3 {
A
Abdullah Almsaeed 已提交
8971 8972
    padding-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8973
  .p-md-4 {
A
Abdullah Almsaeed 已提交
8974 8975
    padding: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8976 8977
  .pt-md-4,
  .py-md-4 {
A
Abdullah Almsaeed 已提交
8978 8979
    padding-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8980 8981
  .pr-md-4,
  .px-md-4 {
A
Abdullah Almsaeed 已提交
8982 8983
    padding-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8984 8985
  .pb-md-4,
  .py-md-4 {
A
Abdullah Almsaeed 已提交
8986 8987
    padding-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8988 8989
  .pl-md-4,
  .px-md-4 {
A
Abdullah Almsaeed 已提交
8990 8991
    padding-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8992
  .p-md-5 {
A
Abdullah Almsaeed 已提交
8993 8994
    padding: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8995 8996
  .pt-md-5,
  .py-md-5 {
A
Abdullah Almsaeed 已提交
8997 8998
    padding-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8999 9000
  .pr-md-5,
  .px-md-5 {
A
Abdullah Almsaeed 已提交
9001 9002
    padding-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9003 9004
  .pb-md-5,
  .py-md-5 {
A
Abdullah Almsaeed 已提交
9005 9006
    padding-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9007 9008
  .pl-md-5,
  .px-md-5 {
A
Abdullah Almsaeed 已提交
9009 9010
    padding-left: 3rem !important;
  }
9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
A
Abdullah Almsaeed 已提交
9106
  .m-md-auto {
A
Abdullah Almsaeed 已提交
9107 9108
    margin: auto !important;
  }
A
Abdullah Almsaeed 已提交
9109 9110
  .mt-md-auto,
  .my-md-auto {
A
Abdullah Almsaeed 已提交
9111 9112
    margin-top: auto !important;
  }
A
Abdullah Almsaeed 已提交
9113 9114
  .mr-md-auto,
  .mx-md-auto {
A
Abdullah Almsaeed 已提交
9115 9116
    margin-right: auto !important;
  }
A
Abdullah Almsaeed 已提交
9117 9118
  .mb-md-auto,
  .my-md-auto {
A
Abdullah Almsaeed 已提交
9119 9120
    margin-bottom: auto !important;
  }
A
Abdullah Almsaeed 已提交
9121 9122
  .ml-md-auto,
  .mx-md-auto {
A
Abdullah Almsaeed 已提交
9123 9124 9125
    margin-left: auto !important;
  }
}
A
Abdullah Almsaeed 已提交
9126 9127 9128

@media (min-width: 992px) {
  .m-lg-0 {
A
Abdullah Almsaeed 已提交
9129 9130
    margin: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9131 9132
  .mt-lg-0,
  .my-lg-0 {
A
Abdullah Almsaeed 已提交
9133 9134
    margin-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9135 9136
  .mr-lg-0,
  .mx-lg-0 {
A
Abdullah Almsaeed 已提交
9137 9138
    margin-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9139 9140
  .mb-lg-0,
  .my-lg-0 {
A
Abdullah Almsaeed 已提交
9141 9142
    margin-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9143 9144
  .ml-lg-0,
  .mx-lg-0 {
A
Abdullah Almsaeed 已提交
9145 9146
    margin-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9147
  .m-lg-1 {
A
Abdullah Almsaeed 已提交
9148 9149
    margin: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9150 9151
  .mt-lg-1,
  .my-lg-1 {
A
Abdullah Almsaeed 已提交
9152 9153
    margin-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9154 9155
  .mr-lg-1,
  .mx-lg-1 {
A
Abdullah Almsaeed 已提交
9156 9157
    margin-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9158 9159
  .mb-lg-1,
  .my-lg-1 {
A
Abdullah Almsaeed 已提交
9160 9161
    margin-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9162 9163
  .ml-lg-1,
  .mx-lg-1 {
A
Abdullah Almsaeed 已提交
9164 9165
    margin-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9166
  .m-lg-2 {
A
Abdullah Almsaeed 已提交
9167 9168
    margin: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9169 9170
  .mt-lg-2,
  .my-lg-2 {
A
Abdullah Almsaeed 已提交
9171 9172
    margin-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9173 9174
  .mr-lg-2,
  .mx-lg-2 {
A
Abdullah Almsaeed 已提交
9175 9176
    margin-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9177 9178
  .mb-lg-2,
  .my-lg-2 {
A
Abdullah Almsaeed 已提交
9179 9180
    margin-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9181 9182
  .ml-lg-2,
  .mx-lg-2 {
A
Abdullah Almsaeed 已提交
9183 9184
    margin-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9185
  .m-lg-3 {
A
Abdullah Almsaeed 已提交
9186 9187
    margin: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9188 9189
  .mt-lg-3,
  .my-lg-3 {
A
Abdullah Almsaeed 已提交
9190 9191
    margin-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9192 9193
  .mr-lg-3,
  .mx-lg-3 {
A
Abdullah Almsaeed 已提交
9194 9195
    margin-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9196 9197
  .mb-lg-3,
  .my-lg-3 {
A
Abdullah Almsaeed 已提交
9198 9199
    margin-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9200 9201
  .ml-lg-3,
  .mx-lg-3 {
A
Abdullah Almsaeed 已提交
9202 9203
    margin-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9204
  .m-lg-4 {
A
Abdullah Almsaeed 已提交
9205 9206
    margin: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9207 9208
  .mt-lg-4,
  .my-lg-4 {
A
Abdullah Almsaeed 已提交
9209 9210
    margin-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9211 9212
  .mr-lg-4,
  .mx-lg-4 {
A
Abdullah Almsaeed 已提交
9213 9214
    margin-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9215 9216
  .mb-lg-4,
  .my-lg-4 {
A
Abdullah Almsaeed 已提交
9217 9218
    margin-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9219 9220
  .ml-lg-4,
  .mx-lg-4 {
A
Abdullah Almsaeed 已提交
9221 9222
    margin-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9223
  .m-lg-5 {
A
Abdullah Almsaeed 已提交
9224 9225
    margin: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9226 9227
  .mt-lg-5,
  .my-lg-5 {
A
Abdullah Almsaeed 已提交
9228 9229
    margin-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9230 9231
  .mr-lg-5,
  .mx-lg-5 {
A
Abdullah Almsaeed 已提交
9232 9233
    margin-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9234 9235
  .mb-lg-5,
  .my-lg-5 {
A
Abdullah Almsaeed 已提交
9236 9237
    margin-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9238 9239
  .ml-lg-5,
  .mx-lg-5 {
A
Abdullah Almsaeed 已提交
9240 9241
    margin-left: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9242
  .p-lg-0 {
A
Abdullah Almsaeed 已提交
9243 9244
    padding: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9245 9246
  .pt-lg-0,
  .py-lg-0 {
A
Abdullah Almsaeed 已提交
9247 9248
    padding-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9249 9250
  .pr-lg-0,
  .px-lg-0 {
A
Abdullah Almsaeed 已提交
9251 9252
    padding-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9253 9254
  .pb-lg-0,
  .py-lg-0 {
A
Abdullah Almsaeed 已提交
9255 9256
    padding-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9257 9258
  .pl-lg-0,
  .px-lg-0 {
A
Abdullah Almsaeed 已提交
9259 9260
    padding-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9261
  .p-lg-1 {
A
Abdullah Almsaeed 已提交
9262 9263
    padding: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9264 9265
  .pt-lg-1,
  .py-lg-1 {
A
Abdullah Almsaeed 已提交
9266 9267
    padding-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9268 9269
  .pr-lg-1,
  .px-lg-1 {
A
Abdullah Almsaeed 已提交
9270 9271
    padding-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9272 9273
  .pb-lg-1,
  .py-lg-1 {
A
Abdullah Almsaeed 已提交
9274 9275
    padding-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9276 9277
  .pl-lg-1,
  .px-lg-1 {
A
Abdullah Almsaeed 已提交
9278 9279
    padding-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9280
  .p-lg-2 {
A
Abdullah Almsaeed 已提交
9281 9282
    padding: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9283 9284
  .pt-lg-2,
  .py-lg-2 {
A
Abdullah Almsaeed 已提交
9285 9286
    padding-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9287 9288
  .pr-lg-2,
  .px-lg-2 {
A
Abdullah Almsaeed 已提交
9289 9290
    padding-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9291 9292
  .pb-lg-2,
  .py-lg-2 {
A
Abdullah Almsaeed 已提交
9293 9294
    padding-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9295 9296
  .pl-lg-2,
  .px-lg-2 {
A
Abdullah Almsaeed 已提交
9297 9298
    padding-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9299
  .p-lg-3 {
A
Abdullah Almsaeed 已提交
9300 9301
    padding: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9302 9303
  .pt-lg-3,
  .py-lg-3 {
A
Abdullah Almsaeed 已提交
9304 9305
    padding-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9306 9307
  .pr-lg-3,
  .px-lg-3 {
A
Abdullah Almsaeed 已提交
9308 9309
    padding-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9310 9311
  .pb-lg-3,
  .py-lg-3 {
A
Abdullah Almsaeed 已提交
9312 9313
    padding-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9314 9315
  .pl-lg-3,
  .px-lg-3 {
A
Abdullah Almsaeed 已提交
9316 9317
    padding-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9318
  .p-lg-4 {
A
Abdullah Almsaeed 已提交
9319 9320
    padding: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9321 9322
  .pt-lg-4,
  .py-lg-4 {
A
Abdullah Almsaeed 已提交
9323 9324
    padding-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9325 9326
  .pr-lg-4,
  .px-lg-4 {
A
Abdullah Almsaeed 已提交
9327 9328
    padding-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9329 9330
  .pb-lg-4,
  .py-lg-4 {
A
Abdullah Almsaeed 已提交
9331 9332
    padding-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9333 9334
  .pl-lg-4,
  .px-lg-4 {
A
Abdullah Almsaeed 已提交
9335 9336
    padding-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9337
  .p-lg-5 {
A
Abdullah Almsaeed 已提交
9338 9339
    padding: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9340 9341
  .pt-lg-5,
  .py-lg-5 {
A
Abdullah Almsaeed 已提交
9342 9343
    padding-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9344 9345
  .pr-lg-5,
  .px-lg-5 {
A
Abdullah Almsaeed 已提交
9346 9347
    padding-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9348 9349
  .pb-lg-5,
  .py-lg-5 {
A
Abdullah Almsaeed 已提交
9350 9351
    padding-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9352 9353
  .pl-lg-5,
  .px-lg-5 {
A
Abdullah Almsaeed 已提交
9354 9355
    padding-left: 3rem !important;
  }
9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
A
Abdullah Almsaeed 已提交
9451
  .m-lg-auto {
A
Abdullah Almsaeed 已提交
9452 9453
    margin: auto !important;
  }
A
Abdullah Almsaeed 已提交
9454 9455
  .mt-lg-auto,
  .my-lg-auto {
A
Abdullah Almsaeed 已提交
9456 9457
    margin-top: auto !important;
  }
A
Abdullah Almsaeed 已提交
9458 9459
  .mr-lg-auto,
  .mx-lg-auto {
A
Abdullah Almsaeed 已提交
9460 9461
    margin-right: auto !important;
  }
A
Abdullah Almsaeed 已提交
9462 9463
  .mb-lg-auto,
  .my-lg-auto {
A
Abdullah Almsaeed 已提交
9464 9465
    margin-bottom: auto !important;
  }
A
Abdullah Almsaeed 已提交
9466 9467
  .ml-lg-auto,
  .mx-lg-auto {
A
Abdullah Almsaeed 已提交
9468 9469 9470
    margin-left: auto !important;
  }
}
A
Abdullah Almsaeed 已提交
9471 9472 9473

@media (min-width: 1200px) {
  .m-xl-0 {
A
Abdullah Almsaeed 已提交
9474 9475
    margin: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9476 9477
  .mt-xl-0,
  .my-xl-0 {
A
Abdullah Almsaeed 已提交
9478 9479
    margin-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9480 9481
  .mr-xl-0,
  .mx-xl-0 {
A
Abdullah Almsaeed 已提交
9482 9483
    margin-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9484 9485
  .mb-xl-0,
  .my-xl-0 {
A
Abdullah Almsaeed 已提交
9486 9487
    margin-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9488 9489
  .ml-xl-0,
  .mx-xl-0 {
A
Abdullah Almsaeed 已提交
9490 9491
    margin-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9492
  .m-xl-1 {
A
Abdullah Almsaeed 已提交
9493 9494
    margin: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9495 9496
  .mt-xl-1,
  .my-xl-1 {
A
Abdullah Almsaeed 已提交
9497 9498
    margin-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9499 9500
  .mr-xl-1,
  .mx-xl-1 {
A
Abdullah Almsaeed 已提交
9501 9502
    margin-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9503 9504
  .mb-xl-1,
  .my-xl-1 {
A
Abdullah Almsaeed 已提交
9505 9506
    margin-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9507 9508
  .ml-xl-1,
  .mx-xl-1 {
A
Abdullah Almsaeed 已提交
9509 9510
    margin-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9511
  .m-xl-2 {
A
Abdullah Almsaeed 已提交
9512 9513
    margin: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9514 9515
  .mt-xl-2,
  .my-xl-2 {
A
Abdullah Almsaeed 已提交
9516 9517
    margin-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9518 9519
  .mr-xl-2,
  .mx-xl-2 {
A
Abdullah Almsaeed 已提交
9520 9521
    margin-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9522 9523
  .mb-xl-2,
  .my-xl-2 {
A
Abdullah Almsaeed 已提交
9524 9525
    margin-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9526 9527
  .ml-xl-2,
  .mx-xl-2 {
A
Abdullah Almsaeed 已提交
9528 9529
    margin-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9530
  .m-xl-3 {
A
Abdullah Almsaeed 已提交
9531 9532
    margin: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9533 9534
  .mt-xl-3,
  .my-xl-3 {
A
Abdullah Almsaeed 已提交
9535 9536
    margin-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9537 9538
  .mr-xl-3,
  .mx-xl-3 {
A
Abdullah Almsaeed 已提交
9539 9540
    margin-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9541 9542
  .mb-xl-3,
  .my-xl-3 {
A
Abdullah Almsaeed 已提交
9543 9544
    margin-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9545 9546
  .ml-xl-3,
  .mx-xl-3 {
A
Abdullah Almsaeed 已提交
9547 9548
    margin-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9549
  .m-xl-4 {
A
Abdullah Almsaeed 已提交
9550 9551
    margin: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9552 9553
  .mt-xl-4,
  .my-xl-4 {
A
Abdullah Almsaeed 已提交
9554 9555
    margin-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9556 9557
  .mr-xl-4,
  .mx-xl-4 {
A
Abdullah Almsaeed 已提交
9558 9559
    margin-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9560 9561
  .mb-xl-4,
  .my-xl-4 {
A
Abdullah Almsaeed 已提交
9562 9563
    margin-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9564 9565
  .ml-xl-4,
  .mx-xl-4 {
A
Abdullah Almsaeed 已提交
9566 9567
    margin-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9568
  .m-xl-5 {
A
Abdullah Almsaeed 已提交
9569 9570
    margin: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9571 9572
  .mt-xl-5,
  .my-xl-5 {
A
Abdullah Almsaeed 已提交
9573 9574
    margin-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9575 9576
  .mr-xl-5,
  .mx-xl-5 {
A
Abdullah Almsaeed 已提交
9577 9578
    margin-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9579 9580
  .mb-xl-5,
  .my-xl-5 {
A
Abdullah Almsaeed 已提交
9581 9582
    margin-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9583 9584
  .ml-xl-5,
  .mx-xl-5 {
A
Abdullah Almsaeed 已提交
9585 9586
    margin-left: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9587
  .p-xl-0 {
A
Abdullah Almsaeed 已提交
9588 9589
    padding: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9590 9591
  .pt-xl-0,
  .py-xl-0 {
A
Abdullah Almsaeed 已提交
9592 9593
    padding-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9594 9595
  .pr-xl-0,
  .px-xl-0 {
A
Abdullah Almsaeed 已提交
9596 9597
    padding-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9598 9599
  .pb-xl-0,
  .py-xl-0 {
A
Abdullah Almsaeed 已提交
9600 9601
    padding-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9602 9603
  .pl-xl-0,
  .px-xl-0 {
A
Abdullah Almsaeed 已提交
9604 9605
    padding-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9606
  .p-xl-1 {
A
Abdullah Almsaeed 已提交
9607 9608
    padding: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9609 9610
  .pt-xl-1,
  .py-xl-1 {
A
Abdullah Almsaeed 已提交
9611 9612
    padding-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9613 9614
  .pr-xl-1,
  .px-xl-1 {
A
Abdullah Almsaeed 已提交
9615 9616
    padding-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9617 9618
  .pb-xl-1,
  .py-xl-1 {
A
Abdullah Almsaeed 已提交
9619 9620
    padding-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9621 9622
  .pl-xl-1,
  .px-xl-1 {
A
Abdullah Almsaeed 已提交
9623 9624
    padding-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9625
  .p-xl-2 {
A
Abdullah Almsaeed 已提交
9626 9627
    padding: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9628 9629
  .pt-xl-2,
  .py-xl-2 {
A
Abdullah Almsaeed 已提交
9630 9631
    padding-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9632 9633
  .pr-xl-2,
  .px-xl-2 {
A
Abdullah Almsaeed 已提交
9634 9635
    padding-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9636 9637
  .pb-xl-2,
  .py-xl-2 {
A
Abdullah Almsaeed 已提交
9638 9639
    padding-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9640 9641
  .pl-xl-2,
  .px-xl-2 {
A
Abdullah Almsaeed 已提交
9642 9643
    padding-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9644
  .p-xl-3 {
A
Abdullah Almsaeed 已提交
9645 9646
    padding: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9647 9648
  .pt-xl-3,
  .py-xl-3 {
A
Abdullah Almsaeed 已提交
9649 9650
    padding-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9651 9652
  .pr-xl-3,
  .px-xl-3 {
A
Abdullah Almsaeed 已提交
9653 9654
    padding-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9655 9656
  .pb-xl-3,
  .py-xl-3 {
A
Abdullah Almsaeed 已提交
9657 9658
    padding-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9659 9660
  .pl-xl-3,
  .px-xl-3 {
A
Abdullah Almsaeed 已提交
9661 9662
    padding-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9663
  .p-xl-4 {
A
Abdullah Almsaeed 已提交
9664 9665
    padding: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9666 9667
  .pt-xl-4,
  .py-xl-4 {
A
Abdullah Almsaeed 已提交
9668 9669
    padding-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9670 9671
  .pr-xl-4,
  .px-xl-4 {
A
Abdullah Almsaeed 已提交
9672 9673
    padding-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9674 9675
  .pb-xl-4,
  .py-xl-4 {
A
Abdullah Almsaeed 已提交
9676 9677
    padding-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9678 9679
  .pl-xl-4,
  .px-xl-4 {
A
Abdullah Almsaeed 已提交
9680 9681
    padding-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9682
  .p-xl-5 {
A
Abdullah Almsaeed 已提交
9683 9684
    padding: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9685 9686
  .pt-xl-5,
  .py-xl-5 {
A
Abdullah Almsaeed 已提交
9687 9688
    padding-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9689 9690
  .pr-xl-5,
  .px-xl-5 {
A
Abdullah Almsaeed 已提交
9691 9692
    padding-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9693 9694
  .pb-xl-5,
  .py-xl-5 {
A
Abdullah Almsaeed 已提交
9695 9696
    padding-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9697 9698
  .pl-xl-5,
  .px-xl-5 {
A
Abdullah Almsaeed 已提交
9699 9700
    padding-left: 3rem !important;
  }
9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
A
Abdullah Almsaeed 已提交
9796
  .m-xl-auto {
A
Abdullah Almsaeed 已提交
9797 9798
    margin: auto !important;
  }
A
Abdullah Almsaeed 已提交
9799 9800
  .mt-xl-auto,
  .my-xl-auto {
A
Abdullah Almsaeed 已提交
9801 9802
    margin-top: auto !important;
  }
A
Abdullah Almsaeed 已提交
9803 9804
  .mr-xl-auto,
  .mx-xl-auto {
A
Abdullah Almsaeed 已提交
9805 9806
    margin-right: auto !important;
  }
A
Abdullah Almsaeed 已提交
9807 9808
  .mb-xl-auto,
  .my-xl-auto {
A
Abdullah Almsaeed 已提交
9809 9810
    margin-bottom: auto !important;
  }
A
Abdullah Almsaeed 已提交
9811 9812
  .ml-xl-auto,
  .mx-xl-auto {
A
Abdullah Almsaeed 已提交
9813 9814 9815
    margin-left: auto !important;
  }
}
A
Abdullah Almsaeed 已提交
9816

A
Abdullah Almsaeed 已提交
9817
.text-monospace {
9818
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
A
Abdullah Almsaeed 已提交
9819 9820
}

A
Abdullah Almsaeed 已提交
9821
.text-justify {
A
Abdullah Almsaeed 已提交
9822 9823
  text-align: justify !important;
}
A
Abdullah Almsaeed 已提交
9824

9825 9826 9827 9828
.text-wrap {
  white-space: normal !important;
}

A
Abdullah Almsaeed 已提交
9829
.text-nowrap {
A
Abdullah Almsaeed 已提交
9830 9831
  white-space: nowrap !important;
}
A
Abdullah Almsaeed 已提交
9832 9833 9834 9835

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
A
Abdullah Almsaeed 已提交
9836 9837
  white-space: nowrap;
}
A
Abdullah Almsaeed 已提交
9838

A
Abdullah Almsaeed 已提交
9839
.text-left {
A
Abdullah Almsaeed 已提交
9840 9841
  text-align: left !important;
}
A
Abdullah Almsaeed 已提交
9842

A
Abdullah Almsaeed 已提交
9843
.text-right {
A
Abdullah Almsaeed 已提交
9844 9845
  text-align: right !important;
}
A
Abdullah Almsaeed 已提交
9846

A
Abdullah Almsaeed 已提交
9847
.text-center {
A
Abdullah Almsaeed 已提交
9848 9849
  text-align: center !important;
}
A
Abdullah Almsaeed 已提交
9850 9851 9852

@media (min-width: 576px) {
  .text-sm-left {
A
Abdullah Almsaeed 已提交
9853 9854
    text-align: left !important;
  }
A
Abdullah Almsaeed 已提交
9855
  .text-sm-right {
A
Abdullah Almsaeed 已提交
9856 9857
    text-align: right !important;
  }
A
Abdullah Almsaeed 已提交
9858
  .text-sm-center {
A
Abdullah Almsaeed 已提交
9859 9860 9861
    text-align: center !important;
  }
}
A
Abdullah Almsaeed 已提交
9862 9863 9864

@media (min-width: 768px) {
  .text-md-left {
A
Abdullah Almsaeed 已提交
9865 9866
    text-align: left !important;
  }
A
Abdullah Almsaeed 已提交
9867
  .text-md-right {
A
Abdullah Almsaeed 已提交
9868 9869
    text-align: right !important;
  }
A
Abdullah Almsaeed 已提交
9870
  .text-md-center {
A
Abdullah Almsaeed 已提交
9871 9872 9873
    text-align: center !important;
  }
}
A
Abdullah Almsaeed 已提交
9874 9875 9876

@media (min-width: 992px) {
  .text-lg-left {
A
Abdullah Almsaeed 已提交
9877 9878
    text-align: left !important;
  }
A
Abdullah Almsaeed 已提交
9879
  .text-lg-right {
A
Abdullah Almsaeed 已提交
9880 9881
    text-align: right !important;
  }
A
Abdullah Almsaeed 已提交
9882
  .text-lg-center {
A
Abdullah Almsaeed 已提交
9883 9884 9885
    text-align: center !important;
  }
}
A
Abdullah Almsaeed 已提交
9886 9887 9888

@media (min-width: 1200px) {
  .text-xl-left {
A
Abdullah Almsaeed 已提交
9889 9890
    text-align: left !important;
  }
A
Abdullah Almsaeed 已提交
9891
  .text-xl-right {
A
Abdullah Almsaeed 已提交
9892 9893
    text-align: right !important;
  }
A
Abdullah Almsaeed 已提交
9894
  .text-xl-center {
A
Abdullah Almsaeed 已提交
9895 9896 9897
    text-align: center !important;
  }
}
A
Abdullah Almsaeed 已提交
9898 9899

.text-lowercase {
A
Abdullah Almsaeed 已提交
9900 9901
  text-transform: lowercase !important;
}
A
Abdullah Almsaeed 已提交
9902 9903

.text-uppercase {
A
Abdullah Almsaeed 已提交
9904 9905
  text-transform: uppercase !important;
}
A
Abdullah Almsaeed 已提交
9906 9907

.text-capitalize {
A
Abdullah Almsaeed 已提交
9908 9909
  text-transform: capitalize !important;
}
A
Abdullah Almsaeed 已提交
9910 9911

.font-weight-light {
A
Abdullah Almsaeed 已提交
9912 9913
  font-weight: 300 !important;
}
A
Abdullah Almsaeed 已提交
9914

9915 9916 9917 9918
.font-weight-lighter {
  font-weight: lighter !important;
}

A
Abdullah Almsaeed 已提交
9919
.font-weight-normal {
A
Abdullah Almsaeed 已提交
9920 9921
  font-weight: 400 !important;
}
A
Abdullah Almsaeed 已提交
9922 9923

.font-weight-bold {
A
Abdullah Almsaeed 已提交
9924 9925
  font-weight: 700 !important;
}
A
Abdullah Almsaeed 已提交
9926

9927 9928 9929 9930
.font-weight-bolder {
  font-weight: bolder !important;
}

A
Abdullah Almsaeed 已提交
9931
.font-italic {
A
Abdullah Almsaeed 已提交
9932 9933
  font-style: italic !important;
}
A
Abdullah Almsaeed 已提交
9934 9935

.text-white {
A
Abdullah Almsaeed 已提交
9936
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
9937
}
A
Abdullah Almsaeed 已提交
9938 9939

.text-primary {
A
Abdullah Almsaeed 已提交
9940 9941
  color: #007bff !important;
}
A
Abdullah Almsaeed 已提交
9942

A
Abdullah Almsaeed 已提交
9943
a.text-primary:hover, a.text-primary:focus {
9944
  color: #0056b3 !important;
A
Abdullah Almsaeed 已提交
9945
}
A
Abdullah Almsaeed 已提交
9946 9947

.text-secondary {
A
Abdullah Almsaeed 已提交
9948 9949
  color: #6c757d !important;
}
A
Abdullah Almsaeed 已提交
9950

A
Abdullah Almsaeed 已提交
9951
a.text-secondary:hover, a.text-secondary:focus {
9952
  color: #494f54 !important;
A
Abdullah Almsaeed 已提交
9953
}
A
Abdullah Almsaeed 已提交
9954 9955

.text-success {
A
Abdullah Almsaeed 已提交
9956 9957
  color: #28a745 !important;
}
A
Abdullah Almsaeed 已提交
9958

A
Abdullah Almsaeed 已提交
9959
a.text-success:hover, a.text-success:focus {
9960
  color: #19692c !important;
A
Abdullah Almsaeed 已提交
9961
}
A
Abdullah Almsaeed 已提交
9962 9963

.text-info {
A
Abdullah Almsaeed 已提交
9964 9965
  color: #17a2b8 !important;
}
A
Abdullah Almsaeed 已提交
9966

A
Abdullah Almsaeed 已提交
9967
a.text-info:hover, a.text-info:focus {
9968
  color: #0f6674 !important;
A
Abdullah Almsaeed 已提交
9969
}
A
Abdullah Almsaeed 已提交
9970 9971

.text-warning {
A
Abdullah Almsaeed 已提交
9972 9973
  color: #ffc107 !important;
}
A
Abdullah Almsaeed 已提交
9974

A
Abdullah Almsaeed 已提交
9975
a.text-warning:hover, a.text-warning:focus {
9976
  color: #ba8b00 !important;
A
Abdullah Almsaeed 已提交
9977
}
A
Abdullah Almsaeed 已提交
9978 9979

.text-danger {
A
Abdullah Almsaeed 已提交
9980 9981
  color: #dc3545 !important;
}
A
Abdullah Almsaeed 已提交
9982

A
Abdullah Almsaeed 已提交
9983
a.text-danger:hover, a.text-danger:focus {
9984
  color: #a71d2a !important;
A
Abdullah Almsaeed 已提交
9985
}
A
Abdullah Almsaeed 已提交
9986 9987

.text-light {
A
Abdullah Almsaeed 已提交
9988 9989
  color: #f8f9fa !important;
}
A
Abdullah Almsaeed 已提交
9990

A
Abdullah Almsaeed 已提交
9991
a.text-light:hover, a.text-light:focus {
9992
  color: #cbd3da !important;
A
Abdullah Almsaeed 已提交
9993
}
A
Abdullah Almsaeed 已提交
9994 9995

.text-dark {
A
Abdullah Almsaeed 已提交
9996 9997
  color: #343a40 !important;
}
A
Abdullah Almsaeed 已提交
9998

A
Abdullah Almsaeed 已提交
9999
a.text-dark:hover, a.text-dark:focus {
10000
  color: #121416 !important;
A
Abdullah Almsaeed 已提交
10001
}
A
Abdullah Almsaeed 已提交
10002

A
Abdullah Almsaeed 已提交
10003 10004 10005 10006
.text-body {
  color: #212529 !important;
}

A
Abdullah Almsaeed 已提交
10007
.text-muted {
A
Abdullah Almsaeed 已提交
10008 10009
  color: #6c757d !important;
}
A
Abdullah Almsaeed 已提交
10010

A
Abdullah Almsaeed 已提交
10011 10012 10013 10014 10015 10016 10017 10018
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

A
Abdullah Almsaeed 已提交
10019 10020 10021 10022 10023
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
A
Abdullah Almsaeed 已提交
10024 10025
  border: 0;
}
A
Abdullah Almsaeed 已提交
10026

10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039
.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

A
Abdullah Almsaeed 已提交
10040
.visible {
A
Abdullah Almsaeed 已提交
10041 10042
  visibility: visible !important;
}
A
Abdullah Almsaeed 已提交
10043

A
Abdullah Almsaeed 已提交
10044
.invisible {
A
Abdullah Almsaeed 已提交
10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
A
Abdullah Almsaeed 已提交
10066
    border: 1px solid #adb5bd;
A
Abdullah Almsaeed 已提交
10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
A
Abdullah Almsaeed 已提交
10106
    background-color: #ffffff !important;
A
Abdullah Almsaeed 已提交
10107 10108 10109
  }
  .table-bordered th,
  .table-bordered td {
A
Abdullah Almsaeed 已提交
10110
    border: 1px solid #dee2e6 !important;
A
Abdullah Almsaeed 已提交
10111
  }
10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
A
Abdullah Almsaeed 已提交
10125
}
A
Abdullah Almsaeed 已提交
10126 10127

/*
10128 10129 10130 10131 10132 10133 10134 10135 10136 10137
 * Core: Variables
 * ---------------
 */
/*
 * General: Mixins
 * ---------------
 */
/*
 * Core: Layout
 * ------------
A
Abdullah Almsaeed 已提交
10138
 */
10139 10140 10141 10142
html {
  scroll-behavior: smooth;
}

A
Abdullah Almsaeed 已提交
10143 10144 10145
html,
body,
.wrapper {
A
Abdullah Almsaeed 已提交
10146 10147
  min-height: 100%;
}
A
Abdullah Almsaeed 已提交
10148

10149
.wrapper {
A
Abdullah Almsaeed 已提交
10150 10151
  position: relative;
}
A
Abdullah Almsaeed 已提交
10152

R
REJack 已提交
10153 10154 10155 10156
.wrapper .content-wrapper {
  min-height: calc(100vh - 112px);
}

A
Abdullah Almsaeed 已提交
10157 10158 10159 10160
.layout-boxed .wrapper {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

10161
.layout-boxed .wrapper, .layout-boxed .wrapper::before {
A
Abdullah Almsaeed 已提交
10162 10163 10164
  margin: 0 auto;
  max-width: 1250px;
}
A
Abdullah Almsaeed 已提交
10165

R
REJack 已提交
10166 10167 10168 10169
.layout-boxed .wrapper .main-sidebar {
  left: inherit;
}

R
REJack 已提交
10170 10171 10172 10173 10174 10175 10176 10177 10178 10179
.layout-navbar-fixed.layout-fixed .wrapper .sidebar {
  margin-top: calc(3.5rem + 1px);
}

.layout-navbar-fixed .wrapper a.anchor {
  display: block;
  position: relative;
  top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
}

10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263
.layout-navbar-fixed .wrapper.sidebar-collapse .brand-link {
  height: calc(3.5rem + 1px);
  transition: width 0.3s ease-in-out;
  width: 4.6rem;
}

.layout-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
  transition: width 0.3s ease-in-out;
  width: 250px;
}

.layout-navbar-fixed .wrapper .brand-link {
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: width 0.3s ease-in-out;
  width: 250px;
  z-index: 951;
}

.layout-navbar-fixed .wrapper .sidebar-dark-primary .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-primary .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-secondary .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-success .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-success .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-info .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-info .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-warning .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-warning .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-danger .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-danger .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-light .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-light .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-dark .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-dark .brand-link {
  background-color: #ffffff;
}

R
REJack 已提交
10264
.layout-navbar-fixed .wrapper .content-wrapper {
10265
  margin-top: calc(3.5rem + 1px);
R
REJack 已提交
10266 10267 10268
}

.layout-navbar-fixed .wrapper .main-header {
10269
  left: 0;
R
REJack 已提交
10270 10271
  position: fixed;
  right: 0;
10272 10273
  top: 0;
  z-index: 949;
R
REJack 已提交
10274 10275
}

10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288
.layout-navbar-not-fixed .wrapper .brand-link {
  position: static;
}

.layout-navbar-not-fixed .wrapper .sidebar,
.layout-navbar-not-fixed .wrapper .content-wrapper {
  margin-top: 0px;
}

.layout-navbar-not-fixed .wrapper .main-header {
  position: static;
}

R
REJack 已提交
10289 10290 10291 10292 10293 10294 10295 10296 10297 10298
.layout-navbar-fixed.layout-fixed .wrapper .sidebar {
  margin-top: calc(3.5rem + 1px);
}

.layout-navbar-fixed .wrapper a.anchor {
  display: block;
  position: relative;
  top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
}

10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408
.layout-navbar-fixed .wrapper.sidebar-collapse .brand-link {
  height: calc(3.5rem + 1px);
  transition: width 0.3s ease-in-out;
  width: 4.6rem;
}

.layout-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
  transition: width 0.3s ease-in-out;
  width: 250px;
}

.layout-navbar-fixed .wrapper .brand-link {
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: width 0.3s ease-in-out;
  width: 250px;
  z-index: 951;
}

.layout-navbar-fixed .wrapper .sidebar-dark-primary .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-primary .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-secondary .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-success .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-success .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-info .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-info .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-warning .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-warning .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-danger .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-danger .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-light .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-light .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .sidebar-dark-dark .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .wrapper .sidebar-light-dark .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .wrapper .content-wrapper {
  margin-top: calc(3.5rem + 1px);
}

.layout-navbar-fixed .wrapper .main-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 949;
}

.layout-navbar-not-fixed .wrapper .brand-link {
  position: static;
}

.layout-navbar-not-fixed .wrapper .sidebar,
.layout-navbar-not-fixed .wrapper .content-wrapper {
  margin-top: 0px;
}

.layout-navbar-not-fixed .wrapper .main-header {
  position: static;
}

@media (min-width: 576px) {
R
REJack 已提交
10409 10410 10411 10412 10413 10414 10415 10416
  .layout-sm-navbar-fixed.layout-fixed .wrapper .sidebar {
    margin-top: calc(3.5rem + 1px);
  }
  .layout-sm-navbar-fixed .wrapper a.anchor {
    display: block;
    position: relative;
    top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
  }
10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504
  .layout-sm-navbar-fixed .wrapper.sidebar-collapse .brand-link {
    height: calc(3.5rem + 1px);
    transition: width 0.3s ease-in-out;
    width: 4.6rem;
  }
  .layout-sm-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
    transition: width 0.3s ease-in-out;
    width: 250px;
  }
  .layout-sm-navbar-fixed .wrapper .brand-link {
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: width 0.3s ease-in-out;
    width: 250px;
    z-index: 951;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-dark-primary .brand-link {
    background-color: #343a40;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-light-primary .brand-link {
    background-color: #ffffff;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link {
    background-color: #343a40;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-light-secondary .brand-link {
    background-color: #ffffff;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-dark-success .brand-link {
    background-color: #343a40;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-light-success .brand-link {
    background-color: #ffffff;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-dark-info .brand-link {
    background-color: #343a40;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-light-info .brand-link {
    background-color: #ffffff;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-dark-warning .brand-link {
    background-color: #343a40;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-light-warning .brand-link {
    background-color: #ffffff;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-dark-danger .brand-link {
    background-color: #343a40;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-light-danger .brand-link {
    background-color: #ffffff;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-dark-light .brand-link {
    background-color: #343a40;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-light-light .brand-link {
    background-color: #ffffff;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-dark-dark .brand-link {
    background-color: #343a40;
  }
  .layout-sm-navbar-fixed .wrapper .sidebar-light-dark .brand-link {
    background-color: #ffffff;
  }
  .layout-sm-navbar-fixed .wrapper .content-wrapper {
    margin-top: calc(3.5rem + 1px);
  }
  .layout-sm-navbar-fixed .wrapper .main-header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 949;
  }
  .layout-sm-navbar-not-fixed .wrapper .brand-link {
    position: static;
  }
  .layout-sm-navbar-not-fixed .wrapper .sidebar,
  .layout-sm-navbar-not-fixed .wrapper .content-wrapper {
    margin-top: 0px;
  }
  .layout-sm-navbar-not-fixed .wrapper .main-header {
    position: static;
  }
}

@media (min-width: 768px) {
R
REJack 已提交
10505 10506 10507 10508 10509 10510 10511 10512
  .layout-md-navbar-fixed.layout-fixed .wrapper .sidebar {
    margin-top: calc(3.5rem + 1px);
  }
  .layout-md-navbar-fixed .wrapper a.anchor {
    display: block;
    position: relative;
    top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
  }
10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600
  .layout-md-navbar-fixed .wrapper.sidebar-collapse .brand-link {
    height: calc(3.5rem + 1px);
    transition: width 0.3s ease-in-out;
    width: 4.6rem;
  }
  .layout-md-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
    transition: width 0.3s ease-in-out;
    width: 250px;
  }
  .layout-md-navbar-fixed .wrapper .brand-link {
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: width 0.3s ease-in-out;
    width: 250px;
    z-index: 951;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-dark-primary .brand-link {
    background-color: #343a40;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-light-primary .brand-link {
    background-color: #ffffff;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link {
    background-color: #343a40;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-light-secondary .brand-link {
    background-color: #ffffff;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-dark-success .brand-link {
    background-color: #343a40;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-light-success .brand-link {
    background-color: #ffffff;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-dark-info .brand-link {
    background-color: #343a40;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-light-info .brand-link {
    background-color: #ffffff;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-dark-warning .brand-link {
    background-color: #343a40;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-light-warning .brand-link {
    background-color: #ffffff;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-dark-danger .brand-link {
    background-color: #343a40;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-light-danger .brand-link {
    background-color: #ffffff;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-dark-light .brand-link {
    background-color: #343a40;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-light-light .brand-link {
    background-color: #ffffff;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-dark-dark .brand-link {
    background-color: #343a40;
  }
  .layout-md-navbar-fixed .wrapper .sidebar-light-dark .brand-link {
    background-color: #ffffff;
  }
  .layout-md-navbar-fixed .wrapper .content-wrapper {
    margin-top: calc(3.5rem + 1px);
  }
  .layout-md-navbar-fixed .wrapper .main-header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 949;
  }
  .layout-md-navbar-not-fixed .wrapper .brand-link {
    position: static;
  }
  .layout-md-navbar-not-fixed .wrapper .sidebar,
  .layout-md-navbar-not-fixed .wrapper .content-wrapper {
    margin-top: 0px;
  }
  .layout-md-navbar-not-fixed .wrapper .main-header {
    position: static;
  }
}

@media (min-width: 992px) {
R
REJack 已提交
10601 10602 10603 10604 10605 10606 10607 10608
  .layout-lg-navbar-fixed.layout-fixed .wrapper .sidebar {
    margin-top: calc(3.5rem + 1px);
  }
  .layout-lg-navbar-fixed .wrapper a.anchor {
    display: block;
    position: relative;
    top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
  }
10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696
  .layout-lg-navbar-fixed .wrapper.sidebar-collapse .brand-link {
    height: calc(3.5rem + 1px);
    transition: width 0.3s ease-in-out;
    width: 4.6rem;
  }
  .layout-lg-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
    transition: width 0.3s ease-in-out;
    width: 250px;
  }
  .layout-lg-navbar-fixed .wrapper .brand-link {
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: width 0.3s ease-in-out;
    width: 250px;
    z-index: 951;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-dark-primary .brand-link {
    background-color: #343a40;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-light-primary .brand-link {
    background-color: #ffffff;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link {
    background-color: #343a40;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-light-secondary .brand-link {
    background-color: #ffffff;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-dark-success .brand-link {
    background-color: #343a40;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-light-success .brand-link {
    background-color: #ffffff;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-dark-info .brand-link {
    background-color: #343a40;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-light-info .brand-link {
    background-color: #ffffff;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-dark-warning .brand-link {
    background-color: #343a40;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-light-warning .brand-link {
    background-color: #ffffff;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-dark-danger .brand-link {
    background-color: #343a40;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-light-danger .brand-link {
    background-color: #ffffff;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-dark-light .brand-link {
    background-color: #343a40;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-light-light .brand-link {
    background-color: #ffffff;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-dark-dark .brand-link {
    background-color: #343a40;
  }
  .layout-lg-navbar-fixed .wrapper .sidebar-light-dark .brand-link {
    background-color: #ffffff;
  }
  .layout-lg-navbar-fixed .wrapper .content-wrapper {
    margin-top: calc(3.5rem + 1px);
  }
  .layout-lg-navbar-fixed .wrapper .main-header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 949;
  }
  .layout-lg-navbar-not-fixed .wrapper .brand-link {
    position: static;
  }
  .layout-lg-navbar-not-fixed .wrapper .sidebar,
  .layout-lg-navbar-not-fixed .wrapper .content-wrapper {
    margin-top: 0px;
  }
  .layout-lg-navbar-not-fixed .wrapper .main-header {
    position: static;
  }
}

@media (min-width: 1200px) {
R
REJack 已提交
10697 10698 10699 10700 10701 10702 10703 10704
  .layout-xl-navbar-fixed.layout-fixed .wrapper .sidebar {
    margin-top: calc(3.5rem + 1px);
  }
  .layout-xl-navbar-fixed .wrapper a.anchor {
    display: block;
    position: relative;
    top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
  }
10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807
  .layout-xl-navbar-fixed .wrapper.sidebar-collapse .brand-link {
    height: calc(3.5rem + 1px);
    transition: width 0.3s ease-in-out;
    width: 4.6rem;
  }
  .layout-xl-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
    transition: width 0.3s ease-in-out;
    width: 250px;
  }
  .layout-xl-navbar-fixed .wrapper .brand-link {
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: width 0.3s ease-in-out;
    width: 250px;
    z-index: 951;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-dark-primary .brand-link {
    background-color: #343a40;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-light-primary .brand-link {
    background-color: #ffffff;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link {
    background-color: #343a40;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-light-secondary .brand-link {
    background-color: #ffffff;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-dark-success .brand-link {
    background-color: #343a40;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-light-success .brand-link {
    background-color: #ffffff;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-dark-info .brand-link {
    background-color: #343a40;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-light-info .brand-link {
    background-color: #ffffff;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-dark-warning .brand-link {
    background-color: #343a40;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-light-warning .brand-link {
    background-color: #ffffff;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-dark-danger .brand-link {
    background-color: #343a40;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-light-danger .brand-link {
    background-color: #ffffff;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-dark-light .brand-link {
    background-color: #343a40;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-light-light .brand-link {
    background-color: #ffffff;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-dark-dark .brand-link {
    background-color: #343a40;
  }
  .layout-xl-navbar-fixed .wrapper .sidebar-light-dark .brand-link {
    background-color: #ffffff;
  }
  .layout-xl-navbar-fixed .wrapper .content-wrapper {
    margin-top: calc(3.5rem + 1px);
  }
  .layout-xl-navbar-fixed .wrapper .main-header {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 949;
  }
  .layout-xl-navbar-not-fixed .wrapper .brand-link {
    position: static;
  }
  .layout-xl-navbar-not-fixed .wrapper .sidebar,
  .layout-xl-navbar-not-fixed .wrapper .content-wrapper {
    margin-top: 0px;
  }
  .layout-xl-navbar-not-fixed .wrapper .main-header {
    position: static;
  }
}

.layout-footer-fixed .wrapper .main-footer {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 949;
}

.layout-footer-not-fixed .wrapper .main-footer {
  position: static;
}

.layout-footer-not-fixed .wrapper .content-wrapper {
  margin-bottom: 0px;
}

R
REJack 已提交
10808 10809
.layout-footer-fixed .wrapper .main-footer {
  bottom: 0;
10810
  left: 0;
10811 10812 10813
  position: fixed;
  right: 0;
  z-index: 949;
R
REJack 已提交
10814 10815
}

10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887
.layout-footer-fixed .wrapper .content-wrapper {
  margin-bottom: calc(3.5rem + 1px);
}

.layout-footer-not-fixed .wrapper .main-footer {
  position: static;
}

@media (min-width: 576px) {
  .layout-sm-footer-fixed .wrapper .main-footer {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 949;
  }
  .layout-sm-footer-fixed .wrapper .content-wrapper {
    margin-bottom: calc(3.5rem + 1px);
  }
  .layout-sm-footer-not-fixed .wrapper .main-footer {
    position: static;
  }
}

@media (min-width: 768px) {
  .layout-md-footer-fixed .wrapper .main-footer {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 949;
  }
  .layout-md-footer-fixed .wrapper .content-wrapper {
    margin-bottom: calc(3.5rem + 1px);
  }
  .layout-md-footer-not-fixed .wrapper .main-footer {
    position: static;
  }
}

@media (min-width: 992px) {
  .layout-lg-footer-fixed .wrapper .main-footer {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 949;
  }
  .layout-lg-footer-fixed .wrapper .content-wrapper {
    margin-bottom: calc(3.5rem + 1px);
  }
  .layout-lg-footer-not-fixed .wrapper .main-footer {
    position: static;
  }
}

@media (min-width: 1200px) {
  .layout-xl-footer-fixed .wrapper .main-footer {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 949;
  }
  .layout-xl-footer-fixed .wrapper .content-wrapper {
    margin-bottom: calc(3.5rem + 1px);
  }
  .layout-xl-footer-not-fixed .wrapper .main-footer {
    position: static;
  }
}

R
REJack 已提交
10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910
.layout-top-nav .wrapper {
  margin-left: 0;
}

.layout-top-nav .wrapper .main-sidebar {
  bottom: inherit;
  height: inherit;
}

.layout-top-nav .wrapper .brand-image {
  height: 33px;
}

.layout-top-nav .wrapper .main-sidebar {
  display: none;
}

.layout-top-nav .wrapper .content-wrapper,
.layout-top-nav .wrapper .main-header,
.layout-top-nav .wrapper .main-footer {
  margin-left: 0;
}

R
REJack 已提交
10911
@media (min-width: 576px) {
A
Abdullah Almsaeed 已提交
10912
  .content-wrapper,
A
Abdullah Almsaeed 已提交
10913 10914 10915 10916
  .main-footer,
  .main-header {
    transition: margin-left 0.3s ease-in-out;
    margin-left: 250px;
A
Abdullah Almsaeed 已提交
10917
    z-index: 3000;
A
Abdullah Almsaeed 已提交
10918
  }
A
Abdullah Almsaeed 已提交
10919 10920
}

R
REJack 已提交
10921
@media (min-width: 576px) and (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
10922 10923 10924 10925 10926 10927 10928
  .content-wrapper,
  .main-footer,
  .main-header {
    transition: none;
  }
}

R
REJack 已提交
10929
@media (min-width: 576px) {
A
Abdullah Almsaeed 已提交
10930 10931 10932 10933 10934 10935
  .sidebar-collapse .content-wrapper, .sidebar-collapse
  .main-footer, .sidebar-collapse
  .main-header {
    margin-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
10936

R
REJack 已提交
10937
@media (max-width: 767.98px) {
10938
  .content-wrapper, .content-wrapper::before,
A
Abdullah Almsaeed 已提交
10939
  .main-footer,
10940
  .main-footer::before,
A
Abdullah Almsaeed 已提交
10941
  .main-header,
10942
  .main-header::before {
A
Abdullah Almsaeed 已提交
10943 10944 10945
    margin-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
10946 10947

.content-wrapper {
A
Abdullah Almsaeed 已提交
10948 10949 10950 10951 10952 10953
  background: #f4f6f9;
}

.content-wrapper > .content {
  padding: 0 0.5rem;
}
A
Abdullah Almsaeed 已提交
10954

10955
.main-sidebar, .main-sidebar::before {
A
Abdullah Almsaeed 已提交
10956 10957 10958 10959
  transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
  width: 250px;
}

10960
@media (prefers-reduced-motion: reduce) {
10961
  .main-sidebar, .main-sidebar::before {
A
Abdullah Almsaeed 已提交
10962 10963 10964 10965
    transition: none;
  }
}

10966
.sidebar-collapse .main-sidebar, .sidebar-collapse .main-sidebar::before {
A
Abdullah Almsaeed 已提交
10967 10968 10969
  margin-left: -250px;
}

R
REJack 已提交
10970
@media (max-width: 767.98px) {
10971
  .main-sidebar, .main-sidebar::before {
A
Abdullah Almsaeed 已提交
10972 10973 10974
    box-shadow: none !important;
    margin-left: -250px;
  }
10975
  .sidebar-open .main-sidebar, .sidebar-open .main-sidebar::before {
A
Abdullah Almsaeed 已提交
10976 10977 10978
    margin-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
10979

R
REJack 已提交
10980 10981 10982
:not(.layout-fixed) .main-sidebar {
  height: inherit;
  min-height: 100%;
10983 10984
  position: absolute;
  top: 0;
R
REJack 已提交
10985 10986 10987
}

.layout-fixed .main-sidebar {
10988 10989
  bottom: 0;
  float: none;
R
REJack 已提交
10990
  height: 100vh;
10991
  left: 0;
R
REJack 已提交
10992 10993 10994 10995
  position: fixed;
  top: 0;
}

A
Abdullah Almsaeed 已提交
10996
.main-footer {
A
Abdullah Almsaeed 已提交
10997
  background: #ffffff;
10998 10999
  border-top: 1px solid #dee2e6;
  color: #869099;
11000
  padding: 1rem;
A
Abdullah Almsaeed 已提交
11001
}
A
Abdullah Almsaeed 已提交
11002 11003

.content-header {
A
Abdullah Almsaeed 已提交
11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014
  padding: 15px 0.5rem;
}

.content-header h1 {
  font-size: 1.8rem;
  margin: 0;
}

.content-header .breadcrumb {
  background: transparent;
  line-height: 1.8rem;
11015 11016
  margin-bottom: 0;
  padding: 0;
A
Abdullah Almsaeed 已提交
11017 11018 11019 11020 11021 11022 11023
}

.hold-transition .content-wrapper,
.hold-transition .main-header,
.hold-transition .main-footer {
  transition: none !important;
}
A
Abdullah Almsaeed 已提交
11024 11025 11026 11027 11028 11029

/*
 * Component: Main Header
 * ----------------------
 */
.main-header {
R
REJack 已提交
11030
  border-bottom: 1px solid #dee2e6;
R
REJack 已提交
11031
  z-index: 900;
A
Abdullah Almsaeed 已提交
11032
}
A
Abdullah Almsaeed 已提交
11033

A
Abdullah Almsaeed 已提交
11034 11035
.main-header .nav-link {
  height: 2.5rem;
11036
  position: relative;
A
Abdullah Almsaeed 已提交
11037
}
11038

11039 11040 11041 11042 11043 11044
.main-header .navbar-nav .nav-item {
  margin: 0;
}

.main-header .navbar-nav[class*='-right'] .dropdown-menu {
  left: auto;
A
Abdullah Almsaeed 已提交
11045 11046 11047 11048 11049
  margin-top: -3px;
  right: 0;
}

@media (max-width: 575.98px) {
11050
  .main-header .navbar-nav[class*='-right'] .dropdown-menu {
A
Abdullah Almsaeed 已提交
11051 11052 11053 11054 11055 11056
    left: 0;
    right: auto;
  }
}

.navbar-img {
11057
  height: calc(3.5rem + 1px)/2;
A
Abdullah Almsaeed 已提交
11058 11059 11060 11061 11062 11063 11064
  width: auto;
}

.navbar-badge {
  font-size: .6rem;
  font-weight: 300;
  padding: 2px 4px;
11065 11066 11067
  position: absolute;
  right: 5px;
  top: 9px;
A
Abdullah Almsaeed 已提交
11068 11069 11070 11071
}

.btn-navbar {
  background-color: transparent;
11072
  border-left-width: 0;
A
Abdullah Almsaeed 已提交
11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093
}

.form-control-navbar {
  border-right-width: 0;
}

.form-control-navbar + .input-group-append {
  margin-left: 0;
}

.form-control-navbar,
.btn-navbar {
  transition: none;
}

.navbar-dark .form-control-navbar,
.navbar-dark .btn-navbar {
  background-color: rgba(255, 255, 255, 0.2);
  border: 0;
}

R
REJack 已提交
11094 11095 11096 11097 11098
.navbar-dark .form-control-navbar::-webkit-input-placeholder,
.navbar-dark .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(255, 255, 255, 0.6);
}

11099 11100 11101 11102 11103
.navbar-dark .form-control-navbar::-moz-placeholder,
.navbar-dark .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(255, 255, 255, 0.6);
}

R
REJack 已提交
11104 11105 11106 11107 11108 11109 11110 11111 11112 11113
.navbar-dark .form-control-navbar:-ms-input-placeholder,
.navbar-dark .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(255, 255, 255, 0.6);
}

.navbar-dark .form-control-navbar::-ms-input-placeholder,
.navbar-dark .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(255, 255, 255, 0.6);
}

A
Abdullah Almsaeed 已提交
11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133
.navbar-dark .form-control-navbar::placeholder,
.navbar-dark .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(255, 255, 255, 0.6);
}

.navbar-dark .form-control-navbar :-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.navbar-dark .form-control-navbar ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.navbar-dark .form-control-navbar :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.navbar-dark .form-control-navbar:focus,
.navbar-dark .form-control-navbar:focus + .input-group-append .btn-navbar {
  background-color: rgba(255, 255, 255, 0.6);
11134
  border: 0 !important;
A
Abdullah Almsaeed 已提交
11135 11136 11137 11138 11139 11140 11141 11142 11143
  color: #343a40;
}

.navbar-light .form-control-navbar,
.navbar-light .btn-navbar {
  background-color: #f2f4f6;
  border: 0;
}

R
REJack 已提交
11144 11145 11146 11147 11148
.navbar-light .form-control-navbar::-webkit-input-placeholder,
.navbar-light .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(0, 0, 0, 0.6);
}

11149 11150 11151 11152 11153
.navbar-light .form-control-navbar::-moz-placeholder,
.navbar-light .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(0, 0, 0, 0.6);
}

R
REJack 已提交
11154 11155 11156 11157 11158 11159 11160 11161 11162 11163
.navbar-light .form-control-navbar:-ms-input-placeholder,
.navbar-light .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(0, 0, 0, 0.6);
}

.navbar-light .form-control-navbar::-ms-input-placeholder,
.navbar-light .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(0, 0, 0, 0.6);
}

A
Abdullah Almsaeed 已提交
11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183
.navbar-light .form-control-navbar::placeholder,
.navbar-light .form-control-navbar + .input-group-append > .btn-navbar {
  color: rgba(0, 0, 0, 0.6);
}

.navbar-light .form-control-navbar :-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.navbar-light .form-control-navbar ::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.navbar-light .form-control-navbar :-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.navbar-light .form-control-navbar:focus,
.navbar-light .form-control-navbar:focus + .input-group-append .btn-navbar {
  background-color: #e9ecef;
11184
  border: 0 !important;
A
Abdullah Almsaeed 已提交
11185 11186 11187
  color: #343a40;
}

11188 11189 11190 11191
/*
 * Component: Brand
 * ----------------
 */
A
Abdullah Almsaeed 已提交
11192 11193
.brand-link {
  display: block;
11194
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
11195
  line-height: 1.5;
11196
  padding: 0.8125rem 0.5rem;
A
Abdullah Almsaeed 已提交
11197 11198 11199 11200 11201 11202 11203 11204
  white-space: nowrap;
}

.brand-link:hover {
  color: #ffffff;
  text-decoration: none;
}

11205
[class*='sidebar-dark'] .brand-link {
A
Abdullah Almsaeed 已提交
11206
  border-bottom: 1px solid #4b545c;
11207
  color: rgba(255, 255, 255, 0.8);
A
Abdullah Almsaeed 已提交
11208 11209
}

11210
[class*='sidebar-light'] .brand-link {
A
Abdullah Almsaeed 已提交
11211
  border-bottom: 1px solid #dee2e6;
11212
  color: rgba(0, 0, 0, 0.8);
A
Abdullah Almsaeed 已提交
11213 11214 11215 11216 11217 11218 11219 11220
}

.brand-image {
  float: left;
  line-height: .8;
  margin-left: .8rem;
  margin-right: .5rem;
  margin-top: -3px;
11221 11222
  max-height: 34px;
  width: auto;
A
Abdullah Almsaeed 已提交
11223 11224
}

11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242
.brand-image-xs {
  float: left;
  line-height: .8;
  margin-left: .8rem;
  margin-right: .5rem;
  margin-top: -3px;
  max-height: 34px;
  width: auto;
}

.brand-image-xl {
  line-height: .8;
  margin-bottom: -10px;
  margin-top: -14px;
  max-height: 40px;
  width: auto;
}

A
Abdullah Almsaeed 已提交
11243
/**
11244 11245
 * Component: Main Sidebar
 * -----------------------
A
Abdullah Almsaeed 已提交
11246
 */
A
Abdullah Almsaeed 已提交
11247 11248 11249
.main-sidebar {
  height: 100vh;
  overflow-y: hidden;
11250
  z-index: 950;
A
Abdullah Almsaeed 已提交
11251 11252
}

A
Abdullah Almsaeed 已提交
11253
.sidebar {
11254 11255
  height: calc(100% - 4rem);
  overflow-y: auto;
A
Abdullah Almsaeed 已提交
11256 11257 11258
  padding-bottom: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
11259
  padding-top: 0;
A
Abdullah Almsaeed 已提交
11260
}
A
Abdullah Almsaeed 已提交
11261 11262

.user-panel {
A
Abdullah Almsaeed 已提交
11263 11264
  position: relative;
}
A
Abdullah Almsaeed 已提交
11265

11266
[class*='sidebar-dark'] .user-panel {
A
Abdullah Almsaeed 已提交
11267 11268 11269
  border-bottom: 1px solid #4f5962;
}

11270
[class*='sidebar-light'] .user-panel {
A
Abdullah Almsaeed 已提交
11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281
  border-bottom: 1px solid #dee2e6;
}

.user-panel,
.user-panel .info {
  overflow: hidden;
  white-space: nowrap;
}

.user-panel .image {
  display: inline-block;
11282
  padding-left: 0.8rem;
A
Abdullah Almsaeed 已提交
11283 11284 11285
}

.user-panel img {
A
Abdullah Almsaeed 已提交
11286
  height: auto;
11287
  width: 2.1rem;
A
Abdullah Almsaeed 已提交
11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304
}

.user-panel .info {
  display: inline-block;
  padding: 5px 5px 5px 10px;
}

.user-panel .status,
.user-panel .dropdown-menu {
  font-size: 0.875rem;
}

.nav-sidebar .nav-item > .nav-link {
  margin-bottom: 0.2rem;
}

.nav-sidebar .nav-item > .nav-link .right {
R
REJack 已提交
11305
  transition: -webkit-transform ease-in-out 0.3s;
A
Abdullah Almsaeed 已提交
11306
  transition: transform ease-in-out 0.3s;
R
REJack 已提交
11307
  transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
A
Abdullah Almsaeed 已提交
11308 11309
}

11310
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
11311 11312 11313 11314 11315
  .nav-sidebar .nav-item > .nav-link .right {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
11316 11317 11318 11319 11320
.nav-sidebar .nav-link > p > .right {
  position: absolute;
  right: 1rem;
  top: 12px;
}
A
Abdullah Almsaeed 已提交
11321

R
REJack 已提交
11322 11323 11324 11325
.nav-sidebar .nav-link > p > .right:nth-child(2) {
  right: 2.5rem;
}

A
Abdullah Almsaeed 已提交
11326
.nav-sidebar .menu-open > .nav-treeview {
A
Abdullah Almsaeed 已提交
11327 11328
  display: block;
}
A
Abdullah Almsaeed 已提交
11329

R
REJack 已提交
11330 11331
.nav-sidebar .menu-open > .nav-link i.right {
  -webkit-transform: rotate(-90deg);
A
Abdullah Almsaeed 已提交
11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345
  transform: rotate(-90deg);
}

.nav-sidebar > .nav-item {
  margin-bottom: 0;
}

.nav-sidebar > .nav-item .nav-icon {
  text-align: center;
  width: 1.6rem;
  font-size: 1.2rem;
  margin-right: .2rem;
}

11346
.nav-sidebar > .nav-item .nav-icon.fa, .nav-sidebar > .nav-item .nav-icon.fas, .nav-sidebar > .nav-item .nav-icon.far, .nav-sidebar > .nav-item .nav-icon.fab, .nav-sidebar > .nav-item .nav-icon.glyphicon, .nav-sidebar > .nav-item .nav-icon.ion {
R
REJack 已提交
11347 11348 11349
  font-size: 1.1rem;
}

A
Abdullah Almsaeed 已提交
11350 11351 11352
.nav-sidebar > .nav-item .float-right {
  margin-top: 3px;
}
A
Abdullah Almsaeed 已提交
11353 11354 11355 11356 11357

.nav-sidebar .nav-treeview {
  display: none;
  list-style: none;
  padding: 0;
A
Abdullah Almsaeed 已提交
11358 11359 11360 11361 11362
}

.nav-sidebar .nav-treeview > .nav-item > .nav-link > .nav-icon {
  width: 1.6rem;
}
11363

11364 11365
.nav-sidebar.nav-child-indent   .nav-treeview {
  padding-left: 1rem;
11366 11367
}

11368
.nav-sidebar .nav-header {
A
Abdullah Almsaeed 已提交
11369 11370 11371
  font-size: .9rem;
  padding: 0.5rem;
}
A
Abdullah Almsaeed 已提交
11372

A
Abdullah Almsaeed 已提交
11373 11374 11375
.nav-sidebar .nav-header:not(:first-of-type) {
  padding: 1.7rem 1rem .5rem 1rem;
}
A
Abdullah Almsaeed 已提交
11376

A
Abdullah Almsaeed 已提交
11377 11378 11379 11380
.nav-sidebar .nav-link p {
  display: inline-block;
  margin: 0;
}
A
Abdullah Almsaeed 已提交
11381

A
Abdullah Almsaeed 已提交
11382
#sidebar-overlay {
11383
  background-color: rgba(0, 0, 0, 0.1);
A
Abdullah Almsaeed 已提交
11384 11385
  bottom: 0;
  display: none;
11386 11387 11388 11389
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
R
REJack 已提交
11390
  z-index: 949;
A
Abdullah Almsaeed 已提交
11391
}
A
Abdullah Almsaeed 已提交
11392

A
Abdullah Almsaeed 已提交
11393 11394 11395 11396 11397
@media (max-width: 991.98px) {
  .sidebar-open #sidebar-overlay {
    display: block;
  }
}
11398

R
REJack 已提交
11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410
@media (min-width: 576px) {
  .sidebar-mini-md.sidebar-open #sidebar-overlay {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .sidebar-mini-md.sidebar-open #sidebar-overlay {
    display: block;
  }
}

A
Abdullah Almsaeed 已提交
11411 11412 11413
.sidebar-dark-primary {
  background-color: #343a40;
}
A
Abdullah Almsaeed 已提交
11414

A
Abdullah Almsaeed 已提交
11415 11416 11417
.sidebar-dark-primary .user-panel a:hover {
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
11418

A
Abdullah Almsaeed 已提交
11419 11420
.sidebar-dark-primary .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
11421
  color: #C2C7D0;
A
Abdullah Almsaeed 已提交
11422 11423 11424 11425
}

.sidebar-dark-primary .user-panel .status:hover, .sidebar-dark-primary .user-panel .status:focus, .sidebar-dark-primary .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
11426
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11427 11428 11429 11430
}

.sidebar-dark-primary .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
11431
  border-color: rgba(242, 242, 242, 0.1);
A
Abdullah Almsaeed 已提交
11432 11433 11434 11435 11436 11437
}

.sidebar-dark-primary .user-panel .dropdown-item {
  color: #212529;
}

11438
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
11439 11440 11441 11442
  color: #C2C7D0;
}

.sidebar-dark-primary .nav-sidebar > .nav-item.menu-open > .nav-link,
11443 11444
.sidebar-dark-primary .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11445
  background-color: rgba(255, 255, 255, 0.1);
11446
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11447 11448 11449 11450
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #007bff;
11451
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11452 11453 11454 11455 11456 11457 11458 11459
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-primary .nav-header {
  background: inherit;
11460
  color: #d0d4db;
A
Abdullah Almsaeed 已提交
11461 11462 11463 11464 11465 11466
}

.sidebar-dark-primary .sidebar a {
  color: #C2C7D0;
}

11467
.sidebar-dark-primary .sidebar a:hover, .sidebar-dark-primary .sidebar a:focus {
A
Abdullah Almsaeed 已提交
11468 11469 11470 11471 11472 11473 11474
  text-decoration: none;
}

.sidebar-dark-primary .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

11475
.sidebar-dark-primary .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-primary .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11476
  background-color: rgba(255, 255, 255, 0.1);
11477
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11478 11479
}

11480
.sidebar-dark-primary .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-primary .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-primary .nav-treeview > .nav-item > .nav-link.active:focus {
A
Abdullah Almsaeed 已提交
11481
  background-color: rgba(255, 255, 255, 0.9);
11482
  color: #343a40;
A
Abdullah Almsaeed 已提交
11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494
}

.sidebar-light-primary {
  background-color: #ffffff;
}

.sidebar-light-primary .user-panel a:hover {
  color: #212529;
}

.sidebar-light-primary .user-panel .status {
  background: #f4f4f5;
11495
  color: #343a40;
A
Abdullah Almsaeed 已提交
11496 11497 11498 11499
}

.sidebar-light-primary .user-panel .status:hover, .sidebar-light-primary .user-panel .status:focus, .sidebar-light-primary .user-panel .status:active {
  background: #ececed;
11500
  color: #212529;
A
Abdullah Almsaeed 已提交
11501 11502 11503 11504
}

.sidebar-light-primary .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
11505
  border-color: #e7e7e8;
A
Abdullah Almsaeed 已提交
11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518
}

.sidebar-light-primary .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-primary .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-primary .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-primary .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
11519
  color: #212529;
A
Abdullah Almsaeed 已提交
11520 11521 11522 11523
}

.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #007bff;
11524
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11525 11526 11527 11528 11529 11530 11531 11532
}

.sidebar-light-primary .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-primary .nav-header {
  background: inherit;
11533
  color: #292d32;
A
Abdullah Almsaeed 已提交
11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549
}

.sidebar-light-primary .sidebar a {
  color: #343a40;
}

.sidebar-light-primary .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-primary .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-primary .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-primary .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
11550
  color: #212529;
A
Abdullah Almsaeed 已提交
11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566
}

.sidebar-light-primary .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-secondary {
  background-color: #343a40;
}

.sidebar-dark-secondary .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-secondary .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
11567
  color: #C2C7D0;
A
Abdullah Almsaeed 已提交
11568 11569 11570 11571
}

.sidebar-dark-secondary .user-panel .status:hover, .sidebar-dark-secondary .user-panel .status:focus, .sidebar-dark-secondary .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
11572
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11573 11574 11575 11576
}

.sidebar-dark-secondary .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
11577
  border-color: rgba(242, 242, 242, 0.1);
A
Abdullah Almsaeed 已提交
11578 11579 11580 11581 11582 11583
}

.sidebar-dark-secondary .user-panel .dropdown-item {
  color: #212529;
}

11584
.sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
11585 11586 11587 11588
  color: #C2C7D0;
}

.sidebar-dark-secondary .nav-sidebar > .nav-item.menu-open > .nav-link,
11589 11590
.sidebar-dark-secondary .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11591
  background-color: rgba(255, 255, 255, 0.1);
11592
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11593 11594 11595 11596
}

.sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #6c757d;
11597
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11598 11599 11600 11601 11602 11603 11604 11605
}

.sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-secondary .nav-header {
  background: inherit;
11606
  color: #d0d4db;
A
Abdullah Almsaeed 已提交
11607 11608 11609 11610 11611 11612
}

.sidebar-dark-secondary .sidebar a {
  color: #C2C7D0;
}

11613
.sidebar-dark-secondary .sidebar a:hover, .sidebar-dark-secondary .sidebar a:focus {
A
Abdullah Almsaeed 已提交
11614 11615 11616 11617 11618 11619 11620
  text-decoration: none;
}

.sidebar-dark-secondary .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

11621
.sidebar-dark-secondary .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-secondary .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11622
  background-color: rgba(255, 255, 255, 0.1);
11623
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11624 11625
}

11626
.sidebar-dark-secondary .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-secondary .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-secondary .nav-treeview > .nav-item > .nav-link.active:focus {
A
Abdullah Almsaeed 已提交
11627
  background-color: rgba(255, 255, 255, 0.9);
11628
  color: #343a40;
A
Abdullah Almsaeed 已提交
11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640
}

.sidebar-light-secondary {
  background-color: #ffffff;
}

.sidebar-light-secondary .user-panel a:hover {
  color: #212529;
}

.sidebar-light-secondary .user-panel .status {
  background: #f4f4f5;
11641
  color: #343a40;
A
Abdullah Almsaeed 已提交
11642 11643 11644 11645
}

.sidebar-light-secondary .user-panel .status:hover, .sidebar-light-secondary .user-panel .status:focus, .sidebar-light-secondary .user-panel .status:active {
  background: #ececed;
11646
  color: #212529;
A
Abdullah Almsaeed 已提交
11647 11648 11649 11650
}

.sidebar-light-secondary .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
11651
  border-color: #e7e7e8;
A
Abdullah Almsaeed 已提交
11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664
}

.sidebar-light-secondary .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-secondary .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-secondary .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-secondary .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-secondary .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
11665
  color: #212529;
A
Abdullah Almsaeed 已提交
11666 11667 11668 11669
}

.sidebar-light-secondary .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #6c757d;
11670
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11671 11672 11673 11674 11675 11676 11677 11678
}

.sidebar-light-secondary .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-secondary .nav-header {
  background: inherit;
11679
  color: #292d32;
A
Abdullah Almsaeed 已提交
11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695
}

.sidebar-light-secondary .sidebar a {
  color: #343a40;
}

.sidebar-light-secondary .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-secondary .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-secondary .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-secondary .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
11696
  color: #212529;
A
Abdullah Almsaeed 已提交
11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712
}

.sidebar-light-secondary .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-success {
  background-color: #343a40;
}

.sidebar-dark-success .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-success .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
11713
  color: #C2C7D0;
A
Abdullah Almsaeed 已提交
11714 11715 11716 11717
}

.sidebar-dark-success .user-panel .status:hover, .sidebar-dark-success .user-panel .status:focus, .sidebar-dark-success .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
11718
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11719 11720 11721 11722
}

.sidebar-dark-success .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
11723
  border-color: rgba(242, 242, 242, 0.1);
A
Abdullah Almsaeed 已提交
11724 11725 11726 11727 11728 11729
}

.sidebar-dark-success .user-panel .dropdown-item {
  color: #212529;
}

11730
.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
11731 11732 11733 11734
  color: #C2C7D0;
}

.sidebar-dark-success .nav-sidebar > .nav-item.menu-open > .nav-link,
11735 11736
.sidebar-dark-success .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11737
  background-color: rgba(255, 255, 255, 0.1);
11738
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11739 11740 11741 11742
}

.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #28a745;
11743
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11744 11745 11746 11747 11748 11749 11750 11751
}

.sidebar-dark-success .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-success .nav-header {
  background: inherit;
11752
  color: #d0d4db;
A
Abdullah Almsaeed 已提交
11753 11754 11755 11756 11757 11758
}

.sidebar-dark-success .sidebar a {
  color: #C2C7D0;
}

11759
.sidebar-dark-success .sidebar a:hover, .sidebar-dark-success .sidebar a:focus {
A
Abdullah Almsaeed 已提交
11760 11761 11762 11763 11764 11765 11766
  text-decoration: none;
}

.sidebar-dark-success .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

11767
.sidebar-dark-success .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-success .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11768
  background-color: rgba(255, 255, 255, 0.1);
11769
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11770 11771
}

11772
.sidebar-dark-success .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-success .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-success .nav-treeview > .nav-item > .nav-link.active:focus {
A
Abdullah Almsaeed 已提交
11773
  background-color: rgba(255, 255, 255, 0.9);
11774
  color: #343a40;
A
Abdullah Almsaeed 已提交
11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786
}

.sidebar-light-success {
  background-color: #ffffff;
}

.sidebar-light-success .user-panel a:hover {
  color: #212529;
}

.sidebar-light-success .user-panel .status {
  background: #f4f4f5;
11787
  color: #343a40;
A
Abdullah Almsaeed 已提交
11788 11789 11790 11791
}

.sidebar-light-success .user-panel .status:hover, .sidebar-light-success .user-panel .status:focus, .sidebar-light-success .user-panel .status:active {
  background: #ececed;
11792
  color: #212529;
A
Abdullah Almsaeed 已提交
11793 11794 11795 11796
}

.sidebar-light-success .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
11797
  border-color: #e7e7e8;
A
Abdullah Almsaeed 已提交
11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810
}

.sidebar-light-success .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-success .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-success .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-success .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-success .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
11811
  color: #212529;
A
Abdullah Almsaeed 已提交
11812 11813 11814 11815
}

.sidebar-light-success .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #28a745;
11816
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11817 11818 11819 11820 11821 11822 11823 11824
}

.sidebar-light-success .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-success .nav-header {
  background: inherit;
11825
  color: #292d32;
A
Abdullah Almsaeed 已提交
11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841
}

.sidebar-light-success .sidebar a {
  color: #343a40;
}

.sidebar-light-success .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-success .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-success .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-success .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
11842
  color: #212529;
A
Abdullah Almsaeed 已提交
11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858
}

.sidebar-light-success .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-info {
  background-color: #343a40;
}

.sidebar-dark-info .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-info .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
11859
  color: #C2C7D0;
A
Abdullah Almsaeed 已提交
11860 11861 11862 11863
}

.sidebar-dark-info .user-panel .status:hover, .sidebar-dark-info .user-panel .status:focus, .sidebar-dark-info .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
11864
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11865 11866 11867 11868
}

.sidebar-dark-info .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
11869
  border-color: rgba(242, 242, 242, 0.1);
A
Abdullah Almsaeed 已提交
11870 11871 11872 11873 11874 11875
}

.sidebar-dark-info .user-panel .dropdown-item {
  color: #212529;
}

11876
.sidebar-dark-info .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
11877 11878 11879 11880
  color: #C2C7D0;
}

.sidebar-dark-info .nav-sidebar > .nav-item.menu-open > .nav-link,
11881 11882
.sidebar-dark-info .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-info .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11883
  background-color: rgba(255, 255, 255, 0.1);
11884
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11885 11886 11887 11888
}

.sidebar-dark-info .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #17a2b8;
11889
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11890 11891 11892 11893 11894 11895 11896 11897
}

.sidebar-dark-info .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-info .nav-header {
  background: inherit;
11898
  color: #d0d4db;
A
Abdullah Almsaeed 已提交
11899 11900 11901 11902 11903 11904
}

.sidebar-dark-info .sidebar a {
  color: #C2C7D0;
}

11905
.sidebar-dark-info .sidebar a:hover, .sidebar-dark-info .sidebar a:focus {
A
Abdullah Almsaeed 已提交
11906 11907 11908 11909 11910 11911 11912
  text-decoration: none;
}

.sidebar-dark-info .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

11913
.sidebar-dark-info .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-info .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11914
  background-color: rgba(255, 255, 255, 0.1);
11915
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11916 11917
}

11918
.sidebar-dark-info .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-info .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-info .nav-treeview > .nav-item > .nav-link.active:focus {
A
Abdullah Almsaeed 已提交
11919
  background-color: rgba(255, 255, 255, 0.9);
11920
  color: #343a40;
A
Abdullah Almsaeed 已提交
11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932
}

.sidebar-light-info {
  background-color: #ffffff;
}

.sidebar-light-info .user-panel a:hover {
  color: #212529;
}

.sidebar-light-info .user-panel .status {
  background: #f4f4f5;
11933
  color: #343a40;
A
Abdullah Almsaeed 已提交
11934 11935 11936 11937
}

.sidebar-light-info .user-panel .status:hover, .sidebar-light-info .user-panel .status:focus, .sidebar-light-info .user-panel .status:active {
  background: #ececed;
11938
  color: #212529;
A
Abdullah Almsaeed 已提交
11939 11940 11941 11942
}

.sidebar-light-info .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
11943
  border-color: #e7e7e8;
A
Abdullah Almsaeed 已提交
11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956
}

.sidebar-light-info .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-info .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-info .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-info .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-info .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
11957
  color: #212529;
A
Abdullah Almsaeed 已提交
11958 11959 11960 11961
}

.sidebar-light-info .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #17a2b8;
11962
  color: #ffffff;
A
Abdullah Almsaeed 已提交
11963 11964 11965 11966 11967 11968 11969 11970
}

.sidebar-light-info .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-info .nav-header {
  background: inherit;
11971
  color: #292d32;
A
Abdullah Almsaeed 已提交
11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987
}

.sidebar-light-info .sidebar a {
  color: #343a40;
}

.sidebar-light-info .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-info .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-info .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-info .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
11988
  color: #212529;
A
Abdullah Almsaeed 已提交
11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004
}

.sidebar-light-info .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-warning {
  background-color: #343a40;
}

.sidebar-dark-warning .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-warning .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
12005
  color: #C2C7D0;
A
Abdullah Almsaeed 已提交
12006 12007 12008 12009
}

.sidebar-dark-warning .user-panel .status:hover, .sidebar-dark-warning .user-panel .status:focus, .sidebar-dark-warning .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
12010
  color: #ffffff;
A
Abdullah Almsaeed 已提交
12011 12012 12013 12014
}

.sidebar-dark-warning .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
12015
  border-color: rgba(242, 242, 242, 0.1);
A
Abdullah Almsaeed 已提交
12016 12017 12018 12019 12020 12021
}

.sidebar-dark-warning .user-panel .dropdown-item {
  color: #212529;
}

12022
.sidebar-dark-warning .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
12023 12024 12025 12026
  color: #C2C7D0;
}

.sidebar-dark-warning .nav-sidebar > .nav-item.menu-open > .nav-link,
12027 12028
.sidebar-dark-warning .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-warning .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
12029
  background-color: rgba(255, 255, 255, 0.1);
12030
  color: #ffffff;
A
Abdullah Almsaeed 已提交
12031 12032 12033 12034
}

.sidebar-dark-warning .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #ffc107;
12035
  color: #ffffff;
A
Abdullah Almsaeed 已提交
12036 12037 12038 12039 12040 12041 12042 12043
}

.sidebar-dark-warning .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-warning .nav-header {
  background: inherit;
12044
  color: #d0d4db;
A
Abdullah Almsaeed 已提交
12045 12046 12047 12048 12049 12050
}

.sidebar-dark-warning .sidebar a {
  color: #C2C7D0;
}

12051
.sidebar-dark-warning .sidebar a:hover, .sidebar-dark-warning .sidebar a:focus {
A
Abdullah Almsaeed 已提交
12052 12053 12054 12055 12056 12057 12058
  text-decoration: none;
}

.sidebar-dark-warning .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

12059
.sidebar-dark-warning .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-warning .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
12060
  background-color: rgba(255, 255, 255, 0.1);
12061
  color: #ffffff;
A
Abdullah Almsaeed 已提交
12062 12063
}

12064
.sidebar-dark-warning .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-warning .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-warning .nav-treeview > .nav-item > .nav-link.active:focus {
A
Abdullah Almsaeed 已提交
12065
  background-color: rgba(255, 255, 255, 0.9);
12066
  color: #343a40;
A
Abdullah Almsaeed 已提交
12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078
}

.sidebar-light-warning {
  background-color: #ffffff;
}

.sidebar-light-warning .user-panel a:hover {
  color: #212529;
}

.sidebar-light-warning .user-panel .status {
  background: #f4f4f5;
12079
  color: #343a40;
A
Abdullah Almsaeed 已提交
12080 12081 12082 12083
}

.sidebar-light-warning .user-panel .status:hover, .sidebar-light-warning .user-panel .status:focus, .sidebar-light-warning .user-panel .status:active {
  background: #ececed;
12084
  color: #212529;
A
Abdullah Almsaeed 已提交
12085 12086 12087 12088
}

.sidebar-light-warning .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
12089
  border-color: #e7e7e8;
A
Abdullah Almsaeed 已提交
12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102
}

.sidebar-light-warning .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-warning .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-warning .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-warning .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-warning .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
12103
  color: #212529;
A
Abdullah Almsaeed 已提交
12104 12105 12106 12107
}

.sidebar-light-warning .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #ffc107;
12108
  color: #ffffff;
A
Abdullah Almsaeed 已提交
12109 12110 12111 12112 12113 12114 12115 12116
}

.sidebar-light-warning .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-warning .nav-header {
  background: inherit;
12117
  color: #292d32;
A
Abdullah Almsaeed 已提交
12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133
}

.sidebar-light-warning .sidebar a {
  color: #343a40;
}

.sidebar-light-warning .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-warning .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-warning .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-warning .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
12134
  color: #212529;
A
Abdullah Almsaeed 已提交
12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150
}

.sidebar-light-warning .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-danger {
  background-color: #343a40;
}

.sidebar-dark-danger .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-danger .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
12151
  color: #C2C7D0;
A
Abdullah Almsaeed 已提交
12152 12153 12154 12155
}

.sidebar-dark-danger .user-panel .status:hover, .sidebar-dark-danger .user-panel .status:focus, .sidebar-dark-danger .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
12156
  color: #ffffff;
A
Abdullah Almsaeed 已提交
12157 12158 12159 12160
}

.sidebar-dark-danger .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
12161
  border-color: rgba(242, 242, 242, 0.1);
A
Abdullah Almsaeed 已提交
12162 12163 12164 12165 12166 12167
}

.sidebar-dark-danger .user-panel .dropdown-item {
  color: #212529;
}

12168
.sidebar-dark-danger .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
12169 12170 12171 12172
  color: #C2C7D0;
}

.sidebar-dark-danger .nav-sidebar > .nav-item.menu-open > .nav-link,
12173 12174
.sidebar-dark-danger .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-danger .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
12175
  background-color: rgba(255, 255, 255, 0.1);
12176
  color: #ffffff;
A
Abdullah Almsaeed 已提交
12177 12178
}

R
REJack 已提交
12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078
.sidebar-dark-danger .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #dc3545;
  color: #ffffff;
}

.sidebar-dark-danger .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-danger .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-danger .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-danger .sidebar a:hover, .sidebar-dark-danger .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-danger .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-danger .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-danger .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-danger .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-danger .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-danger .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-danger {
  background-color: #ffffff;
}

.sidebar-light-danger .user-panel a:hover {
  color: #212529;
}

.sidebar-light-danger .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-danger .user-panel .status:hover, .sidebar-light-danger .user-panel .status:focus, .sidebar-light-danger .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-danger .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-danger .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-danger .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-danger .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-danger .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-danger .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-danger .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #dc3545;
  color: #ffffff;
}

.sidebar-light-danger .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-danger .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-danger .sidebar a {
  color: #343a40;
}

.sidebar-light-danger .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-danger .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-danger .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-danger .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-danger .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-light {
  background-color: #343a40;
}

.sidebar-dark-light .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-light .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-light .user-panel .status:hover, .sidebar-dark-light .user-panel .status:focus, .sidebar-dark-light .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-light .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-light .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-light .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-light .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-light .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-light .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-light .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #f8f9fa;
  color: #ffffff;
}

.sidebar-dark-light .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-light .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-light .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-light .sidebar a:hover, .sidebar-dark-light .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-light .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-light .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-light .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-light .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-light .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-light .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-light {
  background-color: #ffffff;
}

.sidebar-light-light .user-panel a:hover {
  color: #212529;
}

.sidebar-light-light .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-light .user-panel .status:hover, .sidebar-light-light .user-panel .status:focus, .sidebar-light-light .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-light .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-light .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-light .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-light .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-light .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-light .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-light .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #f8f9fa;
  color: #ffffff;
}

.sidebar-light-light .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-light .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-light .sidebar a {
  color: #343a40;
}

.sidebar-light-light .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-light .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-light .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-light .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-light .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-dark {
  background-color: #343a40;
}

.sidebar-dark-dark .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-dark .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-dark .user-panel .status:hover, .sidebar-dark-dark .user-panel .status:focus, .sidebar-dark-dark .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-dark .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-dark .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-dark .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-dark .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-dark .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-dark .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-dark .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #343a40;
  color: #ffffff;
}

.sidebar-dark-dark .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-dark .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-dark .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-dark .sidebar a:hover, .sidebar-dark-dark .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-dark .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-dark .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-dark .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-dark .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-dark .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-dark .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-dark {
  background-color: #ffffff;
}

.sidebar-light-dark .user-panel a:hover {
  color: #212529;
}

.sidebar-light-dark .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-dark .user-panel .status:hover, .sidebar-light-dark .user-panel .status:focus, .sidebar-light-dark .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-dark .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-dark .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-dark .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-dark .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-dark .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-dark .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-dark .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #343a40;
  color: #ffffff;
}

.sidebar-light-dark .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-dark .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-dark .sidebar a {
  color: #343a40;
}

.sidebar-light-dark .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-dark .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-dark .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-dark .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-dark .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-blue {
  background-color: #343a40;
}

.sidebar-dark-blue .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-blue .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-blue .user-panel .status:hover, .sidebar-dark-blue .user-panel .status:focus, .sidebar-dark-blue .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-blue .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-blue .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-blue .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-blue .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-blue .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-blue .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-blue .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #007bff;
  color: #ffffff;
}

.sidebar-dark-blue .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-blue .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-blue .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-blue .sidebar a:hover, .sidebar-dark-blue .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-blue .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-blue .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-blue .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-blue .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-blue .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-blue .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-blue {
  background-color: #ffffff;
}

.sidebar-light-blue .user-panel a:hover {
  color: #212529;
}

.sidebar-light-blue .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-blue .user-panel .status:hover, .sidebar-light-blue .user-panel .status:focus, .sidebar-light-blue .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-blue .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-blue .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-blue .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-blue .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-blue .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-blue .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-blue .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #007bff;
  color: #ffffff;
}

.sidebar-light-blue .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-blue .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-blue .sidebar a {
  color: #343a40;
}

.sidebar-light-blue .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-blue .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-blue .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-blue .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-blue .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-indigo {
  background-color: #343a40;
}

.sidebar-dark-indigo .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-indigo .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-indigo .user-panel .status:hover, .sidebar-dark-indigo .user-panel .status:focus, .sidebar-dark-indigo .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-indigo .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-indigo .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-indigo .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-indigo .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-indigo .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-indigo .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-indigo .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #6610f2;
  color: #ffffff;
}

.sidebar-dark-indigo .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-indigo .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-indigo .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-indigo .sidebar a:hover, .sidebar-dark-indigo .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-indigo .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-indigo .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-indigo .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-indigo .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-indigo .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-indigo .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-indigo {
  background-color: #ffffff;
}

.sidebar-light-indigo .user-panel a:hover {
  color: #212529;
}

.sidebar-light-indigo .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-indigo .user-panel .status:hover, .sidebar-light-indigo .user-panel .status:focus, .sidebar-light-indigo .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-indigo .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-indigo .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-indigo .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-indigo .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-indigo .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-indigo .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-indigo .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #6610f2;
  color: #ffffff;
}

.sidebar-light-indigo .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-indigo .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-indigo .sidebar a {
  color: #343a40;
}

.sidebar-light-indigo .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-indigo .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-indigo .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-indigo .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-indigo .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-purple {
  background-color: #343a40;
}

.sidebar-dark-purple .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-purple .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-purple .user-panel .status:hover, .sidebar-dark-purple .user-panel .status:focus, .sidebar-dark-purple .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-purple .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-purple .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-purple .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-purple .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-purple .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-purple .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-purple .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #6f42c1;
  color: #ffffff;
}

.sidebar-dark-purple .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-purple .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-purple .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-purple .sidebar a:hover, .sidebar-dark-purple .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-purple .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-purple .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-purple .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-purple .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-purple .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-purple .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-purple {
  background-color: #ffffff;
}

.sidebar-light-purple .user-panel a:hover {
  color: #212529;
}

.sidebar-light-purple .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-purple .user-panel .status:hover, .sidebar-light-purple .user-panel .status:focus, .sidebar-light-purple .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-purple .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-purple .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-purple .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-purple .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-purple .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-purple .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-purple .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #6f42c1;
  color: #ffffff;
}

.sidebar-light-purple .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-purple .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-purple .sidebar a {
  color: #343a40;
}

.sidebar-light-purple .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-purple .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-purple .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-purple .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-purple .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-pink {
  background-color: #343a40;
}

.sidebar-dark-pink .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-pink .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-pink .user-panel .status:hover, .sidebar-dark-pink .user-panel .status:focus, .sidebar-dark-pink .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-pink .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-pink .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-pink .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-pink .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-pink .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-pink .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-pink .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #e83e8c;
  color: #ffffff;
}

.sidebar-dark-pink .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-pink .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-pink .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-pink .sidebar a:hover, .sidebar-dark-pink .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-pink .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-pink .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-pink .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-pink .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-pink .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-pink .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-pink {
  background-color: #ffffff;
}

.sidebar-light-pink .user-panel a:hover {
  color: #212529;
}

.sidebar-light-pink .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-pink .user-panel .status:hover, .sidebar-light-pink .user-panel .status:focus, .sidebar-light-pink .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-pink .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-pink .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-pink .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-pink .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-pink .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-pink .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-pink .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #e83e8c;
  color: #ffffff;
}

.sidebar-light-pink .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-pink .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-pink .sidebar a {
  color: #343a40;
}

.sidebar-light-pink .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-pink .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-pink .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-pink .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-pink .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-red {
  background-color: #343a40;
}

.sidebar-dark-red .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-red .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-red .user-panel .status:hover, .sidebar-dark-red .user-panel .status:focus, .sidebar-dark-red .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-red .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-red .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-red .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-red .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-red .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-red .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-red .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #dc3545;
  color: #ffffff;
}

.sidebar-dark-red .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-red .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-red .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-red .sidebar a:hover, .sidebar-dark-red .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-red .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-red .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-red .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-red .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-red .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-red .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-red {
  background-color: #ffffff;
}

.sidebar-light-red .user-panel a:hover {
  color: #212529;
}

.sidebar-light-red .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-red .user-panel .status:hover, .sidebar-light-red .user-panel .status:focus, .sidebar-light-red .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-red .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-red .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-red .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-red .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-red .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-red .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-red .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #dc3545;
  color: #ffffff;
}

.sidebar-light-red .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-red .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-red .sidebar a {
  color: #343a40;
}

.sidebar-light-red .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-red .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-red .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-red .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-red .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-orange {
  background-color: #343a40;
}

.sidebar-dark-orange .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-orange .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-orange .user-panel .status:hover, .sidebar-dark-orange .user-panel .status:focus, .sidebar-dark-orange .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-orange .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-orange .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-orange .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-orange .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-orange .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-orange .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-orange .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #fd7e14;
  color: #ffffff;
}

.sidebar-dark-orange .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-orange .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-orange .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-orange .sidebar a:hover, .sidebar-dark-orange .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-orange .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-orange .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-orange .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-orange .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-orange .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-orange .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-orange {
  background-color: #ffffff;
}

.sidebar-light-orange .user-panel a:hover {
  color: #212529;
}

.sidebar-light-orange .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-orange .user-panel .status:hover, .sidebar-light-orange .user-panel .status:focus, .sidebar-light-orange .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-orange .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-orange .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-orange .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-orange .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-orange .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-orange .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-orange .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #fd7e14;
  color: #ffffff;
}

.sidebar-light-orange .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-orange .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-orange .sidebar a {
  color: #343a40;
}

.sidebar-light-orange .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-orange .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-orange .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-orange .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-orange .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-yellow {
  background-color: #343a40;
}

.sidebar-dark-yellow .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-yellow .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-yellow .user-panel .status:hover, .sidebar-dark-yellow .user-panel .status:focus, .sidebar-dark-yellow .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-yellow .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-yellow .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-yellow .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-yellow .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-yellow .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-yellow .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-yellow .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #ffc107;
  color: #ffffff;
}

.sidebar-dark-yellow .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-yellow .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-yellow .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-yellow .sidebar a:hover, .sidebar-dark-yellow .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-yellow .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-yellow .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-yellow .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-yellow .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-yellow .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-yellow .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-yellow {
  background-color: #ffffff;
}

.sidebar-light-yellow .user-panel a:hover {
  color: #212529;
}

.sidebar-light-yellow .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-yellow .user-panel .status:hover, .sidebar-light-yellow .user-panel .status:focus, .sidebar-light-yellow .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-yellow .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-yellow .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-yellow .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-yellow .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-yellow .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-yellow .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-yellow .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #ffc107;
  color: #ffffff;
}

.sidebar-light-yellow .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-yellow .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-yellow .sidebar a {
  color: #343a40;
}

.sidebar-light-yellow .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-yellow .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-yellow .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-yellow .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-yellow .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-green {
  background-color: #343a40;
}

.sidebar-dark-green .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-green .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-green .user-panel .status:hover, .sidebar-dark-green .user-panel .status:focus, .sidebar-dark-green .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-green .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-green .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-green .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-green .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-green .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-green .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-green .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #28a745;
  color: #ffffff;
}

.sidebar-dark-green .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-green .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-green .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-green .sidebar a:hover, .sidebar-dark-green .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-green .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-green .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-green .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-green .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-green .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-green .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-green {
  background-color: #ffffff;
}

.sidebar-light-green .user-panel a:hover {
  color: #212529;
}

.sidebar-light-green .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-green .user-panel .status:hover, .sidebar-light-green .user-panel .status:focus, .sidebar-light-green .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-green .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-green .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-green .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-green .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-green .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-green .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-green .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #28a745;
  color: #ffffff;
}

.sidebar-light-green .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-green .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-green .sidebar a {
  color: #343a40;
}

.sidebar-light-green .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-green .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-green .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-green .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-green .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-teal {
  background-color: #343a40;
}

.sidebar-dark-teal .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-teal .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-teal .user-panel .status:hover, .sidebar-dark-teal .user-panel .status:focus, .sidebar-dark-teal .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-teal .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-teal .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-teal .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-teal .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-teal .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-teal .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-teal .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #20c997;
  color: #ffffff;
}

.sidebar-dark-teal .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-teal .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-teal .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-teal .sidebar a:hover, .sidebar-dark-teal .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-teal .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-teal .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-teal .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-teal .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-teal .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-teal .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-teal {
  background-color: #ffffff;
}

.sidebar-light-teal .user-panel a:hover {
  color: #212529;
}

.sidebar-light-teal .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-teal .user-panel .status:hover, .sidebar-light-teal .user-panel .status:focus, .sidebar-light-teal .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-teal .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-teal .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-teal .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-teal .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-teal .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-teal .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-teal .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #20c997;
  color: #ffffff;
}

.sidebar-light-teal .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-teal .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-teal .sidebar a {
  color: #343a40;
}

.sidebar-light-teal .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-teal .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-teal .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-teal .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-teal .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-cyan {
  background-color: #343a40;
}

.sidebar-dark-cyan .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-cyan .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-cyan .user-panel .status:hover, .sidebar-dark-cyan .user-panel .status:focus, .sidebar-dark-cyan .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-cyan .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-cyan .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-cyan .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-cyan .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-cyan .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-cyan .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-cyan .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #17a2b8;
  color: #ffffff;
}

.sidebar-dark-cyan .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-cyan .nav-header {
  background: inherit;
  color: #d0d4db;
}

.sidebar-dark-cyan .sidebar a {
  color: #C2C7D0;
}

.sidebar-dark-cyan .sidebar a:hover, .sidebar-dark-cyan .sidebar a:focus {
  text-decoration: none;
}

.sidebar-dark-cyan .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

.sidebar-dark-cyan .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-cyan .nav-treeview > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-cyan .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-cyan .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-cyan .nav-treeview > .nav-item > .nav-link.active:focus {
  background-color: rgba(255, 255, 255, 0.9);
  color: #343a40;
}

.sidebar-light-cyan {
  background-color: #ffffff;
}

.sidebar-light-cyan .user-panel a:hover {
  color: #212529;
}

.sidebar-light-cyan .user-panel .status {
  background: #f4f4f5;
  color: #343a40;
}

.sidebar-light-cyan .user-panel .status:hover, .sidebar-light-cyan .user-panel .status:focus, .sidebar-light-cyan .user-panel .status:active {
  background: #ececed;
  color: #212529;
}

.sidebar-light-cyan .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: #e7e7e8;
}

.sidebar-light-cyan .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-light-cyan .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-cyan .nav-sidebar > .nav-item > .nav-link:focus {
  color: #343a40;
}

.sidebar-light-cyan .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-cyan .nav-sidebar > .nav-item:hover > .nav-link {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-cyan .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #17a2b8;
  color: #ffffff;
}

.sidebar-light-cyan .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-cyan .nav-header {
  background: inherit;
  color: #292d32;
}

.sidebar-light-cyan .sidebar a {
  color: #343a40;
}

.sidebar-light-cyan .sidebar a:hover {
  text-decoration: none;
}

.sidebar-light-cyan .nav-treeview > .nav-item > .nav-link {
  color: #777;
}

.sidebar-light-cyan .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-cyan .nav-treeview > .nav-item > .nav-link.active:hover {
  background-color: #f4f4f5;
  color: #212529;
}

.sidebar-light-cyan .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

.sidebar-dark-white {
  background-color: #343a40;
}

.sidebar-dark-white .user-panel a:hover {
  color: #ffffff;
}

.sidebar-dark-white .user-panel .status {
  background: rgba(255, 255, 255, 0.1);
  color: #C2C7D0;
}

.sidebar-dark-white .user-panel .status:hover, .sidebar-dark-white .user-panel .status:focus, .sidebar-dark-white .user-panel .status:active {
  background: rgba(247, 247, 247, 0.1);
  color: #ffffff;
}

.sidebar-dark-white .user-panel .dropdown-menu {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  border-color: rgba(242, 242, 242, 0.1);
}

.sidebar-dark-white .user-panel .dropdown-item {
  color: #212529;
}

.sidebar-dark-white .nav-sidebar > .nav-item > .nav-link:active {
  color: #C2C7D0;
}

.sidebar-dark-white .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-white .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-white .nav-sidebar > .nav-item > .nav-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.sidebar-dark-white .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #ffffff;
14079
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14080 14081
}

R
REJack 已提交
14082
.sidebar-dark-white .nav-sidebar > .nav-item > .nav-treeview {
A
Abdullah Almsaeed 已提交
14083 14084 14085
  background: transparent;
}

R
REJack 已提交
14086
.sidebar-dark-white .nav-header {
A
Abdullah Almsaeed 已提交
14087
  background: inherit;
14088
  color: #d0d4db;
A
Abdullah Almsaeed 已提交
14089 14090
}

R
REJack 已提交
14091
.sidebar-dark-white .sidebar a {
A
Abdullah Almsaeed 已提交
14092 14093 14094
  color: #C2C7D0;
}

R
REJack 已提交
14095
.sidebar-dark-white .sidebar a:hover, .sidebar-dark-white .sidebar a:focus {
A
Abdullah Almsaeed 已提交
14096 14097 14098
  text-decoration: none;
}

R
REJack 已提交
14099
.sidebar-dark-white .nav-treeview > .nav-item > .nav-link {
A
Abdullah Almsaeed 已提交
14100 14101 14102
  color: #C2C7D0;
}

R
REJack 已提交
14103
.sidebar-dark-white .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-white .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
14104
  background-color: rgba(255, 255, 255, 0.1);
14105
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14106 14107
}

R
REJack 已提交
14108
.sidebar-dark-white .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-white .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-white .nav-treeview > .nav-item > .nav-link.active:focus {
A
Abdullah Almsaeed 已提交
14109
  background-color: rgba(255, 255, 255, 0.9);
14110
  color: #343a40;
A
Abdullah Almsaeed 已提交
14111 14112
}

R
REJack 已提交
14113
.sidebar-light-white {
A
Abdullah Almsaeed 已提交
14114 14115 14116
  background-color: #ffffff;
}

R
REJack 已提交
14117
.sidebar-light-white .user-panel a:hover {
A
Abdullah Almsaeed 已提交
14118 14119 14120
  color: #212529;
}

R
REJack 已提交
14121
.sidebar-light-white .user-panel .status {
A
Abdullah Almsaeed 已提交
14122
  background: #f4f4f5;
14123
  color: #343a40;
A
Abdullah Almsaeed 已提交
14124 14125
}

R
REJack 已提交
14126
.sidebar-light-white .user-panel .status:hover, .sidebar-light-white .user-panel .status:focus, .sidebar-light-white .user-panel .status:active {
A
Abdullah Almsaeed 已提交
14127
  background: #ececed;
14128
  color: #212529;
A
Abdullah Almsaeed 已提交
14129 14130
}

R
REJack 已提交
14131
.sidebar-light-white .user-panel .dropdown-menu {
A
Abdullah Almsaeed 已提交
14132
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
14133
  border-color: #e7e7e8;
A
Abdullah Almsaeed 已提交
14134 14135
}

R
REJack 已提交
14136
.sidebar-light-white .user-panel .dropdown-item {
A
Abdullah Almsaeed 已提交
14137 14138 14139
  color: #212529;
}

R
REJack 已提交
14140
.sidebar-light-white .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-white .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
14141 14142 14143
  color: #343a40;
}

R
REJack 已提交
14144 14145
.sidebar-light-white .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-white .nav-sidebar > .nav-item:hover > .nav-link {
A
Abdullah Almsaeed 已提交
14146
  background-color: #f4f4f5;
14147
  color: #212529;
A
Abdullah Almsaeed 已提交
14148 14149
}

R
REJack 已提交
14150 14151
.sidebar-light-white .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #ffffff;
14152
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14153 14154
}

R
REJack 已提交
14155
.sidebar-light-white .nav-sidebar > .nav-item > .nav-treeview {
A
Abdullah Almsaeed 已提交
14156 14157 14158
  background: transparent;
}

R
REJack 已提交
14159
.sidebar-light-white .nav-header {
A
Abdullah Almsaeed 已提交
14160
  background: inherit;
14161
  color: #292d32;
A
Abdullah Almsaeed 已提交
14162 14163
}

R
REJack 已提交
14164
.sidebar-light-white .sidebar a {
A
Abdullah Almsaeed 已提交
14165 14166 14167
  color: #343a40;
}

R
REJack 已提交
14168
.sidebar-light-white .sidebar a:hover {
A
Abdullah Almsaeed 已提交
14169 14170 14171
  text-decoration: none;
}

R
REJack 已提交
14172
.sidebar-light-white .nav-treeview > .nav-item > .nav-link {
A
Abdullah Almsaeed 已提交
14173 14174 14175
  color: #777;
}

R
REJack 已提交
14176
.sidebar-light-white .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-white .nav-treeview > .nav-item > .nav-link.active:hover {
A
Abdullah Almsaeed 已提交
14177
  background-color: #f4f4f5;
14178
  color: #212529;
A
Abdullah Almsaeed 已提交
14179 14180
}

R
REJack 已提交
14181
.sidebar-light-white .nav-treeview > .nav-item > .nav-link:hover {
A
Abdullah Almsaeed 已提交
14182 14183 14184
  background-color: #f4f4f5;
}

R
REJack 已提交
14185
.sidebar-dark-gray {
A
Abdullah Almsaeed 已提交
14186 14187 14188
  background-color: #343a40;
}

R
REJack 已提交
14189
.sidebar-dark-gray .user-panel a:hover {
A
Abdullah Almsaeed 已提交
14190 14191 14192
  color: #ffffff;
}

R
REJack 已提交
14193
.sidebar-dark-gray .user-panel .status {
A
Abdullah Almsaeed 已提交
14194
  background: rgba(255, 255, 255, 0.1);
14195
  color: #C2C7D0;
A
Abdullah Almsaeed 已提交
14196 14197
}

R
REJack 已提交
14198
.sidebar-dark-gray .user-panel .status:hover, .sidebar-dark-gray .user-panel .status:focus, .sidebar-dark-gray .user-panel .status:active {
A
Abdullah Almsaeed 已提交
14199
  background: rgba(247, 247, 247, 0.1);
14200
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14201 14202
}

R
REJack 已提交
14203
.sidebar-dark-gray .user-panel .dropdown-menu {
A
Abdullah Almsaeed 已提交
14204
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
14205
  border-color: rgba(242, 242, 242, 0.1);
A
Abdullah Almsaeed 已提交
14206 14207
}

R
REJack 已提交
14208
.sidebar-dark-gray .user-panel .dropdown-item {
A
Abdullah Almsaeed 已提交
14209 14210 14211
  color: #212529;
}

R
REJack 已提交
14212
.sidebar-dark-gray .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
14213 14214 14215
  color: #C2C7D0;
}

R
REJack 已提交
14216 14217 14218
.sidebar-dark-gray .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-gray .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-gray .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
14219
  background-color: rgba(255, 255, 255, 0.1);
14220
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14221 14222
}

R
REJack 已提交
14223 14224
.sidebar-dark-gray .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #6c757d;
14225
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14226 14227
}

R
REJack 已提交
14228
.sidebar-dark-gray .nav-sidebar > .nav-item > .nav-treeview {
A
Abdullah Almsaeed 已提交
14229 14230 14231
  background: transparent;
}

R
REJack 已提交
14232
.sidebar-dark-gray .nav-header {
A
Abdullah Almsaeed 已提交
14233
  background: inherit;
14234
  color: #d0d4db;
A
Abdullah Almsaeed 已提交
14235 14236
}

R
REJack 已提交
14237
.sidebar-dark-gray .sidebar a {
A
Abdullah Almsaeed 已提交
14238 14239 14240
  color: #C2C7D0;
}

R
REJack 已提交
14241
.sidebar-dark-gray .sidebar a:hover, .sidebar-dark-gray .sidebar a:focus {
A
Abdullah Almsaeed 已提交
14242 14243 14244
  text-decoration: none;
}

R
REJack 已提交
14245
.sidebar-dark-gray .nav-treeview > .nav-item > .nav-link {
A
Abdullah Almsaeed 已提交
14246 14247 14248
  color: #C2C7D0;
}

R
REJack 已提交
14249
.sidebar-dark-gray .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-gray .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
14250
  background-color: rgba(255, 255, 255, 0.1);
14251
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14252 14253
}

R
REJack 已提交
14254
.sidebar-dark-gray .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-gray .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-gray .nav-treeview > .nav-item > .nav-link.active:focus {
A
Abdullah Almsaeed 已提交
14255
  background-color: rgba(255, 255, 255, 0.9);
14256
  color: #343a40;
A
Abdullah Almsaeed 已提交
14257 14258
}

R
REJack 已提交
14259
.sidebar-light-gray {
A
Abdullah Almsaeed 已提交
14260 14261 14262
  background-color: #ffffff;
}

R
REJack 已提交
14263
.sidebar-light-gray .user-panel a:hover {
A
Abdullah Almsaeed 已提交
14264 14265 14266
  color: #212529;
}

R
REJack 已提交
14267
.sidebar-light-gray .user-panel .status {
A
Abdullah Almsaeed 已提交
14268
  background: #f4f4f5;
14269
  color: #343a40;
A
Abdullah Almsaeed 已提交
14270 14271
}

R
REJack 已提交
14272
.sidebar-light-gray .user-panel .status:hover, .sidebar-light-gray .user-panel .status:focus, .sidebar-light-gray .user-panel .status:active {
A
Abdullah Almsaeed 已提交
14273
  background: #ececed;
14274
  color: #212529;
A
Abdullah Almsaeed 已提交
14275 14276
}

R
REJack 已提交
14277
.sidebar-light-gray .user-panel .dropdown-menu {
A
Abdullah Almsaeed 已提交
14278
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
14279
  border-color: #e7e7e8;
A
Abdullah Almsaeed 已提交
14280 14281
}

R
REJack 已提交
14282
.sidebar-light-gray .user-panel .dropdown-item {
A
Abdullah Almsaeed 已提交
14283 14284 14285
  color: #212529;
}

R
REJack 已提交
14286
.sidebar-light-gray .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-gray .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
14287 14288 14289
  color: #343a40;
}

R
REJack 已提交
14290 14291
.sidebar-light-gray .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-gray .nav-sidebar > .nav-item:hover > .nav-link {
A
Abdullah Almsaeed 已提交
14292
  background-color: #f4f4f5;
14293
  color: #212529;
A
Abdullah Almsaeed 已提交
14294 14295
}

R
REJack 已提交
14296 14297
.sidebar-light-gray .nav-sidebar > .nav-item > .nav-link.active {
  background-color: #6c757d;
14298
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14299 14300
}

R
REJack 已提交
14301
.sidebar-light-gray .nav-sidebar > .nav-item > .nav-treeview {
A
Abdullah Almsaeed 已提交
14302 14303 14304
  background: transparent;
}

R
REJack 已提交
14305
.sidebar-light-gray .nav-header {
A
Abdullah Almsaeed 已提交
14306
  background: inherit;
14307
  color: #292d32;
A
Abdullah Almsaeed 已提交
14308 14309
}

R
REJack 已提交
14310
.sidebar-light-gray .sidebar a {
A
Abdullah Almsaeed 已提交
14311 14312 14313
  color: #343a40;
}

R
REJack 已提交
14314
.sidebar-light-gray .sidebar a:hover {
A
Abdullah Almsaeed 已提交
14315 14316 14317
  text-decoration: none;
}

R
REJack 已提交
14318
.sidebar-light-gray .nav-treeview > .nav-item > .nav-link {
A
Abdullah Almsaeed 已提交
14319 14320 14321
  color: #777;
}

R
REJack 已提交
14322
.sidebar-light-gray .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-gray .nav-treeview > .nav-item > .nav-link.active:hover {
A
Abdullah Almsaeed 已提交
14323
  background-color: #f4f4f5;
14324
  color: #212529;
A
Abdullah Almsaeed 已提交
14325 14326
}

R
REJack 已提交
14327
.sidebar-light-gray .nav-treeview > .nav-item > .nav-link:hover {
A
Abdullah Almsaeed 已提交
14328 14329 14330
  background-color: #f4f4f5;
}

R
REJack 已提交
14331
.sidebar-dark-gray-dark {
A
Abdullah Almsaeed 已提交
14332 14333 14334
  background-color: #343a40;
}

R
REJack 已提交
14335
.sidebar-dark-gray-dark .user-panel a:hover {
A
Abdullah Almsaeed 已提交
14336 14337 14338
  color: #ffffff;
}

R
REJack 已提交
14339
.sidebar-dark-gray-dark .user-panel .status {
A
Abdullah Almsaeed 已提交
14340
  background: rgba(255, 255, 255, 0.1);
14341
  color: #C2C7D0;
A
Abdullah Almsaeed 已提交
14342 14343
}

R
REJack 已提交
14344
.sidebar-dark-gray-dark .user-panel .status:hover, .sidebar-dark-gray-dark .user-panel .status:focus, .sidebar-dark-gray-dark .user-panel .status:active {
A
Abdullah Almsaeed 已提交
14345
  background: rgba(247, 247, 247, 0.1);
14346
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14347 14348
}

R
REJack 已提交
14349
.sidebar-dark-gray-dark .user-panel .dropdown-menu {
A
Abdullah Almsaeed 已提交
14350
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
14351
  border-color: rgba(242, 242, 242, 0.1);
A
Abdullah Almsaeed 已提交
14352 14353
}

R
REJack 已提交
14354
.sidebar-dark-gray-dark .user-panel .dropdown-item {
A
Abdullah Almsaeed 已提交
14355 14356 14357
  color: #212529;
}

R
REJack 已提交
14358
.sidebar-dark-gray-dark .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
14359 14360 14361
  color: #C2C7D0;
}

R
REJack 已提交
14362 14363 14364
.sidebar-dark-gray-dark .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-dark-gray-dark .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-gray-dark .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
14365
  background-color: rgba(255, 255, 255, 0.1);
14366
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14367 14368
}

R
REJack 已提交
14369
.sidebar-dark-gray-dark .nav-sidebar > .nav-item > .nav-link.active {
A
Abdullah Almsaeed 已提交
14370
  background-color: #343a40;
14371
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14372 14373
}

R
REJack 已提交
14374
.sidebar-dark-gray-dark .nav-sidebar > .nav-item > .nav-treeview {
A
Abdullah Almsaeed 已提交
14375 14376 14377
  background: transparent;
}

R
REJack 已提交
14378
.sidebar-dark-gray-dark .nav-header {
A
Abdullah Almsaeed 已提交
14379
  background: inherit;
14380
  color: #d0d4db;
A
Abdullah Almsaeed 已提交
14381 14382
}

R
REJack 已提交
14383
.sidebar-dark-gray-dark .sidebar a {
A
Abdullah Almsaeed 已提交
14384 14385 14386
  color: #C2C7D0;
}

R
REJack 已提交
14387
.sidebar-dark-gray-dark .sidebar a:hover, .sidebar-dark-gray-dark .sidebar a:focus {
A
Abdullah Almsaeed 已提交
14388 14389 14390
  text-decoration: none;
}

R
REJack 已提交
14391
.sidebar-dark-gray-dark .nav-treeview > .nav-item > .nav-link {
A
Abdullah Almsaeed 已提交
14392 14393 14394
  color: #C2C7D0;
}

R
REJack 已提交
14395
.sidebar-dark-gray-dark .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-gray-dark .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
14396
  background-color: rgba(255, 255, 255, 0.1);
14397
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14398 14399
}

R
REJack 已提交
14400
.sidebar-dark-gray-dark .nav-treeview > .nav-item > .nav-link.active, .sidebar-dark-gray-dark .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-dark-gray-dark .nav-treeview > .nav-item > .nav-link.active:focus {
A
Abdullah Almsaeed 已提交
14401
  background-color: rgba(255, 255, 255, 0.9);
14402
  color: #343a40;
A
Abdullah Almsaeed 已提交
14403 14404
}

R
REJack 已提交
14405
.sidebar-light-gray-dark {
A
Abdullah Almsaeed 已提交
14406 14407 14408
  background-color: #ffffff;
}

R
REJack 已提交
14409
.sidebar-light-gray-dark .user-panel a:hover {
A
Abdullah Almsaeed 已提交
14410 14411 14412
  color: #212529;
}

R
REJack 已提交
14413
.sidebar-light-gray-dark .user-panel .status {
A
Abdullah Almsaeed 已提交
14414
  background: #f4f4f5;
14415
  color: #343a40;
A
Abdullah Almsaeed 已提交
14416 14417
}

R
REJack 已提交
14418
.sidebar-light-gray-dark .user-panel .status:hover, .sidebar-light-gray-dark .user-panel .status:focus, .sidebar-light-gray-dark .user-panel .status:active {
A
Abdullah Almsaeed 已提交
14419
  background: #ececed;
14420
  color: #212529;
A
Abdullah Almsaeed 已提交
14421 14422
}

R
REJack 已提交
14423
.sidebar-light-gray-dark .user-panel .dropdown-menu {
A
Abdullah Almsaeed 已提交
14424
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
14425
  border-color: #e7e7e8;
A
Abdullah Almsaeed 已提交
14426 14427
}

R
REJack 已提交
14428
.sidebar-light-gray-dark .user-panel .dropdown-item {
A
Abdullah Almsaeed 已提交
14429 14430 14431
  color: #212529;
}

R
REJack 已提交
14432
.sidebar-light-gray-dark .nav-sidebar > .nav-item > .nav-link:active, .sidebar-light-gray-dark .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
14433 14434 14435
  color: #343a40;
}

R
REJack 已提交
14436 14437
.sidebar-light-gray-dark .nav-sidebar > .nav-item.menu-open > .nav-link,
.sidebar-light-gray-dark .nav-sidebar > .nav-item:hover > .nav-link {
A
Abdullah Almsaeed 已提交
14438
  background-color: #f4f4f5;
14439
  color: #212529;
A
Abdullah Almsaeed 已提交
14440 14441
}

R
REJack 已提交
14442
.sidebar-light-gray-dark .nav-sidebar > .nav-item > .nav-link.active {
A
Abdullah Almsaeed 已提交
14443
  background-color: #343a40;
14444
  color: #ffffff;
A
Abdullah Almsaeed 已提交
14445 14446
}

R
REJack 已提交
14447
.sidebar-light-gray-dark .nav-sidebar > .nav-item > .nav-treeview {
A
Abdullah Almsaeed 已提交
14448 14449 14450
  background: transparent;
}

R
REJack 已提交
14451
.sidebar-light-gray-dark .nav-header {
A
Abdullah Almsaeed 已提交
14452
  background: inherit;
14453
  color: #292d32;
A
Abdullah Almsaeed 已提交
14454 14455
}

R
REJack 已提交
14456
.sidebar-light-gray-dark .sidebar a {
A
Abdullah Almsaeed 已提交
14457 14458 14459
  color: #343a40;
}

R
REJack 已提交
14460
.sidebar-light-gray-dark .sidebar a:hover {
A
Abdullah Almsaeed 已提交
14461 14462 14463
  text-decoration: none;
}

R
REJack 已提交
14464
.sidebar-light-gray-dark .nav-treeview > .nav-item > .nav-link {
A
Abdullah Almsaeed 已提交
14465 14466 14467
  color: #777;
}

R
REJack 已提交
14468
.sidebar-light-gray-dark .nav-treeview > .nav-item > .nav-link.active, .sidebar-light-gray-dark .nav-treeview > .nav-item > .nav-link.active:hover {
A
Abdullah Almsaeed 已提交
14469
  background-color: #f4f4f5;
14470
  color: #212529;
A
Abdullah Almsaeed 已提交
14471 14472
}

R
REJack 已提交
14473
.sidebar-light-gray-dark .nav-treeview > .nav-item > .nav-link:hover {
A
Abdullah Almsaeed 已提交
14474 14475 14476 14477 14478
  background-color: #f4f4f5;
}

/*
 * Component: Sidebar Mini
14479
 * -----------------------
A
Abdullah Almsaeed 已提交
14480
 */
14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514
.logo-xs,
.logo-xl {
  margin: 0;
  opacity: 1;
  position: absolute;
  visibility: visible;
}

.logo-xs.brand-image-xs,
.logo-xl.brand-image-xs {
  left: 18px;
  top: 12px;
}

.logo-xs.brand-image-xl,
.logo-xl.brand-image-xl {
  left: 12px;
  top: 6px;
}

.logo-xs {
  opacity: 0;
  visibility: hidden;
}

.logo-xs.brand-image-xl {
  left: 16px;
  top: 8px;
}

.brand-link.logo-switch::before {
  content: '\00a0';
}

A
Abdullah Almsaeed 已提交
14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532
@media (min-width: 992px) {
  .sidebar-mini .nav-sidebar,
  .sidebar-mini .nav-sidebar > .nav-header,
  .sidebar-mini .nav-sidebar .nav-link {
    white-space: nowrap;
    overflow: hidden;
  }
  .sidebar-mini.sidebar-collapse .d-hidden-mini {
    display: none;
  }
  .sidebar-mini.sidebar-collapse .content-wrapper,
  .sidebar-mini.sidebar-collapse .main-footer,
  .sidebar-mini.sidebar-collapse .main-header {
    margin-left: 4.6rem !important;
  }
  .sidebar-mini.sidebar-collapse .nav-sidebar .nav-header {
    display: none;
  }
14533 14534 14535
  .sidebar-mini.sidebar-collapse .nav-sidebar .nav-link p {
    width: 0;
  }
A
Abdullah Almsaeed 已提交
14536 14537 14538 14539
  .sidebar-mini.sidebar-collapse .sidebar .user-panel > .info,
  .sidebar-mini.sidebar-collapse .nav-sidebar .nav-link p,
  .sidebar-mini.sidebar-collapse .brand-text {
    margin-left: -10px;
14540 14541
    opacity: 0;
    visibility: hidden;
A
Abdullah Almsaeed 已提交
14542
  }
14543 14544 14545 14546 14547 14548 14549 14550 14551
  .sidebar-mini.sidebar-collapse .logo-xl {
    opacity: 0;
    visibility: hidden;
  }
  .sidebar-mini.sidebar-collapse .logo-xs {
    display: inline-block;
    opacity: 1;
    visibility: visible;
  }
R
REJack 已提交
14552 14553 14554
  .sidebar-mini.sidebar-collapse .main-sidebar {
    overflow-x: hidden;
  }
14555
  .sidebar-mini.sidebar-collapse .main-sidebar, .sidebar-mini.sidebar-collapse .main-sidebar::before {
A
Abdullah Almsaeed 已提交
14556 14557 14558 14559 14560 14561
    margin-left: 0;
    width: 4.6rem;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar .user-panel .image {
    float: none;
  }
14562
  .sidebar-mini.sidebar-collapse .main-sidebar:hover, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused {
A
Abdullah Almsaeed 已提交
14563 14564
    width: 250px;
  }
14565
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel {
A
Abdullah Almsaeed 已提交
14566 14567
    text-align: left;
  }
14568
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel .image, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel .image {
A
Abdullah Almsaeed 已提交
14569 14570 14571 14572
    float: left;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel > .info,
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .nav-sidebar .nav-link p,
14573 14574
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .brand-text,
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .logo-xl, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info,
14575
  .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar .nav-link p,
14576 14577
  .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .brand-text,
  .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .logo-xl {
A
Abdullah Almsaeed 已提交
14578
    display: inline-block;
14579 14580 14581
    margin-left: 0;
    opacity: 1;
    visibility: visible;
A
Abdullah Almsaeed 已提交
14582
  }
14583 14584 14585 14586
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .logo-xs, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .logo-xs {
    opacity: 0;
    visibility: hidden;
  }
14587
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .brand-image, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .brand-image {
A
Abdullah Almsaeed 已提交
14588 14589 14590
    margin-right: .5rem;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .sidebar-form,
14591 14592
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel > .info, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .sidebar-form,
  .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info {
A
Abdullah Almsaeed 已提交
14593 14594 14595
    display: block !important;
    -webkit-transform: translateZ(0);
  }
14596
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .nav-sidebar > .nav-item > .nav-link > span, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar > .nav-item > .nav-link > span {
A
Abdullah Almsaeed 已提交
14597 14598 14599 14600 14601
    display: inline-block !important;
  }
  .sidebar-mini.sidebar-collapse .visible-sidebar-mini {
    display: block !important;
  }
14602
  .sidebar-mini.sidebar-collapse.layout-fixed .main-sidebar:hover .brand-link {
R
REJack 已提交
14603 14604
    width: 250px;
  }
14605
  .sidebar-mini.sidebar-collapse.layout-fixed .brand-link {
R
REJack 已提交
14606 14607
    width: 4.6rem;
  }
A
Abdullah Almsaeed 已提交
14608 14609
}

R
REJack 已提交
14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634
@media (min-width: 768px) {
  .sidebar-mini-md .nav-sidebar,
  .sidebar-mini-md .nav-sidebar > .nav-header,
  .sidebar-mini-md .nav-sidebar .nav-link {
    white-space: nowrap;
    overflow: hidden;
  }
  .sidebar-mini-md.sidebar-collapse .d-hidden-mini {
    display: none;
  }
  .sidebar-mini-md.sidebar-collapse .content-wrapper,
  .sidebar-mini-md.sidebar-collapse .main-footer,
  .sidebar-mini-md.sidebar-collapse .main-header {
    margin-left: 4.6rem !important;
  }
  .sidebar-mini-md.sidebar-collapse .nav-sidebar .nav-header {
    display: none;
  }
  .sidebar-mini-md.sidebar-collapse .nav-sidebar .nav-link p {
    width: 0;
  }
  .sidebar-mini-md.sidebar-collapse .sidebar .user-panel > .info,
  .sidebar-mini-md.sidebar-collapse .nav-sidebar .nav-link p,
  .sidebar-mini-md.sidebar-collapse .brand-text {
    margin-left: -10px;
14635 14636
    opacity: 0;
    visibility: hidden;
R
REJack 已提交
14637
  }
14638 14639 14640 14641 14642 14643 14644 14645 14646
  .sidebar-mini-md.sidebar-collapse .logo-xl {
    opacity: 0;
    visibility: hidden;
  }
  .sidebar-mini-md.sidebar-collapse .logo-xs {
    display: inline-block;
    opacity: 1;
    visibility: visible;
  }
R
REJack 已提交
14647 14648 14649
  .sidebar-mini-md.sidebar-collapse .main-sidebar {
    overflow-x: hidden;
  }
14650
  .sidebar-mini-md.sidebar-collapse .main-sidebar, .sidebar-mini-md.sidebar-collapse .main-sidebar::before {
R
REJack 已提交
14651 14652 14653 14654 14655 14656
    margin-left: 0;
    width: 4.6rem;
  }
  .sidebar-mini-md.sidebar-collapse .main-sidebar .user-panel .image {
    float: none;
  }
14657
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused {
R
REJack 已提交
14658 14659
    width: 250px;
  }
14660
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .user-panel, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel {
R
REJack 已提交
14661 14662
    text-align: left;
  }
14663
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .user-panel .image, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel .image {
R
REJack 已提交
14664 14665 14666 14667
    float: left;
  }
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .user-panel > .info,
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .nav-sidebar .nav-link p,
14668 14669
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .brand-text,
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .logo-xl, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info,
14670
  .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar .nav-link p,
14671 14672
  .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .brand-text,
  .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .logo-xl {
R
REJack 已提交
14673
    display: inline-block;
14674 14675 14676
    margin-left: 0;
    opacity: 1;
    visibility: visible;
R
REJack 已提交
14677
  }
14678 14679 14680 14681
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .logo-xs, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .logo-xs {
    opacity: 0;
    visibility: hidden;
  }
14682
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .brand-image, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .brand-image {
R
REJack 已提交
14683 14684 14685
    margin-right: .5rem;
  }
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .sidebar-form,
14686 14687
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .user-panel > .info, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .sidebar-form,
  .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info {
R
REJack 已提交
14688 14689 14690
    display: block !important;
    -webkit-transform: translateZ(0);
  }
14691
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .nav-sidebar > .nav-item > .nav-link > span, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar > .nav-item > .nav-link > span {
R
REJack 已提交
14692 14693 14694 14695 14696
    display: inline-block !important;
  }
  .sidebar-mini-md.sidebar-collapse .visible-sidebar-mini {
    display: block !important;
  }
14697
  .sidebar-mini-md.sidebar-collapse.layout-fixed .main-sidebar:hover .brand-link {
R
REJack 已提交
14698 14699
    width: 250px;
  }
14700
  .sidebar-mini-md.sidebar-collapse.layout-fixed .brand-link {
R
REJack 已提交
14701 14702
    width: 4.6rem;
  }
R
REJack 已提交
14703 14704
}

A
Abdullah Almsaeed 已提交
14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723
.nav-sidebar {
  position: relative;
}

.nav-sidebar:hover {
  overflow: visible;
}

.sidebar-form,
.nav-sidebar > .nav-header {
  overflow: hidden;
  text-overflow: clip;
}

.nav-sidebar .nav-item > .nav-link {
  position: relative;
}

.nav-sidebar .nav-item > .nav-link > .float-right {
14724
  margin-top: -7px;
A
Abdullah Almsaeed 已提交
14725 14726 14727 14728
  position: absolute;
  right: 10px;
  top: 50%;
}
A
Abdullah Almsaeed 已提交
14729

A
Abdullah Almsaeed 已提交
14730 14731
.sidebar .nav-link p,
.main-sidebar .brand-text,
14732 14733
.main-sidebar .logo-xs,
.main-sidebar .logo-xl,
A
Abdullah Almsaeed 已提交
14734
.sidebar .user-panel .info {
14735
  transition: margin-left 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
A
Abdullah Almsaeed 已提交
14736
}
14737

14738
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
14739 14740
  .sidebar .nav-link p,
  .main-sidebar .brand-text,
14741 14742
  .main-sidebar .logo-xs,
  .main-sidebar .logo-xl,
A
Abdullah Almsaeed 已提交
14743 14744 14745 14746 14747
  .sidebar .user-panel .info {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
14748
/*
14749 14750
 * Component: Control Sidebar
 * --------------------------
A
Abdullah Almsaeed 已提交
14751
 */
14752 14753 14754 14755
html.control-sidebar-animate {
  overflow-x: hidden;
}

A
Abdullah Almsaeed 已提交
14756 14757
.control-sidebar {
  position: absolute;
14758
  top: calc(3.5rem + 1px);
A
Abdullah Almsaeed 已提交
14759 14760 14761
  z-index: 830;
}

14762
.control-sidebar, .control-sidebar::before {
A
Abdullah Almsaeed 已提交
14763
  bottom: 0;
14764
  display: none;
14765 14766
  right: -250px;
  width: 250px;
A
Abdullah Almsaeed 已提交
14767 14768 14769
  transition: right 0.3s ease-in-out;
}

14770
@media (prefers-reduced-motion: reduce) {
14771
  .control-sidebar, .control-sidebar::before {
A
Abdullah Almsaeed 已提交
14772 14773 14774 14775
    transition: none;
  }
}

14776 14777
.control-sidebar::before {
  content: " ";
A
Abdullah Almsaeed 已提交
14778 14779
  display: block;
  position: fixed;
14780
  top: 0;
A
Abdullah Almsaeed 已提交
14781 14782
  z-index: -1;
}
A
Abdullah Almsaeed 已提交
14783

A
Abdullah Almsaeed 已提交
14784
@media (min-width: 768px) {
14785 14786 14787
  .control-sidebar-open .control-sidebar {
    display: block;
  }
14788
  .control-sidebar-open .control-sidebar, .control-sidebar-open .control-sidebar::before {
A
Abdullah Almsaeed 已提交
14789 14790
    right: 0;
  }
A
Abdullah Almsaeed 已提交
14791 14792
  .control-sidebar-open .content-wrapper,
  .control-sidebar-open .main-footer {
A
Abdullah Almsaeed 已提交
14793 14794 14795
    margin-right: 250px;
  }
}
A
Abdullah Almsaeed 已提交
14796

A
Abdullah Almsaeed 已提交
14797
@media (max-width: 991.98px) {
14798
  .control-sidebar-open .control-sidebar, .control-sidebar-open .control-sidebar::before {
A
Abdullah Almsaeed 已提交
14799 14800 14801
    right: 0;
  }
}
A
Abdullah Almsaeed 已提交
14802

14803 14804 14805 14806
.control-sidebar-slide-open .control-sidebar {
  display: block;
}

14807
.control-sidebar-slide-open .control-sidebar, .control-sidebar-slide-open .control-sidebar::before {
A
Abdullah Almsaeed 已提交
14808 14809
  right: 0;
}
A
Abdullah Almsaeed 已提交
14810

14811 14812 14813
.control-sidebar-dark,
.control-sidebar-dark a,
.control-sidebar-dark .nav-link {
A
Abdullah Almsaeed 已提交
14814 14815
  color: #C2C7D0;
}
A
Abdullah Almsaeed 已提交
14816

14817
.control-sidebar-dark {
A
Abdullah Almsaeed 已提交
14818 14819
  background: #343a40;
}
A
Abdullah Almsaeed 已提交
14820

14821
.control-sidebar-dark a:hover {
A
Abdullah Almsaeed 已提交
14822 14823
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
14824

14825 14826 14827 14828 14829 14830 14831
.control-sidebar-dark h1,
.control-sidebar-dark h2,
.control-sidebar-dark h3,
.control-sidebar-dark h4,
.control-sidebar-dark h5,
.control-sidebar-dark h6,
.control-sidebar-dark label {
A
Abdullah Almsaeed 已提交
14832 14833
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
14834

14835
.control-sidebar-dark .nav-tabs {
A
Abdullah Almsaeed 已提交
14836
  background-color: rgba(255, 255, 255, 0.1);
14837
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
14838 14839 14840 14841 14842 14843 14844 14845 14846 14847
  margin-bottom: 5px;
}

.control-sidebar-dark .nav-tabs .nav-item {
  margin: 0;
}

.control-sidebar-dark .nav-tabs .nav-link {
  border-radius: 0;
  padding: 10px 20px;
14848 14849
  position: relative;
  text-align: center;
A
Abdullah Almsaeed 已提交
14850 14851 14852 14853 14854 14855 14856 14857
}

.control-sidebar-dark .nav-tabs .nav-link, .control-sidebar-dark .nav-tabs .nav-link:hover, .control-sidebar-dark .nav-tabs .nav-link:active, .control-sidebar-dark .nav-tabs .nav-link:focus, .control-sidebar-dark .nav-tabs .nav-link.active {
  border: 0;
}

.control-sidebar-dark .nav-tabs .nav-link:hover, .control-sidebar-dark .nav-tabs .nav-link:active, .control-sidebar-dark .nav-tabs .nav-link:focus, .control-sidebar-dark .nav-tabs .nav-link.active {
  border-bottom-color: transparent;
14858
  border-left-color: transparent;
A
Abdullah Almsaeed 已提交
14859 14860 14861 14862 14863 14864 14865
  border-top-color: transparent;
  color: #ffffff;
}

.control-sidebar-dark .nav-tabs .nav-link.active {
  background-color: #343a40;
}
A
Abdullah Almsaeed 已提交
14866

14867
.control-sidebar-dark .tab-pane {
A
Abdullah Almsaeed 已提交
14868 14869
  padding: 10px 15px;
}
A
Abdullah Almsaeed 已提交
14870 14871

.control-sidebar-light {
A
Abdullah Almsaeed 已提交
14872 14873 14874
  color: #4b545c;
}

14875
.control-sidebar-light {
A
Abdullah Almsaeed 已提交
14876 14877 14878
  background: #ffffff;
  border-left: 1px solid #adb5bd;
}
A
Abdullah Almsaeed 已提交
14879

14880
/*
14881 14882
 * Component: Dropdown
 * -------------------
14883 14884 14885
 */
.dropdown-item-title {
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
14886 14887
  margin: 0;
}
A
Abdullah Almsaeed 已提交
14888

14889 14890
.dropdown-menu-lg {
  max-width: 300px;
14891
  min-width: 280px;
A
Abdullah Almsaeed 已提交
14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904
  padding: 0;
}

.dropdown-menu-lg .dropdown-divider {
  margin: 0;
}

.dropdown-menu-lg .dropdown-item {
  padding: 0.5rem 1rem;
}

.dropdown-menu-lg p {
  margin: 0;
14905
  white-space: normal;
A
Abdullah Almsaeed 已提交
14906
}
A
Abdullah Almsaeed 已提交
14907

14908 14909
.dropdown-footer,
.dropdown-header {
A
Abdullah Almsaeed 已提交
14910
  display: block;
A
Abdullah Almsaeed 已提交
14911
  font-size: 0.875rem;
14912 14913
  padding: 0.5rem 1rem;
  text-align: center;
A
Abdullah Almsaeed 已提交
14914
}
14915

A
Abdullah Almsaeed 已提交
14916 14917 14918
/* Add fade animation to dropdown menus by appending
 the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
.open:not(.dropup) > .animated-dropdown-menu {
R
REJack 已提交
14919
  -webkit-animation: flipInX 0.7s both;
A
Abdullah Almsaeed 已提交
14920
  animation: flipInX 0.7s both;
14921 14922
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
A
Abdullah Almsaeed 已提交
14923
}
A
Abdullah Almsaeed 已提交
14924 14925 14926

@keyframes flipInX {
  0% {
R
REJack 已提交
14927
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
A
Abdullah Almsaeed 已提交
14928 14929
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
A
Abdullah Almsaeed 已提交
14930 14931
    opacity: 0;
  }
A
Abdullah Almsaeed 已提交
14932
  40% {
R
REJack 已提交
14933
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
A
Abdullah Almsaeed 已提交
14934
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
A
Abdullah Almsaeed 已提交
14935 14936
    transition-timing-function: ease-in;
  }
A
Abdullah Almsaeed 已提交
14937
  60% {
R
REJack 已提交
14938
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
A
Abdullah Almsaeed 已提交
14939
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
A
Abdullah Almsaeed 已提交
14940 14941
    opacity: 1;
  }
A
Abdullah Almsaeed 已提交
14942
  80% {
R
REJack 已提交
14943
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
A
Abdullah Almsaeed 已提交
14944 14945
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
A
Abdullah Almsaeed 已提交
14946
  100% {
R
REJack 已提交
14947
    -webkit-transform: perspective(400px);
A
Abdullah Almsaeed 已提交
14948 14949 14950
    transform: perspective(400px);
  }
}
A
Abdullah Almsaeed 已提交
14951 14952 14953 14954 14955

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
A
Abdullah Almsaeed 已提交
14956 14957
    opacity: 0;
  }
A
Abdullah Almsaeed 已提交
14958 14959
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
A
Abdullah Almsaeed 已提交
14960 14961
    -webkit-transition-timing-function: ease-in;
  }
A
Abdullah Almsaeed 已提交
14962 14963
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
A
Abdullah Almsaeed 已提交
14964 14965
    opacity: 1;
  }
A
Abdullah Almsaeed 已提交
14966
  80% {
A
Abdullah Almsaeed 已提交
14967 14968
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
A
Abdullah Almsaeed 已提交
14969
  100% {
A
Abdullah Almsaeed 已提交
14970 14971 14972
    -webkit-transform: perspective(400px);
  }
}
A
Abdullah Almsaeed 已提交
14973 14974 14975

/* Fix dropdown menu in navbars */
.navbar-custom-menu > .navbar-nav > li {
A
Abdullah Almsaeed 已提交
14976 14977
  position: relative;
}
A
Abdullah Almsaeed 已提交
14978

A
Abdullah Almsaeed 已提交
14979 14980 14981 14982 14983 14984 14985
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
}

@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
14986
  .navbar-custom-menu > .navbar-nav {
A
Abdullah Almsaeed 已提交
14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999
    float: right;
  }
  .navbar-custom-menu > .navbar-nav > li {
    position: static;
  }
  .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
    position: absolute;
    right: 5%;
    left: auto;
    border: 1px solid #ddd;
    background: #ffffff;
  }
}
A
Abdullah Almsaeed 已提交
15000

R
REJack 已提交
15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107
/* User Menu */
.navbar-nav > .user-menu > .nav-link:after {
  content: none;
}

.navbar-nav > .user-menu > .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0;
  border-top-width: 0;
  width: 280px;
}

.navbar-nav > .user-menu > .dropdown-menu,
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  height: 175px;
  padding: 10px;
  text-align: center;
}

.navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  z-index: 5;
  height: 90px;
  width: 90px;
  border: 3px solid;
  border-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  z-index: 5;
  font-size: 17px;
  margin-top: 10px;
}

.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  display: block;
  font-size: 12px;
}

.navbar-nav > .user-menu > .dropdown-menu > .user-body {
  padding: 15px;
  border-bottom: 1px solid #f4f4f4;
  border-top: 1px solid #dddddd;
}

.navbar-nav > .user-menu > .dropdown-menu > .user-body::after {
  display: block;
  clear: both;
  content: "";
}

.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  color: #444 !important;
}

@media (min-width: 576px) {
  .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
    background: #fff !important;
    color: #444 !important;
  }
}

.navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  background-color: #f9f9f9;
  padding: 10px;
}

.navbar-nav > .user-menu > .dropdown-menu > .user-footer::after {
  display: block;
  clear: both;
  content: "";
}

.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  color: #666666;
}

@media (min-width: 576px) {
  .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
    background-color: #f9f9f9;
  }
}

.navbar-nav > .user-menu .user-image {
  float: left;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: -2px;
}

@media (min-width: 576px) {
  .navbar-nav > .user-menu .user-image {
    float: none;
    margin-right: 0;
    margin-top: -8px;
    line-height: 10px;
  }
}

A
Abdullah Almsaeed 已提交
15108
/*
15109 15110
 * Component: Forms
 * ----------------
A
Abdullah Almsaeed 已提交
15111
 */
15112
.form-group.has-icon {
A
Abdullah Almsaeed 已提交
15113 15114 15115 15116 15117 15118
  position: relative;
}

.form-group.has-icon .form-control {
  padding-right: 35px;
}
15119

A
Abdullah Almsaeed 已提交
15120
.form-group.has-icon .form-icon {
15121 15122
  background-color: transparent;
  border: 0;
A
Abdullah Almsaeed 已提交
15123
  cursor: pointer;
15124 15125
  font-size: 1rem;
  padding: 0.375rem 0.75rem;
A
Abdullah Almsaeed 已提交
15126 15127 15128 15129
  position: absolute;
  right: 3px;
  top: 0;
}
A
Abdullah Almsaeed 已提交
15130 15131

.btn-group-vertical .btn.btn-flat:first-of-type, .btn-group-vertical .btn.btn-flat:last-of-type {
A
Abdullah Almsaeed 已提交
15132 15133
  border-radius: 0;
}
A
Abdullah Almsaeed 已提交
15134

15135
.form-control-feedback.fa, .form-control-feedback.fas, .form-control-feedback.far, .form-control-feedback.fab, .form-control-feedback.glyphicon, .form-control-feedback.ion {
A
Abdullah Almsaeed 已提交
15136 15137
  line-height: calc(2.25rem + 2px);
}
A
Abdullah Almsaeed 已提交
15138

15139
.input-lg + .form-control-feedback.fa, .input-lg + .form-control-feedback.fas, .input-lg + .form-control-feedback.far, .input-lg + .form-control-feedback.fab, .input-lg + .form-control-feedback.glyphicon, .input-lg + .form-control-feedback.ion,
A
Abdullah Almsaeed 已提交
15140
.input-group-lg + .form-control-feedback.fa,
R
REJack 已提交
15141 15142 15143
.input-group-lg + .form-control-feedback.fas,
.input-group-lg + .form-control-feedback.far,
.input-group-lg + .form-control-feedback.fab,
15144 15145
.input-group-lg + .form-control-feedback.glyphicon,
.input-group-lg + .form-control-feedback.ion {
A
Abdullah Almsaeed 已提交
15146 15147
  line-height: calc(2.875rem + 2px);
}
A
Abdullah Almsaeed 已提交
15148

15149 15150 15151 15152 15153
.form-group-lg .form-control + .form-control-feedback.fa, .form-group-lg .form-control + .form-control-feedback.fas, .form-group-lg .form-control + .form-control-feedback.far, .form-group-lg .form-control + .form-control-feedback.fab, .form-group-lg .form-control + .form-control-feedback.glyphicon, .form-group-lg .form-control + .form-control-feedback.ion {
  line-height: calc(2.875rem + 2px);
}

.input-sm + .form-control-feedback.fa, .input-sm + .form-control-feedback.fas, .input-sm + .form-control-feedback.far, .input-sm + .form-control-feedback.fab, .input-sm + .form-control-feedback.glyphicon, .input-sm + .form-control-feedback.ion,
A
Abdullah Almsaeed 已提交
15154
.input-group-sm + .form-control-feedback.fa,
R
REJack 已提交
15155 15156 15157
.input-group-sm + .form-control-feedback.fas,
.input-group-sm + .form-control-feedback.far,
.input-group-sm + .form-control-feedback.fab,
15158 15159 15160 15161 15162 15163
.input-group-sm + .form-control-feedback.glyphicon,
.input-group-sm + .form-control-feedback.ion {
  line-height: calc(1.8125rem + 2px);
}

.form-group-sm .form-control + .form-control-feedback.fa, .form-group-sm .form-control + .form-control-feedback.fas, .form-group-sm .form-control + .form-control-feedback.far, .form-group-sm .form-control + .form-control-feedback.fab, .form-group-sm .form-control + .form-control-feedback.glyphicon, .form-group-sm .form-control + .form-control-feedback.ion {
A
Abdullah Almsaeed 已提交
15164 15165 15166 15167 15168 15169
  line-height: calc(1.8125rem + 2px);
}

label:not(.form-check-label):not(.custom-file-label) {
  font-weight: 700;
}
A
Abdullah Almsaeed 已提交
15170

R
REJack 已提交
15171 15172 15173
.warning-feedback {
  font-size: 80%;
  color: #ffc107;
15174 15175 15176
  display: none;
  margin-top: 0.25rem;
  width: 100%;
R
REJack 已提交
15177 15178 15179
}

.warning-tooltip {
15180 15181 15182 15183
  border-radius: 0.25rem;
  font-size: 0.875rem;
  background-color: rgba(255, 193, 7, 0.9);
  color: #1F2D3D;
R
REJack 已提交
15184
  display: none;
15185 15186
  line-height: 1.5;
  margin-top: .1rem;
R
REJack 已提交
15187 15188
  max-width: 100%;
  padding: 0.25rem 0.5rem;
15189 15190 15191
  position: absolute;
  top: 100%;
  z-index: 5;
R
REJack 已提交
15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254
}

.form-control.is-warning {
  border-color: #ffc107;
}

.form-control.is-warning:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.form-control.is-warning ~ .warning-feedback,
.form-control.is-warning ~ .warning-tooltip {
  display: block;
}

textarea.form-control.is-warning {
  padding-right: 2.25rem;
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.custom-select.is-warning {
  border-color: #ffc107;
}

.custom-select.is-warning:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.custom-select.is-warning ~ .warning-feedback,
.custom-select.is-warning ~ .warning-tooltip {
  display: block;
}

.form-control-file.is-warning ~ .warning-feedback,
.form-control-file.is-warning ~ .warning-tooltip {
  display: block;
}

.form-check-input.is-warning ~ .form-check-label {
  color: #ffc107;
}

.form-check-input.is-warning ~ .warning-feedback,
.form-check-input.is-warning ~ .warning-tooltip {
  display: block;
}

.custom-control-input.is-warning ~ .custom-control-label {
  color: #ffc107;
}

.custom-control-input.is-warning ~ .custom-control-label::before {
  border-color: #ffc107;
}

.custom-control-input.is-warning ~ .warning-feedback,
.custom-control-input.is-warning ~ .warning-tooltip {
  display: block;
}

.custom-control-input.is-warning:checked ~ .custom-control-label::before {
R
REJack 已提交
15255
  background-color: #ffce3a;
15256
  border-color: #ffce3a;
R
REJack 已提交
15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280
}

.custom-control-input.is-warning:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

.custom-control-input.is-warning:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ffc107;
}

.custom-file-input.is-warning ~ .custom-file-label {
  border-color: #ffc107;
}

.custom-file-input.is-warning ~ .warning-feedback,
.custom-file-input.is-warning ~ .warning-tooltip {
  display: block;
}

.custom-file-input.is-warning:focus ~ .custom-file-label {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

R
REJack 已提交
15281
.custom-switch.custom-switch-off-primary .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15282
  background: #007bff;
R
REJack 已提交
15283
  border-color: #004a99;
R
REJack 已提交
15284 15285 15286
}

.custom-switch.custom-switch-off-primary .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15287
  background: #003e80;
R
REJack 已提交
15288 15289 15290
}

.custom-switch.custom-switch-on-primary .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15291
  background: #007bff;
R
REJack 已提交
15292
  border-color: #004a99;
R
REJack 已提交
15293 15294 15295
}

.custom-switch.custom-switch-on-primary .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15296
  background: #99caff;
R
REJack 已提交
15297 15298 15299
}

.custom-switch.custom-switch-off-secondary .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15300
  background: #6c757d;
R
REJack 已提交
15301
  border-color: #3d4246;
R
REJack 已提交
15302 15303 15304
}

.custom-switch.custom-switch-off-secondary .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15305
  background: #313539;
R
REJack 已提交
15306 15307 15308
}

.custom-switch.custom-switch-on-secondary .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15309
  background: #6c757d;
R
REJack 已提交
15310
  border-color: #3d4246;
R
REJack 已提交
15311 15312 15313
}

.custom-switch.custom-switch-on-secondary .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15314
  background: #bcc1c6;
R
REJack 已提交
15315 15316 15317
}

.custom-switch.custom-switch-off-success .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15318
  background: #28a745;
R
REJack 已提交
15319
  border-color: #145523;
R
REJack 已提交
15320 15321 15322
}

.custom-switch.custom-switch-off-success .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15323
  background: #0f401b;
R
REJack 已提交
15324 15325 15326
}

.custom-switch.custom-switch-on-success .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15327
  background: #28a745;
R
REJack 已提交
15328
  border-color: #145523;
R
REJack 已提交
15329 15330 15331
}

.custom-switch.custom-switch-on-success .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15332
  background: #86e29b;
R
REJack 已提交
15333 15334 15335
}

.custom-switch.custom-switch-off-info .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15336
  background: #17a2b8;
R
REJack 已提交
15337
  border-color: #0c525d;
R
REJack 已提交
15338 15339 15340
}

.custom-switch.custom-switch-off-info .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15341
  background: #093e47;
R
REJack 已提交
15342 15343 15344
}

.custom-switch.custom-switch-on-info .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15345
  background: #17a2b8;
R
REJack 已提交
15346
  border-color: #0c525d;
R
REJack 已提交
15347 15348 15349
}

.custom-switch.custom-switch-on-info .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15350
  background: #7adeee;
R
REJack 已提交
15351 15352 15353
}

.custom-switch.custom-switch-off-warning .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15354
  background: #ffc107;
R
REJack 已提交
15355
  border-color: #a07800;
R
REJack 已提交
15356 15357 15358
}

.custom-switch.custom-switch-off-warning .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15359
  background: #876500;
R
REJack 已提交
15360 15361 15362
}

.custom-switch.custom-switch-on-warning .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15363
  background: #ffc107;
R
REJack 已提交
15364
  border-color: #a07800;
R
REJack 已提交
15365 15366 15367
}

.custom-switch.custom-switch-on-warning .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15368
  background: #ffe7a0;
R
REJack 已提交
15369 15370 15371
}

.custom-switch.custom-switch-off-danger .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15372
  background: #dc3545;
R
REJack 已提交
15373
  border-color: #921925;
R
REJack 已提交
15374 15375 15376
}

.custom-switch.custom-switch-off-danger .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15377
  background: #7c151f;
R
REJack 已提交
15378 15379 15380
}

.custom-switch.custom-switch-on-danger .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15381
  background: #dc3545;
R
REJack 已提交
15382
  border-color: #921925;
R
REJack 已提交
15383 15384 15385
}

.custom-switch.custom-switch-on-danger .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15386
  background: #f3b7bd;
R
REJack 已提交
15387 15388 15389
}

.custom-switch.custom-switch-off-light .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15390
  background: #f8f9fa;
R
REJack 已提交
15391
  border-color: #bdc6d0;
R
REJack 已提交
15392 15393 15394
}

.custom-switch.custom-switch-off-light .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15395
  background: #aeb9c5;
R
REJack 已提交
15396 15397 15398
}

.custom-switch.custom-switch-on-light .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15399
  background: #f8f9fa;
R
REJack 已提交
15400
  border-color: #bdc6d0;
R
REJack 已提交
15401 15402 15403
}

.custom-switch.custom-switch-on-light .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15404
  background: white;
R
REJack 已提交
15405 15406 15407
}

.custom-switch.custom-switch-off-dark .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15408
  background: #343a40;
R
REJack 已提交
15409
  border-color: #060708;
R
REJack 已提交
15410 15411 15412
}

.custom-switch.custom-switch-off-dark .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15413
  background: black;
R
REJack 已提交
15414 15415 15416
}

.custom-switch.custom-switch-on-dark .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15417
  background: #343a40;
R
REJack 已提交
15418
  border-color: #060708;
R
REJack 已提交
15419 15420 15421
}

.custom-switch.custom-switch-on-dark .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15422
  background: #7a8793;
R
REJack 已提交
15423 15424 15425
}

.custom-switch.custom-switch-off-blue .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15426
  background: #007bff;
R
REJack 已提交
15427
  border-color: #004a99;
R
REJack 已提交
15428 15429 15430
}

.custom-switch.custom-switch-off-blue .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15431
  background: #003e80;
R
REJack 已提交
15432 15433 15434
}

.custom-switch.custom-switch-on-blue .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15435
  background: #007bff;
R
REJack 已提交
15436
  border-color: #004a99;
R
REJack 已提交
15437 15438 15439
}

.custom-switch.custom-switch-on-blue .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15440
  background: #99caff;
R
REJack 已提交
15441 15442 15443
}

.custom-switch.custom-switch-off-indigo .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15444
  background: #6610f2;
R
REJack 已提交
15445
  border-color: #3d0894;
R
REJack 已提交
15446 15447 15448
}

.custom-switch.custom-switch-off-indigo .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15449
  background: #33077c;
R
REJack 已提交
15450 15451 15452
}

.custom-switch.custom-switch-on-indigo .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15453
  background: #6610f2;
R
REJack 已提交
15454
  border-color: #3d0894;
R
REJack 已提交
15455 15456 15457
}

.custom-switch.custom-switch-on-indigo .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15458
  background: #c3a1fa;
R
REJack 已提交
15459 15460 15461
}

.custom-switch.custom-switch-off-purple .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15462
  background: #6f42c1;
R
REJack 已提交
15463
  border-color: #432776;
R
REJack 已提交
15464 15465 15466
}

.custom-switch.custom-switch-off-purple .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15467
  background: #382063;
R
REJack 已提交
15468 15469 15470
}

.custom-switch.custom-switch-on-purple .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15471
  background: #6f42c1;
R
REJack 已提交
15472
  border-color: #432776;
R
REJack 已提交
15473 15474 15475
}

.custom-switch.custom-switch-on-purple .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15476
  background: #c7b5e7;
R
REJack 已提交
15477 15478 15479
}

.custom-switch.custom-switch-off-pink .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15480
  background: #e83e8c;
R
REJack 已提交
15481
  border-color: #ac145a;
R
REJack 已提交
15482 15483 15484
}

.custom-switch.custom-switch-off-pink .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15485
  background: #95124e;
R
REJack 已提交
15486 15487 15488
}

.custom-switch.custom-switch-on-pink .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15489
  background: #e83e8c;
R
REJack 已提交
15490
  border-color: #ac145a;
R
REJack 已提交
15491 15492 15493
}

.custom-switch.custom-switch-on-pink .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15494
  background: #f8c7dd;
R
REJack 已提交
15495 15496 15497
}

.custom-switch.custom-switch-off-red .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15498
  background: #dc3545;
R
REJack 已提交
15499
  border-color: #921925;
R
REJack 已提交
15500 15501 15502
}

.custom-switch.custom-switch-off-red .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15503
  background: #7c151f;
R
REJack 已提交
15504 15505 15506
}

.custom-switch.custom-switch-on-red .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15507
  background: #dc3545;
R
REJack 已提交
15508
  border-color: #921925;
R
REJack 已提交
15509 15510 15511
}

.custom-switch.custom-switch-on-red .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15512
  background: #f3b7bd;
R
REJack 已提交
15513 15514 15515
}

.custom-switch.custom-switch-off-orange .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15516
  background: #fd7e14;
R
REJack 已提交
15517
  border-color: #aa4e01;
R
REJack 已提交
15518 15519 15520
}

.custom-switch.custom-switch-off-orange .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15521
  background: #904201;
R
REJack 已提交
15522 15523 15524
}

.custom-switch.custom-switch-on-orange .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15525
  background: #fd7e14;
R
REJack 已提交
15526
  border-color: #aa4e01;
R
REJack 已提交
15527 15528 15529
}

.custom-switch.custom-switch-on-orange .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15530
  background: #fed1ac;
R
REJack 已提交
15531 15532 15533
}

.custom-switch.custom-switch-off-yellow .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15534
  background: #ffc107;
R
REJack 已提交
15535
  border-color: #a07800;
R
REJack 已提交
15536 15537 15538
}

.custom-switch.custom-switch-off-yellow .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15539
  background: #876500;
R
REJack 已提交
15540 15541 15542
}

.custom-switch.custom-switch-on-yellow .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15543
  background: #ffc107;
R
REJack 已提交
15544
  border-color: #a07800;
R
REJack 已提交
15545 15546 15547
}

.custom-switch.custom-switch-on-yellow .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15548
  background: #ffe7a0;
R
REJack 已提交
15549 15550 15551
}

.custom-switch.custom-switch-off-green .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15552
  background: #28a745;
R
REJack 已提交
15553
  border-color: #145523;
R
REJack 已提交
15554 15555 15556
}

.custom-switch.custom-switch-off-green .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15557
  background: #0f401b;
R
REJack 已提交
15558 15559 15560
}

.custom-switch.custom-switch-on-green .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15561
  background: #28a745;
R
REJack 已提交
15562
  border-color: #145523;
R
REJack 已提交
15563 15564 15565
}

.custom-switch.custom-switch-on-green .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15566
  background: #86e29b;
R
REJack 已提交
15567 15568 15569
}

.custom-switch.custom-switch-off-teal .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15570
  background: #20c997;
R
REJack 已提交
15571
  border-color: #127155;
R
REJack 已提交
15572 15573 15574
}

.custom-switch.custom-switch-off-teal .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15575
  background: #0e5b44;
R
REJack 已提交
15576 15577 15578
}

.custom-switch.custom-switch-on-teal .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15579
  background: #20c997;
R
REJack 已提交
15580
  border-color: #127155;
R
REJack 已提交
15581 15582 15583
}

.custom-switch.custom-switch-on-teal .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15584
  background: #94eed3;
R
REJack 已提交
15585 15586 15587
}

.custom-switch.custom-switch-off-cyan .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15588
  background: #17a2b8;
R
REJack 已提交
15589
  border-color: #0c525d;
R
REJack 已提交
15590 15591 15592
}

.custom-switch.custom-switch-off-cyan .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15593
  background: #093e47;
R
REJack 已提交
15594 15595 15596
}

.custom-switch.custom-switch-on-cyan .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15597
  background: #17a2b8;
R
REJack 已提交
15598
  border-color: #0c525d;
R
REJack 已提交
15599 15600 15601
}

.custom-switch.custom-switch-on-cyan .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15602
  background: #7adeee;
R
REJack 已提交
15603 15604 15605
}

.custom-switch.custom-switch-off-white .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15606
  background: #ffffff;
R
REJack 已提交
15607
  border-color: #cccccc;
R
REJack 已提交
15608 15609 15610
}

.custom-switch.custom-switch-off-white .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15611
  background: #bfbfbf;
R
REJack 已提交
15612 15613 15614
}

.custom-switch.custom-switch-on-white .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15615
  background: #ffffff;
R
REJack 已提交
15616
  border-color: #cccccc;
R
REJack 已提交
15617 15618 15619
}

.custom-switch.custom-switch-on-white .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15620
  background: white;
R
REJack 已提交
15621 15622 15623
}

.custom-switch.custom-switch-off-gray .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15624
  background: #6c757d;
R
REJack 已提交
15625
  border-color: #3d4246;
R
REJack 已提交
15626 15627 15628
}

.custom-switch.custom-switch-off-gray .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15629
  background: #313539;
R
REJack 已提交
15630 15631 15632
}

.custom-switch.custom-switch-on-gray .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15633
  background: #6c757d;
R
REJack 已提交
15634
  border-color: #3d4246;
R
REJack 已提交
15635 15636 15637
}

.custom-switch.custom-switch-on-gray .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15638
  background: #bcc1c6;
R
REJack 已提交
15639 15640 15641
}

.custom-switch.custom-switch-off-gray-dark .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
15642
  background: #343a40;
R
REJack 已提交
15643
  border-color: #060708;
R
REJack 已提交
15644 15645 15646
}

.custom-switch.custom-switch-off-gray-dark .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
15647
  background: black;
R
REJack 已提交
15648 15649 15650
}

.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
15651
  background: #343a40;
R
REJack 已提交
15652
  border-color: #060708;
R
REJack 已提交
15653 15654 15655
}

.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
15656
  background: #7a8793;
R
REJack 已提交
15657 15658
}

R
REJack 已提交
15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162
.custom-range.custom-range-primary:focus::-webkit-slider-thumb {
  background-color: #b3d7ff;
}

.custom-range.custom-range-primary:focus::-moz-range-thumb {
  background-color: #b3d7ff;
}

.custom-range.custom-range-primary:focus::-ms-thumb {
  background-color: #b3d7ff;
}

.custom-range.custom-range-primary::-webkit-slider-thumb {
  background-color: #007bff;
}

.custom-range.custom-range-primary::-moz-range-thumb {
  background-color: #007bff;
}

.custom-range.custom-range-primary::-ms-thumb {
  background-color: #007bff;
}

.custom-range.custom-range-secondary:focus::-webkit-slider-thumb {
  background-color: #caced1;
}

.custom-range.custom-range-secondary:focus::-moz-range-thumb {
  background-color: #caced1;
}

.custom-range.custom-range-secondary:focus::-ms-thumb {
  background-color: #caced1;
}

.custom-range.custom-range-secondary::-webkit-slider-thumb {
  background-color: #6c757d;
}

.custom-range.custom-range-secondary::-moz-range-thumb {
  background-color: #6c757d;
}

.custom-range.custom-range-secondary::-ms-thumb {
  background-color: #6c757d;
}

.custom-range.custom-range-success:focus::-webkit-slider-thumb {
  background-color: #9be7ac;
}

.custom-range.custom-range-success:focus::-moz-range-thumb {
  background-color: #9be7ac;
}

.custom-range.custom-range-success:focus::-ms-thumb {
  background-color: #9be7ac;
}

.custom-range.custom-range-success::-webkit-slider-thumb {
  background-color: #28a745;
}

.custom-range.custom-range-success::-moz-range-thumb {
  background-color: #28a745;
}

.custom-range.custom-range-success::-ms-thumb {
  background-color: #28a745;
}

.custom-range.custom-range-info:focus::-webkit-slider-thumb {
  background-color: #90e4f1;
}

.custom-range.custom-range-info:focus::-moz-range-thumb {
  background-color: #90e4f1;
}

.custom-range.custom-range-info:focus::-ms-thumb {
  background-color: #90e4f1;
}

.custom-range.custom-range-info::-webkit-slider-thumb {
  background-color: #17a2b8;
}

.custom-range.custom-range-info::-moz-range-thumb {
  background-color: #17a2b8;
}

.custom-range.custom-range-info::-ms-thumb {
  background-color: #17a2b8;
}

.custom-range.custom-range-warning:focus::-webkit-slider-thumb {
  background-color: #ffeeba;
}

.custom-range.custom-range-warning:focus::-moz-range-thumb {
  background-color: #ffeeba;
}

.custom-range.custom-range-warning:focus::-ms-thumb {
  background-color: #ffeeba;
}

.custom-range.custom-range-warning::-webkit-slider-thumb {
  background-color: #ffc107;
}

.custom-range.custom-range-warning::-moz-range-thumb {
  background-color: #ffc107;
}

.custom-range.custom-range-warning::-ms-thumb {
  background-color: #ffc107;
}

.custom-range.custom-range-danger:focus::-webkit-slider-thumb {
  background-color: #f6cdd1;
}

.custom-range.custom-range-danger:focus::-moz-range-thumb {
  background-color: #f6cdd1;
}

.custom-range.custom-range-danger:focus::-ms-thumb {
  background-color: #f6cdd1;
}

.custom-range.custom-range-danger::-webkit-slider-thumb {
  background-color: #dc3545;
}

.custom-range.custom-range-danger::-moz-range-thumb {
  background-color: #dc3545;
}

.custom-range.custom-range-danger::-ms-thumb {
  background-color: #dc3545;
}

.custom-range.custom-range-light:focus::-webkit-slider-thumb {
  background-color: white;
}

.custom-range.custom-range-light:focus::-moz-range-thumb {
  background-color: white;
}

.custom-range.custom-range-light:focus::-ms-thumb {
  background-color: white;
}

.custom-range.custom-range-light::-webkit-slider-thumb {
  background-color: #f8f9fa;
}

.custom-range.custom-range-light::-moz-range-thumb {
  background-color: #f8f9fa;
}

.custom-range.custom-range-light::-ms-thumb {
  background-color: #f8f9fa;
}

.custom-range.custom-range-dark:focus::-webkit-slider-thumb {
  background-color: #88939e;
}

.custom-range.custom-range-dark:focus::-moz-range-thumb {
  background-color: #88939e;
}

.custom-range.custom-range-dark:focus::-ms-thumb {
  background-color: #88939e;
}

.custom-range.custom-range-dark::-webkit-slider-thumb {
  background-color: #343a40;
}

.custom-range.custom-range-dark::-moz-range-thumb {
  background-color: #343a40;
}

.custom-range.custom-range-dark::-ms-thumb {
  background-color: #343a40;
}

.custom-range.custom-range-blue:focus::-webkit-slider-thumb {
  background-color: #b3d7ff;
}

.custom-range.custom-range-blue:focus::-moz-range-thumb {
  background-color: #b3d7ff;
}

.custom-range.custom-range-blue:focus::-ms-thumb {
  background-color: #b3d7ff;
}

.custom-range.custom-range-blue::-webkit-slider-thumb {
  background-color: #007bff;
}

.custom-range.custom-range-blue::-moz-range-thumb {
  background-color: #007bff;
}

.custom-range.custom-range-blue::-ms-thumb {
  background-color: #007bff;
}

.custom-range.custom-range-indigo:focus::-webkit-slider-thumb {
  background-color: #d2b9fb;
}

.custom-range.custom-range-indigo:focus::-moz-range-thumb {
  background-color: #d2b9fb;
}

.custom-range.custom-range-indigo:focus::-ms-thumb {
  background-color: #d2b9fb;
}

.custom-range.custom-range-indigo::-webkit-slider-thumb {
  background-color: #6610f2;
}

.custom-range.custom-range-indigo::-moz-range-thumb {
  background-color: #6610f2;
}

.custom-range.custom-range-indigo::-ms-thumb {
  background-color: #6610f2;
}

.custom-range.custom-range-purple:focus::-webkit-slider-thumb {
  background-color: #d5c8ed;
}

.custom-range.custom-range-purple:focus::-moz-range-thumb {
  background-color: #d5c8ed;
}

.custom-range.custom-range-purple:focus::-ms-thumb {
  background-color: #d5c8ed;
}

.custom-range.custom-range-purple::-webkit-slider-thumb {
  background-color: #6f42c1;
}

.custom-range.custom-range-purple::-moz-range-thumb {
  background-color: #6f42c1;
}

.custom-range.custom-range-purple::-ms-thumb {
  background-color: #6f42c1;
}

.custom-range.custom-range-pink:focus::-webkit-slider-thumb {
  background-color: #fbddeb;
}

.custom-range.custom-range-pink:focus::-moz-range-thumb {
  background-color: #fbddeb;
}

.custom-range.custom-range-pink:focus::-ms-thumb {
  background-color: #fbddeb;
}

.custom-range.custom-range-pink::-webkit-slider-thumb {
  background-color: #e83e8c;
}

.custom-range.custom-range-pink::-moz-range-thumb {
  background-color: #e83e8c;
}

.custom-range.custom-range-pink::-ms-thumb {
  background-color: #e83e8c;
}

.custom-range.custom-range-red:focus::-webkit-slider-thumb {
  background-color: #f6cdd1;
}

.custom-range.custom-range-red:focus::-moz-range-thumb {
  background-color: #f6cdd1;
}

.custom-range.custom-range-red:focus::-ms-thumb {
  background-color: #f6cdd1;
}

.custom-range.custom-range-red::-webkit-slider-thumb {
  background-color: #dc3545;
}

.custom-range.custom-range-red::-moz-range-thumb {
  background-color: #dc3545;
}

.custom-range.custom-range-red::-ms-thumb {
  background-color: #dc3545;
}

.custom-range.custom-range-orange:focus::-webkit-slider-thumb {
  background-color: #ffdfc5;
}

.custom-range.custom-range-orange:focus::-moz-range-thumb {
  background-color: #ffdfc5;
}

.custom-range.custom-range-orange:focus::-ms-thumb {
  background-color: #ffdfc5;
}

.custom-range.custom-range-orange::-webkit-slider-thumb {
  background-color: #fd7e14;
}

.custom-range.custom-range-orange::-moz-range-thumb {
  background-color: #fd7e14;
}

.custom-range.custom-range-orange::-ms-thumb {
  background-color: #fd7e14;
}

.custom-range.custom-range-yellow:focus::-webkit-slider-thumb {
  background-color: #ffeeba;
}

.custom-range.custom-range-yellow:focus::-moz-range-thumb {
  background-color: #ffeeba;
}

.custom-range.custom-range-yellow:focus::-ms-thumb {
  background-color: #ffeeba;
}

.custom-range.custom-range-yellow::-webkit-slider-thumb {
  background-color: #ffc107;
}

.custom-range.custom-range-yellow::-moz-range-thumb {
  background-color: #ffc107;
}

.custom-range.custom-range-yellow::-ms-thumb {
  background-color: #ffc107;
}

.custom-range.custom-range-green:focus::-webkit-slider-thumb {
  background-color: #9be7ac;
}

.custom-range.custom-range-green:focus::-moz-range-thumb {
  background-color: #9be7ac;
}

.custom-range.custom-range-green:focus::-ms-thumb {
  background-color: #9be7ac;
}

.custom-range.custom-range-green::-webkit-slider-thumb {
  background-color: #28a745;
}

.custom-range.custom-range-green::-moz-range-thumb {
  background-color: #28a745;
}

.custom-range.custom-range-green::-ms-thumb {
  background-color: #28a745;
}

.custom-range.custom-range-teal:focus::-webkit-slider-thumb {
  background-color: #aaf1dc;
}

.custom-range.custom-range-teal:focus::-moz-range-thumb {
  background-color: #aaf1dc;
}

.custom-range.custom-range-teal:focus::-ms-thumb {
  background-color: #aaf1dc;
}

.custom-range.custom-range-teal::-webkit-slider-thumb {
  background-color: #20c997;
}

.custom-range.custom-range-teal::-moz-range-thumb {
  background-color: #20c997;
}

.custom-range.custom-range-teal::-ms-thumb {
  background-color: #20c997;
}

.custom-range.custom-range-cyan:focus::-webkit-slider-thumb {
  background-color: #90e4f1;
}

.custom-range.custom-range-cyan:focus::-moz-range-thumb {
  background-color: #90e4f1;
}

.custom-range.custom-range-cyan:focus::-ms-thumb {
  background-color: #90e4f1;
}

.custom-range.custom-range-cyan::-webkit-slider-thumb {
  background-color: #17a2b8;
}

.custom-range.custom-range-cyan::-moz-range-thumb {
  background-color: #17a2b8;
}

.custom-range.custom-range-cyan::-ms-thumb {
  background-color: #17a2b8;
}

.custom-range.custom-range-white:focus::-webkit-slider-thumb {
  background-color: white;
}

.custom-range.custom-range-white:focus::-moz-range-thumb {
  background-color: white;
}

.custom-range.custom-range-white:focus::-ms-thumb {
  background-color: white;
}

.custom-range.custom-range-white::-webkit-slider-thumb {
  background-color: #ffffff;
}

.custom-range.custom-range-white::-moz-range-thumb {
  background-color: #ffffff;
}

.custom-range.custom-range-white::-ms-thumb {
  background-color: #ffffff;
}

.custom-range.custom-range-gray:focus::-webkit-slider-thumb {
  background-color: #caced1;
}

.custom-range.custom-range-gray:focus::-moz-range-thumb {
  background-color: #caced1;
}

.custom-range.custom-range-gray:focus::-ms-thumb {
  background-color: #caced1;
}

.custom-range.custom-range-gray::-webkit-slider-thumb {
  background-color: #6c757d;
}

.custom-range.custom-range-gray::-moz-range-thumb {
  background-color: #6c757d;
}

.custom-range.custom-range-gray::-ms-thumb {
  background-color: #6c757d;
}

.custom-range.custom-range-gray-dark:focus::-webkit-slider-thumb {
  background-color: #88939e;
}

.custom-range.custom-range-gray-dark:focus::-moz-range-thumb {
  background-color: #88939e;
}

.custom-range.custom-range-gray-dark:focus::-ms-thumb {
  background-color: #88939e;
}

.custom-range.custom-range-gray-dark::-webkit-slider-thumb {
  background-color: #343a40;
}

.custom-range.custom-range-gray-dark::-moz-range-thumb {
  background-color: #343a40;
}

.custom-range.custom-range-gray-dark::-ms-thumb {
  background-color: #343a40;
}

A
Abdullah Almsaeed 已提交
16163 16164 16165 16166
/*
 * Component: Progress Bar
 * -----------------------
 */
A
Abdullah Almsaeed 已提交
16167
.progress {
A
Abdullah Almsaeed 已提交
16168 16169 16170
  box-shadow: none;
  border-radius: 1px;
}
A
Abdullah Almsaeed 已提交
16171 16172 16173

.progress.vertical {
  display: inline-block;
16174
  height: 200px;
A
Abdullah Almsaeed 已提交
16175
  margin-right: 10px;
16176 16177
  position: relative;
  width: 30px;
A
Abdullah Almsaeed 已提交
16178 16179 16180 16181
}

.progress.vertical > .progress-bar {
  bottom: 0;
16182 16183
  position: absolute;
  width: 100%;
A
Abdullah Almsaeed 已提交
16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196
}

.progress.vertical.sm, .progress.vertical.progress-sm {
  width: 20px;
}

.progress.vertical.xs, .progress.vertical.progress-xs {
  width: 10px;
}

.progress.vertical.xxs, .progress.vertical.progress-xxs {
  width: 3px;
}
A
Abdullah Almsaeed 已提交
16197

16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209
.progress-sm {
  height: 10px;
}

.progress-xs {
  height: 7px;
}

.progress-xxs {
  height: 3px;
}

A
Abdullah Almsaeed 已提交
16210
.table tr > td .progress {
A
Abdullah Almsaeed 已提交
16211 16212
  margin: 0;
}
A
Abdullah Almsaeed 已提交
16213 16214 16215 16216 16217 16218

/*
 * Component: Small Box
 * --------------------
 */
.small-box {
A
Abdullah Almsaeed 已提交
16219 16220
  border-radius: 0.25rem;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
A
Abdullah Almsaeed 已提交
16221 16222
  display: block;
  margin-bottom: 20px;
16223
  position: relative;
A
Abdullah Almsaeed 已提交
16224 16225 16226 16227 16228 16229 16230
}

.small-box > .inner {
  padding: 10px;
}

.small-box > .small-box-footer {
16231
  background: rgba(0, 0, 0, 0.1);
A
Abdullah Almsaeed 已提交
16232 16233 16234
  color: #ffffff;
  color: rgba(255, 255, 255, 0.8);
  display: block;
16235 16236 16237
  padding: 3px 0;
  position: relative;
  text-align: center;
A
Abdullah Almsaeed 已提交
16238
  text-decoration: none;
16239
  z-index: 10;
A
Abdullah Almsaeed 已提交
16240 16241 16242 16243
}

.small-box > .small-box-footer:hover {
  background: rgba(0, 0, 0, 0.15);
16244
  color: #ffffff;
A
Abdullah Almsaeed 已提交
16245 16246 16247
}

.small-box h3 {
16248
  font-size: 2.2rem;
A
Abdullah Almsaeed 已提交
16249 16250 16251
  font-weight: bold;
  margin: 0 0 10px 0;
  padding: 0;
16252
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
16253 16254
}

16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280
@media (min-width: 992px) {
  .col-xl-2 .small-box h3,
  .col-lg-2 .small-box h3,
  .col-md-2 .small-box h3 {
    font-size: 1.6rem;
  }
  .col-xl-3 .small-box h3,
  .col-lg-3 .small-box h3,
  .col-md-3 .small-box h3 {
    font-size: 1.6rem;
  }
}

@media (min-width: 1200px) {
  .col-xl-2 .small-box h3,
  .col-lg-2 .small-box h3,
  .col-md-2 .small-box h3 {
    font-size: 2.2rem;
  }
  .col-xl-3 .small-box h3,
  .col-lg-3 .small-box h3,
  .col-md-3 .small-box h3 {
    font-size: 2.2rem;
  }
}

A
Abdullah Almsaeed 已提交
16281
.small-box p {
16282
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
16283 16284 16285 16286
}

.small-box p > small {
  color: #f9f9f9;
16287
  display: block;
16288
  font-size: 0.9rem;
A
Abdullah Almsaeed 已提交
16289 16290 16291 16292 16293 16294 16295 16296
  margin-top: 5px;
}

.small-box h3, .small-box p {
  z-index: 5;
}

.small-box .icon {
R
REJack 已提交
16297
  color: rgba(0, 0, 0, 0.15);
16298
  z-index: 0;
R
REJack 已提交
16299 16300 16301
}

.small-box .icon > i {
16302
  font-size: 90px;
A
Abdullah Almsaeed 已提交
16303
  position: absolute;
R
REJack 已提交
16304
  right: 15px;
16305 16306
  top: 15px;
  transition: all 0.3s linear;
R
REJack 已提交
16307 16308
}

16309
.small-box .icon > i.fa, .small-box .icon > i.fas, .small-box .icon > i.far, .small-box .icon > i.fab, .small-box .icon > i.glyphicon, .small-box .icon > i.ion {
R
REJack 已提交
16310 16311
  font-size: 70px;
  top: 20px;
A
Abdullah Almsaeed 已提交
16312 16313 16314 16315 16316 16317
}

.small-box:hover {
  text-decoration: none;
}

R
REJack 已提交
16318
.small-box:hover .icon > i {
A
Abdullah Almsaeed 已提交
16319 16320 16321
  font-size: 95px;
}

16322
.small-box:hover .icon > i.fa, .small-box:hover .icon > i.fas, .small-box:hover .icon > i.far, .small-box:hover .icon > i.fab, .small-box:hover .icon > i.glyphicon, .small-box:hover .icon > i.ion {
R
REJack 已提交
16323 16324 16325
  font-size: 75px;
}

A
Abdullah Almsaeed 已提交
16326 16327
@media (max-width: 767.98px) {
  .small-box {
A
Abdullah Almsaeed 已提交
16328
    text-align: center;
A
Abdullah Almsaeed 已提交
16329
  }
A
Abdullah Almsaeed 已提交
16330
  .small-box .icon {
A
Abdullah Almsaeed 已提交
16331 16332 16333 16334 16335 16336
    display: none;
  }
  .small-box p {
    font-size: 12px;
  }
}
A
Abdullah Almsaeed 已提交
16337 16338

/*
16339 16340
 * Component: Cards
 * ----------------
A
Abdullah Almsaeed 已提交
16341 16342
 */
.card {
A
Abdullah Almsaeed 已提交
16343 16344 16345 16346 16347 16348 16349 16350
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.card.bg-dark,
.card.bg-dark .card-body {
  color: #ffffff;
}

16351 16352
.card.maximized-card {
  height: 100% !important;
16353
  left: 0;
16354
  max-height: 100% !important;
16355
  max-width: 100% !important;
16356 16357
  position: fixed;
  top: 0;
16358 16359
  width: 100% !important;
  z-index: 9999;
16360 16361 16362 16363 16364 16365
}

.card.maximized-card.was-collapsed .card-body {
  display: block !important;
}

16366
.card.maximized-card [data-widget='collapse'] {
16367 16368 16369 16370 16371 16372 16373 16374
  display: none;
}

.card.maximized-card .card-header,
.card.maximized-card .card-footer {
  border-radius: 0 !important;
}

A
Abdullah Almsaeed 已提交
16375 16376 16377 16378 16379 16380 16381 16382 16383
.card.collapsed-card .card-body,
.card.collapsed-card .card-footer {
  display: none;
}

.card .nav.flex-column > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  margin: 0;
}
A
Abdullah Almsaeed 已提交
16384

A
Abdullah Almsaeed 已提交
16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401
.card .nav.flex-column > li:last-of-type {
  border-bottom: none;
}

.card.height-control .card-body {
  max-height: 300px;
  overflow: auto;
}

.card .border-right {
  border-right: 1px solid rgba(0, 0, 0, 0.125);
}

.card .border-left {
  border-left: 1px solid rgba(0, 0, 0, 0.125);
}

16402 16403 16404 16405
html.maximized-card {
  overflow: hidden;
}

A
Abdullah Almsaeed 已提交
16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416
.card-header::after,
.card-body::after,
.card-footer::after {
  display: block;
  clear: both;
  content: "";
}

.card-header {
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
16417
  position: relative;
A
Abdullah Almsaeed 已提交
16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.collapsed-card .card-header {
  border-bottom: none;
}

.card-header > .card-tools {
  position: absolute;
  right: 1rem;
  top: .5rem;
}

16432
.card-header > .card-tools [data-toggle='tooltip'] {
A
Abdullah Almsaeed 已提交
16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444
  position: relative;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}

.btn-tool {
  background: transparent;
  color: #adb5bd;
16445 16446
  font-size: 0.875rem;
  padding: .25rem .5rem;
A
Abdullah Almsaeed 已提交
16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489
}

.btn-group.show .btn-tool, .btn-tool:hover {
  color: #495057;
}

.show .btn-tool, .btn-tool:focus {
  box-shadow: none !important;
}

.card-body > .table {
  margin-bottom: 0;
}

.card-body > .table > thead > tr > th,
.card-body > .table > thead > tr > td {
  border-top-width: 0;
}

.card-body .fc {
  margin-top: 5px;
}

.card-body .full-width-chart {
  margin: -19px;
}

.card-body.p-0 .full-width-chart {
  margin: -9px;
}

.chart-legend {
  margin: 10px 0;
}

@media (max-width: 576px) {
  .chart-legend > li {
    float: left;
    margin-right: 10px;
  }
}

.card-comments {
16490
  background: #f8f9fa;
A
Abdullah Almsaeed 已提交
16491 16492 16493
}

.card-comments .card-comment {
16494
  border-bottom: 1px solid #e9ecef;
A
Abdullah Almsaeed 已提交
16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516
  padding: 8px 0;
}

.card-comments .card-comment::after {
  display: block;
  clear: both;
  content: "";
}

.card-comments .card-comment:last-of-type {
  border-bottom: 0;
}

.card-comments .card-comment:first-of-type {
  padding-top: 0;
}

.card-comments .card-comment img {
  float: left;
}

.card-comments .comment-text {
16517
  color: #78838e;
A
Abdullah Almsaeed 已提交
16518 16519 16520 16521
  margin-left: 40px;
}

.card-comments .username {
16522
  color: #495057;
A
Abdullah Almsaeed 已提交
16523 16524 16525 16526 16527 16528
  display: block;
  font-weight: 600;
}

.card-comments .text-muted {
  font-size: 12px;
16529
  font-weight: 400;
A
Abdullah Almsaeed 已提交
16530 16531 16532 16533
}

.todo-list {
  list-style: none;
16534
  margin: 0;
A
Abdullah Almsaeed 已提交
16535
  overflow: auto;
16536
  padding: 0;
A
Abdullah Almsaeed 已提交
16537 16538 16539 16540
}

.todo-list > li {
  border-radius: 2px;
16541 16542 16543
  background: #f8f9fa;
  border-left: 2px solid #e9ecef;
  color: #495057;
A
Abdullah Almsaeed 已提交
16544
  margin-bottom: 2px;
16545
  padding: 10px;
A
Abdullah Almsaeed 已提交
16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558
}

.todo-list > li:last-of-type {
  margin-bottom: 0;
}

.todo-list > li > input[type='checkbox'] {
  margin: 0 10px 0 5px;
}

.todo-list > li .text {
  display: inline-block;
  font-weight: 600;
16559
  margin-left: 5px;
A
Abdullah Almsaeed 已提交
16560 16561 16562 16563
}

.todo-list > li .label {
  font-size: 9px;
16564
  margin-left: 10px;
A
Abdullah Almsaeed 已提交
16565 16566 16567
}

.todo-list > li .tools {
16568
  color: #dc3545;
A
Abdullah Almsaeed 已提交
16569 16570 16571 16572
  display: none;
  float: right;
}

R
REJack 已提交
16573 16574 16575 16576 16577 16578
.todo-list > li .tools > .fa,
.todo-list > li .tools > .fas,
.todo-list > li .tools > .far,
.todo-list > li .tools > .fab,
.todo-list > li .tools > .glyphicon,
.todo-list > li .tools > .ion {
A
Abdullah Almsaeed 已提交
16579
  cursor: pointer;
16580
  margin-right: 5px;
A
Abdullah Almsaeed 已提交
16581 16582 16583 16584 16585 16586 16587
}

.todo-list > li:hover .tools {
  display: inline-block;
}

.todo-list > li.done {
16588
  color: #697582;
A
Abdullah Almsaeed 已提交
16589 16590 16591 16592
}

.todo-list > li.done .text {
  font-weight: 500;
16593
  text-decoration: line-through;
A
Abdullah Almsaeed 已提交
16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621
}

.todo-list > li.done .label {
  background: #adb5bd !important;
}

.todo-list .danger {
  border-left-color: #dc3545;
}

.todo-list .warning {
  border-left-color: #ffc107;
}

.todo-list .info {
  border-left-color: #17a2b8;
}

.todo-list .success {
  border-left-color: #28a745;
}

.todo-list .primary {
  border-left-color: #007bff;
}

.todo-list .handle {
  cursor: move;
16622
  display: inline-block;
A
Abdullah Almsaeed 已提交
16623 16624 16625 16626 16627 16628
  margin: 0 5px;
}

.card-input {
  max-width: 200px;
}
A
Abdullah Almsaeed 已提交
16629

A
Abdullah Almsaeed 已提交
16630 16631
.card-primary:not(.card-outline) .card-header {
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
16632
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643
}

.card-primary:not(.card-outline) .card-header,
.card-primary:not(.card-outline) .card-header a {
  color: #ffffff;
}

.card-primary.card-outline {
  border-top: 3px solid #007bff;
}

A
Abdullah Almsaeed 已提交
16644
.bg-primary .btn-tool, .label-primary .btn-tool,
A
Abdullah Almsaeed 已提交
16645 16646 16647 16648 16649
.bg-primary-gradient .btn-tool,
.card-primary:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

A
Abdullah Almsaeed 已提交
16650
.bg-primary .btn-tool:hover, .label-primary .btn-tool:hover,
A
Abdullah Almsaeed 已提交
16651 16652 16653 16654 16655
.bg-primary-gradient .btn-tool:hover,
.card-primary:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}

R
REJack 已提交
16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690
.card.bg-primary .bootstrap-datetimepicker-widget .table td, .card.label-primary .bootstrap-datetimepicker-widget .table td,
.card.bg-primary .bootstrap-datetimepicker-widget .table th,
.card.label-primary .bootstrap-datetimepicker-widget .table th,
.card.bg-primary-gradient .bootstrap-datetimepicker-widget .table td,
.card.bg-primary-gradient .bootstrap-datetimepicker-widget .table th {
  border: none;
}

.card.bg-primary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.label-primary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-primary .bootstrap-datetimepicker-widget table td.day:hover,
.card.label-primary .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-primary .bootstrap-datetimepicker-widget table td.hour:hover,
.card.label-primary .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-primary .bootstrap-datetimepicker-widget table td.minute:hover,
.card.label-primary .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-primary .bootstrap-datetimepicker-widget table td.second:hover,
.card.label-primary .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-primary-gradient .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-primary-gradient .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-primary-gradient .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-primary-gradient .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-primary-gradient .bootstrap-datetimepicker-widget table td.second:hover {
  background: #0067d6;
  color: #ffffff;
}

.card.bg-primary .bootstrap-datetimepicker-widget table td.active, .card.label-primary .bootstrap-datetimepicker-widget table td.active,
.card.bg-primary .bootstrap-datetimepicker-widget table td.active:hover,
.card.label-primary .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-primary-gradient .bootstrap-datetimepicker-widget table td.active,
.card.bg-primary-gradient .bootstrap-datetimepicker-widget table td.active:hover {
  background: #3395ff;
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
16691 16692
.card-secondary:not(.card-outline) .card-header {
  background-color: #6c757d;
A
Abdullah Almsaeed 已提交
16693
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716
}

.card-secondary:not(.card-outline) .card-header,
.card-secondary:not(.card-outline) .card-header a {
  color: #ffffff;
}

.card-secondary.card-outline {
  border-top: 3px solid #6c757d;
}

.bg-secondary .btn-tool,
.bg-secondary-gradient .btn-tool,
.card-secondary:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

.bg-secondary .btn-tool:hover,
.bg-secondary-gradient .btn-tool:hover,
.card-secondary:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}

R
REJack 已提交
16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745
.card.bg-secondary .bootstrap-datetimepicker-widget .table td,
.card.bg-secondary .bootstrap-datetimepicker-widget .table th,
.card.bg-secondary-gradient .bootstrap-datetimepicker-widget .table td,
.card.bg-secondary-gradient .bootstrap-datetimepicker-widget .table th {
  border: none;
}

.card.bg-secondary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-secondary-gradient .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-secondary-gradient .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-secondary-gradient .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-secondary-gradient .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-secondary-gradient .bootstrap-datetimepicker-widget table td.second:hover {
  background: #596167;
  color: #ffffff;
}

.card.bg-secondary .bootstrap-datetimepicker-widget table td.active,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-secondary-gradient .bootstrap-datetimepicker-widget table td.active,
.card.bg-secondary-gradient .bootstrap-datetimepicker-widget table td.active:hover {
  background: #868e96;
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
16746 16747
.card-success:not(.card-outline) .card-header {
  background-color: #28a745;
A
Abdullah Almsaeed 已提交
16748
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759
}

.card-success:not(.card-outline) .card-header,
.card-success:not(.card-outline) .card-header a {
  color: #ffffff;
}

.card-success.card-outline {
  border-top: 3px solid #28a745;
}

A
Abdullah Almsaeed 已提交
16760
.bg-success .btn-tool, .alert-success .btn-tool, .label-success .btn-tool,
A
Abdullah Almsaeed 已提交
16761 16762 16763 16764 16765
.bg-success-gradient .btn-tool,
.card-success:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

A
Abdullah Almsaeed 已提交
16766
.bg-success .btn-tool:hover, .alert-success .btn-tool:hover, .label-success .btn-tool:hover,
A
Abdullah Almsaeed 已提交
16767 16768 16769 16770 16771
.bg-success-gradient .btn-tool:hover,
.card-success:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}

R
REJack 已提交
16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812
.card.bg-success .bootstrap-datetimepicker-widget .table td, .card.alert-success .bootstrap-datetimepicker-widget .table td, .card.label-success .bootstrap-datetimepicker-widget .table td,
.card.bg-success .bootstrap-datetimepicker-widget .table th,
.card.alert-success .bootstrap-datetimepicker-widget .table th,
.card.label-success .bootstrap-datetimepicker-widget .table th,
.card.bg-success-gradient .bootstrap-datetimepicker-widget .table td,
.card.bg-success-gradient .bootstrap-datetimepicker-widget .table th {
  border: none;
}

.card.bg-success .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.alert-success .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.label-success .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-success .bootstrap-datetimepicker-widget table td.day:hover,
.card.alert-success .bootstrap-datetimepicker-widget table td.day:hover,
.card.label-success .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-success .bootstrap-datetimepicker-widget table td.hour:hover,
.card.alert-success .bootstrap-datetimepicker-widget table td.hour:hover,
.card.label-success .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-success .bootstrap-datetimepicker-widget table td.minute:hover,
.card.alert-success .bootstrap-datetimepicker-widget table td.minute:hover,
.card.label-success .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-success .bootstrap-datetimepicker-widget table td.second:hover,
.card.alert-success .bootstrap-datetimepicker-widget table td.second:hover,
.card.label-success .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-success-gradient .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-success-gradient .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-success-gradient .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-success-gradient .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-success-gradient .bootstrap-datetimepicker-widget table td.second:hover {
  background: #208637;
  color: #ffffff;
}

.card.bg-success .bootstrap-datetimepicker-widget table td.active, .card.alert-success .bootstrap-datetimepicker-widget table td.active, .card.label-success .bootstrap-datetimepicker-widget table td.active,
.card.bg-success .bootstrap-datetimepicker-widget table td.active:hover,
.card.alert-success .bootstrap-datetimepicker-widget table td.active:hover,
.card.label-success .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-success-gradient .bootstrap-datetimepicker-widget table td.active,
.card.bg-success-gradient .bootstrap-datetimepicker-widget table td.active:hover {
  background: #34ce57;
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
16813 16814
.card-info:not(.card-outline) .card-header {
  background-color: #17a2b8;
A
Abdullah Almsaeed 已提交
16815
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826
}

.card-info:not(.card-outline) .card-header,
.card-info:not(.card-outline) .card-header a {
  color: #ffffff;
}

.card-info.card-outline {
  border-top: 3px solid #17a2b8;
}

A
Abdullah Almsaeed 已提交
16827
.bg-info .btn-tool, .alert-info .btn-tool, .label-info .btn-tool,
A
Abdullah Almsaeed 已提交
16828 16829 16830 16831 16832
.bg-info-gradient .btn-tool,
.card-info:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

A
Abdullah Almsaeed 已提交
16833
.bg-info .btn-tool:hover, .alert-info .btn-tool:hover, .label-info .btn-tool:hover,
A
Abdullah Almsaeed 已提交
16834 16835 16836 16837 16838
.bg-info-gradient .btn-tool:hover,
.card-info:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}

R
REJack 已提交
16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879
.card.bg-info .bootstrap-datetimepicker-widget .table td, .card.alert-info .bootstrap-datetimepicker-widget .table td, .card.label-info .bootstrap-datetimepicker-widget .table td,
.card.bg-info .bootstrap-datetimepicker-widget .table th,
.card.alert-info .bootstrap-datetimepicker-widget .table th,
.card.label-info .bootstrap-datetimepicker-widget .table th,
.card.bg-info-gradient .bootstrap-datetimepicker-widget .table td,
.card.bg-info-gradient .bootstrap-datetimepicker-widget .table th {
  border: none;
}

.card.bg-info .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.alert-info .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.label-info .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-info .bootstrap-datetimepicker-widget table td.day:hover,
.card.alert-info .bootstrap-datetimepicker-widget table td.day:hover,
.card.label-info .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-info .bootstrap-datetimepicker-widget table td.hour:hover,
.card.alert-info .bootstrap-datetimepicker-widget table td.hour:hover,
.card.label-info .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-info .bootstrap-datetimepicker-widget table td.minute:hover,
.card.alert-info .bootstrap-datetimepicker-widget table td.minute:hover,
.card.label-info .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-info .bootstrap-datetimepicker-widget table td.second:hover,
.card.alert-info .bootstrap-datetimepicker-widget table td.second:hover,
.card.label-info .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-info-gradient .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-info-gradient .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-info-gradient .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-info-gradient .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-info-gradient .bootstrap-datetimepicker-widget table td.second:hover {
  background: #128294;
  color: #ffffff;
}

.card.bg-info .bootstrap-datetimepicker-widget table td.active, .card.alert-info .bootstrap-datetimepicker-widget table td.active, .card.label-info .bootstrap-datetimepicker-widget table td.active,
.card.bg-info .bootstrap-datetimepicker-widget table td.active:hover,
.card.alert-info .bootstrap-datetimepicker-widget table td.active:hover,
.card.label-info .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-info-gradient .bootstrap-datetimepicker-widget table td.active,
.card.bg-info-gradient .bootstrap-datetimepicker-widget table td.active:hover {
  background: #1fc8e3;
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
16880 16881
.card-warning:not(.card-outline) .card-header {
  background-color: #ffc107;
A
Abdullah Almsaeed 已提交
16882
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893
}

.card-warning:not(.card-outline) .card-header,
.card-warning:not(.card-outline) .card-header a {
  color: #1F2D3D;
}

.card-warning.card-outline {
  border-top: 3px solid #ffc107;
}

A
Abdullah Almsaeed 已提交
16894
.bg-warning .btn-tool, .alert-warning .btn-tool, .label-warning .btn-tool,
A
Abdullah Almsaeed 已提交
16895 16896 16897 16898 16899
.bg-warning-gradient .btn-tool,
.card-warning:not(.card-outline) .btn-tool {
  color: rgba(31, 45, 61, 0.8);
}

A
Abdullah Almsaeed 已提交
16900
.bg-warning .btn-tool:hover, .alert-warning .btn-tool:hover, .label-warning .btn-tool:hover,
A
Abdullah Almsaeed 已提交
16901 16902 16903 16904 16905
.bg-warning-gradient .btn-tool:hover,
.card-warning:not(.card-outline) .btn-tool:hover {
  color: #1F2D3D;
}

R
REJack 已提交
16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946
.card.bg-warning .bootstrap-datetimepicker-widget .table td, .card.alert-warning .bootstrap-datetimepicker-widget .table td, .card.label-warning .bootstrap-datetimepicker-widget .table td,
.card.bg-warning .bootstrap-datetimepicker-widget .table th,
.card.alert-warning .bootstrap-datetimepicker-widget .table th,
.card.label-warning .bootstrap-datetimepicker-widget .table th,
.card.bg-warning-gradient .bootstrap-datetimepicker-widget .table td,
.card.bg-warning-gradient .bootstrap-datetimepicker-widget .table th {
  border: none;
}

.card.bg-warning .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.alert-warning .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.label-warning .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-warning .bootstrap-datetimepicker-widget table td.day:hover,
.card.alert-warning .bootstrap-datetimepicker-widget table td.day:hover,
.card.label-warning .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-warning .bootstrap-datetimepicker-widget table td.hour:hover,
.card.alert-warning .bootstrap-datetimepicker-widget table td.hour:hover,
.card.label-warning .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-warning .bootstrap-datetimepicker-widget table td.minute:hover,
.card.alert-warning .bootstrap-datetimepicker-widget table td.minute:hover,
.card.label-warning .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-warning .bootstrap-datetimepicker-widget table td.second:hover,
.card.alert-warning .bootstrap-datetimepicker-widget table td.second:hover,
.card.label-warning .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-warning-gradient .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-warning-gradient .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-warning-gradient .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-warning-gradient .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-warning-gradient .bootstrap-datetimepicker-widget table td.second:hover {
  background: #dda600;
  color: #1F2D3D;
}

.card.bg-warning .bootstrap-datetimepicker-widget table td.active, .card.alert-warning .bootstrap-datetimepicker-widget table td.active, .card.label-warning .bootstrap-datetimepicker-widget table td.active,
.card.bg-warning .bootstrap-datetimepicker-widget table td.active:hover,
.card.alert-warning .bootstrap-datetimepicker-widget table td.active:hover,
.card.label-warning .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-warning-gradient .bootstrap-datetimepicker-widget table td.active,
.card.bg-warning-gradient .bootstrap-datetimepicker-widget table td.active:hover {
  background: #ffce3a;
  color: #1F2D3D;
}

A
Abdullah Almsaeed 已提交
16947 16948
.card-danger:not(.card-outline) .card-header {
  background-color: #dc3545;
A
Abdullah Almsaeed 已提交
16949
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960
}

.card-danger:not(.card-outline) .card-header,
.card-danger:not(.card-outline) .card-header a {
  color: #ffffff;
}

.card-danger.card-outline {
  border-top: 3px solid #dc3545;
}

A
Abdullah Almsaeed 已提交
16961
.bg-danger .btn-tool, .alert-danger .btn-tool, .alert-error .btn-tool, .label-danger .btn-tool,
A
Abdullah Almsaeed 已提交
16962 16963 16964 16965 16966
.bg-danger-gradient .btn-tool,
.card-danger:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

A
Abdullah Almsaeed 已提交
16967
.bg-danger .btn-tool:hover, .alert-danger .btn-tool:hover, .alert-error .btn-tool:hover, .label-danger .btn-tool:hover,
A
Abdullah Almsaeed 已提交
16968 16969 16970 16971 16972
.bg-danger-gradient .btn-tool:hover,
.card-danger:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}

R
REJack 已提交
16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019
.card.bg-danger .bootstrap-datetimepicker-widget .table td, .card.alert-danger .bootstrap-datetimepicker-widget .table td, .card.alert-error .bootstrap-datetimepicker-widget .table td, .card.label-danger .bootstrap-datetimepicker-widget .table td,
.card.bg-danger .bootstrap-datetimepicker-widget .table th,
.card.alert-danger .bootstrap-datetimepicker-widget .table th,
.card.alert-error .bootstrap-datetimepicker-widget .table th,
.card.label-danger .bootstrap-datetimepicker-widget .table th,
.card.bg-danger-gradient .bootstrap-datetimepicker-widget .table td,
.card.bg-danger-gradient .bootstrap-datetimepicker-widget .table th {
  border: none;
}

.card.bg-danger .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.alert-danger .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.alert-error .bootstrap-datetimepicker-widget table thead tr:first-child th:hover, .card.label-danger .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-danger .bootstrap-datetimepicker-widget table td.day:hover,
.card.alert-danger .bootstrap-datetimepicker-widget table td.day:hover,
.card.alert-error .bootstrap-datetimepicker-widget table td.day:hover,
.card.label-danger .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-danger .bootstrap-datetimepicker-widget table td.hour:hover,
.card.alert-danger .bootstrap-datetimepicker-widget table td.hour:hover,
.card.alert-error .bootstrap-datetimepicker-widget table td.hour:hover,
.card.label-danger .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-danger .bootstrap-datetimepicker-widget table td.minute:hover,
.card.alert-danger .bootstrap-datetimepicker-widget table td.minute:hover,
.card.alert-error .bootstrap-datetimepicker-widget table td.minute:hover,
.card.label-danger .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-danger .bootstrap-datetimepicker-widget table td.second:hover,
.card.alert-danger .bootstrap-datetimepicker-widget table td.second:hover,
.card.alert-error .bootstrap-datetimepicker-widget table td.second:hover,
.card.label-danger .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-danger-gradient .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-danger-gradient .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-danger-gradient .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-danger-gradient .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-danger-gradient .bootstrap-datetimepicker-widget table td.second:hover {
  background: #c62232;
  color: #ffffff;
}

.card.bg-danger .bootstrap-datetimepicker-widget table td.active, .card.alert-danger .bootstrap-datetimepicker-widget table td.active, .card.alert-error .bootstrap-datetimepicker-widget table td.active, .card.label-danger .bootstrap-datetimepicker-widget table td.active,
.card.bg-danger .bootstrap-datetimepicker-widget table td.active:hover,
.card.alert-danger .bootstrap-datetimepicker-widget table td.active:hover,
.card.alert-error .bootstrap-datetimepicker-widget table td.active:hover,
.card.label-danger .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-danger-gradient .bootstrap-datetimepicker-widget table td.active,
.card.bg-danger-gradient .bootstrap-datetimepicker-widget table td.active:hover {
  background: #e4606d;
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
17020 17021
.card-light:not(.card-outline) .card-header {
  background-color: #f8f9fa;
A
Abdullah Almsaeed 已提交
17022
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045
}

.card-light:not(.card-outline) .card-header,
.card-light:not(.card-outline) .card-header a {
  color: #1F2D3D;
}

.card-light.card-outline {
  border-top: 3px solid #f8f9fa;
}

.bg-light .btn-tool,
.bg-light-gradient .btn-tool,
.card-light:not(.card-outline) .btn-tool {
  color: rgba(31, 45, 61, 0.8);
}

.bg-light .btn-tool:hover,
.bg-light-gradient .btn-tool:hover,
.card-light:not(.card-outline) .btn-tool:hover {
  color: #1F2D3D;
}

R
REJack 已提交
17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074
.card.bg-light .bootstrap-datetimepicker-widget .table td,
.card.bg-light .bootstrap-datetimepicker-widget .table th,
.card.bg-light-gradient .bootstrap-datetimepicker-widget .table td,
.card.bg-light-gradient .bootstrap-datetimepicker-widget .table th {
  border: none;
}

.card.bg-light .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-light .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-light .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-light .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-light .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-light-gradient .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-light-gradient .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-light-gradient .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-light-gradient .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-light-gradient .bootstrap-datetimepicker-widget table td.second:hover {
  background: #e0e5e9;
  color: #1F2D3D;
}

.card.bg-light .bootstrap-datetimepicker-widget table td.active,
.card.bg-light .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-light-gradient .bootstrap-datetimepicker-widget table td.active,
.card.bg-light-gradient .bootstrap-datetimepicker-widget table td.active:hover {
  background: white;
  color: #1F2D3D;
}

A
Abdullah Almsaeed 已提交
17075 17076
.card-dark:not(.card-outline) .card-header {
  background-color: #343a40;
A
Abdullah Almsaeed 已提交
17077
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
17078
}
A
Abdullah Almsaeed 已提交
17079

A
Abdullah Almsaeed 已提交
17080 17081 17082 17083
.card-dark:not(.card-outline) .card-header,
.card-dark:not(.card-outline) .card-header a {
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
17084

A
Abdullah Almsaeed 已提交
17085 17086 17087
.card-dark.card-outline {
  border-top: 3px solid #343a40;
}
A
Abdullah Almsaeed 已提交
17088

A
Abdullah Almsaeed 已提交
17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099
.bg-dark .btn-tool,
.bg-dark-gradient .btn-tool,
.card-dark:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

.bg-dark .btn-tool:hover,
.bg-dark-gradient .btn-tool:hover,
.card-dark:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
17100

R
REJack 已提交
17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129
.card.bg-dark .bootstrap-datetimepicker-widget .table td,
.card.bg-dark .bootstrap-datetimepicker-widget .table th,
.card.bg-dark-gradient .bootstrap-datetimepicker-widget .table td,
.card.bg-dark-gradient .bootstrap-datetimepicker-widget .table th {
  border: none;
}

.card.bg-dark .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-dark .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-dark .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-dark .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-dark .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-dark-gradient .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-dark-gradient .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-dark-gradient .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-dark-gradient .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-dark-gradient .bootstrap-datetimepicker-widget table td.second:hover {
  background: #222629;
  color: #ffffff;
}

.card.bg-dark .bootstrap-datetimepicker-widget table td.active,
.card.bg-dark .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-dark-gradient .bootstrap-datetimepicker-widget table td.active,
.card.bg-dark-gradient .bootstrap-datetimepicker-widget table td.active:hover {
  background: #4b545c;
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
17130 17131 17132 17133 17134
/*
 * Component: Info Box
 * -------------------
 */
.info-box {
A
Abdullah Almsaeed 已提交
17135 17136
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
17137
  background: #ffffff;
17138 17139
  min-height: 80px;
  padding: .5rem;
A
Abdullah Almsaeed 已提交
17140 17141 17142 17143 17144
}

.info-box .progress {
  background-color: rgba(0, 0, 0, 0.125);
  height: 2px;
17145
  margin: 5px 0;
A
Abdullah Almsaeed 已提交
17146 17147 17148 17149 17150
}

.info-box .progress .progress-bar {
  background-color: #ffffff;
}
A
Abdullah Almsaeed 已提交
17151

17152
.info-box .info-box-icon {
A
Abdullah Almsaeed 已提交
17153
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
17154
  display: block;
17155
  font-size: 1.875rem;
17156 17157
  text-align: center;
  width: 70px;
A
Abdullah Almsaeed 已提交
17158 17159
}

17160
.info-box .info-box-icon > img {
A
Abdullah Almsaeed 已提交
17161 17162
  max-width: 100%;
}
A
Abdullah Almsaeed 已提交
17163

17164
.info-box .info-box-content {
17165
  -ms-flex: 1;
A
Abdullah Almsaeed 已提交
17166
  flex: 1;
17167
  padding: 5px 10px;
A
Abdullah Almsaeed 已提交
17168
}
A
Abdullah Almsaeed 已提交
17169

17170
.info-box .info-box-number {
A
Abdullah Almsaeed 已提交
17171
  display: block;
A
Abdullah Almsaeed 已提交
17172 17173
  font-weight: 700;
}
A
Abdullah Almsaeed 已提交
17174

17175 17176
.info-box .progress-description,
.info-box .info-box-text {
A
Abdullah Almsaeed 已提交
17177 17178
  display: block;
  overflow: hidden;
A
Abdullah Almsaeed 已提交
17179
  text-overflow: ellipsis;
17180
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
17181 17182
}

17183 17184
.info-box .info-box .bg-primary, .info-box .info-box .label-primary,
.info-box .info-box .bg-gradient-primary {
A
Abdullah Almsaeed 已提交
17185 17186 17187
  color: #ffffff;
}

17188 17189
.info-box .info-box .bg-primary .progress-bar, .info-box .info-box .label-primary .progress-bar,
.info-box .info-box .bg-gradient-primary .progress-bar {
A
Abdullah Almsaeed 已提交
17190 17191 17192
  background-color: #ffffff;
}

17193 17194
.info-box .info-box .bg-secondary,
.info-box .info-box .bg-gradient-secondary {
A
Abdullah Almsaeed 已提交
17195 17196 17197
  color: #ffffff;
}

17198 17199
.info-box .info-box .bg-secondary .progress-bar,
.info-box .info-box .bg-gradient-secondary .progress-bar {
A
Abdullah Almsaeed 已提交
17200 17201 17202
  background-color: #ffffff;
}

17203 17204
.info-box .info-box .bg-success, .info-box .info-box .alert-success, .info-box .info-box .label-success,
.info-box .info-box .bg-gradient-success {
A
Abdullah Almsaeed 已提交
17205 17206 17207
  color: #ffffff;
}

17208 17209
.info-box .info-box .bg-success .progress-bar, .info-box .info-box .alert-success .progress-bar, .info-box .info-box .label-success .progress-bar,
.info-box .info-box .bg-gradient-success .progress-bar {
A
Abdullah Almsaeed 已提交
17210 17211 17212
  background-color: #ffffff;
}

17213 17214
.info-box .info-box .bg-info, .info-box .info-box .alert-info, .info-box .info-box .label-info,
.info-box .info-box .bg-gradient-info {
A
Abdullah Almsaeed 已提交
17215 17216 17217
  color: #ffffff;
}

17218 17219
.info-box .info-box .bg-info .progress-bar, .info-box .info-box .alert-info .progress-bar, .info-box .info-box .label-info .progress-bar,
.info-box .info-box .bg-gradient-info .progress-bar {
A
Abdullah Almsaeed 已提交
17220 17221 17222
  background-color: #ffffff;
}

17223 17224
.info-box .info-box .bg-warning, .info-box .info-box .alert-warning, .info-box .info-box .label-warning,
.info-box .info-box .bg-gradient-warning {
A
Abdullah Almsaeed 已提交
17225 17226 17227
  color: #1F2D3D;
}

17228 17229
.info-box .info-box .bg-warning .progress-bar, .info-box .info-box .alert-warning .progress-bar, .info-box .info-box .label-warning .progress-bar,
.info-box .info-box .bg-gradient-warning .progress-bar {
A
Abdullah Almsaeed 已提交
17230 17231 17232
  background-color: #1F2D3D;
}

17233 17234 17235
.info-box .info-box .bg-danger, .info-box .info-box .alert-danger,
.info-box .info-box .alert-error, .info-box .info-box .label-danger,
.info-box .info-box .bg-gradient-danger {
A
Abdullah Almsaeed 已提交
17236 17237 17238
  color: #ffffff;
}

17239 17240
.info-box .info-box .bg-danger .progress-bar, .info-box .info-box .alert-danger .progress-bar, .info-box .info-box .alert-error .progress-bar, .info-box .info-box .label-danger .progress-bar,
.info-box .info-box .bg-gradient-danger .progress-bar {
A
Abdullah Almsaeed 已提交
17241 17242 17243
  background-color: #ffffff;
}

17244 17245
.info-box .info-box .bg-light,
.info-box .info-box .bg-gradient-light {
A
Abdullah Almsaeed 已提交
17246 17247 17248
  color: #1F2D3D;
}

17249 17250
.info-box .info-box .bg-light .progress-bar,
.info-box .info-box .bg-gradient-light .progress-bar {
A
Abdullah Almsaeed 已提交
17251 17252 17253
  background-color: #1F2D3D;
}

17254 17255
.info-box .info-box .bg-dark,
.info-box .info-box .bg-gradient-dark {
A
Abdullah Almsaeed 已提交
17256 17257 17258
  color: #ffffff;
}

17259 17260
.info-box .info-box .bg-dark .progress-bar,
.info-box .info-box .bg-gradient-dark .progress-bar {
A
Abdullah Almsaeed 已提交
17261 17262
  background-color: #ffffff;
}
A
Abdullah Almsaeed 已提交
17263

17264
.info-box .info-box-more {
A
Abdullah Almsaeed 已提交
17265 17266
  display: block;
}
A
Abdullah Almsaeed 已提交
17267

17268
.info-box .progress-description {
A
Abdullah Almsaeed 已提交
17269 17270
  margin: 0;
}
A
Abdullah Almsaeed 已提交
17271

17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314
@media (min-width: 768px) {
  .col-xl-2 .info-box .progress-description,
  .col-lg-2 .info-box .progress-description,
  .col-md-2 .info-box .progress-description {
    display: none;
  }
  .col-xl-3 .info-box .progress-description,
  .col-lg-3 .info-box .progress-description,
  .col-md-3 .info-box .progress-description {
    display: none;
  }
}

@media (min-width: 992px) {
  .col-xl-2 .info-box .progress-description,
  .col-lg-2 .info-box .progress-description,
  .col-md-2 .info-box .progress-description {
    font-size: 0.75rem;
    display: block;
  }
  .col-xl-3 .info-box .progress-description,
  .col-lg-3 .info-box .progress-description,
  .col-md-3 .info-box .progress-description {
    font-size: 0.75rem;
    display: block;
  }
}

@media (min-width: 1200px) {
  .col-xl-2 .info-box .progress-description,
  .col-lg-2 .info-box .progress-description,
  .col-md-2 .info-box .progress-description {
    font-size: 1rem;
    display: block;
  }
  .col-xl-3 .info-box .progress-description,
  .col-lg-3 .info-box .progress-description,
  .col-md-3 .info-box .progress-description {
    font-size: 1rem;
    display: block;
  }
}

A
Abdullah Almsaeed 已提交
17315 17316 17317 17318 17319
/*
 * Component: Timeline
 * -------------------
 */
.timeline {
17320
  list-style: none;
A
Abdullah Almsaeed 已提交
17321 17322
  margin: 0 0 30px 0;
  padding: 0;
17323
  position: relative;
A
Abdullah Almsaeed 已提交
17324 17325
}

17326 17327 17328 17329
.timeline::before {
  border-radius: 0.25rem;
  background: #dee2e6;
  bottom: 0;
A
Abdullah Almsaeed 已提交
17330
  content: '';
17331 17332
  left: 31px;
  margin: 0;
A
Abdullah Almsaeed 已提交
17333 17334 17335 17336 17337 17338 17339
  position: absolute;
  top: 0;
  width: 4px;
}

.timeline > li {
  margin-bottom: 15px;
17340 17341
  margin-right: 10px;
  position: relative;
A
Abdullah Almsaeed 已提交
17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356
}

.timeline > li::after {
  display: block;
  clear: both;
  content: "";
}

.timeline > li > .timeline-item {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background: #ffffff;
  color: #444;
  margin-left: 60px;
  margin-right: 15px;
17357
  margin-top: 0;
A
Abdullah Almsaeed 已提交
17358 17359 17360 17361 17362 17363 17364 17365
  padding: 0;
  position: relative;
}

.timeline > li > .timeline-item > .time {
  color: #999;
  float: right;
  font-size: 12px;
17366
  padding: 10px;
A
Abdullah Almsaeed 已提交
17367 17368 17369 17370
}

.timeline > li > .timeline-item > .timeline-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
17371
  color: #555;
A
Abdullah Almsaeed 已提交
17372 17373
  font-size: 16px;
  line-height: 1.1;
17374 17375
  margin: 0;
  padding: 10px;
A
Abdullah Almsaeed 已提交
17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386
}

.timeline > li > .timeline-item > .timeline-header > a {
  font-weight: 600;
}

.timeline > li > .timeline-item > .timeline-body, .timeline > li > .timeline-item > .timeline-footer {
  padding: 10px;
}

.timeline > li > .fa,
17387 17388 17389
.timeline > li > .fas,
.timeline > li > .far,
.timeline > li > .fab,
A
Abdullah Almsaeed 已提交
17390 17391
.timeline > li > .glyphicon,
.timeline > li > .ion {
17392 17393
  background: #adb5bd;
  border-radius: 50%;
A
Abdullah Almsaeed 已提交
17394
  font-size: 15px;
17395 17396
  height: 30px;
  left: 18px;
A
Abdullah Almsaeed 已提交
17397 17398 17399 17400
  line-height: 30px;
  position: absolute;
  text-align: center;
  top: 0;
17401
  width: 30px;
A
Abdullah Almsaeed 已提交
17402 17403 17404
}

.timeline > .time-label > span {
17405 17406 17407
  border-radius: 4px;
  background-color: #ffffff;
  display: inline-block;
A
Abdullah Almsaeed 已提交
17408 17409 17410
  font-weight: 600;
  padding: 5px;
}
A
Abdullah Almsaeed 已提交
17411

A
Abdullah Almsaeed 已提交
17412
.timeline-inverse > li > .timeline-item {
A
Abdullah Almsaeed 已提交
17413
  box-shadow: none;
17414 17415
  background: #f8f9fa;
  border: 1px solid #dee2e6;
A
Abdullah Almsaeed 已提交
17416 17417 17418
}

.timeline-inverse > li > .timeline-item > .timeline-header {
17419
  border-bottom-color: #dee2e6;
A
Abdullah Almsaeed 已提交
17420
}
A
Abdullah Almsaeed 已提交
17421 17422 17423 17424 17425

/*
 * Component: Button
 * -----------------
 */
A
Abdullah Almsaeed 已提交
17426 17427 17428
.btn.btn-flat {
  border-radius: 0;
  border-width: 1px;
17429
  box-shadow: none;
A
Abdullah Almsaeed 已提交
17430 17431 17432 17433
}

.btn.btn-file {
  overflow: hidden;
17434
  position: relative;
A
Abdullah Almsaeed 已提交
17435 17436 17437
}

.btn.btn-file > input[type='file'] {
17438 17439 17440
  background: #ffffff;
  cursor: inherit;
  display: block;
A
Abdullah Almsaeed 已提交
17441
  font-size: 100px;
17442 17443
  min-height: 100%;
  min-width: 100%;
A
Abdullah Almsaeed 已提交
17444 17445
  opacity: 0;
  outline: none;
17446 17447 17448 17449
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
A
Abdullah Almsaeed 已提交
17450
}
A
Abdullah Almsaeed 已提交
17451 17452 17453

.btn-default {
  background-color: #f4f4f4;
A
Abdullah Almsaeed 已提交
17454
  border-color: #ddd;
17455
  color: #444;
A
Abdullah Almsaeed 已提交
17456
}
A
Abdullah Almsaeed 已提交
17457

A
Abdullah Almsaeed 已提交
17458 17459
.btn-default:hover, .btn-default:active, .btn-default.hover {
  background-color: #e7e7e7;
17460
  color: #2b2b2b;
A
Abdullah Almsaeed 已提交
17461
}
A
Abdullah Almsaeed 已提交
17462 17463 17464

.btn-app {
  border-radius: 3px;
17465 17466 17467 17468 17469
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  color: #6c757d;
  font-size: 12px;
  height: 60px;
A
Abdullah Almsaeed 已提交
17470 17471
  margin: 0 0 10px 10px;
  min-width: 80px;
17472 17473
  padding: 15px 5px;
  position: relative;
A
Abdullah Almsaeed 已提交
17474
  text-align: center;
A
Abdullah Almsaeed 已提交
17475 17476
}

17477
.btn-app > .fa,
R
REJack 已提交
17478 17479 17480
.btn-app > .fas,
.btn-app > .far,
.btn-app > .fab,
17481 17482
.btn-app > .glyphicon,
.btn-app > .ion {
A
Abdullah Almsaeed 已提交
17483
  display: block;
17484
  font-size: 20px;
A
Abdullah Almsaeed 已提交
17485 17486 17487 17488
}

.btn-app:hover {
  background: #f4f4f4;
R
REJack 已提交
17489
  border-color: #aaaaaa;
17490
  color: #444;
A
Abdullah Almsaeed 已提交
17491 17492 17493 17494 17495 17496 17497 17498 17499
}

.btn-app:active, .btn-app:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-app > .badge {
  font-size: 10px;
  font-weight: 400;
17500 17501 17502
  position: absolute;
  right: -10px;
  top: -3px;
A
Abdullah Almsaeed 已提交
17503
}
A
Abdullah Almsaeed 已提交
17504 17505 17506 17507 17508 17509

/*
 * Component: Callout
 * ------------------
 */
.callout {
A
Abdullah Almsaeed 已提交
17510 17511
  border-radius: 0.25rem;
  background-color: #ffffff;
17512
  border-left: 5px solid #e9ecef;
A
Abdullah Almsaeed 已提交
17513 17514 17515 17516 17517 17518 17519 17520 17521
  padding: .5rem 1rem .5rem .5rem;
}

.callout a {
  color: #ffffff;
  text-decoration: underline;
}

.callout a:hover {
17522
  color: #e9ecef;
A
Abdullah Almsaeed 已提交
17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout.callout-danger {
  border-left-color: #bd2130;
}

.callout.callout-warning {
  border-left-color: #d39e00;
}

.callout.callout-info {
  border-left-color: #117a8b;
}

.callout.callout-success {
  border-left-color: #1e7e34;
}
A
Abdullah Almsaeed 已提交
17544 17545

/*
17546
 * Component: Alert
A
Abdullah Almsaeed 已提交
17547 17548
 * ----------------
 */
A
Abdullah Almsaeed 已提交
17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565
.alert .icon {
  margin-right: 10px;
}

.alert .close, .alert .mailbox-attachment-close {
  color: #000;
  opacity: .2;
}

.alert .close:hover, .alert .mailbox-attachment-close:hover {
  opacity: .5;
}

.alert a {
  color: #ffffff;
  text-decoration: underline;
}
A
Abdullah Almsaeed 已提交
17566 17567

.alert-success {
A
Abdullah Almsaeed 已提交
17568 17569
  border-color: #23923d;
}
A
Abdullah Almsaeed 已提交
17570 17571 17572

.alert-danger,
.alert-error {
A
Abdullah Almsaeed 已提交
17573 17574
  border-color: #d32535;
}
A
Abdullah Almsaeed 已提交
17575 17576

.alert-warning {
A
Abdullah Almsaeed 已提交
17577 17578
  border-color: #edb100;
}
A
Abdullah Almsaeed 已提交
17579 17580

.alert-info {
A
Abdullah Almsaeed 已提交
17581 17582
  border-color: #148ea1;
}
A
Abdullah Almsaeed 已提交
17583 17584 17585 17586 17587

/*
 * Component: Nav
 * --------------
 */
A
Abdullah Almsaeed 已提交
17588 17589 17590 17591
.nav-pills .nav-link {
  color: #6c757d;
}

R
REJack 已提交
17592
.nav-pills .nav-link:not(.active):hover {
A
Abdullah Almsaeed 已提交
17593 17594 17595
  color: #007bff;
}

R
REJack 已提交
17596 17597 17598 17599
.nav-pills .nav-item.dropdown.show .nav-link:hover {
  color: #ffffff;
}

R
REJack 已提交
17600 17601
.nav-tabs.flex-column {
  border-bottom: 0;
17602
  border-right: 1px solid #dee2e6;
R
REJack 已提交
17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619
}

.nav-tabs.flex-column .nav-link {
  margin-right: -1px;
}

.nav-tabs.flex-column .nav-link:hover, .nav-tabs.flex-column .nav-link:focus {
  border-color: #e9ecef #dee2e6 #e9ecef #e9ecef;
}

.nav-tabs.flex-column .nav-link.active,
.nav-tabs.flex-column .nav-item.show .nav-link {
  border-color: #dee2e6 #ffffff #dee2e6 #dee2e6;
}

.nav-tabs.flex-column.nav-tabs-right {
  border-left: 1px solid #dee2e6;
17620
  border-right: 0;
R
REJack 已提交
17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635
}

.nav-tabs.flex-column.nav-tabs-right .nav-link {
  margin-left: -1px;
}

.nav-tabs.flex-column.nav-tabs-right .nav-link:hover, .nav-tabs.flex-column.nav-tabs-right .nav-link:focus {
  border-color: #e9ecef #e9ecef #e9ecef #dee2e6;
}

.nav-tabs.flex-column.nav-tabs-right .nav-link.active,
.nav-tabs.flex-column.nav-tabs-right .nav-item.show .nav-link {
  border-color: #dee2e6 #dee2e6 #dee2e6 #ffffff;
}

R
REJack 已提交
17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719
.navbar-light {
  background-color: #f8f9fa;
}

.navbar-dark {
  background-color: #343a40;
}

.navbar-primary {
  background-color: #007bff;
}

.navbar-secondary {
  background-color: #6c757d;
}

.navbar-success {
  background-color: #28a745;
}

.navbar-info {
  background-color: #17a2b8;
}

.navbar-warning {
  background-color: #ffc107;
}

.navbar-danger {
  background-color: #dc3545;
}

.navbar-blue {
  background-color: #007bff;
}

.navbar-indigo {
  background-color: #6610f2;
}

.navbar-purple {
  background-color: #6f42c1;
}

.navbar-pink {
  background-color: #e83e8c;
}

.navbar-red {
  background-color: #dc3545;
}

.navbar-orange {
  background-color: #fd7e14;
}

.navbar-yellow {
  background-color: #ffc107;
}

.navbar-green {
  background-color: #28a745;
}

.navbar-teal {
  background-color: #20c997;
}

.navbar-cyan {
  background-color: #17a2b8;
}

.navbar-white {
  background-color: #ffffff;
}

.navbar-gray {
  background-color: #6c757d;
}

.navbar-gray-dark {
  background-color: #343a40;
}

A
Abdullah Almsaeed 已提交
17720
/*
17721 17722
 * Component: Products
 * -------------------
A
Abdullah Almsaeed 已提交
17723 17724 17725 17726
 */
.products-list {
  list-style: none;
  margin: 0;
A
Abdullah Almsaeed 已提交
17727 17728 17729 17730 17731 17732
  padding: 0;
}

.products-list > .item {
  border-radius: 0.25rem;
  background: #ffffff;
17733
  padding: 10px 0;
A
Abdullah Almsaeed 已提交
17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747
}

.products-list > .item::after {
  display: block;
  clear: both;
  content: "";
}

.products-list .product-img {
  float: left;
}

.products-list .product-img img {
  height: 50px;
17748
  width: 50px;
A
Abdullah Almsaeed 已提交
17749 17750 17751 17752 17753
}

.products-list .product-info {
  margin-left: 60px;
}
A
Abdullah Almsaeed 已提交
17754

A
Abdullah Almsaeed 已提交
17755 17756 17757 17758 17759 17760
.products-list .product-title {
  font-weight: 600;
}

.products-list .product-description {
  color: #6c757d;
17761
  display: block;
A
Abdullah Almsaeed 已提交
17762 17763
  overflow: hidden;
  text-overflow: ellipsis;
17764
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
17765 17766 17767
}

.product-list-in-card > .item {
A
Abdullah Almsaeed 已提交
17768
  border-radius: 0;
A
Abdullah Almsaeed 已提交
17769 17770 17771 17772 17773 17774
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.product-list-in-card > .item:last-of-type {
  border-bottom-width: 0;
}
A
Abdullah Almsaeed 已提交
17775 17776 17777 17778 17779

/*
 * Component: Table
 * ----------------
 */
17780
.table:not(.table-dark) {
17781 17782 17783
  color: inherit;
}

17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798
.table.table-head-fixed thead tr:nth-child(1) th {
  background-color: #ffffff;
  border-bottom: none;
  box-shadow: inset 0 1px 0 #dee2e6, inset 0 -1px 0 #dee2e6;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

.table.table-head-fixed.table-dark thead tr:nth-child(1) th {
  background-color: #212529;
  box-shadow: inset 0 1px 0 #32383e, inset 0 -1px 0 #32383e;
}

A
Abdullah Almsaeed 已提交
17799 17800 17801
.table.no-border,
.table.no-border td,
.table.no-border th {
A
Abdullah Almsaeed 已提交
17802 17803
  border: 0;
}
A
Abdullah Almsaeed 已提交
17804

17805 17806 17807
.table.text-center,
.table.text-center td,
.table.text-center th {
A
Abdullah Almsaeed 已提交
17808 17809
  text-align: center;
}
A
Abdullah Almsaeed 已提交
17810

17811 17812 17813 17814
.table .table-valign-middle thead > tr > th,
.table .table-valign-middle thead > tr > td,
.table .table-valign-middle tbody > tr > th,
.table .table-valign-middle tbody > tr > td {
A
Abdullah Almsaeed 已提交
17815 17816
  vertical-align: middle;
}
A
Abdullah Almsaeed 已提交
17817 17818

/*
17819 17820
 * Component: Labels
 * -----------------
A
Abdullah Almsaeed 已提交
17821 17822
 */
.label-default {
A
Abdullah Almsaeed 已提交
17823
  background-color: #adb5bd;
17824
  color: #495057;
A
Abdullah Almsaeed 已提交
17825
}
A
Abdullah Almsaeed 已提交
17826 17827 17828 17829 17830

/*
 * Component: Direct Chat
 * ----------------------
 */
A
Abdullah Almsaeed 已提交
17831
.direct-chat .card-body {
A
Abdullah Almsaeed 已提交
17832
  overflow-x: hidden;
A
Abdullah Almsaeed 已提交
17833
  padding: 0;
17834
  position: relative;
A
Abdullah Almsaeed 已提交
17835
}
A
Abdullah Almsaeed 已提交
17836 17837 17838

.direct-chat.chat-pane-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
A
Abdullah Almsaeed 已提交
17839 17840
  transform: translate(0, 0);
}
A
Abdullah Almsaeed 已提交
17841 17842 17843 17844 17845

.direct-chat-messages {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  height: 250px;
A
Abdullah Almsaeed 已提交
17846
  overflow: auto;
17847
  padding: 10px;
A
Abdullah Almsaeed 已提交
17848
}
A
Abdullah Almsaeed 已提交
17849 17850 17851

.direct-chat-msg,
.direct-chat-text {
A
Abdullah Almsaeed 已提交
17852 17853
  display: block;
}
A
Abdullah Almsaeed 已提交
17854 17855

.direct-chat-msg {
A
Abdullah Almsaeed 已提交
17856 17857 17858 17859 17860 17861 17862 17863
  margin-bottom: 10px;
}

.direct-chat-msg::after {
  display: block;
  clear: both;
  content: "";
}
A
Abdullah Almsaeed 已提交
17864 17865 17866

.direct-chat-messages,
.direct-chat-contacts {
R
REJack 已提交
17867
  transition: -webkit-transform .5s ease-in-out;
A
Abdullah Almsaeed 已提交
17868
  transition: transform .5s ease-in-out;
R
REJack 已提交
17869
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
A
Abdullah Almsaeed 已提交
17870
}
A
Abdullah Almsaeed 已提交
17871 17872

.direct-chat-text {
A
Abdullah Almsaeed 已提交
17873
  border-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
17874 17875
  background: #d2d6de;
  border: 1px solid #d2d6de;
A
Abdullah Almsaeed 已提交
17876
  color: #444;
17877 17878 17879
  margin: 5px 0 0 50px;
  padding: 5px 10px;
  position: relative;
A
Abdullah Almsaeed 已提交
17880 17881
}

17882
.direct-chat-text::after, .direct-chat-text::before {
A
Abdullah Almsaeed 已提交
17883 17884 17885 17886 17887
  border: solid transparent;
  border-right-color: #d2d6de;
  content: ' ';
  height: 0;
  pointer-events: none;
17888 17889 17890 17891
  position: absolute;
  right: 100%;
  top: 15px;
  width: 0;
A
Abdullah Almsaeed 已提交
17892 17893
}

17894
.direct-chat-text::after {
A
Abdullah Almsaeed 已提交
17895 17896 17897 17898
  border-width: 5px;
  margin-top: -5px;
}

17899
.direct-chat-text::before {
A
Abdullah Almsaeed 已提交
17900 17901 17902 17903 17904 17905
  border-width: 6px;
  margin-top: -6px;
}

.right .direct-chat-text {
  margin-left: 0;
17906
  margin-right: 50px;
A
Abdullah Almsaeed 已提交
17907 17908
}

17909
.right .direct-chat-text::after, .right .direct-chat-text::before {
A
Abdullah Almsaeed 已提交
17910
  border-left-color: #d2d6de;
17911 17912 17913
  border-right-color: transparent;
  left: 100%;
  right: auto;
A
Abdullah Almsaeed 已提交
17914
}
A
Abdullah Almsaeed 已提交
17915 17916 17917 17918

.direct-chat-img {
  border-radius: 50%;
  float: left;
A
Abdullah Almsaeed 已提交
17919
  height: 40px;
17920
  width: 40px;
A
Abdullah Almsaeed 已提交
17921 17922 17923 17924 17925
}

.right .direct-chat-img {
  float: right;
}
A
Abdullah Almsaeed 已提交
17926 17927 17928

.direct-chat-info {
  display: block;
A
Abdullah Almsaeed 已提交
17929
  font-size: 0.875rem;
17930
  margin-bottom: 2px;
A
Abdullah Almsaeed 已提交
17931
}
A
Abdullah Almsaeed 已提交
17932 17933

.direct-chat-name {
A
Abdullah Almsaeed 已提交
17934 17935
  font-weight: 600;
}
A
Abdullah Almsaeed 已提交
17936 17937

.direct-chat-timestamp {
17938
  color: #697582;
A
Abdullah Almsaeed 已提交
17939
}
A
Abdullah Almsaeed 已提交
17940 17941 17942

.direct-chat-contacts-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
A
Abdullah Almsaeed 已提交
17943 17944
  transform: translate(0, 0);
}
A
Abdullah Almsaeed 已提交
17945 17946 17947 17948

.direct-chat-contacts {
  -webkit-transform: translate(101%, 0);
  transform: translate(101%, 0);
17949
  background: #212529;
A
Abdullah Almsaeed 已提交
17950
  bottom: 0;
A
Abdullah Almsaeed 已提交
17951
  color: #ffffff;
17952
  height: 250px;
A
Abdullah Almsaeed 已提交
17953
  overflow: auto;
17954 17955 17956
  position: absolute;
  top: 0;
  width: 100%;
A
Abdullah Almsaeed 已提交
17957
}
A
Abdullah Almsaeed 已提交
17958 17959 17960

.contacts-list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
A
Abdullah Almsaeed 已提交
17961
  margin: 0;
17962
  padding: 10px;
A
Abdullah Almsaeed 已提交
17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973
}

.contacts-list > li::after {
  display: block;
  clear: both;
  content: "";
}

.contacts-list > li:last-of-type {
  border-bottom: none;
}
A
Abdullah Almsaeed 已提交
17974 17975 17976

.contacts-list-img {
  border-radius: 50%;
A
Abdullah Almsaeed 已提交
17977
  float: left;
17978
  width: 40px;
A
Abdullah Almsaeed 已提交
17979
}
A
Abdullah Almsaeed 已提交
17980 17981

.contacts-list-info {
A
Abdullah Almsaeed 已提交
17982
  color: #ffffff;
17983
  margin-left: 45px;
A
Abdullah Almsaeed 已提交
17984
}
A
Abdullah Almsaeed 已提交
17985 17986 17987

.contacts-list-name,
.contacts-list-status {
A
Abdullah Almsaeed 已提交
17988 17989
  display: block;
}
A
Abdullah Almsaeed 已提交
17990 17991

.contacts-list-name {
A
Abdullah Almsaeed 已提交
17992 17993
  font-weight: 600;
}
A
Abdullah Almsaeed 已提交
17994 17995

.contacts-list-status {
A
Abdullah Almsaeed 已提交
17996 17997
  font-size: 0.875rem;
}
A
Abdullah Almsaeed 已提交
17998 17999

.contacts-list-date {
18000
  color: #adb5bd;
A
Abdullah Almsaeed 已提交
18001 18002
  font-weight: normal;
}
A
Abdullah Almsaeed 已提交
18003 18004

.contacts-list-msg {
18005
  color: #697582;
A
Abdullah Almsaeed 已提交
18006
}
A
Abdullah Almsaeed 已提交
18007 18008

.direct-chat-danger .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
18009 18010
  background: #dc3545;
  border-color: #dc3545;
A
Abdullah Almsaeed 已提交
18011 18012 18013
  color: #ffffff;
}

18014
.direct-chat-danger .right > .direct-chat-text:after, .direct-chat-danger .right > .direct-chat-text::before {
A
Abdullah Almsaeed 已提交
18015 18016
  border-left-color: #dc3545;
}
A
Abdullah Almsaeed 已提交
18017 18018

.direct-chat-primary .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
18019 18020
  background: #007bff;
  border-color: #007bff;
A
Abdullah Almsaeed 已提交
18021 18022 18023
  color: #ffffff;
}

18024
.direct-chat-primary .right > .direct-chat-text:after, .direct-chat-primary .right > .direct-chat-text::before {
A
Abdullah Almsaeed 已提交
18025 18026
  border-left-color: #007bff;
}
A
Abdullah Almsaeed 已提交
18027 18028

.direct-chat-warning .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
18029 18030
  background: #ffc107;
  border-color: #ffc107;
A
Abdullah Almsaeed 已提交
18031 18032 18033
  color: #1F2D3D;
}

18034
.direct-chat-warning .right > .direct-chat-text:after, .direct-chat-warning .right > .direct-chat-text::before {
A
Abdullah Almsaeed 已提交
18035 18036
  border-left-color: #ffc107;
}
A
Abdullah Almsaeed 已提交
18037 18038

.direct-chat-info .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
18039 18040
  background: #17a2b8;
  border-color: #17a2b8;
A
Abdullah Almsaeed 已提交
18041 18042 18043
  color: #ffffff;
}

18044
.direct-chat-info .right > .direct-chat-text:after, .direct-chat-info .right > .direct-chat-text::before {
A
Abdullah Almsaeed 已提交
18045 18046
  border-left-color: #17a2b8;
}
A
Abdullah Almsaeed 已提交
18047 18048

.direct-chat-success .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
18049 18050
  background: #28a745;
  border-color: #28a745;
A
Abdullah Almsaeed 已提交
18051 18052 18053
  color: #ffffff;
}

18054
.direct-chat-success .right > .direct-chat-text:after, .direct-chat-success .right > .direct-chat-text::before {
A
Abdullah Almsaeed 已提交
18055 18056
  border-left-color: #28a745;
}
A
Abdullah Almsaeed 已提交
18057 18058 18059 18060 18061 18062 18063 18064

/*
 * Component: Users List
 * ---------------------
 */
.users-list > li {
  float: left;
  padding: 10px;
A
Abdullah Almsaeed 已提交
18065
  text-align: center;
18066
  width: 25%;
A
Abdullah Almsaeed 已提交
18067 18068 18069 18070 18071
}

.users-list > li img {
  border-radius: 50%;
  height: auto;
18072
  max-width: 100%;
A
Abdullah Almsaeed 已提交
18073 18074 18075 18076 18077 18078
}

.users-list > li > a:hover,
.users-list > li > a:hover .users-list-name {
  color: #999;
}
A
Abdullah Almsaeed 已提交
18079 18080 18081

.users-list-name,
.users-list-date {
A
Abdullah Almsaeed 已提交
18082 18083
  display: block;
}
A
Abdullah Almsaeed 已提交
18084 18085

.users-list-name {
18086
  color: #495057;
A
Abdullah Almsaeed 已提交
18087
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
18088
  overflow: hidden;
A
Abdullah Almsaeed 已提交
18089
  text-overflow: ellipsis;
18090
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
18091
}
A
Abdullah Almsaeed 已提交
18092 18093

.users-list-date {
18094
  color: #748290;
A
Abdullah Almsaeed 已提交
18095 18096
  font-size: 12px;
}
A
Abdullah Almsaeed 已提交
18097 18098 18099 18100 18101 18102

/*
 * Component: Carousel
 * -------------------
 */
.carousel-control.left, .carousel-control.right {
A
Abdullah Almsaeed 已提交
18103 18104
  background-image: none;
}
A
Abdullah Almsaeed 已提交
18105

18106 18107 18108 18109 18110 18111 18112
.carousel-control > .fa,
.carousel-control > .fas,
.carousel-control > .far,
.carousel-control > .fab,
.carousel-control > .glyphicon,
.carousel-control > .ion {
  display: inline-block;
A
Abdullah Almsaeed 已提交
18113
  font-size: 40px;
18114
  margin-top: -20px;
A
Abdullah Almsaeed 已提交
18115 18116 18117
  position: absolute;
  top: 50%;
  z-index: 5;
A
Abdullah Almsaeed 已提交
18118
}
A
Abdullah Almsaeed 已提交
18119 18120 18121 18122 18123

/*
 * Component: Social Widgets
 * -------------------------
 */
A
Abdullah Almsaeed 已提交
18124
.card-widget {
A
Abdullah Almsaeed 已提交
18125
  border: none;
A
Abdullah Almsaeed 已提交
18126 18127
  position: relative;
}
A
Abdullah Almsaeed 已提交
18128 18129

.widget-user .widget-user-header {
A
Abdullah Almsaeed 已提交
18130 18131
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
18132 18133
  height: 120px;
  padding: 1rem;
A
Abdullah Almsaeed 已提交
18134
}
A
Abdullah Almsaeed 已提交
18135 18136 18137 18138

.widget-user .widget-user-username {
  font-size: 25px;
  font-weight: 300;
18139 18140
  margin-bottom: 5px;
  margin-top: 0;
A
Abdullah Almsaeed 已提交
18141 18142
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
A
Abdullah Almsaeed 已提交
18143 18144

.widget-user .widget-user-desc {
A
Abdullah Almsaeed 已提交
18145 18146
  margin-top: 0;
}
A
Abdullah Almsaeed 已提交
18147 18148 18149

.widget-user .widget-user-image {
  left: 50%;
A
Abdullah Almsaeed 已提交
18150
  margin-left: -45px;
18151 18152
  position: absolute;
  top: 65px;
A
Abdullah Almsaeed 已提交
18153 18154 18155 18156
}

.widget-user .widget-user-image > img {
  border: 3px solid #ffffff;
18157 18158
  height: auto;
  width: 90px;
A
Abdullah Almsaeed 已提交
18159
}
A
Abdullah Almsaeed 已提交
18160

A
Abdullah Almsaeed 已提交
18161 18162 18163
.widget-user .card-footer {
  padding-top: 40px;
}
A
Abdullah Almsaeed 已提交
18164 18165

.widget-user-2 .widget-user-header {
A
Abdullah Almsaeed 已提交
18166 18167
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
18168
  padding: 1rem;
A
Abdullah Almsaeed 已提交
18169
}
A
Abdullah Almsaeed 已提交
18170 18171 18172

.widget-user-2 .widget-user-username {
  font-size: 25px;
A
Abdullah Almsaeed 已提交
18173
  font-weight: 300;
18174 18175
  margin-bottom: 5px;
  margin-top: 5px;
A
Abdullah Almsaeed 已提交
18176
}
A
Abdullah Almsaeed 已提交
18177 18178

.widget-user-2 .widget-user-desc {
A
Abdullah Almsaeed 已提交
18179 18180
  margin-top: 0;
}
A
Abdullah Almsaeed 已提交
18181 18182 18183

.widget-user-2 .widget-user-username,
.widget-user-2 .widget-user-desc {
A
Abdullah Almsaeed 已提交
18184 18185
  margin-left: 75px;
}
A
Abdullah Almsaeed 已提交
18186 18187

.widget-user-2 .widget-user-image > img {
A
Abdullah Almsaeed 已提交
18188
  float: left;
18189 18190
  height: auto;
  width: 65px;
A
Abdullah Almsaeed 已提交
18191
}
A
Abdullah Almsaeed 已提交
18192

R
REJack 已提交
18193
/*
18194 18195 18196
 * Component: Modals
 * ---------
 ------
R
REJack 已提交
18197 18198
 */
.modal-dialog .overlay {
18199
  background-color: #000;
R
REJack 已提交
18200
  display: block;
18201 18202 18203
  height: 100%;
  left: 0;
  opacity: .7;
R
REJack 已提交
18204 18205 18206
  position: absolute;
  top: 0;
  width: 100%;
18207
  z-index: 1052;
R
REJack 已提交
18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220
}

.modal-content.bg-warning .modal-header, .modal-content.alert-warning .modal-header, .modal-content.label-warning .modal-header,
.modal-content.bg-warning .modal-footer,
.modal-content.alert-warning .modal-footer,
.modal-content.label-warning .modal-footer {
  border-color: #343a40;
}

.modal-content.bg-primary .close, .modal-content.label-primary .close, .modal-content.bg-primary .mailbox-attachment-close, .modal-content.label-primary .mailbox-attachment-close, .modal-content.bg-secondary .close, .modal-content.bg-secondary .mailbox-attachment-close, .modal-content.bg-info .close, .modal-content.alert-info .close, .modal-content.label-info .close, .modal-content.bg-info .mailbox-attachment-close, .modal-content.alert-info .mailbox-attachment-close, .modal-content.label-info .mailbox-attachment-close, .modal-content.bg-danger .close, .modal-content.alert-danger .close, .modal-content.alert-error .close, .modal-content.label-danger .close, .modal-content.bg-danger .mailbox-attachment-close, .modal-content.alert-danger .mailbox-attachment-close, .modal-content.alert-error .mailbox-attachment-close, .modal-content.label-danger .mailbox-attachment-close, .modal-content.bg-success .close, .modal-content.alert-success .close, .modal-content.label-success .close, .modal-content.bg-success .mailbox-attachment-close, .modal-content.alert-success .mailbox-attachment-close, .modal-content.label-success .mailbox-attachment-close {
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
18221
/*
18222 18223
 * Pages: Mailbox
 * --------------
A
Abdullah Almsaeed 已提交
18224 18225
 */
.mailbox-messages > .table {
A
Abdullah Almsaeed 已提交
18226 18227
  margin: 0;
}
A
Abdullah Almsaeed 已提交
18228 18229

.mailbox-controls {
A
Abdullah Almsaeed 已提交
18230 18231 18232 18233 18234 18235
  padding: 5px;
}

.mailbox-controls.with-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
A
Abdullah Almsaeed 已提交
18236 18237

.mailbox-read-info {
A
Abdullah Almsaeed 已提交
18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 10px;
}

.mailbox-read-info h3 {
  font-size: 20px;
  margin: 0;
}

.mailbox-read-info h5 {
  margin: 0;
  padding: 5px 0 0 0;
}
A
Abdullah Almsaeed 已提交
18251 18252 18253

.mailbox-read-time {
  color: #999;
A
Abdullah Almsaeed 已提交
18254 18255
  font-size: 13px;
}
A
Abdullah Almsaeed 已提交
18256 18257

.mailbox-read-message {
A
Abdullah Almsaeed 已提交
18258 18259
  padding: 10px;
}
A
Abdullah Almsaeed 已提交
18260 18261 18262 18263 18264 18265

.mailbox-attachments li {
  float: left;
  width: 200px;
  border: 1px solid #eee;
  margin-bottom: 10px;
A
Abdullah Almsaeed 已提交
18266 18267
  margin-right: 10px;
}
A
Abdullah Almsaeed 已提交
18268 18269 18270

.mailbox-attachment-name {
  font-weight: bold;
A
Abdullah Almsaeed 已提交
18271 18272
  color: #666;
}
A
Abdullah Almsaeed 已提交
18273 18274 18275 18276

.mailbox-attachment-icon,
.mailbox-attachment-info,
.mailbox-attachment-size {
A
Abdullah Almsaeed 已提交
18277 18278
  display: block;
}
A
Abdullah Almsaeed 已提交
18279 18280 18281

.mailbox-attachment-info {
  padding: 10px;
A
Abdullah Almsaeed 已提交
18282 18283
  background: #f4f4f4;
}
A
Abdullah Almsaeed 已提交
18284 18285 18286

.mailbox-attachment-size {
  color: #999;
A
Abdullah Almsaeed 已提交
18287 18288
  font-size: 12px;
}
A
Abdullah Almsaeed 已提交
18289

R
REJack 已提交
18290 18291 18292 18293 18294
.mailbox-attachment-size > span {
  display: inline-block;
  padding-top: 0.75rem;
}

A
Abdullah Almsaeed 已提交
18295 18296 18297 18298
.mailbox-attachment-icon {
  text-align: center;
  font-size: 65px;
  color: #666;
A
Abdullah Almsaeed 已提交
18299
  padding: 20px 10px;
R
REJack 已提交
18300
  max-height: 132.5px;
A
Abdullah Almsaeed 已提交
18301 18302 18303 18304 18305 18306 18307 18308 18309 18310
}

.mailbox-attachment-icon.has-img {
  padding: 0;
}

.mailbox-attachment-icon.has-img > img {
  max-width: 100%;
  height: auto;
}
A
Abdullah Almsaeed 已提交
18311 18312

/*
18313 18314
 * Pages: Lock Screen
 * ------------------
A
Abdullah Almsaeed 已提交
18315 18316 18317
 */
/* ADD THIS CLASS TO THE <BODY> TAG */
.lockscreen {
A
Abdullah Almsaeed 已提交
18318 18319
  background: #e9ecef;
}
A
Abdullah Almsaeed 已提交
18320 18321 18322 18323 18324

.lockscreen-logo {
  font-size: 35px;
  text-align: center;
  margin-bottom: 25px;
A
Abdullah Almsaeed 已提交
18325 18326 18327 18328 18329 18330
  font-weight: 300;
}

.lockscreen-logo a {
  color: #444;
}
A
Abdullah Almsaeed 已提交
18331 18332 18333 18334

.lockscreen-wrapper {
  max-width: 400px;
  margin: 0 auto;
A
Abdullah Almsaeed 已提交
18335 18336
  margin-top: 10%;
}
A
Abdullah Almsaeed 已提交
18337 18338 18339 18340

/* User name [optional] */
.lockscreen .lockscreen-name {
  text-align: center;
A
Abdullah Almsaeed 已提交
18341 18342
  font-weight: 600;
}
A
Abdullah Almsaeed 已提交
18343 18344 18345 18346 18347

/* Will contain the image and the sign in form */
.lockscreen-item {
  border-radius: 4px;
  padding: 0;
A
Abdullah Almsaeed 已提交
18348
  background: #ffffff;
A
Abdullah Almsaeed 已提交
18349 18350
  position: relative;
  margin: 10px auto 30px auto;
A
Abdullah Almsaeed 已提交
18351 18352
  width: 290px;
}
A
Abdullah Almsaeed 已提交
18353 18354 18355 18356 18357 18358 18359

/* User image */
.lockscreen-image {
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: -25px;
A
Abdullah Almsaeed 已提交
18360
  background: #ffffff;
A
Abdullah Almsaeed 已提交
18361
  padding: 5px;
A
Abdullah Almsaeed 已提交
18362 18363 18364 18365 18366 18367 18368 18369
  z-index: 10;
}

.lockscreen-image > img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
A
Abdullah Almsaeed 已提交
18370 18371 18372

/* Contains the password input and the login button */
.lockscreen-credentials {
A
Abdullah Almsaeed 已提交
18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384
  margin-left: 70px;
}

.lockscreen-credentials .form-control {
  border: 0;
}

.lockscreen-credentials .btn {
  background-color: #ffffff;
  border: 0;
  padding: 0 10px;
}
A
Abdullah Almsaeed 已提交
18385 18386

.lockscreen-footer {
A
Abdullah Almsaeed 已提交
18387 18388
  margin-top: 10px;
}
A
Abdullah Almsaeed 已提交
18389 18390

/*
18391 18392
 * Pages: Login & Register
 * -----------------------
A
Abdullah Almsaeed 已提交
18393 18394 18395 18396 18397 18398
 */
.login-logo,
.register-logo {
  font-size: 35px;
  text-align: center;
  margin-bottom: 25px;
A
Abdullah Almsaeed 已提交
18399 18400 18401 18402 18403 18404 18405
  font-weight: 300;
}

.login-logo a,
.register-logo a {
  color: #444;
}
A
Abdullah Almsaeed 已提交
18406 18407 18408

.login-page,
.register-page {
A
Abdullah Almsaeed 已提交
18409 18410
  background: #e9ecef;
}
A
Abdullah Almsaeed 已提交
18411 18412 18413 18414

.login-box,
.register-box {
  width: 360px;
A
Abdullah Almsaeed 已提交
18415 18416 18417 18418 18419 18420 18421 18422 18423 18424
  margin: 7% auto;
}

@media (max-width: 576px) {
  .login-box,
  .register-box {
    width: 90%;
    margin-top: 20px;
  }
}
A
Abdullah Almsaeed 已提交
18425

H
heemza 已提交
18426 18427
.login-card-body,
.register-card-body {
A
Abdullah Almsaeed 已提交
18428
  background: #ffffff;
A
Abdullah Almsaeed 已提交
18429 18430
  padding: 20px;
  border-top: 0;
A
Abdullah Almsaeed 已提交
18431 18432 18433
  color: #666;
}

H
heemza 已提交
18434 18435 18436 18437 18438
.login-card-body .input-group .form-control,
.register-card-body .input-group .form-control {
  border-right: none;
}

J
Jorge Vilaça 已提交
18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468
.login-card-body .input-group .form-control:focus,
.register-card-body .input-group .form-control:focus {
  box-shadow: none;
}

.login-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text,
.register-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text {
  border-color: #80bdff;
}

.login-card-body .input-group .form-control.is-valid:focus,
.register-card-body .input-group .form-control.is-valid:focus {
  box-shadow: none;
}

.login-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text,
.register-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text {
  border-color: #28a745;
}

.login-card-body .input-group .form-control.is-invalid:focus,
.register-card-body .input-group .form-control.is-invalid:focus {
  box-shadow: none;
}

.login-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text,
.register-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text {
  border-color: #dc3545;
}

H
heemza 已提交
18469 18470
.login-card-body .input-group .input-group-text,
.register-card-body .input-group .input-group-text {
A
Abdullah Almsaeed 已提交
18471
  color: #777;
H
heemza 已提交
18472
  background-color: transparent;
J
Jorge Vilaça 已提交
18473 18474 18475 18476
  border-left: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-bottom-right-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
A
Abdullah Almsaeed 已提交
18477
}
A
Abdullah Almsaeed 已提交
18478 18479 18480 18481 18482

.login-box-msg,
.register-box-msg {
  margin: 0;
  text-align: center;
A
Abdullah Almsaeed 已提交
18483 18484
  padding: 0 20px 20px 20px;
}
A
Abdullah Almsaeed 已提交
18485 18486

.social-auth-links {
A
Abdullah Almsaeed 已提交
18487 18488
  margin: 10px 0;
}
A
Abdullah Almsaeed 已提交
18489 18490

/*
18491
 * Pages: 400 and 500 error pages
A
Abdullah Almsaeed 已提交
18492 18493 18494 18495
 * ------------------------------
 */
.error-page {
  width: 600px;
A
Abdullah Almsaeed 已提交
18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511
  margin: 20px auto 0 auto;
}

@media (max-width: 767.98px) {
  .error-page {
    width: 100%;
  }
}

.error-page > .headline {
  float: left;
  font-size: 100px;
  font-weight: 300;
}

@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
18512
  .error-page > .headline {
A
Abdullah Almsaeed 已提交
18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523
    float: none;
    text-align: center;
  }
}

.error-page > .error-content {
  margin-left: 190px;
  display: block;
}

@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
18524
  .error-page > .error-content {
A
Abdullah Almsaeed 已提交
18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538
    margin-left: 0;
  }
}

.error-page > .error-content > h3 {
  font-weight: 300;
  font-size: 25px;
}

@media (max-width: 767.98px) {
  .error-page > .error-content > h3 {
    text-align: center;
  }
}
A
Abdullah Almsaeed 已提交
18539 18540

/*
18541 18542
 * Pages: Invoice
 * --------------
A
Abdullah Almsaeed 已提交
18543 18544 18545
 */
.invoice {
  position: relative;
A
Abdullah Almsaeed 已提交
18546 18547 18548
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
A
Abdullah Almsaeed 已提交
18549 18550

.invoice-title {
A
Abdullah Almsaeed 已提交
18551 18552
  margin-top: 0;
}
A
Abdullah Almsaeed 已提交
18553 18554

/*
18555 18556
 * Pages: Profile
 * --------------
A
Abdullah Almsaeed 已提交
18557 18558 18559 18560 18561
 */
.profile-user-img {
  margin: 0 auto;
  width: 100px;
  padding: 3px;
A
Abdullah Almsaeed 已提交
18562 18563
  border: 3px solid #adb5bd;
}
A
Abdullah Almsaeed 已提交
18564 18565 18566

.profile-username {
  font-size: 21px;
A
Abdullah Almsaeed 已提交
18567 18568
  margin-top: 5px;
}
A
Abdullah Almsaeed 已提交
18569 18570

.post {
A
Abdullah Almsaeed 已提交
18571
  border-bottom: 1px solid #adb5bd;
A
Abdullah Almsaeed 已提交
18572 18573
  margin-bottom: 15px;
  padding-bottom: 15px;
A
Abdullah Almsaeed 已提交
18574 18575
  color: #666;
}
A
Abdullah Almsaeed 已提交
18576

A
Abdullah Almsaeed 已提交
18577 18578 18579 18580 18581 18582 18583 18584 18585
.post:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post .user-block {
  margin-bottom: 15px;
}
A
Abdullah Almsaeed 已提交
18586

18587 18588 18589 18590
/*
 * Pages: E-commerce
 * -----------------
 */
18591 18592 18593 18594 18595 18596 18597
.product-image {
  max-width: 100%;
  height: auto;
  width: 100%;
}

.product-image-thumbs  {
18598
  display: -ms-flexbox;
18599
  display: flex;
18600
  -ms-flex-align: stretch;
18601 18602 18603 18604 18605 18606 18607 18608 18609
  align-items: stretch;
  margin-top: 2rem;
}

.product-image-thumb  {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  border-radius: 0.25rem;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
18610
  display: -ms-flexbox;
18611 18612 18613 18614 18615 18616 18617 18618 18619
  display: flex;
  margin-right: 1rem;
  max-width: 7rem;
  padding: 0.5rem;
}

.product-image-thumb  img {
  max-width: 100%;
  height: auto;
18620
  -ms-flex-item-align: center;
18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631
  align-self: center;
}

.product-image-thumb :hover {
  opacity: 0.5;
}

.product-share a {
  margin-right: 0.5rem;
}

18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654
/*
 * Pages: Projects
 * ---------------
 */
.projects td {
  vertical-align: middle;
}

.projects .list-inline {
  margin-bottom: 0;
}

.projects img.table-avatar,
.projects .table-avatar img {
  border-radius: 50%;
  display: inline;
  width: 2.5rem;
}

.projects .project-state {
  text-align: center;
}

A
Abdullah Almsaeed 已提交
18655 18656 18657 18658 18659 18660 18661 18662 18663
/*
 * Plugin: Full Calendar
 * ---------------------
 */
.fc-button {
  background: #f4f4f4;
  background-image: none;
  color: #444;
  border-color: #ddd;
A
Abdullah Almsaeed 已提交
18664 18665 18666 18667 18668 18669
  border-bottom-color: #ddd;
}

.fc-button:hover, .fc-button:active, .fc-button.hover {
  background-color: #e9e9e9;
}
A
Abdullah Almsaeed 已提交
18670 18671 18672 18673 18674

.fc-header-title h2 {
  font-size: 15px;
  line-height: 1.6em;
  color: #666;
A
Abdullah Almsaeed 已提交
18675 18676
  margin-left: 10px;
}
A
Abdullah Almsaeed 已提交
18677 18678

.fc-header-right {
A
Abdullah Almsaeed 已提交
18679 18680
  padding-right: 10px;
}
A
Abdullah Almsaeed 已提交
18681 18682

.fc-header-left {
A
Abdullah Almsaeed 已提交
18683 18684
  padding-left: 10px;
}
A
Abdullah Almsaeed 已提交
18685 18686

.fc-widget-header {
A
Abdullah Almsaeed 已提交
18687 18688
  background: #fafafa;
}
A
Abdullah Almsaeed 已提交
18689 18690 18691

.fc-grid {
  width: 100%;
A
Abdullah Almsaeed 已提交
18692 18693
  border: 0;
}
A
Abdullah Almsaeed 已提交
18694 18695 18696 18697

.fc-widget-header:first-of-type,
.fc-widget-content:first-of-type {
  border-left: 0;
A
Abdullah Almsaeed 已提交
18698 18699
  border-right: 0;
}
A
Abdullah Almsaeed 已提交
18700 18701 18702

.fc-widget-header:last-of-type,
.fc-widget-content:last-of-type {
A
Abdullah Almsaeed 已提交
18703 18704
  border-right: 0;
}
A
Abdullah Almsaeed 已提交
18705 18706

.fc-toolbar {
A
Abdullah Almsaeed 已提交
18707 18708 18709
  padding: 1rem;
  margin: 0;
}
A
Abdullah Almsaeed 已提交
18710 18711 18712 18713

.fc-day-number {
  font-size: 20px;
  font-weight: 300;
A
Abdullah Almsaeed 已提交
18714 18715
  padding-right: 10px;
}
A
Abdullah Almsaeed 已提交
18716 18717 18718 18719

.fc-color-picker {
  list-style: none;
  margin: 0;
A
Abdullah Almsaeed 已提交
18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730
  padding: 0;
}

.fc-color-picker > li {
  float: left;
  font-size: 30px;
  margin-right: 5px;
  line-height: 30px;
}

.fc-color-picker > li .fa {
R
REJack 已提交
18731
  transition: -webkit-transform linear .3s;
A
Abdullah Almsaeed 已提交
18732
  transition: transform linear .3s;
R
REJack 已提交
18733
  transition: transform linear .3s, -webkit-transform linear .3s;
A
Abdullah Almsaeed 已提交
18734 18735 18736
}

.fc-color-picker > li .fa:hover {
R
REJack 已提交
18737
  -webkit-transform: rotate(30deg);
A
Abdullah Almsaeed 已提交
18738 18739
  transform: rotate(30deg);
}
A
Abdullah Almsaeed 已提交
18740 18741

#add-new-event {
A
Abdullah Almsaeed 已提交
18742 18743
  transition: all linear .3s;
}
A
Abdullah Almsaeed 已提交
18744 18745

.external-event {
A
Abdullah Almsaeed 已提交
18746
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
A
Abdullah Almsaeed 已提交
18747 18748 18749
  padding: 5px 10px;
  font-weight: bold;
  margin-bottom: 4px;
A
Abdullah Almsaeed 已提交
18750 18751 18752 18753 18754 18755 18756
  border-radius: 0.25rem;
  cursor: move;
}

.external-event:hover {
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
}
A
Abdullah Almsaeed 已提交
18757 18758 18759 18760 18761 18762 18763 18764 18765

/*
 * Plugin: Select2
 * ---------------
 */
.select2-container--default.select2-container--focus, .select2-container--default:focus, .select2-container--default:active,
.select2-selection.select2-container--focus,
.select2-selection:focus,
.select2-selection:active {
A
Abdullah Almsaeed 已提交
18766 18767
  outline: none;
}
A
Abdullah Almsaeed 已提交
18768 18769 18770

.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
A
Abdullah Almsaeed 已提交
18771
  border: 1px solid #d2d6de;
A
Abdullah Almsaeed 已提交
18772
  padding: 6px 12px;
M
Max McMahon 已提交
18773
  height: calc(2.25rem + 2px);
A
Abdullah Almsaeed 已提交
18774
}
A
Abdullah Almsaeed 已提交
18775 18776

.select2-container--default.select2-container--open {
A
Abdullah Almsaeed 已提交
18777 18778
  border-color: #007bff;
}
A
Abdullah Almsaeed 已提交
18779 18780

.select2-dropdown {
A
Abdullah Almsaeed 已提交
18781 18782
  border: 1px solid #d2d6de;
}
A
Abdullah Almsaeed 已提交
18783 18784

.select2-container--default .select2-results__option--highlighted[aria-selected] {
A
Abdullah Almsaeed 已提交
18785
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
18786 18787
  color: white;
}
A
Abdullah Almsaeed 已提交
18788 18789 18790

.select2-results__option {
  padding: 6px 12px;
R
REJack 已提交
18791 18792
  -moz-user-select: none;
  -ms-user-select: none;
A
Abdullah Almsaeed 已提交
18793
  user-select: none;
A
Abdullah Almsaeed 已提交
18794 18795
  -webkit-user-select: none;
}
A
Abdullah Almsaeed 已提交
18796 18797 18798 18799 18800

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
  height: auto;
M
Max McMahon 已提交
18801
  margin-top: -3px;
A
Abdullah Almsaeed 已提交
18802
}
A
Abdullah Almsaeed 已提交
18803 18804 18805

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 6px;
A
Abdullah Almsaeed 已提交
18806 18807
  padding-left: 20px;
}
A
Abdullah Almsaeed 已提交
18808 18809

.select2-container--default .select2-selection--single .select2-selection__arrow {
M
Max McMahon 已提交
18810 18811
  height: 31px;
  right: 6px;
A
Abdullah Almsaeed 已提交
18812
}
A
Abdullah Almsaeed 已提交
18813 18814

.select2-container--default .select2-selection--single .select2-selection__arrow b {
A
Abdullah Almsaeed 已提交
18815 18816
  margin-top: 0;
}
A
Abdullah Almsaeed 已提交
18817 18818 18819

.select2-dropdown .select2-search__field,
.select2-search--inline .select2-search__field {
A
Abdullah Almsaeed 已提交
18820 18821 18822 18823 18824 18825 18826 18827
  border: 1px solid #d2d6de;
}

.select2-dropdown .select2-search__field:focus,
.select2-search--inline .select2-search__field:focus {
  outline: none;
  border: 1px solid #007bff;
}
A
Abdullah Almsaeed 已提交
18828 18829

.select2-container--default .select2-results__option[aria-disabled=true] {
A
Abdullah Almsaeed 已提交
18830 18831
  color: #999;
}
A
Abdullah Almsaeed 已提交
18832 18833

.select2-container--default .select2-results__option[aria-selected=true] {
A
Abdullah Almsaeed 已提交
18834 18835 18836 18837 18838 18839
  background-color: #ddd;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[aria-selected=true]:hover {
  color: #444;
}
A
Abdullah Almsaeed 已提交
18840 18841

.select2-container--default .select2-selection--multiple {
M
Max McMahon 已提交
18842
  min-height: calc(2.25rem + 2px);
A
Abdullah Almsaeed 已提交
18843 18844 18845 18846 18847 18848
  border: 1px solid #d2d6de;
}

.select2-container--default .select2-selection--multiple:focus {
  border-color: #007bff;
}
A
Abdullah Almsaeed 已提交
18849

R
REJack 已提交
18850 18851 18852 18853 18854 18855 18856 18857
.select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline {
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline .select2-search__field {
  width: 100% !important;
}

A
Abdullah Almsaeed 已提交
18858
.select2-container--default.select2-container--focus .select2-selection--multiple {
A
Abdullah Almsaeed 已提交
18859 18860
  border-color: #d2d6de;
}
A
Abdullah Almsaeed 已提交
18861 18862

.select2-container--default .select2-selection--multiple .select2-selection__choice {
A
Abdullah Almsaeed 已提交
18863 18864
  background-color: #007bff;
  border-color: #006fe6;
M
Max McMahon 已提交
18865
  padding: 0 10px;
A
Abdullah Almsaeed 已提交
18866 18867
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
18868 18869 18870

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 5px;
A
Abdullah Almsaeed 已提交
18871 18872 18873 18874 18875 18876
  color: rgba(255, 255, 255, 0.7);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
18877

R
REJack 已提交
18878
.select2-container .select2-selection--single .select2-selection__rendered li {
A
Abdullah Almsaeed 已提交
18879 18880
  padding-right: 10px;
}
A
Abdullah Almsaeed 已提交
18881

R
REJack 已提交
18882 18883
/*
 * Plugin: Bootstrap Slider
18884
 * ------------------------
R
REJack 已提交
18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947
 */
.slider.slider-vertical {
  height: 100%;
}

.slider.slider-horizontal {
  width: 100%;
}

.slider-blue .slider .slider-selection {
  background: #007bff;
}

.slider-indigo .slider .slider-selection {
  background: #6610f2;
}

.slider-purple .slider .slider-selection {
  background: #6f42c1;
}

.slider-pink .slider .slider-selection {
  background: #e83e8c;
}

.slider-red .slider .slider-selection {
  background: #dc3545;
}

.slider-orange .slider .slider-selection {
  background: #fd7e14;
}

.slider-yellow .slider .slider-selection {
  background: #ffc107;
}

.slider-green .slider .slider-selection {
  background: #28a745;
}

.slider-teal .slider .slider-selection {
  background: #20c997;
}

.slider-cyan .slider .slider-selection {
  background: #17a2b8;
}

.slider-white .slider .slider-selection {
  background: #ffffff;
}

.slider-gray .slider .slider-selection {
  background: #6c757d;
}

.slider-gray-dark .slider .slider-selection {
  background: #343a40;
}

/*
 * Plugin: iCheck Bootstrap
18948
 * ------------------------
R
REJack 已提交
18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285
 */
.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #007bff;
}

.icheck-primary > input:first-child:checked + label::before,
.icheck-primary > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #007bff;
  border-color: #007bff;
}

.icheck-secondary > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-secondary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #6c757d;
}

.icheck-secondary > input:first-child:checked + label::before,
.icheck-secondary > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #6c757d;
  border-color: #6c757d;
}

.icheck-success > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-success > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #28a745;
}

.icheck-success > input:first-child:checked + label::before,
.icheck-success > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #28a745;
  border-color: #28a745;
}

.icheck-info > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-info > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #17a2b8;
}

.icheck-info > input:first-child:checked + label::before,
.icheck-info > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.icheck-warning > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-warning > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #ffc107;
}

.icheck-warning > input:first-child:checked + label::before,
.icheck-warning > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #ffc107;
  border-color: #ffc107;
}

.icheck-danger > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-danger > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #dc3545;
}

.icheck-danger > input:first-child:checked + label::before,
.icheck-danger > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #dc3545;
  border-color: #dc3545;
}

.icheck-light > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-light > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #f8f9fa;
}

.icheck-light > input:first-child:checked + label::before,
.icheck-light > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.icheck-dark > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-dark > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #343a40;
}

.icheck-dark > input:first-child:checked + label::before,
.icheck-dark > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #343a40;
  border-color: #343a40;
}

.icheck-blue > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-blue > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #007bff;
}

.icheck-blue > input:first-child:checked + label::before,
.icheck-blue > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #007bff;
  border-color: #007bff;
}

.icheck-indigo > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-indigo > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #6610f2;
}

.icheck-indigo > input:first-child:checked + label::before,
.icheck-indigo > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #6610f2;
  border-color: #6610f2;
}

.icheck-purple > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-purple > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #6f42c1;
}

.icheck-purple > input:first-child:checked + label::before,
.icheck-purple > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #6f42c1;
  border-color: #6f42c1;
}

.icheck-pink > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-pink > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #e83e8c;
}

.icheck-pink > input:first-child:checked + label::before,
.icheck-pink > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #e83e8c;
  border-color: #e83e8c;
}

.icheck-red > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-red > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #dc3545;
}

.icheck-red > input:first-child:checked + label::before,
.icheck-red > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #dc3545;
  border-color: #dc3545;
}

.icheck-orange > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-orange > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #fd7e14;
}

.icheck-orange > input:first-child:checked + label::before,
.icheck-orange > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #fd7e14;
  border-color: #fd7e14;
}

.icheck-yellow > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-yellow > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #ffc107;
}

.icheck-yellow > input:first-child:checked + label::before,
.icheck-yellow > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #ffc107;
  border-color: #ffc107;
}

.icheck-green > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-green > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #28a745;
}

.icheck-green > input:first-child:checked + label::before,
.icheck-green > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #28a745;
  border-color: #28a745;
}

.icheck-teal > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-teal > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #20c997;
}

.icheck-teal > input:first-child:checked + label::before,
.icheck-teal > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #20c997;
  border-color: #20c997;
}

.icheck-cyan > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-cyan > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #17a2b8;
}

.icheck-cyan > input:first-child:checked + label::before,
.icheck-cyan > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.icheck-white > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-white > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #ffffff;
}

.icheck-white > input:first-child:checked + label::before,
.icheck-white > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #ffffff;
  border-color: #ffffff;
}

.icheck-gray > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-gray > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #6c757d;
}

.icheck-gray > input:first-child:checked + label::before,
.icheck-gray > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #6c757d;
  border-color: #6c757d;
}

.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
  border-color: #343a40;
}

.icheck-gray-dark > input:first-child:checked + label::before,
.icheck-gray-dark > input:first-child:checked + input[type="hidden"] + label::before {
  background-color: #343a40;
  border-color: #343a40;
}

/*
 * Plugins: jQuery Mapael
 * ----------------------
 */
.mapael .map {
  position: relative;
}

.mapael .mapTooltip {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  background-color: #000;
  color: #ffffff;
  display: block;
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  position: absolute;
  text-align: center;
  word-wrap: break-word;
  z-index: 1070;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.mapael .myLegend {
  background-color: #f4f4e8;
  border: 1px solid #bebeb4;
  padding: 10px;
  width: 600px;
}

.mapael .zoomButton {
  border-radius: 0.25rem;
  background-color: #f4f4f4;
  color: #444;
  border: 1px solid #ddd;
  padding-left: 1px;
  width: 16px;
  height: 16px;
  line-height: 14px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  font-weight: bold;
  left: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mapael .zoomButton:hover, .mapael .zoomButton:active, .mapael .zoomButton.hover {
  color: #2b2b2b;
  background-color: #e7e7e7;
}

.mapael .zoomReset {
  top: 10px;
  line-height: 12px;
}

.mapael .zoomIn {
  top: 30px;
}

.mapael .zoomOut {
  top: 50px;
}

/*
 * Plugins: JQVMap
 * ---------------
 */
.jqvmap-zoomin,
.jqvmap-zoomout {
  background-color: #f4f4f4;
  color: #444;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  width: 15px;
  height: 15px;
}

.jqvmap-zoomin:hover, .jqvmap-zoomin:active, .jqvmap-zoomin.hover,
.jqvmap-zoomout:hover,
.jqvmap-zoomout:active,
.jqvmap-zoomout.hover {
  color: #2b2b2b;
  background-color: #e7e7e7;
}

19286 19287
/*
 * Plugin: SweetAlert2
19288
 * -------------------
19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324
 */
.swal2-icon.swal2-info {
  color: #17a2b8;
  border-color: ligthen(#17a2b8, 20%);
}

.swal2-icon.swal2-warning {
  color: #ffc107;
  border-color: ligthen(#ffc107, 20%);
}

.swal2-icon.swal2-error {
  color: #dc3545;
  border-color: ligthen(#dc3545, 20%);
}

.swal2-icon.swal2-question {
  color: #6c757d;
  border-color: ligthen(#6c757d, 20%);
}

.swal2-icon.swal2-success {
  color: #28a745;
  border-color: ligthen(#28a745, 20%);
}

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: ligthen(#28a745, 20%);
}

.swal2-icon.swal2-success [class^="swal2-success-line"] {
  background-color: #28a745;
}

/*
 * Plugin: Toastr
19325
 * --------------
19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346
 */
.toast {
  background-color: #007bff;
}

.toast-success {
  background-color: #28a745;
}

.toast-error {
  background-color: #dc3545;
}

.toast-info {
  background-color: #17a2b8;
}

.toast-warning {
  background-color: #ffc107;
}

19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383
/*
 * Plugins: Miscellaneous
 * ----------------------
 * Old plugin codes
 */
.jqstooltip {
  height: auto !important;
  padding: 5px !important;
  width: auto !important;
}

.connectedSortable {
  min-height: 100px;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sort-highlight {
  background: #f8f9fa;
  border: 1px dashed #dee2e6;
  margin-bottom: 10px;
}

.chart {
  overflow: hidden;
  position: relative;
}

A
Abdullah Almsaeed 已提交
19384
/*
19385 19386
 * Misc: Miscellaneous
 * -------------------
A
Abdullah Almsaeed 已提交
19387
 */
A
Abdullah Almsaeed 已提交
19388 19389 19390
.border-transparent {
  border-color: transparent !important;
}
A
Abdullah Almsaeed 已提交
19391 19392 19393 19394

.description-block {
  display: block;
  margin: 10px 0;
A
Abdullah Almsaeed 已提交
19395 19396
  text-align: center;
}
A
Abdullah Almsaeed 已提交
19397

A
Abdullah Almsaeed 已提交
19398 19399 19400
.description-block.margin-bottom {
  margin-bottom: 25px;
}
A
Abdullah Almsaeed 已提交
19401

A
Abdullah Almsaeed 已提交
19402
.description-block > .description-header {
19403 19404
  font-size: 16px;
  font-weight: 600;
A
Abdullah Almsaeed 已提交
19405 19406 19407
  margin: 0;
  padding: 0;
}
A
Abdullah Almsaeed 已提交
19408

19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625
.description-block > .description-text {
  text-transform: uppercase;
}

.description-block .description-icon {
  font-size: 16px;
}

.list-group-unbordered > .list-group-item {
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.list-header {
  color: #6c757d;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 4px;
}

.list-seperator {
  background: rgba(0, 0, 0, 0.125);
  height: 1px;
  margin: 15px 0 9px 0;
}

.list-link > a {
  color: #6c757d;
  padding: 4px;
}

.list-link > a:hover {
  color: #212529;
}

.user-block::after {
  display: block;
  clear: both;
  content: "";
}

.user-block img {
  float: left;
  height: 40px;
  width: 40px;
}

.user-block .username,
.user-block .description,
.user-block .comment {
  display: block;
  margin-left: 50px;
}

.user-block .username {
  font-size: 16px;
  font-weight: 600;
}

.user-block .description {
  color: #999;
  font-size: 13px;
}

.user-block.user-block-sm .username,
.user-block.user-block-sm .description,
.user-block.user-block-sm .comment {
  margin-left: 40px;
}

.user-block.user-block-sm .username {
  font-size: 14px;
}

.img-sm, .card-comments .card-comment img, .user-block.user-block-sm img,
.img-md,
.img-lg {
  float: left;
}

.img-sm, .card-comments .card-comment img, .user-block.user-block-sm img {
  height: 30px !important;
  width: 30px !important;
}

.img-sm + .img-push, .card-comments .card-comment img + .img-push, .user-block.user-block-sm img + .img-push {
  margin-left: 40px;
}

.img-md {
  width: 60px;
  height: 60px;
}

.img-md + .img-push {
  margin-left: 70px;
}

.img-lg {
  width: 100px;
  height: 100px;
}

.img-lg + .img-push {
  margin-left: 110px;
}

.img-bordered {
  border: 3px solid #adb5bd;
  padding: 3px;
}

.img-bordered-sm {
  border: 2px solid #adb5bd;
  padding: 2px;
}

.img-rounded {
  border-radius: 0.25rem;
}

.img-circle {
  border-radius: 50%;
}

.img-size-64,
.img-size-50,
.img-size-32 {
  height: auto;
}

.img-size-64 {
  width: 64px;
}

.img-size-50 {
  width: 50px;
}

.img-size-32 {
  width: 32px;
}

.size-32,
.size-40,
.size-50 {
  display: block;
  text-align: center;
}

.size-32 {
  height: 32px;
  line-height: 32px;
  width: 32px;
}

.size-40 {
  height: 40px;
  line-height: 40px;
  width: 40px;
}

.size-50 {
  height: 50px;
  line-height: 50px;
  width: 50px;
}

.attachment-block {
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 10px;
  padding: 5px;
}

.attachment-block .attachment-img {
  float: left;
  height: auto;
  max-height: 100px;
  max-width: 100px;
}

.attachment-block .attachment-pushed {
  margin-left: 110px;
}

.attachment-block .attachment-heading {
  margin: 0;
}

.attachment-block .attachment-text {
  color: #555;
}

.card > .overlay,
.card > .loading-img,
.overlay-wrapper > .overlay,
.overlay-wrapper > .loading-img,
.info-box > .overlay,
.info-box > .loading-img,
.small-box > .overlay,
.small-box > .loading-img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.card .overlay,
.overlay-wrapper .overlay,
.info-box .overlay,
.small-box .overlay {
  border-radius: 0.25rem;
19626
  -ms-flex-align: center;
19627 19628
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
19629
  display: -ms-flexbox;
19630
  display: flex;
19631
  -ms-flex-pack: center;
19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696
  justify-content: center;
  z-index: 50;
}

.card .overlay > .fa,
.card .overlay > .fas,
.card .overlay > .far,
.card .overlay > .fab,
.card .overlay > .glyphicon,
.card .overlay > .ion,
.overlay-wrapper .overlay > .fa,
.overlay-wrapper .overlay > .fas,
.overlay-wrapper .overlay > .far,
.overlay-wrapper .overlay > .fab,
.overlay-wrapper .overlay > .glyphicon,
.overlay-wrapper .overlay > .ion,
.info-box .overlay > .fa,
.info-box .overlay > .fas,
.info-box .overlay > .far,
.info-box .overlay > .fab,
.info-box .overlay > .glyphicon,
.info-box .overlay > .ion,
.small-box .overlay > .fa,
.small-box .overlay > .fas,
.small-box .overlay > .far,
.small-box .overlay > .fab,
.small-box .overlay > .glyphicon,
.small-box .overlay > .ion {
  color: #343a40;
}

.card .overlay.dark,
.overlay-wrapper .overlay.dark,
.info-box .overlay.dark,
.small-box .overlay.dark {
  background: rgba(0, 0, 0, 0.5);
}

.card .overlay.dark > .fa,
.card .overlay.dark > .fas,
.card .overlay.dark > .far,
.card .overlay.dark > .fab,
.card .overlay.dark > .glyphicon,
.card .overlay.dark > .ion,
.overlay-wrapper .overlay.dark > .fa,
.overlay-wrapper .overlay.dark > .fas,
.overlay-wrapper .overlay.dark > .far,
.overlay-wrapper .overlay.dark > .fab,
.overlay-wrapper .overlay.dark > .glyphicon,
.overlay-wrapper .overlay.dark > .ion,
.info-box .overlay.dark > .fa,
.info-box .overlay.dark > .fas,
.info-box .overlay.dark > .far,
.info-box .overlay.dark > .fab,
.info-box .overlay.dark > .glyphicon,
.info-box .overlay.dark > .ion,
.small-box .overlay.dark > .fa,
.small-box .overlay.dark > .fas,
.small-box .overlay.dark > .far,
.small-box .overlay.dark > .fab,
.small-box .overlay.dark > .glyphicon,
.small-box .overlay.dark > .ion {
  color: #ced4da;
}

19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761
.ribbon-wrapper {
  height: 90px;
  overflow: hidden;
  position: absolute;
  right: -2px;
  top: -2px;
  z-index: 10;
  width: 90px;
}

.ribbon-wrapper.ribbon-lg {
  height: 180px;
  width: 180px;
}

.ribbon-wrapper.ribbon-lg .ribbon {
  top: 26px;
  right: -59px;
  width: 160px;
}

.ribbon-wrapper.ribbon-xl {
  height: 240px;
  width: 240px;
}

.ribbon-wrapper.ribbon-xl .ribbon {
  top: 59px;
  right: -48px;
  width: 240px;
}

.ribbon-wrapper .ribbon {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  font-size: 0.8rem;
  line-height: 100%;
  padding: 0.375rem 0;
  position: relative;
  right: -12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  top: 9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 110px;
}

.ribbon-wrapper .ribbon::before, .ribbon-wrapper .ribbon::after {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #9e9e9e;
  bottom: -3px;
  content: "";
  position: absolute;
}

.ribbon-wrapper .ribbon::before {
  left: 0;
}

.ribbon-wrapper .ribbon::after {
  right: 0;
}

19762 19763 19764 19765 19766 19767 19768 19769 19770 19771
.back-to-top {
  bottom: 1.25rem;
  position: fixed;
  right: 1.25rem;
}

.back-to-top:focus {
  box-shadow: none;
}

R
REJack 已提交
19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074
pre {
  padding: .75rem;
}

blockquote {
  background: #ffffff;
  border-left: 0.7rem solid #007bff;
  margin: 1.5em .7rem;
  padding: 0.5em .7rem;
}

.box blockquote {
  background: #e9ecef;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote h1,
blockquote h2,
blockquote h3,
blockquote h4,
blockquote h5,
blockquote h6 {
  color: #007bff;
  font-size: 1.25rem;
  font-weight: 600;
}

blockquote.quote-primary {
  border-color: #007bff;
}

blockquote.quote-primary h1,
blockquote.quote-primary h2,
blockquote.quote-primary h3,
blockquote.quote-primary h4,
blockquote.quote-primary h5,
blockquote.quote-primary h6 {
  color: #007bff;
}

blockquote.quote-secondary {
  border-color: #6c757d;
}

blockquote.quote-secondary h1,
blockquote.quote-secondary h2,
blockquote.quote-secondary h3,
blockquote.quote-secondary h4,
blockquote.quote-secondary h5,
blockquote.quote-secondary h6 {
  color: #6c757d;
}

blockquote.quote-success {
  border-color: #28a745;
}

blockquote.quote-success h1,
blockquote.quote-success h2,
blockquote.quote-success h3,
blockquote.quote-success h4,
blockquote.quote-success h5,
blockquote.quote-success h6 {
  color: #28a745;
}

blockquote.quote-info {
  border-color: #17a2b8;
}

blockquote.quote-info h1,
blockquote.quote-info h2,
blockquote.quote-info h3,
blockquote.quote-info h4,
blockquote.quote-info h5,
blockquote.quote-info h6 {
  color: #17a2b8;
}

blockquote.quote-warning {
  border-color: #ffc107;
}

blockquote.quote-warning h1,
blockquote.quote-warning h2,
blockquote.quote-warning h3,
blockquote.quote-warning h4,
blockquote.quote-warning h5,
blockquote.quote-warning h6 {
  color: #ffc107;
}

blockquote.quote-danger {
  border-color: #dc3545;
}

blockquote.quote-danger h1,
blockquote.quote-danger h2,
blockquote.quote-danger h3,
blockquote.quote-danger h4,
blockquote.quote-danger h5,
blockquote.quote-danger h6 {
  color: #dc3545;
}

blockquote.quote-light {
  border-color: #f8f9fa;
}

blockquote.quote-light h1,
blockquote.quote-light h2,
blockquote.quote-light h3,
blockquote.quote-light h4,
blockquote.quote-light h5,
blockquote.quote-light h6 {
  color: #f8f9fa;
}

blockquote.quote-dark {
  border-color: #343a40;
}

blockquote.quote-dark h1,
blockquote.quote-dark h2,
blockquote.quote-dark h3,
blockquote.quote-dark h4,
blockquote.quote-dark h5,
blockquote.quote-dark h6 {
  color: #343a40;
}

blockquote.quote-blue {
  border-color: #007bff;
}

blockquote.quote-blue h1,
blockquote.quote-blue h2,
blockquote.quote-blue h3,
blockquote.quote-blue h4,
blockquote.quote-blue h5,
blockquote.quote-blue h6 {
  color: #007bff;
}

blockquote.quote-indigo {
  border-color: #6610f2;
}

blockquote.quote-indigo h1,
blockquote.quote-indigo h2,
blockquote.quote-indigo h3,
blockquote.quote-indigo h4,
blockquote.quote-indigo h5,
blockquote.quote-indigo h6 {
  color: #6610f2;
}

blockquote.quote-purple {
  border-color: #6f42c1;
}

blockquote.quote-purple h1,
blockquote.quote-purple h2,
blockquote.quote-purple h3,
blockquote.quote-purple h4,
blockquote.quote-purple h5,
blockquote.quote-purple h6 {
  color: #6f42c1;
}

blockquote.quote-pink {
  border-color: #e83e8c;
}

blockquote.quote-pink h1,
blockquote.quote-pink h2,
blockquote.quote-pink h3,
blockquote.quote-pink h4,
blockquote.quote-pink h5,
blockquote.quote-pink h6 {
  color: #e83e8c;
}

blockquote.quote-red {
  border-color: #dc3545;
}

blockquote.quote-red h1,
blockquote.quote-red h2,
blockquote.quote-red h3,
blockquote.quote-red h4,
blockquote.quote-red h5,
blockquote.quote-red h6 {
  color: #dc3545;
}

blockquote.quote-orange {
  border-color: #fd7e14;
}

blockquote.quote-orange h1,
blockquote.quote-orange h2,
blockquote.quote-orange h3,
blockquote.quote-orange h4,
blockquote.quote-orange h5,
blockquote.quote-orange h6 {
  color: #fd7e14;
}

blockquote.quote-yellow {
  border-color: #ffc107;
}

blockquote.quote-yellow h1,
blockquote.quote-yellow h2,
blockquote.quote-yellow h3,
blockquote.quote-yellow h4,
blockquote.quote-yellow h5,
blockquote.quote-yellow h6 {
  color: #ffc107;
}

blockquote.quote-green {
  border-color: #28a745;
}

blockquote.quote-green h1,
blockquote.quote-green h2,
blockquote.quote-green h3,
blockquote.quote-green h4,
blockquote.quote-green h5,
blockquote.quote-green h6 {
  color: #28a745;
}

blockquote.quote-teal {
  border-color: #20c997;
}

blockquote.quote-teal h1,
blockquote.quote-teal h2,
blockquote.quote-teal h3,
blockquote.quote-teal h4,
blockquote.quote-teal h5,
blockquote.quote-teal h6 {
  color: #20c997;
}

blockquote.quote-cyan {
  border-color: #17a2b8;
}

blockquote.quote-cyan h1,
blockquote.quote-cyan h2,
blockquote.quote-cyan h3,
blockquote.quote-cyan h4,
blockquote.quote-cyan h5,
blockquote.quote-cyan h6 {
  color: #17a2b8;
}

blockquote.quote-white {
  border-color: #ffffff;
}

blockquote.quote-white h1,
blockquote.quote-white h2,
blockquote.quote-white h3,
blockquote.quote-white h4,
blockquote.quote-white h5,
blockquote.quote-white h6 {
  color: #ffffff;
}

blockquote.quote-gray {
  border-color: #6c757d;
}

blockquote.quote-gray h1,
blockquote.quote-gray h2,
blockquote.quote-gray h3,
blockquote.quote-gray h4,
blockquote.quote-gray h5,
blockquote.quote-gray h6 {
  color: #6c757d;
}

blockquote.quote-gray-dark {
  border-color: #343a40;
}

blockquote.quote-gray-dark h1,
blockquote.quote-gray-dark h2,
blockquote.quote-gray-dark h3,
blockquote.quote-gray-dark h4,
blockquote.quote-gray-dark h5,
blockquote.quote-gray-dark h6 {
  color: #343a40;
}

20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197
/*
 * Misc: Print
 * -----------
 */
@media print {
  .no-print, .main-sidebar,
  .main-header,
  .content-header {
    display: none !important;
  }
  .content-wrapper,
  .main-footer {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    margin-left: 0 !important;
    min-height: 0 !important;
  }
  .layout-fixed .content-wrapper {
    padding-top: 0 !important;
  }
  .invoice {
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .invoice-col {
    float: left;
    width: 33.3333333%;
  }
  .table-responsive {
    overflow: auto;
  }
  .table-responsive > .table tr th,
  .table-responsive > .table tr td {
    white-space: normal !important;
  }
}

/*
 * Component: Text
 * -------------
 */
.text-bold, .text-bold.table td, .text-bold.table th {
  font-weight: 700;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-xs {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.25rem !important;
}

.text-xl {
  font-size: 2rem !important;
}

.text-blue {
  color: #007bff;
}

.text-indigo {
  color: #6610f2;
}

.text-purple {
  color: #6f42c1;
}

.text-pink {
  color: #e83e8c;
}

.text-red {
  color: #dc3545;
}

.text-orange {
  color: #fd7e14;
}

.text-yellow {
  color: #ffc107;
}

.text-green {
  color: #28a745;
}

.text-teal {
  color: #20c997;
}

.text-cyan {
  color: #17a2b8;
}

.text-white {
  color: #ffffff;
}

.text-gray {
  color: #6c757d;
}

.text-gray-dark {
  color: #343a40;
}

/*
 * Component: Elevation
 * --------------------
 */
.elevation-0 {
  box-shadow: none !important;
}

R
REJack 已提交
20198
.elevation-1, .sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-secondary .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-success .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-success .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-info .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-info .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-warning .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-warning .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-danger .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-danger .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-light .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-light .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-dark .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-dark .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-blue .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-blue .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-indigo .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-indigo .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-purple .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-purple .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-pink .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-pink .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-red .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-red .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-orange .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-orange .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-yellow .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-yellow .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-green .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-green .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-teal .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-teal .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-cyan .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-cyan .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-white .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-white .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-gray .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-gray .nav-sidebar > .nav-item > .nav-link.active, .sidebar-dark-gray-dark .nav-sidebar > .nav-item > .nav-link.active, .sidebar-light-gray-dark .nav-sidebar > .nav-item > .nav-link.active, .callout {
20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

.elevation-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
}

.elevation-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23) !important;
}

.elevation-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22) !important;
}

.elevation-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22) !important;
}

20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437
/*
 * Misc: Colors
 * ------------
 */
.bg-primary, .label-primary,
.bg-primary > a,
.label-primary > a {
  color: #ffffff !important;
}

.bg-primary.btn.disabled, .btn.disabled.label-primary, .bg-primary.btn:disabled, .btn.label-primary:disabled, .bg-primary.btn:not(:disabled):not(.disabled):active, .btn.label-primary:not(:disabled):not(.disabled):active, .bg-primary.btn:not(:disabled):not(.disabled).active, .btn.label-primary:not(:disabled):not(.disabled).active,
.show > .bg-primary.btn.dropdown-toggle,
.show > .btn.dropdown-toggle.label-primary {
  background-image: none !important;
}

.bg-primary.btn:hover, .btn.label-primary:hover {
  border-color: #0062cc;
  color: #ffffff;
}

.bg-primary.btn:hover, .btn.label-primary:hover {
  background: #0069d9 linear-gradient(180deg, #267fde, #0069d9) repeat-x !important;
}

.bg-primary.btn:active, .btn.label-primary:active, .bg-primary.btn.active, .btn.active.label-primary {
  border-color: #005cbf;
  color: #ffffff;
}

.bg-primary.btn:active, .btn.label-primary:active, .bg-primary.btn.active, .btn.active.label-primary {
  background: #0062cc linear-gradient(180deg, #267ad4, #0062cc) repeat-x !important;
}

.bg-secondary,
.bg-secondary > a {
  color: #ffffff !important;
}

.bg-secondary.btn.disabled, .bg-secondary.btn:disabled, .bg-secondary.btn:not(:disabled):not(.disabled):active, .bg-secondary.btn:not(:disabled):not(.disabled).active,
.show > .bg-secondary.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-secondary.btn:hover {
  border-color: #545b62;
  color: #ffffff;
}

.bg-secondary.btn:hover {
  background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x !important;
}

.bg-secondary.btn:active, .bg-secondary.btn.active {
  border-color: #4e555b;
  color: #ffffff;
}

.bg-secondary.btn:active, .bg-secondary.btn.active {
  background: #545b62 linear-gradient(180deg, #6e7479, #545b62) repeat-x !important;
}

.bg-success, .alert-success, .label-success,
.bg-success > a,
.alert-success > a,
.label-success > a {
  color: #ffffff !important;
}

.bg-success.btn.disabled, .btn.disabled.alert-success, .btn.disabled.label-success, .bg-success.btn:disabled, .btn.alert-success:disabled, .btn.label-success:disabled, .bg-success.btn:not(:disabled):not(.disabled):active, .btn.alert-success:not(:disabled):not(.disabled):active, .btn.label-success:not(:disabled):not(.disabled):active, .bg-success.btn:not(:disabled):not(.disabled).active, .btn.alert-success:not(:disabled):not(.disabled).active, .btn.label-success:not(:disabled):not(.disabled).active,
.show > .bg-success.btn.dropdown-toggle,
.show > .btn.dropdown-toggle.alert-success,
.show > .btn.dropdown-toggle.label-success {
  background-image: none !important;
}

.bg-success.btn:hover, .btn.alert-success:hover, .btn.label-success:hover {
  border-color: #1e7e34;
  color: #ffffff;
}

.bg-success.btn:hover, .btn.alert-success:hover, .btn.label-success:hover {
  background: #218838 linear-gradient(180deg, #429a56, #218838) repeat-x !important;
}

.bg-success.btn:active, .btn.alert-success:active, .btn.label-success:active, .bg-success.btn.active, .btn.active.alert-success, .btn.active.label-success {
  border-color: #1c7430;
  color: #ffffff;
}

.bg-success.btn:active, .btn.alert-success:active, .btn.label-success:active, .bg-success.btn.active, .btn.active.alert-success, .btn.active.label-success {
  background: #1e7e34 linear-gradient(180deg, #409152, #1e7e34) repeat-x !important;
}

.bg-info, .alert-info, .label-info,
.bg-info > a,
.alert-info > a,
.label-info > a {
  color: #ffffff !important;
}

.bg-info.btn.disabled, .btn.disabled.alert-info, .btn.disabled.label-info, .bg-info.btn:disabled, .btn.alert-info:disabled, .btn.label-info:disabled, .bg-info.btn:not(:disabled):not(.disabled):active, .btn.alert-info:not(:disabled):not(.disabled):active, .btn.label-info:not(:disabled):not(.disabled):active, .bg-info.btn:not(:disabled):not(.disabled).active, .btn.alert-info:not(:disabled):not(.disabled).active, .btn.label-info:not(:disabled):not(.disabled).active,
.show > .bg-info.btn.dropdown-toggle,
.show > .btn.dropdown-toggle.alert-info,
.show > .btn.dropdown-toggle.label-info {
  background-image: none !important;
}

.bg-info.btn:hover, .btn.alert-info:hover, .btn.label-info:hover {
  border-color: #117a8b;
  color: #ffffff;
}

.bg-info.btn:hover, .btn.alert-info:hover, .btn.label-info:hover {
  background: #138496 linear-gradient(180deg, #3697a6, #138496) repeat-x !important;
}

.bg-info.btn:active, .btn.alert-info:active, .btn.label-info:active, .bg-info.btn.active, .btn.active.alert-info, .btn.active.label-info {
  border-color: #10707f;
  color: #ffffff;
}

.bg-info.btn:active, .btn.alert-info:active, .btn.label-info:active, .bg-info.btn.active, .btn.active.alert-info, .btn.active.label-info {
  background: #117a8b linear-gradient(180deg, #358e9c, #117a8b) repeat-x !important;
}

.bg-warning, .alert-warning, .label-warning,
.bg-warning > a,
.alert-warning > a,
.label-warning > a {
  color: #1F2D3D !important;
}

.bg-warning.btn.disabled, .btn.disabled.alert-warning, .btn.disabled.label-warning, .bg-warning.btn:disabled, .btn.alert-warning:disabled, .btn.label-warning:disabled, .bg-warning.btn:not(:disabled):not(.disabled):active, .btn.alert-warning:not(:disabled):not(.disabled):active, .btn.label-warning:not(:disabled):not(.disabled):active, .bg-warning.btn:not(:disabled):not(.disabled).active, .btn.alert-warning:not(:disabled):not(.disabled).active, .btn.label-warning:not(:disabled):not(.disabled).active,
.show > .bg-warning.btn.dropdown-toggle,
.show > .btn.dropdown-toggle.alert-warning,
.show > .btn.dropdown-toggle.label-warning {
  background-image: none !important;
}

.bg-warning.btn:hover, .btn.alert-warning:hover, .btn.label-warning:hover {
  border-color: #d39e00;
  color: #1F2D3D;
}

.bg-warning.btn:hover, .btn.alert-warning:hover, .btn.label-warning:hover {
  background: #e0a800 linear-gradient(180deg, #e4b526, #e0a800) repeat-x !important;
}

.bg-warning.btn:active, .btn.alert-warning:active, .btn.label-warning:active, .bg-warning.btn.active, .btn.active.alert-warning, .btn.active.label-warning {
  border-color: #c69500;
  color: #1F2D3D;
}

.bg-warning.btn:active, .btn.alert-warning:active, .btn.label-warning:active, .bg-warning.btn.active, .btn.active.alert-warning, .btn.active.label-warning {
  background: #d39e00 linear-gradient(180deg, #daad26, #d39e00) repeat-x !important;
}

.bg-danger, .alert-danger,
.alert-error, .label-danger,
.bg-danger > a,
.alert-danger > a,
.alert-error > a,
.label-danger > a {
  color: #ffffff !important;
}

.bg-danger.btn.disabled, .btn.disabled.alert-danger,
.btn.disabled.alert-error, .btn.disabled.label-danger, .bg-danger.btn:disabled, .btn.alert-danger:disabled,
.btn.alert-error:disabled, .btn.label-danger:disabled, .bg-danger.btn:not(:disabled):not(.disabled):active, .btn.alert-danger:not(:disabled):not(.disabled):active,
.btn.alert-error:not(:disabled):not(.disabled):active, .btn.label-danger:not(:disabled):not(.disabled):active, .bg-danger.btn:not(:disabled):not(.disabled).active, .btn.alert-danger:not(:disabled):not(.disabled).active,
.btn.alert-error:not(:disabled):not(.disabled).active, .btn.label-danger:not(:disabled):not(.disabled).active,
.show > .bg-danger.btn.dropdown-toggle,
.show > .btn.dropdown-toggle.alert-danger,
.show > .btn.dropdown-toggle.alert-error,
.show > .btn.dropdown-toggle.label-danger {
  background-image: none !important;
}

.bg-danger.btn:hover, .btn.alert-danger:hover,
.btn.alert-error:hover, .btn.label-danger:hover {
  border-color: #bd2130;
  color: #ffffff;
}

.bg-danger.btn:hover, .btn.alert-danger:hover,
.btn.alert-error:hover, .btn.label-danger:hover {
  background: #c82333 linear-gradient(180deg, #d04451, #c82333) repeat-x !important;
}

.bg-danger.btn:active, .btn.alert-danger:active,
.btn.alert-error:active, .btn.label-danger:active, .bg-danger.btn.active, .btn.active.alert-danger,
.btn.active.alert-error, .btn.active.label-danger {
  border-color: #b21f2d;
  color: #ffffff;
}

.bg-danger.btn:active, .btn.alert-danger:active,
.btn.alert-error:active, .btn.label-danger:active, .bg-danger.btn.active, .btn.active.alert-danger,
.btn.active.alert-error, .btn.active.label-danger {
  background: #bd2130 linear-gradient(180deg, #c7424f, #bd2130) repeat-x !important;
}

.bg-light,
.bg-light > a {
  color: #1F2D3D !important;
}

.bg-light.btn.disabled, .bg-light.btn:disabled, .bg-light.btn:not(:disabled):not(.disabled):active, .bg-light.btn:not(:disabled):not(.disabled).active,
.show > .bg-light.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-light.btn:hover {
  border-color: #dae0e5;
  color: #1F2D3D;
}

.bg-light.btn:hover {
  background: #e2e6ea linear-gradient(180deg, #e6eaed, #e2e6ea) repeat-x !important;
A
Abdullah Almsaeed 已提交
20438
}
A
Abdullah Almsaeed 已提交
20439

20440 20441 20442
.bg-light.btn:active, .bg-light.btn.active {
  border-color: #d3d9df;
  color: #1F2D3D;
A
Abdullah Almsaeed 已提交
20443
}
A
Abdullah Almsaeed 已提交
20444

20445 20446
.bg-light.btn:active, .bg-light.btn.active {
  background: #dae0e5 linear-gradient(180deg, #e0e4e9, #dae0e5) repeat-x !important;
A
Abdullah Almsaeed 已提交
20447
}
A
Abdullah Almsaeed 已提交
20448

20449 20450
.bg-dark,
.bg-dark > a {
A
Abdullah Almsaeed 已提交
20451
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
20452
}
A
Abdullah Almsaeed 已提交
20453

20454 20455 20456
.bg-dark.btn.disabled, .bg-dark.btn:disabled, .bg-dark.btn:not(:disabled):not(.disabled):active, .bg-dark.btn:not(:disabled):not(.disabled).active,
.show > .bg-dark.btn.dropdown-toggle {
  background-image: none !important;
A
Abdullah Almsaeed 已提交
20457
}
A
Abdullah Almsaeed 已提交
20458

20459 20460 20461
.bg-dark.btn:hover {
  border-color: #1d2124;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
20462
}
A
Abdullah Almsaeed 已提交
20463

20464 20465
.bg-dark.btn:hover {
  background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x !important;
A
Abdullah Almsaeed 已提交
20466
}
A
Abdullah Almsaeed 已提交
20467

20468 20469 20470
.bg-dark.btn:active, .bg-dark.btn.active {
  border-color: #171a1d;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
20471
}
A
Abdullah Almsaeed 已提交
20472

20473 20474
.bg-dark.btn:active, .bg-dark.btn.active {
  background: #1d2124 linear-gradient(180deg, #3f4245, #1d2124) repeat-x !important;
A
Abdullah Almsaeed 已提交
20475
}
A
Abdullah Almsaeed 已提交
20476

R
REJack 已提交
20477 20478 20479 20480 20481
.bg-blue {
  background-color: #007bff;
}

.bg-blue,
20482
.bg-blue > a {
R
REJack 已提交
20483 20484 20485
  color: #ffffff !important;
}

20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508
.bg-blue.btn.disabled, .bg-blue.btn:disabled, .bg-blue.btn:not(:disabled):not(.disabled):active, .bg-blue.btn:not(:disabled):not(.disabled).active,
.show > .bg-blue.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-blue.btn:hover {
  border-color: #0062cc;
  color: #ffffff;
}

.bg-blue.btn:hover {
  background: #0069d9 linear-gradient(180deg, #267fde, #0069d9) repeat-x !important;
}

.bg-blue.btn:active, .bg-blue.btn.active {
  border-color: #005cbf;
  color: #ffffff;
}

.bg-blue.btn:active, .bg-blue.btn.active {
  background: #0062cc linear-gradient(180deg, #267ad4, #0062cc) repeat-x !important;
}

R
REJack 已提交
20509 20510 20511 20512 20513
.bg-indigo {
  background-color: #6610f2;
}

.bg-indigo,
20514
.bg-indigo > a {
R
REJack 已提交
20515 20516 20517
  color: #ffffff !important;
}

20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540
.bg-indigo.btn.disabled, .bg-indigo.btn:disabled, .bg-indigo.btn:not(:disabled):not(.disabled):active, .bg-indigo.btn:not(:disabled):not(.disabled).active,
.show > .bg-indigo.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-indigo.btn:hover {
  border-color: #510bc4;
  color: #ffffff;
}

.bg-indigo.btn:hover {
  background: #560bd0 linear-gradient(180deg, #7030d7, #560bd0) repeat-x !important;
}

.bg-indigo.btn:active, .bg-indigo.btn.active {
  border-color: #4c0ab8;
  color: #ffffff;
}

.bg-indigo.btn:active, .bg-indigo.btn.active {
  background: #510bc4 linear-gradient(180deg, #6b2fcd, #510bc4) repeat-x !important;
}

R
REJack 已提交
20541 20542 20543 20544 20545
.bg-purple {
  background-color: #6f42c1;
}

.bg-purple,
20546
.bg-purple > a {
R
REJack 已提交
20547 20548 20549
  color: #ffffff !important;
}

20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572
.bg-purple.btn.disabled, .bg-purple.btn:disabled, .bg-purple.btn:not(:disabled):not(.disabled):active, .bg-purple.btn:not(:disabled):not(.disabled).active,
.show > .bg-purple.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-purple.btn:hover {
  border-color: #59339d;
  color: #ffffff;
}

.bg-purple.btn:hover {
  background: #5e37a6 linear-gradient(180deg, #7655b4, #5e37a6) repeat-x !important;
}

.bg-purple.btn:active, .bg-purple.btn.active {
  border-color: #533093;
  color: #ffffff;
}

.bg-purple.btn:active, .bg-purple.btn.active {
  background: #59339d linear-gradient(180deg, #7252ab, #59339d) repeat-x !important;
}

R
REJack 已提交
20573 20574 20575 20576 20577
.bg-pink {
  background-color: #e83e8c;
}

.bg-pink,
20578
.bg-pink > a {
R
REJack 已提交
20579 20580 20581
  color: #ffffff !important;
}

20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604
.bg-pink.btn.disabled, .bg-pink.btn:disabled, .bg-pink.btn:not(:disabled):not(.disabled):active, .bg-pink.btn:not(:disabled):not(.disabled).active,
.show > .bg-pink.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-pink.btn:hover {
  border-color: #d91a72;
  color: #ffffff;
}

.bg-pink.btn:hover {
  background: #e41c78 linear-gradient(180deg, #e83e8c, #e41c78) repeat-x !important;
}

.bg-pink.btn:active, .bg-pink.btn.active {
  border-color: #ce196c;
  color: #ffffff;
}

.bg-pink.btn:active, .bg-pink.btn.active {
  background: #d91a72 linear-gradient(180deg, #df3c87, #d91a72) repeat-x !important;
}

R
REJack 已提交
20605 20606 20607 20608 20609
.bg-red {
  background-color: #dc3545;
}

.bg-red,
20610
.bg-red > a {
R
REJack 已提交
20611 20612 20613
  color: #ffffff !important;
}

20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636
.bg-red.btn.disabled, .bg-red.btn:disabled, .bg-red.btn:not(:disabled):not(.disabled):active, .bg-red.btn:not(:disabled):not(.disabled).active,
.show > .bg-red.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-red.btn:hover {
  border-color: #bd2130;
  color: #ffffff;
}

.bg-red.btn:hover {
  background: #c82333 linear-gradient(180deg, #d04451, #c82333) repeat-x !important;
}

.bg-red.btn:active, .bg-red.btn.active {
  border-color: #b21f2d;
  color: #ffffff;
}

.bg-red.btn:active, .bg-red.btn.active {
  background: #bd2130 linear-gradient(180deg, #c7424f, #bd2130) repeat-x !important;
}

R
REJack 已提交
20637 20638 20639 20640 20641
.bg-orange {
  background-color: #fd7e14;
}

.bg-orange,
20642
.bg-orange > a {
R
REJack 已提交
20643 20644 20645
  color: #1F2D3D !important;
}

20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668
.bg-orange.btn.disabled, .bg-orange.btn:disabled, .bg-orange.btn:not(:disabled):not(.disabled):active, .bg-orange.btn:not(:disabled):not(.disabled).active,
.show > .bg-orange.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-orange.btn:hover {
  border-color: #dc6502;
  color: #ffffff;
}

.bg-orange.btn:hover {
  background: #e96b02 linear-gradient(180deg, #ec8128, #e96b02) repeat-x !important;
}

.bg-orange.btn:active, .bg-orange.btn.active {
  border-color: #cf5f02;
  color: #ffffff;
}

.bg-orange.btn:active, .bg-orange.btn.active {
  background: #dc6502 linear-gradient(180deg, #e17c28, #dc6502) repeat-x !important;
}

R
REJack 已提交
20669 20670 20671 20672 20673
.bg-yellow {
  background-color: #ffc107;
}

.bg-yellow,
20674
.bg-yellow > a {
R
REJack 已提交
20675 20676 20677
  color: #1F2D3D !important;
}

20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700
.bg-yellow.btn.disabled, .bg-yellow.btn:disabled, .bg-yellow.btn:not(:disabled):not(.disabled):active, .bg-yellow.btn:not(:disabled):not(.disabled).active,
.show > .bg-yellow.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-yellow.btn:hover {
  border-color: #d39e00;
  color: #1F2D3D;
}

.bg-yellow.btn:hover {
  background: #e0a800 linear-gradient(180deg, #e4b526, #e0a800) repeat-x !important;
}

.bg-yellow.btn:active, .bg-yellow.btn.active {
  border-color: #c69500;
  color: #1F2D3D;
}

.bg-yellow.btn:active, .bg-yellow.btn.active {
  background: #d39e00 linear-gradient(180deg, #daad26, #d39e00) repeat-x !important;
}

R
REJack 已提交
20701 20702 20703 20704 20705
.bg-green {
  background-color: #28a745;
}

.bg-green,
20706
.bg-green > a {
R
REJack 已提交
20707 20708 20709
  color: #ffffff !important;
}

20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732
.bg-green.btn.disabled, .bg-green.btn:disabled, .bg-green.btn:not(:disabled):not(.disabled):active, .bg-green.btn:not(:disabled):not(.disabled).active,
.show > .bg-green.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-green.btn:hover {
  border-color: #1e7e34;
  color: #ffffff;
}

.bg-green.btn:hover {
  background: #218838 linear-gradient(180deg, #429a56, #218838) repeat-x !important;
}

.bg-green.btn:active, .bg-green.btn.active {
  border-color: #1c7430;
  color: #ffffff;
}

.bg-green.btn:active, .bg-green.btn.active {
  background: #1e7e34 linear-gradient(180deg, #409152, #1e7e34) repeat-x !important;
}

R
REJack 已提交
20733 20734 20735 20736 20737
.bg-teal {
  background-color: #20c997;
}

.bg-teal,
20738
.bg-teal > a {
R
REJack 已提交
20739 20740 20741
  color: #ffffff !important;
}

20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764
.bg-teal.btn.disabled, .bg-teal.btn:disabled, .bg-teal.btn:not(:disabled):not(.disabled):active, .bg-teal.btn:not(:disabled):not(.disabled).active,
.show > .bg-teal.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-teal.btn:hover {
  border-color: #199d76;
  color: #ffffff;
}

.bg-teal.btn:hover {
  background: #1ba87e linear-gradient(180deg, #3db592, #1ba87e) repeat-x !important;
}

.bg-teal.btn:active, .bg-teal.btn.active {
  border-color: #17926e;
  color: #ffffff;
}

.bg-teal.btn:active, .bg-teal.btn.active {
  background: #199d76 linear-gradient(180deg, #3bac8b, #199d76) repeat-x !important;
}

R
REJack 已提交
20765 20766 20767 20768 20769
.bg-cyan {
  background-color: #17a2b8;
}

.bg-cyan,
20770
.bg-cyan > a {
R
REJack 已提交
20771 20772 20773
  color: #ffffff !important;
}

20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796
.bg-cyan.btn.disabled, .bg-cyan.btn:disabled, .bg-cyan.btn:not(:disabled):not(.disabled):active, .bg-cyan.btn:not(:disabled):not(.disabled).active,
.show > .bg-cyan.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-cyan.btn:hover {
  border-color: #117a8b;
  color: #ffffff;
}

.bg-cyan.btn:hover {
  background: #138496 linear-gradient(180deg, #3697a6, #138496) repeat-x !important;
}

.bg-cyan.btn:active, .bg-cyan.btn.active {
  border-color: #10707f;
  color: #ffffff;
}

.bg-cyan.btn:active, .bg-cyan.btn.active {
  background: #117a8b linear-gradient(180deg, #358e9c, #117a8b) repeat-x !important;
}

R
REJack 已提交
20797 20798 20799 20800 20801
.bg-white {
  background-color: #ffffff;
}

.bg-white,
20802
.bg-white > a {
R
REJack 已提交
20803 20804 20805
  color: #1F2D3D !important;
}

20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828
.bg-white.btn.disabled, .bg-white.btn:disabled, .bg-white.btn:not(:disabled):not(.disabled):active, .bg-white.btn:not(:disabled):not(.disabled).active,
.show > .bg-white.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-white.btn:hover {
  border-color: #e6e6e6;
  color: #1F2D3D;
}

.bg-white.btn:hover {
  background: #ececec linear-gradient(180deg, #efefef, #ececec) repeat-x !important;
}

.bg-white.btn:active, .bg-white.btn.active {
  border-color: #dfdfdf;
  color: #1F2D3D;
}

.bg-white.btn:active, .bg-white.btn.active {
  background: #e6e6e6 linear-gradient(180deg, #e9e9e9, #e6e6e6) repeat-x !important;
}

R
REJack 已提交
20829 20830 20831 20832
.bg-gray {
  background-color: #6c757d;
}

20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881
.bg-gray,
.bg-gray > a {
  color: #ffffff !important;
}

.bg-gray.btn.disabled, .bg-gray.btn:disabled, .bg-gray.btn:not(:disabled):not(.disabled):active, .bg-gray.btn:not(:disabled):not(.disabled).active,
.show > .bg-gray.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gray.btn:hover {
  border-color: #545b62;
  color: #ffffff;
}

.bg-gray.btn:hover {
  background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x !important;
}

.bg-gray.btn:active, .bg-gray.btn.active {
  border-color: #4e555b;
  color: #ffffff;
}

.bg-gray.btn:active, .bg-gray.btn.active {
  background: #545b62 linear-gradient(180deg, #6e7479, #545b62) repeat-x !important;
}

.bg-gray-dark {
  background-color: #343a40;
}

.bg-gray-dark,
.bg-gray-dark > a {
  color: #ffffff !important;
}

.bg-gray-dark.btn.disabled, .bg-gray-dark.btn:disabled, .bg-gray-dark.btn:not(:disabled):not(.disabled):active, .bg-gray-dark.btn:not(:disabled):not(.disabled).active,
.show > .bg-gray-dark.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gray-dark.btn:hover {
  border-color: #1d2124;
  color: #ffffff;
}

.bg-gray-dark.btn:hover {
  background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x !important;
R
REJack 已提交
20882 20883
}

20884 20885 20886
.bg-gray-dark.btn:active, .bg-gray-dark.btn.active {
  border-color: #171a1d;
  color: #ffffff;
R
REJack 已提交
20887 20888
}

20889 20890
.bg-gray-dark.btn:active, .bg-gray-dark.btn.active {
  background: #1d2124 linear-gradient(180deg, #3f4245, #1d2124) repeat-x !important;
R
REJack 已提交
20891 20892
}

A
Abdullah Almsaeed 已提交
20893 20894
.bg-gray {
  background-color: #adb5bd;
20895
  color: #1F2D3D;
A
Abdullah Almsaeed 已提交
20896
}
A
Abdullah Almsaeed 已提交
20897

A
Abdullah Almsaeed 已提交
20898 20899
.bg-gray-light {
  background-color: #f2f4f5;
A
Abdullah Almsaeed 已提交
20900
  color: #1F2D3D !important;
A
Abdullah Almsaeed 已提交
20901
}
A
Abdullah Almsaeed 已提交
20902

A
Abdullah Almsaeed 已提交
20903 20904
.bg-black {
  background-color: #000;
A
Abdullah Almsaeed 已提交
20905
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
20906
}
A
Abdullah Almsaeed 已提交
20907

A
Abdullah Almsaeed 已提交
20908 20909
.bg-white {
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
20910
  color: #1F2D3D !important;
A
Abdullah Almsaeed 已提交
20911
}
A
Abdullah Almsaeed 已提交
20912

R
REJack 已提交
20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927
.bg-gradient-primary {
  color: #ffffff;
}

.bg-gradient-primary {
  background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x !important;
}

.bg-gradient-primary.btn.disabled, .bg-gradient-primary.btn:disabled, .bg-gradient-primary.btn:not(:disabled):not(.disabled):active, .bg-gradient-primary.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-primary.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-primary.btn:hover {
  border-color: #0062cc;
20928
  color: #ffffff;
R
REJack 已提交
20929 20930 20931 20932 20933 20934 20935 20936
}

.bg-gradient-primary.btn:hover {
  background: #0069d9 linear-gradient(180deg, #267fde, #0069d9) repeat-x !important;
}

.bg-gradient-primary.btn:active, .bg-gradient-primary.btn.active {
  border-color: #005cbf;
20937
  color: #ffffff;
R
REJack 已提交
20938 20939 20940 20941 20942 20943 20944
}

.bg-gradient-primary.btn:active, .bg-gradient-primary.btn.active {
  background: #0062cc linear-gradient(180deg, #267ad4, #0062cc) repeat-x !important;
}

.bg-gradient-secondary {
R
REJack 已提交
20945 20946 20947
  color: #ffffff;
}

R
REJack 已提交
20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958
.bg-gradient-secondary {
  background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x !important;
}

.bg-gradient-secondary.btn.disabled, .bg-gradient-secondary.btn:disabled, .bg-gradient-secondary.btn:not(:disabled):not(.disabled):active, .bg-gradient-secondary.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-secondary.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-secondary.btn:hover {
  border-color: #545b62;
20959
  color: #ffffff;
R
REJack 已提交
20960 20961
}

R
REJack 已提交
20962 20963 20964 20965 20966 20967
.bg-gradient-secondary.btn:hover {
  background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x !important;
}

.bg-gradient-secondary.btn:active, .bg-gradient-secondary.btn.active {
  border-color: #4e555b;
20968
  color: #ffffff;
R
REJack 已提交
20969 20970 20971 20972
}

.bg-gradient-secondary.btn:active, .bg-gradient-secondary.btn.active {
  background: #545b62 linear-gradient(180deg, #6e7479, #545b62) repeat-x !important;
R
REJack 已提交
20973 20974
}

R
REJack 已提交
20975
.bg-gradient-success {
R
REJack 已提交
20976 20977 20978
  color: #ffffff;
}

R
REJack 已提交
20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989
.bg-gradient-success {
  background: #28a745 linear-gradient(180deg, #48b461, #28a745) repeat-x !important;
}

.bg-gradient-success.btn.disabled, .bg-gradient-success.btn:disabled, .bg-gradient-success.btn:not(:disabled):not(.disabled):active, .bg-gradient-success.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-success.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-success.btn:hover {
  border-color: #1e7e34;
20990
  color: #ffffff;
R
REJack 已提交
20991 20992 20993 20994 20995 20996 20997 20998
}

.bg-gradient-success.btn:hover {
  background: #218838 linear-gradient(180deg, #429a56, #218838) repeat-x !important;
}

.bg-gradient-success.btn:active, .bg-gradient-success.btn.active {
  border-color: #1c7430;
20999
  color: #ffffff;
R
REJack 已提交
21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020
}

.bg-gradient-success.btn:active, .bg-gradient-success.btn.active {
  background: #1e7e34 linear-gradient(180deg, #409152, #1e7e34) repeat-x !important;
}

.bg-gradient-info {
  color: #ffffff;
}

.bg-gradient-info {
  background: #17a2b8 linear-gradient(180deg, #3ab0c3, #17a2b8) repeat-x !important;
}

.bg-gradient-info.btn.disabled, .bg-gradient-info.btn:disabled, .bg-gradient-info.btn:not(:disabled):not(.disabled):active, .bg-gradient-info.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-info.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-info.btn:hover {
  border-color: #117a8b;
21021
  color: #ffffff;
R
REJack 已提交
21022 21023 21024 21025 21026 21027 21028 21029
}

.bg-gradient-info.btn:hover {
  background: #138496 linear-gradient(180deg, #3697a6, #138496) repeat-x !important;
}

.bg-gradient-info.btn:active, .bg-gradient-info.btn.active {
  border-color: #10707f;
21030
  color: #ffffff;
R
REJack 已提交
21031 21032 21033 21034 21035 21036 21037
}

.bg-gradient-info.btn:active, .bg-gradient-info.btn.active {
  background: #117a8b linear-gradient(180deg, #358e9c, #117a8b) repeat-x !important;
}

.bg-gradient-warning {
R
REJack 已提交
21038 21039 21040
  color: #1F2D3D;
}

R
REJack 已提交
21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051
.bg-gradient-warning {
  background: #ffc107 linear-gradient(180deg, #ffca2c, #ffc107) repeat-x !important;
}

.bg-gradient-warning.btn.disabled, .bg-gradient-warning.btn:disabled, .bg-gradient-warning.btn:not(:disabled):not(.disabled):active, .bg-gradient-warning.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-warning.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-warning.btn:hover {
  border-color: #d39e00;
21052
  color: #1F2D3D;
R
REJack 已提交
21053 21054 21055 21056 21057 21058 21059 21060
}

.bg-gradient-warning.btn:hover {
  background: #e0a800 linear-gradient(180deg, #e4b526, #e0a800) repeat-x !important;
}

.bg-gradient-warning.btn:active, .bg-gradient-warning.btn.active {
  border-color: #c69500;
21061
  color: #1F2D3D;
R
REJack 已提交
21062 21063 21064 21065 21066 21067 21068
}

.bg-gradient-warning.btn:active, .bg-gradient-warning.btn.active {
  background: #d39e00 linear-gradient(180deg, #daad26, #d39e00) repeat-x !important;
}

.bg-gradient-danger {
R
REJack 已提交
21069 21070 21071
  color: #ffffff;
}

R
REJack 已提交
21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082
.bg-gradient-danger {
  background: #dc3545 linear-gradient(180deg, #e15361, #dc3545) repeat-x !important;
}

.bg-gradient-danger.btn.disabled, .bg-gradient-danger.btn:disabled, .bg-gradient-danger.btn:not(:disabled):not(.disabled):active, .bg-gradient-danger.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-danger.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-danger.btn:hover {
  border-color: #bd2130;
21083
  color: #ffffff;
R
REJack 已提交
21084 21085 21086 21087 21088 21089 21090 21091
}

.bg-gradient-danger.btn:hover {
  background: #c82333 linear-gradient(180deg, #d04451, #c82333) repeat-x !important;
}

.bg-gradient-danger.btn:active, .bg-gradient-danger.btn.active {
  border-color: #b21f2d;
21092
  color: #ffffff;
R
REJack 已提交
21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113
}

.bg-gradient-danger.btn:active, .bg-gradient-danger.btn.active {
  background: #bd2130 linear-gradient(180deg, #c7424f, #bd2130) repeat-x !important;
}

.bg-gradient-light {
  color: #1F2D3D;
}

.bg-gradient-light {
  background: #f8f9fa linear-gradient(180deg, #f9fafb, #f8f9fa) repeat-x !important;
}

.bg-gradient-light.btn.disabled, .bg-gradient-light.btn:disabled, .bg-gradient-light.btn:not(:disabled):not(.disabled):active, .bg-gradient-light.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-light.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-light.btn:hover {
  border-color: #dae0e5;
21114
  color: #1F2D3D;
R
REJack 已提交
21115 21116 21117 21118 21119 21120 21121 21122
}

.bg-gradient-light.btn:hover {
  background: #e2e6ea linear-gradient(180deg, #e6eaed, #e2e6ea) repeat-x !important;
}

.bg-gradient-light.btn:active, .bg-gradient-light.btn.active {
  border-color: #d3d9df;
21123
  color: #1F2D3D;
R
REJack 已提交
21124 21125 21126 21127
}

.bg-gradient-light.btn:active, .bg-gradient-light.btn.active {
  background: #dae0e5 linear-gradient(180deg, #e0e4e9, #dae0e5) repeat-x !important;
R
REJack 已提交
21128 21129
}

R
REJack 已提交
21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144
.bg-gradient-dark {
  color: #ffffff;
}

.bg-gradient-dark {
  background: #343a40 linear-gradient(180deg, #52585d, #343a40) repeat-x !important;
}

.bg-gradient-dark.btn.disabled, .bg-gradient-dark.btn:disabled, .bg-gradient-dark.btn:not(:disabled):not(.disabled):active, .bg-gradient-dark.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-dark.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-dark.btn:hover {
  border-color: #1d2124;
21145
  color: #ffffff;
R
REJack 已提交
21146 21147 21148 21149 21150 21151 21152 21153
}

.bg-gradient-dark.btn:hover {
  background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x !important;
}

.bg-gradient-dark.btn:active, .bg-gradient-dark.btn.active {
  border-color: #171a1d;
21154
  color: #ffffff;
R
REJack 已提交
21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171
}

.bg-gradient-dark.btn:active, .bg-gradient-dark.btn.active {
  background: #1d2124 linear-gradient(180deg, #3f4245, #1d2124) repeat-x !important;
}

.bg-gradient-blue {
  color: #ffffff;
}

.bg-gradient-blue {
  background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x !important;
}

.bg-gradient-blue.btn.disabled, .bg-gradient-blue.btn:disabled, .bg-gradient-blue.btn:not(:disabled):not(.disabled):active, .bg-gradient-blue.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-blue.btn.dropdown-toggle {
  background-image: none !important;
21172 21173
}

R
REJack 已提交
21174 21175
.bg-gradient-blue.btn:hover {
  border-color: #0062cc;
21176
  color: #ffffff;
R
REJack 已提交
21177 21178 21179 21180 21181 21182 21183 21184
}

.bg-gradient-blue.btn:hover {
  background: #0069d9 linear-gradient(180deg, #267fde, #0069d9) repeat-x !important;
}

.bg-gradient-blue.btn:active, .bg-gradient-blue.btn.active {
  border-color: #005cbf;
21185
  color: #ffffff;
R
REJack 已提交
21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206
}

.bg-gradient-blue.btn:active, .bg-gradient-blue.btn.active {
  background: #0062cc linear-gradient(180deg, #267ad4, #0062cc) repeat-x !important;
}

.bg-gradient-indigo {
  color: #ffffff;
}

.bg-gradient-indigo {
  background: #6610f2 linear-gradient(180deg, #7d34f4, #6610f2) repeat-x !important;
}

.bg-gradient-indigo.btn.disabled, .bg-gradient-indigo.btn:disabled, .bg-gradient-indigo.btn:not(:disabled):not(.disabled):active, .bg-gradient-indigo.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-indigo.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-indigo.btn:hover {
  border-color: #510bc4;
21207
  color: #ffffff;
R
REJack 已提交
21208 21209 21210 21211 21212 21213 21214 21215
}

.bg-gradient-indigo.btn:hover {
  background: #560bd0 linear-gradient(180deg, #7030d7, #560bd0) repeat-x !important;
}

.bg-gradient-indigo.btn:active, .bg-gradient-indigo.btn.active {
  border-color: #4c0ab8;
21216
  color: #ffffff;
R
REJack 已提交
21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237
}

.bg-gradient-indigo.btn:active, .bg-gradient-indigo.btn.active {
  background: #510bc4 linear-gradient(180deg, #6b2fcd, #510bc4) repeat-x !important;
}

.bg-gradient-purple {
  color: #ffffff;
}

.bg-gradient-purple {
  background: #6f42c1 linear-gradient(180deg, #855eca, #6f42c1) repeat-x !important;
}

.bg-gradient-purple.btn.disabled, .bg-gradient-purple.btn:disabled, .bg-gradient-purple.btn:not(:disabled):not(.disabled):active, .bg-gradient-purple.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-purple.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-purple.btn:hover {
  border-color: #59339d;
21238
  color: #ffffff;
R
REJack 已提交
21239 21240 21241 21242 21243 21244 21245 21246
}

.bg-gradient-purple.btn:hover {
  background: #5e37a6 linear-gradient(180deg, #7655b4, #5e37a6) repeat-x !important;
}

.bg-gradient-purple.btn:active, .bg-gradient-purple.btn.active {
  border-color: #533093;
21247
  color: #ffffff;
R
REJack 已提交
21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268
}

.bg-gradient-purple.btn:active, .bg-gradient-purple.btn.active {
  background: #59339d linear-gradient(180deg, #7252ab, #59339d) repeat-x !important;
}

.bg-gradient-pink {
  color: #ffffff;
}

.bg-gradient-pink {
  background: #e83e8c linear-gradient(180deg, #eb5b9d, #e83e8c) repeat-x !important;
}

.bg-gradient-pink.btn.disabled, .bg-gradient-pink.btn:disabled, .bg-gradient-pink.btn:not(:disabled):not(.disabled):active, .bg-gradient-pink.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-pink.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-pink.btn:hover {
  border-color: #d91a72;
21269
  color: #ffffff;
R
REJack 已提交
21270 21271 21272 21273 21274 21275 21276 21277
}

.bg-gradient-pink.btn:hover {
  background: #e41c78 linear-gradient(180deg, #e83e8c, #e41c78) repeat-x !important;
}

.bg-gradient-pink.btn:active, .bg-gradient-pink.btn.active {
  border-color: #ce196c;
21278
  color: #ffffff;
R
REJack 已提交
21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295
}

.bg-gradient-pink.btn:active, .bg-gradient-pink.btn.active {
  background: #d91a72 linear-gradient(180deg, #df3c87, #d91a72) repeat-x !important;
}

.bg-gradient-red {
  color: #ffffff;
}

.bg-gradient-red {
  background: #dc3545 linear-gradient(180deg, #e15361, #dc3545) repeat-x !important;
}

.bg-gradient-red.btn.disabled, .bg-gradient-red.btn:disabled, .bg-gradient-red.btn:not(:disabled):not(.disabled):active, .bg-gradient-red.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-red.btn.dropdown-toggle {
  background-image: none !important;
21296 21297
}

R
REJack 已提交
21298 21299
.bg-gradient-red.btn:hover {
  border-color: #bd2130;
21300
  color: #ffffff;
R
REJack 已提交
21301 21302 21303 21304
}

.bg-gradient-red.btn:hover {
  background: #c82333 linear-gradient(180deg, #d04451, #c82333) repeat-x !important;
21305 21306
}

R
REJack 已提交
21307 21308
.bg-gradient-red.btn:active, .bg-gradient-red.btn.active {
  border-color: #b21f2d;
21309
  color: #ffffff;
R
REJack 已提交
21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326
}

.bg-gradient-red.btn:active, .bg-gradient-red.btn.active {
  background: #bd2130 linear-gradient(180deg, #c7424f, #bd2130) repeat-x !important;
}

.bg-gradient-orange {
  color: #1F2D3D;
}

.bg-gradient-orange {
  background: #fd7e14 linear-gradient(180deg, #fd9137, #fd7e14) repeat-x !important;
}

.bg-gradient-orange.btn.disabled, .bg-gradient-orange.btn:disabled, .bg-gradient-orange.btn:not(:disabled):not(.disabled):active, .bg-gradient-orange.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-orange.btn.dropdown-toggle {
  background-image: none !important;
21327 21328
}

R
REJack 已提交
21329 21330
.bg-gradient-orange.btn:hover {
  border-color: #dc6502;
21331
  color: #ffffff;
R
REJack 已提交
21332 21333 21334 21335
}

.bg-gradient-orange.btn:hover {
  background: #e96b02 linear-gradient(180deg, #ec8128, #e96b02) repeat-x !important;
21336 21337
}

R
REJack 已提交
21338 21339
.bg-gradient-orange.btn:active, .bg-gradient-orange.btn.active {
  border-color: #cf5f02;
21340
  color: #ffffff;
R
REJack 已提交
21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357
}

.bg-gradient-orange.btn:active, .bg-gradient-orange.btn.active {
  background: #dc6502 linear-gradient(180deg, #e17c28, #dc6502) repeat-x !important;
}

.bg-gradient-yellow {
  color: #1F2D3D;
}

.bg-gradient-yellow {
  background: #ffc107 linear-gradient(180deg, #ffca2c, #ffc107) repeat-x !important;
}

.bg-gradient-yellow.btn.disabled, .bg-gradient-yellow.btn:disabled, .bg-gradient-yellow.btn:not(:disabled):not(.disabled):active, .bg-gradient-yellow.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-yellow.btn.dropdown-toggle {
  background-image: none !important;
21358 21359
}

R
REJack 已提交
21360 21361
.bg-gradient-yellow.btn:hover {
  border-color: #d39e00;
21362
  color: #1F2D3D;
R
REJack 已提交
21363 21364 21365 21366
}

.bg-gradient-yellow.btn:hover {
  background: #e0a800 linear-gradient(180deg, #e4b526, #e0a800) repeat-x !important;
21367 21368
}

R
REJack 已提交
21369 21370
.bg-gradient-yellow.btn:active, .bg-gradient-yellow.btn.active {
  border-color: #c69500;
21371
  color: #1F2D3D;
R
REJack 已提交
21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392
}

.bg-gradient-yellow.btn:active, .bg-gradient-yellow.btn.active {
  background: #d39e00 linear-gradient(180deg, #daad26, #d39e00) repeat-x !important;
}

.bg-gradient-green {
  color: #ffffff;
}

.bg-gradient-green {
  background: #28a745 linear-gradient(180deg, #48b461, #28a745) repeat-x !important;
}

.bg-gradient-green.btn.disabled, .bg-gradient-green.btn:disabled, .bg-gradient-green.btn:not(:disabled):not(.disabled):active, .bg-gradient-green.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-green.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-green.btn:hover {
  border-color: #1e7e34;
21393
  color: #ffffff;
R
REJack 已提交
21394 21395 21396 21397 21398 21399 21400 21401
}

.bg-gradient-green.btn:hover {
  background: #218838 linear-gradient(180deg, #429a56, #218838) repeat-x !important;
}

.bg-gradient-green.btn:active, .bg-gradient-green.btn.active {
  border-color: #1c7430;
21402
  color: #ffffff;
R
REJack 已提交
21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414
}

.bg-gradient-green.btn:active, .bg-gradient-green.btn.active {
  background: #1e7e34 linear-gradient(180deg, #409152, #1e7e34) repeat-x !important;
}

.bg-gradient-teal {
  color: #ffffff;
}

.bg-gradient-teal {
  background: #20c997 linear-gradient(180deg, #41d1a7, #20c997) repeat-x !important;
21415 21416
}

R
REJack 已提交
21417 21418 21419 21420 21421 21422 21423
.bg-gradient-teal.btn.disabled, .bg-gradient-teal.btn:disabled, .bg-gradient-teal.btn:not(:disabled):not(.disabled):active, .bg-gradient-teal.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-teal.btn.dropdown-toggle {
  background-image: none !important;
}

.bg-gradient-teal.btn:hover {
  border-color: #199d76;
21424
  color: #ffffff;
R
REJack 已提交
21425 21426 21427 21428
}

.bg-gradient-teal.btn:hover {
  background: #1ba87e linear-gradient(180deg, #3db592, #1ba87e) repeat-x !important;
21429 21430
}

R
REJack 已提交
21431 21432
.bg-gradient-teal.btn:active, .bg-gradient-teal.btn.active {
  border-color: #17926e;
21433
  color: #ffffff;
21434
}
21435 21436 21437

.bg-gradient-teal.btn:active, .bg-gradient-teal.btn.active {
  background: #199d76 linear-gradient(180deg, #3bac8b, #199d76) repeat-x !important;
A
Abdullah Almsaeed 已提交
21438
}
A
Abdullah Almsaeed 已提交
21439

21440 21441
.bg-gradient-cyan {
  color: #ffffff;
A
Abdullah Almsaeed 已提交
21442
}
A
Abdullah Almsaeed 已提交
21443

21444 21445
.bg-gradient-cyan {
  background: #17a2b8 linear-gradient(180deg, #3ab0c3, #17a2b8) repeat-x !important;
A
Abdullah Almsaeed 已提交
21446 21447
}

21448 21449 21450
.bg-gradient-cyan.btn.disabled, .bg-gradient-cyan.btn:disabled, .bg-gradient-cyan.btn:not(:disabled):not(.disabled):active, .bg-gradient-cyan.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-cyan.btn.dropdown-toggle {
  background-image: none !important;
A
Abdullah Almsaeed 已提交
21451
}
A
Abdullah Almsaeed 已提交
21452

21453 21454 21455
.bg-gradient-cyan.btn:hover {
  border-color: #117a8b;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
21456 21457
}

21458 21459
.bg-gradient-cyan.btn:hover {
  background: #138496 linear-gradient(180deg, #3697a6, #138496) repeat-x !important;
A
Abdullah Almsaeed 已提交
21460
}
A
Abdullah Almsaeed 已提交
21461

21462 21463 21464
.bg-gradient-cyan.btn:active, .bg-gradient-cyan.btn.active {
  border-color: #10707f;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
21465 21466
}

21467 21468
.bg-gradient-cyan.btn:active, .bg-gradient-cyan.btn.active {
  background: #117a8b linear-gradient(180deg, #358e9c, #117a8b) repeat-x !important;
A
Abdullah Almsaeed 已提交
21469
}
A
Abdullah Almsaeed 已提交
21470

21471 21472
.bg-gradient-white {
  color: #1F2D3D;
A
Abdullah Almsaeed 已提交
21473
}
A
Abdullah Almsaeed 已提交
21474

21475 21476
.bg-gradient-white {
  background: #ffffff linear-gradient(180deg, white, #ffffff) repeat-x !important;
A
Abdullah Almsaeed 已提交
21477
}
A
Abdullah Almsaeed 已提交
21478

21479 21480 21481
.bg-gradient-white.btn.disabled, .bg-gradient-white.btn:disabled, .bg-gradient-white.btn:not(:disabled):not(.disabled):active, .bg-gradient-white.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-white.btn.dropdown-toggle {
  background-image: none !important;
A
Abdullah Almsaeed 已提交
21482
}
A
Abdullah Almsaeed 已提交
21483

21484 21485 21486
.bg-gradient-white.btn:hover {
  border-color: #e6e6e6;
  color: #1F2D3D;
A
Abdullah Almsaeed 已提交
21487
}
A
Abdullah Almsaeed 已提交
21488

21489 21490
.bg-gradient-white.btn:hover {
  background: #ececec linear-gradient(180deg, #efefef, #ececec) repeat-x !important;
A
Abdullah Almsaeed 已提交
21491
}
21492

21493 21494 21495
.bg-gradient-white.btn:active, .bg-gradient-white.btn.active {
  border-color: #dfdfdf;
  color: #1F2D3D;
A
Abdullah Almsaeed 已提交
21496
}
21497

21498 21499
.bg-gradient-white.btn:active, .bg-gradient-white.btn.active {
  background: #e6e6e6 linear-gradient(180deg, #e9e9e9, #e6e6e6) repeat-x !important;
A
Abdullah Almsaeed 已提交
21500
}
21501

21502 21503
.bg-gradient-gray {
  color: #ffffff;
A
Abdullah Almsaeed 已提交
21504
}
21505

21506 21507
.bg-gradient-gray {
  background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x !important;
A
Abdullah Almsaeed 已提交
21508
}
21509

21510 21511 21512
.bg-gradient-gray.btn.disabled, .bg-gradient-gray.btn:disabled, .bg-gradient-gray.btn:not(:disabled):not(.disabled):active, .bg-gradient-gray.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-gray.btn.dropdown-toggle {
  background-image: none !important;
A
Abdullah Almsaeed 已提交
21513
}
21514

21515 21516 21517
.bg-gradient-gray.btn:hover {
  border-color: #545b62;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
21518
}
21519

21520 21521
.bg-gradient-gray.btn:hover {
  background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x !important;
A
Abdullah Almsaeed 已提交
21522
}
21523

21524 21525 21526
.bg-gradient-gray.btn:active, .bg-gradient-gray.btn.active {
  border-color: #4e555b;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
21527 21528
}

21529 21530
.bg-gradient-gray.btn:active, .bg-gradient-gray.btn.active {
  background: #545b62 linear-gradient(180deg, #6e7479, #545b62) repeat-x !important;
A
Abdullah Almsaeed 已提交
21531 21532
}

21533 21534
.bg-gradient-gray-dark {
  color: #ffffff;
A
Abdullah Almsaeed 已提交
21535 21536
}

21537 21538
.bg-gradient-gray-dark {
  background: #343a40 linear-gradient(180deg, #52585d, #343a40) repeat-x !important;
A
Abdullah Almsaeed 已提交
21539 21540
}

21541 21542 21543
.bg-gradient-gray-dark.btn.disabled, .bg-gradient-gray-dark.btn:disabled, .bg-gradient-gray-dark.btn:not(:disabled):not(.disabled):active, .bg-gradient-gray-dark.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-gray-dark.btn.dropdown-toggle {
  background-image: none !important;
A
Abdullah Almsaeed 已提交
21544
}
A
Abdullah Almsaeed 已提交
21545

21546 21547 21548
.bg-gradient-gray-dark.btn:hover {
  border-color: #1d2124;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
21549
}
A
Abdullah Almsaeed 已提交
21550

21551 21552
.bg-gradient-gray-dark.btn:hover {
  background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x !important;
A
Abdullah Almsaeed 已提交
21553
}
A
Abdullah Almsaeed 已提交
21554

21555 21556 21557
.bg-gradient-gray-dark.btn:active, .bg-gradient-gray-dark.btn.active {
  border-color: #171a1d;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
21558
}
A
Abdullah Almsaeed 已提交
21559

21560 21561
.bg-gradient-gray-dark.btn:active, .bg-gradient-gray-dark.btn.active {
  background: #1d2124 linear-gradient(180deg, #3f4245, #1d2124) repeat-x !important;
A
Abdullah Almsaeed 已提交
21562
}
A
Abdullah Almsaeed 已提交
21563

21564 21565
[class^='bg-'].disabled {
  opacity: .65;
A
Abdullah Almsaeed 已提交
21566
}
21567

21568 21569
a.text-muted:hover {
  color: #007bff !important;
R
REJack 已提交
21570 21571
}

21572 21573
.link-muted {
  color: #5d6974;
R
REJack 已提交
21574 21575
}

21576 21577
.link-muted:hover, .link-muted:focus {
  color: #464f58;
R
REJack 已提交
21578 21579
}

21580 21581
.link-black {
  color: #6c757d;
R
REJack 已提交
21582 21583
}

21584 21585
.link-black:hover, .link-black:focus {
  color: #e6e8ea;
R
REJack 已提交
21586
}
A
Abdullah Almsaeed 已提交
21587
/*# sourceMappingURL=adminlte.css.map */