adminlte.css 359.8 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
  text-decoration-skip-ink: none;
A
Abdullah Almsaeed 已提交
101
}
A
Abdullah Almsaeed 已提交
102 103 104 105

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

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

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

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

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

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

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

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

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

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

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

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

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

A
Abdullah Almsaeed 已提交
172
a:not([href]):not([tabindex]) {
A
Abdullah Almsaeed 已提交
173
  color: inherit;
A
Abdullah Almsaeed 已提交
174 175 176 177 178 179 180 181 182 183 184
  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 已提交
185

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 已提交
373
  line-height: 1.2;
A
Abdullah Almsaeed 已提交
374 375
  color: inherit;
}
A
Abdullah Almsaeed 已提交
376 377

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

kbd {
  padding: 0.2rem 0.4rem;
A
Abdullah Almsaeed 已提交
528 529
  font-size: 87.5%;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
530
  background-color: #212529;
A
Abdullah Almsaeed 已提交
531 532 533 534 535 536 537 538 539 540
  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 已提交
541 542 543

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

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

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

.container {
A
Abdullah Almsaeed 已提交
560
  width: 100%;
A
Abdullah Almsaeed 已提交
561 562
  padding-right: 7.5px;
  padding-left: 7.5px;
A
Abdullah Almsaeed 已提交
563
  margin-right: auto;
A
Abdullah Almsaeed 已提交
564 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
  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 已提交
590 591

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

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

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

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

.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 已提交
623
  position: relative;
A
Abdullah Almsaeed 已提交
624
  width: 100%;
A
Abdullah Almsaeed 已提交
625 626 627
  padding-right: 7.5px;
  padding-left: 7.5px;
}
A
Abdullah Almsaeed 已提交
628

A
Abdullah Almsaeed 已提交
629 630 631
.col {
  flex-basis: 0;
  flex-grow: 1;
A
Abdullah Almsaeed 已提交
632 633
  max-width: 100%;
}
A
Abdullah Almsaeed 已提交
634

A
Abdullah Almsaeed 已提交
635 636 637
.col-auto {
  flex: 0 0 auto;
  width: auto;
638
  max-width: 100%;
A
Abdullah Almsaeed 已提交
639
}
A
Abdullah Almsaeed 已提交
640

A
Abdullah Almsaeed 已提交
641
.col-1 {
A
Abdullah Almsaeed 已提交
642 643 644
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
A
Abdullah Almsaeed 已提交
645

A
Abdullah Almsaeed 已提交
646
.col-2 {
A
Abdullah Almsaeed 已提交
647 648 649
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
A
Abdullah Almsaeed 已提交
650

A
Abdullah Almsaeed 已提交
651 652
.col-3 {
  flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
653 654
  max-width: 25%;
}
A
Abdullah Almsaeed 已提交
655

A
Abdullah Almsaeed 已提交
656
.col-4 {
A
Abdullah Almsaeed 已提交
657 658 659
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
A
Abdullah Almsaeed 已提交
660

A
Abdullah Almsaeed 已提交
661
.col-5 {
A
Abdullah Almsaeed 已提交
662 663 664
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
A
Abdullah Almsaeed 已提交
665

A
Abdullah Almsaeed 已提交
666 667
.col-6 {
  flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
668 669
  max-width: 50%;
}
A
Abdullah Almsaeed 已提交
670

A
Abdullah Almsaeed 已提交
671
.col-7 {
A
Abdullah Almsaeed 已提交
672 673 674
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
A
Abdullah Almsaeed 已提交
675

A
Abdullah Almsaeed 已提交
676
.col-8 {
A
Abdullah Almsaeed 已提交
677 678 679
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
A
Abdullah Almsaeed 已提交
680

A
Abdullah Almsaeed 已提交
681 682
.col-9 {
  flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
683 684
  max-width: 75%;
}
A
Abdullah Almsaeed 已提交
685

A
Abdullah Almsaeed 已提交
686
.col-10 {
A
Abdullah Almsaeed 已提交
687 688 689
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
A
Abdullah Almsaeed 已提交
690

A
Abdullah Almsaeed 已提交
691
.col-11 {
A
Abdullah Almsaeed 已提交
692 693 694
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
A
Abdullah Almsaeed 已提交
695

A
Abdullah Almsaeed 已提交
696 697
.col-12 {
  flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
698 699
  max-width: 100%;
}
A
Abdullah Almsaeed 已提交
700

A
Abdullah Almsaeed 已提交
701
.order-first {
A
Abdullah Almsaeed 已提交
702 703 704 705 706 707 708 709 710 711
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}
A
Abdullah Almsaeed 已提交
712

A
Abdullah Almsaeed 已提交
713
.order-1 {
A
Abdullah Almsaeed 已提交
714 715
  order: 1;
}
A
Abdullah Almsaeed 已提交
716

A
Abdullah Almsaeed 已提交
717
.order-2 {
A
Abdullah Almsaeed 已提交
718 719
  order: 2;
}
A
Abdullah Almsaeed 已提交
720

A
Abdullah Almsaeed 已提交
721
.order-3 {
A
Abdullah Almsaeed 已提交
722 723
  order: 3;
}
A
Abdullah Almsaeed 已提交
724

A
Abdullah Almsaeed 已提交
725
.order-4 {
A
Abdullah Almsaeed 已提交
726 727
  order: 4;
}
A
Abdullah Almsaeed 已提交
728

A
Abdullah Almsaeed 已提交
729
.order-5 {
A
Abdullah Almsaeed 已提交
730 731
  order: 5;
}
A
Abdullah Almsaeed 已提交
732

A
Abdullah Almsaeed 已提交
733
.order-6 {
A
Abdullah Almsaeed 已提交
734 735
  order: 6;
}
A
Abdullah Almsaeed 已提交
736

A
Abdullah Almsaeed 已提交
737
.order-7 {
A
Abdullah Almsaeed 已提交
738 739
  order: 7;
}
A
Abdullah Almsaeed 已提交
740

A
Abdullah Almsaeed 已提交
741
.order-8 {
A
Abdullah Almsaeed 已提交
742 743
  order: 8;
}
A
Abdullah Almsaeed 已提交
744

A
Abdullah Almsaeed 已提交
745
.order-9 {
A
Abdullah Almsaeed 已提交
746 747
  order: 9;
}
A
Abdullah Almsaeed 已提交
748

A
Abdullah Almsaeed 已提交
749
.order-10 {
A
Abdullah Almsaeed 已提交
750 751
  order: 10;
}
A
Abdullah Almsaeed 已提交
752

A
Abdullah Almsaeed 已提交
753
.order-11 {
A
Abdullah Almsaeed 已提交
754 755
  order: 11;
}
A
Abdullah Almsaeed 已提交
756

A
Abdullah Almsaeed 已提交
757
.order-12 {
A
Abdullah Almsaeed 已提交
758 759
  order: 12;
}
A
Abdullah Almsaeed 已提交
760

A
Abdullah Almsaeed 已提交
761
.offset-1 {
A
Abdullah Almsaeed 已提交
762 763
  margin-left: 8.333333%;
}
A
Abdullah Almsaeed 已提交
764

A
Abdullah Almsaeed 已提交
765
.offset-2 {
A
Abdullah Almsaeed 已提交
766 767
  margin-left: 16.666667%;
}
A
Abdullah Almsaeed 已提交
768

A
Abdullah Almsaeed 已提交
769
.offset-3 {
A
Abdullah Almsaeed 已提交
770 771
  margin-left: 25%;
}
A
Abdullah Almsaeed 已提交
772

A
Abdullah Almsaeed 已提交
773
.offset-4 {
A
Abdullah Almsaeed 已提交
774 775
  margin-left: 33.333333%;
}
A
Abdullah Almsaeed 已提交
776

A
Abdullah Almsaeed 已提交
777
.offset-5 {
A
Abdullah Almsaeed 已提交
778 779
  margin-left: 41.666667%;
}
A
Abdullah Almsaeed 已提交
780

A
Abdullah Almsaeed 已提交
781
.offset-6 {
A
Abdullah Almsaeed 已提交
782 783
  margin-left: 50%;
}
A
Abdullah Almsaeed 已提交
784

A
Abdullah Almsaeed 已提交
785
.offset-7 {
A
Abdullah Almsaeed 已提交
786 787
  margin-left: 58.333333%;
}
A
Abdullah Almsaeed 已提交
788

A
Abdullah Almsaeed 已提交
789
.offset-8 {
A
Abdullah Almsaeed 已提交
790 791
  margin-left: 66.666667%;
}
A
Abdullah Almsaeed 已提交
792

A
Abdullah Almsaeed 已提交
793
.offset-9 {
A
Abdullah Almsaeed 已提交
794 795
  margin-left: 75%;
}
A
Abdullah Almsaeed 已提交
796

A
Abdullah Almsaeed 已提交
797
.offset-10 {
A
Abdullah Almsaeed 已提交
798 799
  margin-left: 83.333333%;
}
A
Abdullah Almsaeed 已提交
800

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

@media (min-width: 576px) {
A
Abdullah Almsaeed 已提交
806 807 808
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
A
Abdullah Almsaeed 已提交
809 810
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
811 812 813
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
814
    max-width: 100%;
A
Abdullah Almsaeed 已提交
815
  }
A
Abdullah Almsaeed 已提交
816
  .col-sm-1 {
A
Abdullah Almsaeed 已提交
817 818 819
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
820
  .col-sm-2 {
A
Abdullah Almsaeed 已提交
821 822 823
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
824
  .col-sm-3 {
A
Abdullah Almsaeed 已提交
825
    flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
826 827
    max-width: 25%;
  }
A
Abdullah Almsaeed 已提交
828
  .col-sm-4 {
A
Abdullah Almsaeed 已提交
829 830 831
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
832
  .col-sm-5 {
A
Abdullah Almsaeed 已提交
833 834 835
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
836
  .col-sm-6 {
A
Abdullah Almsaeed 已提交
837
    flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
838 839
    max-width: 50%;
  }
A
Abdullah Almsaeed 已提交
840
  .col-sm-7 {
A
Abdullah Almsaeed 已提交
841 842 843
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
844
  .col-sm-8 {
A
Abdullah Almsaeed 已提交
845 846 847
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
848
  .col-sm-9 {
A
Abdullah Almsaeed 已提交
849
    flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
850 851
    max-width: 75%;
  }
A
Abdullah Almsaeed 已提交
852
  .col-sm-10 {
A
Abdullah Almsaeed 已提交
853 854 855
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
856
  .col-sm-11 {
A
Abdullah Almsaeed 已提交
857 858 859
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
A
Abdullah Almsaeed 已提交
860
  .col-sm-12 {
A
Abdullah Almsaeed 已提交
861
    flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
862 863
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
864
  .order-sm-first {
A
Abdullah Almsaeed 已提交
865 866 867 868 869 870 871 872
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
A
Abdullah Almsaeed 已提交
873
  .order-sm-1 {
A
Abdullah Almsaeed 已提交
874 875
    order: 1;
  }
A
Abdullah Almsaeed 已提交
876
  .order-sm-2 {
A
Abdullah Almsaeed 已提交
877 878
    order: 2;
  }
A
Abdullah Almsaeed 已提交
879
  .order-sm-3 {
A
Abdullah Almsaeed 已提交
880 881
    order: 3;
  }
A
Abdullah Almsaeed 已提交
882
  .order-sm-4 {
A
Abdullah Almsaeed 已提交
883 884
    order: 4;
  }
A
Abdullah Almsaeed 已提交
885
  .order-sm-5 {
A
Abdullah Almsaeed 已提交
886 887
    order: 5;
  }
A
Abdullah Almsaeed 已提交
888
  .order-sm-6 {
A
Abdullah Almsaeed 已提交
889 890
    order: 6;
  }
A
Abdullah Almsaeed 已提交
891
  .order-sm-7 {
A
Abdullah Almsaeed 已提交
892 893
    order: 7;
  }
A
Abdullah Almsaeed 已提交
894
  .order-sm-8 {
A
Abdullah Almsaeed 已提交
895 896
    order: 8;
  }
A
Abdullah Almsaeed 已提交
897
  .order-sm-9 {
A
Abdullah Almsaeed 已提交
898 899
    order: 9;
  }
A
Abdullah Almsaeed 已提交
900
  .order-sm-10 {
A
Abdullah Almsaeed 已提交
901 902
    order: 10;
  }
A
Abdullah Almsaeed 已提交
903
  .order-sm-11 {
A
Abdullah Almsaeed 已提交
904 905
    order: 11;
  }
A
Abdullah Almsaeed 已提交
906
  .order-sm-12 {
A
Abdullah Almsaeed 已提交
907 908
    order: 12;
  }
A
Abdullah Almsaeed 已提交
909
  .offset-sm-0 {
A
Abdullah Almsaeed 已提交
910 911
    margin-left: 0;
  }
A
Abdullah Almsaeed 已提交
912
  .offset-sm-1 {
A
Abdullah Almsaeed 已提交
913 914
    margin-left: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
915
  .offset-sm-2 {
A
Abdullah Almsaeed 已提交
916 917
    margin-left: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
918
  .offset-sm-3 {
A
Abdullah Almsaeed 已提交
919 920
    margin-left: 25%;
  }
A
Abdullah Almsaeed 已提交
921
  .offset-sm-4 {
A
Abdullah Almsaeed 已提交
922 923
    margin-left: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
924
  .offset-sm-5 {
A
Abdullah Almsaeed 已提交
925 926
    margin-left: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
927
  .offset-sm-6 {
A
Abdullah Almsaeed 已提交
928 929
    margin-left: 50%;
  }
A
Abdullah Almsaeed 已提交
930
  .offset-sm-7 {
A
Abdullah Almsaeed 已提交
931 932
    margin-left: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
933
  .offset-sm-8 {
A
Abdullah Almsaeed 已提交
934 935
    margin-left: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
936
  .offset-sm-9 {
A
Abdullah Almsaeed 已提交
937 938
    margin-left: 75%;
  }
A
Abdullah Almsaeed 已提交
939
  .offset-sm-10 {
A
Abdullah Almsaeed 已提交
940 941
    margin-left: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
942
  .offset-sm-11 {
A
Abdullah Almsaeed 已提交
943 944 945
    margin-left: 91.666667%;
  }
}
A
Abdullah Almsaeed 已提交
946 947

@media (min-width: 768px) {
A
Abdullah Almsaeed 已提交
948 949 950
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
A
Abdullah Almsaeed 已提交
951 952
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
953 954 955
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
956
    max-width: 100%;
A
Abdullah Almsaeed 已提交
957
  }
A
Abdullah Almsaeed 已提交
958
  .col-md-1 {
A
Abdullah Almsaeed 已提交
959 960 961
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
962
  .col-md-2 {
A
Abdullah Almsaeed 已提交
963 964 965
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
966
  .col-md-3 {
A
Abdullah Almsaeed 已提交
967
    flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
968 969
    max-width: 25%;
  }
A
Abdullah Almsaeed 已提交
970
  .col-md-4 {
A
Abdullah Almsaeed 已提交
971 972 973
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
974
  .col-md-5 {
A
Abdullah Almsaeed 已提交
975 976 977
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
978
  .col-md-6 {
A
Abdullah Almsaeed 已提交
979
    flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
980 981
    max-width: 50%;
  }
A
Abdullah Almsaeed 已提交
982
  .col-md-7 {
A
Abdullah Almsaeed 已提交
983 984 985
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
986
  .col-md-8 {
A
Abdullah Almsaeed 已提交
987 988 989
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
990
  .col-md-9 {
A
Abdullah Almsaeed 已提交
991
    flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
992 993
    max-width: 75%;
  }
A
Abdullah Almsaeed 已提交
994
  .col-md-10 {
A
Abdullah Almsaeed 已提交
995 996 997
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
998
  .col-md-11 {
A
Abdullah Almsaeed 已提交
999 1000 1001
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
A
Abdullah Almsaeed 已提交
1002
  .col-md-12 {
A
Abdullah Almsaeed 已提交
1003
    flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
1004 1005
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1006
  .order-md-first {
A
Abdullah Almsaeed 已提交
1007 1008 1009 1010 1011 1012 1013 1014
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
A
Abdullah Almsaeed 已提交
1015
  .order-md-1 {
A
Abdullah Almsaeed 已提交
1016 1017
    order: 1;
  }
A
Abdullah Almsaeed 已提交
1018
  .order-md-2 {
A
Abdullah Almsaeed 已提交
1019 1020
    order: 2;
  }
A
Abdullah Almsaeed 已提交
1021
  .order-md-3 {
A
Abdullah Almsaeed 已提交
1022 1023
    order: 3;
  }
A
Abdullah Almsaeed 已提交
1024
  .order-md-4 {
A
Abdullah Almsaeed 已提交
1025 1026
    order: 4;
  }
A
Abdullah Almsaeed 已提交
1027
  .order-md-5 {
A
Abdullah Almsaeed 已提交
1028 1029
    order: 5;
  }
A
Abdullah Almsaeed 已提交
1030
  .order-md-6 {
A
Abdullah Almsaeed 已提交
1031 1032
    order: 6;
  }
A
Abdullah Almsaeed 已提交
1033
  .order-md-7 {
A
Abdullah Almsaeed 已提交
1034 1035
    order: 7;
  }
A
Abdullah Almsaeed 已提交
1036
  .order-md-8 {
A
Abdullah Almsaeed 已提交
1037 1038
    order: 8;
  }
A
Abdullah Almsaeed 已提交
1039
  .order-md-9 {
A
Abdullah Almsaeed 已提交
1040 1041
    order: 9;
  }
A
Abdullah Almsaeed 已提交
1042
  .order-md-10 {
A
Abdullah Almsaeed 已提交
1043 1044
    order: 10;
  }
A
Abdullah Almsaeed 已提交
1045
  .order-md-11 {
A
Abdullah Almsaeed 已提交
1046 1047
    order: 11;
  }
A
Abdullah Almsaeed 已提交
1048
  .order-md-12 {
A
Abdullah Almsaeed 已提交
1049 1050
    order: 12;
  }
A
Abdullah Almsaeed 已提交
1051
  .offset-md-0 {
A
Abdullah Almsaeed 已提交
1052 1053
    margin-left: 0;
  }
A
Abdullah Almsaeed 已提交
1054
  .offset-md-1 {
A
Abdullah Almsaeed 已提交
1055 1056
    margin-left: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1057
  .offset-md-2 {
A
Abdullah Almsaeed 已提交
1058 1059
    margin-left: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1060
  .offset-md-3 {
A
Abdullah Almsaeed 已提交
1061 1062
    margin-left: 25%;
  }
A
Abdullah Almsaeed 已提交
1063
  .offset-md-4 {
A
Abdullah Almsaeed 已提交
1064 1065
    margin-left: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1066
  .offset-md-5 {
A
Abdullah Almsaeed 已提交
1067 1068
    margin-left: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1069
  .offset-md-6 {
A
Abdullah Almsaeed 已提交
1070 1071
    margin-left: 50%;
  }
A
Abdullah Almsaeed 已提交
1072
  .offset-md-7 {
A
Abdullah Almsaeed 已提交
1073 1074
    margin-left: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1075
  .offset-md-8 {
A
Abdullah Almsaeed 已提交
1076 1077
    margin-left: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1078
  .offset-md-9 {
A
Abdullah Almsaeed 已提交
1079 1080
    margin-left: 75%;
  }
A
Abdullah Almsaeed 已提交
1081
  .offset-md-10 {
A
Abdullah Almsaeed 已提交
1082 1083
    margin-left: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1084
  .offset-md-11 {
A
Abdullah Almsaeed 已提交
1085 1086 1087
    margin-left: 91.666667%;
  }
}
A
Abdullah Almsaeed 已提交
1088 1089

@media (min-width: 992px) {
A
Abdullah Almsaeed 已提交
1090 1091 1092
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
A
Abdullah Almsaeed 已提交
1093 1094
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1095 1096 1097
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
1098
    max-width: 100%;
A
Abdullah Almsaeed 已提交
1099
  }
A
Abdullah Almsaeed 已提交
1100
  .col-lg-1 {
A
Abdullah Almsaeed 已提交
1101 1102 1103
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1104
  .col-lg-2 {
A
Abdullah Almsaeed 已提交
1105 1106 1107
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1108
  .col-lg-3 {
A
Abdullah Almsaeed 已提交
1109
    flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
1110 1111
    max-width: 25%;
  }
A
Abdullah Almsaeed 已提交
1112
  .col-lg-4 {
A
Abdullah Almsaeed 已提交
1113 1114 1115
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1116
  .col-lg-5 {
A
Abdullah Almsaeed 已提交
1117 1118 1119
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1120
  .col-lg-6 {
A
Abdullah Almsaeed 已提交
1121
    flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
1122 1123
    max-width: 50%;
  }
A
Abdullah Almsaeed 已提交
1124
  .col-lg-7 {
A
Abdullah Almsaeed 已提交
1125 1126 1127
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1128
  .col-lg-8 {
A
Abdullah Almsaeed 已提交
1129 1130 1131
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1132
  .col-lg-9 {
A
Abdullah Almsaeed 已提交
1133
    flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
1134 1135
    max-width: 75%;
  }
A
Abdullah Almsaeed 已提交
1136
  .col-lg-10 {
A
Abdullah Almsaeed 已提交
1137 1138 1139
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1140
  .col-lg-11 {
A
Abdullah Almsaeed 已提交
1141 1142 1143
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
A
Abdullah Almsaeed 已提交
1144
  .col-lg-12 {
A
Abdullah Almsaeed 已提交
1145
    flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
1146 1147
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1148
  .order-lg-first {
A
Abdullah Almsaeed 已提交
1149 1150 1151 1152 1153 1154 1155 1156
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
A
Abdullah Almsaeed 已提交
1157
  .order-lg-1 {
A
Abdullah Almsaeed 已提交
1158 1159
    order: 1;
  }
A
Abdullah Almsaeed 已提交
1160
  .order-lg-2 {
A
Abdullah Almsaeed 已提交
1161 1162
    order: 2;
  }
A
Abdullah Almsaeed 已提交
1163
  .order-lg-3 {
A
Abdullah Almsaeed 已提交
1164 1165
    order: 3;
  }
A
Abdullah Almsaeed 已提交
1166
  .order-lg-4 {
A
Abdullah Almsaeed 已提交
1167 1168
    order: 4;
  }
A
Abdullah Almsaeed 已提交
1169
  .order-lg-5 {
A
Abdullah Almsaeed 已提交
1170 1171
    order: 5;
  }
A
Abdullah Almsaeed 已提交
1172
  .order-lg-6 {
A
Abdullah Almsaeed 已提交
1173 1174
    order: 6;
  }
A
Abdullah Almsaeed 已提交
1175
  .order-lg-7 {
A
Abdullah Almsaeed 已提交
1176 1177
    order: 7;
  }
A
Abdullah Almsaeed 已提交
1178
  .order-lg-8 {
A
Abdullah Almsaeed 已提交
1179 1180
    order: 8;
  }
A
Abdullah Almsaeed 已提交
1181
  .order-lg-9 {
A
Abdullah Almsaeed 已提交
1182 1183
    order: 9;
  }
A
Abdullah Almsaeed 已提交
1184
  .order-lg-10 {
A
Abdullah Almsaeed 已提交
1185 1186
    order: 10;
  }
A
Abdullah Almsaeed 已提交
1187
  .order-lg-11 {
A
Abdullah Almsaeed 已提交
1188 1189
    order: 11;
  }
A
Abdullah Almsaeed 已提交
1190
  .order-lg-12 {
A
Abdullah Almsaeed 已提交
1191 1192
    order: 12;
  }
A
Abdullah Almsaeed 已提交
1193
  .offset-lg-0 {
A
Abdullah Almsaeed 已提交
1194 1195
    margin-left: 0;
  }
A
Abdullah Almsaeed 已提交
1196
  .offset-lg-1 {
A
Abdullah Almsaeed 已提交
1197 1198
    margin-left: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1199
  .offset-lg-2 {
A
Abdullah Almsaeed 已提交
1200 1201
    margin-left: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1202
  .offset-lg-3 {
A
Abdullah Almsaeed 已提交
1203 1204
    margin-left: 25%;
  }
A
Abdullah Almsaeed 已提交
1205
  .offset-lg-4 {
A
Abdullah Almsaeed 已提交
1206 1207
    margin-left: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1208
  .offset-lg-5 {
A
Abdullah Almsaeed 已提交
1209 1210
    margin-left: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1211
  .offset-lg-6 {
A
Abdullah Almsaeed 已提交
1212 1213
    margin-left: 50%;
  }
A
Abdullah Almsaeed 已提交
1214
  .offset-lg-7 {
A
Abdullah Almsaeed 已提交
1215 1216
    margin-left: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1217
  .offset-lg-8 {
A
Abdullah Almsaeed 已提交
1218 1219
    margin-left: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1220
  .offset-lg-9 {
A
Abdullah Almsaeed 已提交
1221 1222
    margin-left: 75%;
  }
A
Abdullah Almsaeed 已提交
1223
  .offset-lg-10 {
A
Abdullah Almsaeed 已提交
1224 1225
    margin-left: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1226
  .offset-lg-11 {
A
Abdullah Almsaeed 已提交
1227 1228 1229
    margin-left: 91.666667%;
  }
}
A
Abdullah Almsaeed 已提交
1230 1231

@media (min-width: 1200px) {
A
Abdullah Almsaeed 已提交
1232 1233 1234
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
A
Abdullah Almsaeed 已提交
1235 1236
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1237 1238 1239
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
1240
    max-width: 100%;
A
Abdullah Almsaeed 已提交
1241
  }
A
Abdullah Almsaeed 已提交
1242
  .col-xl-1 {
A
Abdullah Almsaeed 已提交
1243 1244 1245
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1246
  .col-xl-2 {
A
Abdullah Almsaeed 已提交
1247 1248 1249
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1250
  .col-xl-3 {
A
Abdullah Almsaeed 已提交
1251
    flex: 0 0 25%;
A
Abdullah Almsaeed 已提交
1252 1253
    max-width: 25%;
  }
A
Abdullah Almsaeed 已提交
1254
  .col-xl-4 {
A
Abdullah Almsaeed 已提交
1255 1256 1257
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1258
  .col-xl-5 {
A
Abdullah Almsaeed 已提交
1259 1260 1261
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1262
  .col-xl-6 {
A
Abdullah Almsaeed 已提交
1263
    flex: 0 0 50%;
A
Abdullah Almsaeed 已提交
1264 1265
    max-width: 50%;
  }
A
Abdullah Almsaeed 已提交
1266
  .col-xl-7 {
A
Abdullah Almsaeed 已提交
1267 1268 1269
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1270
  .col-xl-8 {
A
Abdullah Almsaeed 已提交
1271 1272 1273
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1274
  .col-xl-9 {
A
Abdullah Almsaeed 已提交
1275
    flex: 0 0 75%;
A
Abdullah Almsaeed 已提交
1276 1277
    max-width: 75%;
  }
A
Abdullah Almsaeed 已提交
1278
  .col-xl-10 {
A
Abdullah Almsaeed 已提交
1279 1280 1281
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1282
  .col-xl-11 {
A
Abdullah Almsaeed 已提交
1283 1284 1285
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
A
Abdullah Almsaeed 已提交
1286
  .col-xl-12 {
A
Abdullah Almsaeed 已提交
1287
    flex: 0 0 100%;
A
Abdullah Almsaeed 已提交
1288 1289
    max-width: 100%;
  }
A
Abdullah Almsaeed 已提交
1290
  .order-xl-first {
A
Abdullah Almsaeed 已提交
1291 1292 1293 1294 1295 1296 1297 1298
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
A
Abdullah Almsaeed 已提交
1299
  .order-xl-1 {
A
Abdullah Almsaeed 已提交
1300 1301
    order: 1;
  }
A
Abdullah Almsaeed 已提交
1302
  .order-xl-2 {
A
Abdullah Almsaeed 已提交
1303 1304
    order: 2;
  }
A
Abdullah Almsaeed 已提交
1305
  .order-xl-3 {
A
Abdullah Almsaeed 已提交
1306 1307
    order: 3;
  }
A
Abdullah Almsaeed 已提交
1308
  .order-xl-4 {
A
Abdullah Almsaeed 已提交
1309 1310
    order: 4;
  }
A
Abdullah Almsaeed 已提交
1311
  .order-xl-5 {
A
Abdullah Almsaeed 已提交
1312 1313
    order: 5;
  }
A
Abdullah Almsaeed 已提交
1314
  .order-xl-6 {
A
Abdullah Almsaeed 已提交
1315 1316
    order: 6;
  }
A
Abdullah Almsaeed 已提交
1317
  .order-xl-7 {
A
Abdullah Almsaeed 已提交
1318 1319
    order: 7;
  }
A
Abdullah Almsaeed 已提交
1320
  .order-xl-8 {
A
Abdullah Almsaeed 已提交
1321 1322
    order: 8;
  }
A
Abdullah Almsaeed 已提交
1323
  .order-xl-9 {
A
Abdullah Almsaeed 已提交
1324 1325
    order: 9;
  }
A
Abdullah Almsaeed 已提交
1326
  .order-xl-10 {
A
Abdullah Almsaeed 已提交
1327 1328
    order: 10;
  }
A
Abdullah Almsaeed 已提交
1329
  .order-xl-11 {
A
Abdullah Almsaeed 已提交
1330 1331
    order: 11;
  }
A
Abdullah Almsaeed 已提交
1332
  .order-xl-12 {
A
Abdullah Almsaeed 已提交
1333 1334
    order: 12;
  }
A
Abdullah Almsaeed 已提交
1335
  .offset-xl-0 {
A
Abdullah Almsaeed 已提交
1336 1337
    margin-left: 0;
  }
A
Abdullah Almsaeed 已提交
1338
  .offset-xl-1 {
A
Abdullah Almsaeed 已提交
1339 1340
    margin-left: 8.333333%;
  }
A
Abdullah Almsaeed 已提交
1341
  .offset-xl-2 {
A
Abdullah Almsaeed 已提交
1342 1343
    margin-left: 16.666667%;
  }
A
Abdullah Almsaeed 已提交
1344
  .offset-xl-3 {
A
Abdullah Almsaeed 已提交
1345 1346
    margin-left: 25%;
  }
A
Abdullah Almsaeed 已提交
1347
  .offset-xl-4 {
A
Abdullah Almsaeed 已提交
1348 1349
    margin-left: 33.333333%;
  }
A
Abdullah Almsaeed 已提交
1350
  .offset-xl-5 {
A
Abdullah Almsaeed 已提交
1351 1352
    margin-left: 41.666667%;
  }
A
Abdullah Almsaeed 已提交
1353
  .offset-xl-6 {
A
Abdullah Almsaeed 已提交
1354 1355
    margin-left: 50%;
  }
A
Abdullah Almsaeed 已提交
1356
  .offset-xl-7 {
A
Abdullah Almsaeed 已提交
1357 1358
    margin-left: 58.333333%;
  }
A
Abdullah Almsaeed 已提交
1359
  .offset-xl-8 {
A
Abdullah Almsaeed 已提交
1360 1361
    margin-left: 66.666667%;
  }
A
Abdullah Almsaeed 已提交
1362
  .offset-xl-9 {
A
Abdullah Almsaeed 已提交
1363 1364
    margin-left: 75%;
  }
A
Abdullah Almsaeed 已提交
1365
  .offset-xl-10 {
A
Abdullah Almsaeed 已提交
1366 1367
    margin-left: 83.333333%;
  }
A
Abdullah Almsaeed 已提交
1368
  .offset-xl-11 {
A
Abdullah Almsaeed 已提交
1369 1370 1371
    margin-left: 91.666667%;
  }
}
A
Abdullah Almsaeed 已提交
1372 1373 1374 1375

.table {
  width: 100%;
  margin-bottom: 1rem;
1376
  color: #212529;
A
Abdullah Almsaeed 已提交
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
  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 已提交
1396 1397
.table-sm th,
.table-sm td {
A
Abdullah Almsaeed 已提交
1398 1399
  padding: 0.3rem;
}
A
Abdullah Almsaeed 已提交
1400 1401

.table-bordered {
A
Abdullah Almsaeed 已提交
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
  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 已提交
1414

A
Abdullah Almsaeed 已提交
1415 1416 1417 1418 1419 1420 1421
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

A
Abdullah Almsaeed 已提交
1422
.table-striped tbody tr:nth-of-type(odd) {
A
Abdullah Almsaeed 已提交
1423 1424
  background-color: rgba(0, 0, 0, 0.05);
}
A
Abdullah Almsaeed 已提交
1425 1426

.table-hover tbody tr:hover {
1427
  color: #212529;
A
Abdullah Almsaeed 已提交
1428 1429
  background-color: rgba(0, 0, 0, 0.075);
}
A
Abdullah Almsaeed 已提交
1430 1431 1432 1433

.table-primary,
.table-primary > th,
.table-primary > td {
A
Abdullah Almsaeed 已提交
1434 1435
  background-color: #b8daff;
}
A
Abdullah Almsaeed 已提交
1436

1437 1438 1439 1440 1441 1442 1443
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

A
Abdullah Almsaeed 已提交
1444
.table-hover .table-primary:hover {
A
Abdullah Almsaeed 已提交
1445 1446 1447 1448 1449 1450 1451
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}
A
Abdullah Almsaeed 已提交
1452 1453 1454 1455

.table-secondary,
.table-secondary > th,
.table-secondary > td {
A
Abdullah Almsaeed 已提交
1456 1457
  background-color: #d6d8db;
}
A
Abdullah Almsaeed 已提交
1458

1459 1460 1461 1462 1463 1464 1465
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

A
Abdullah Almsaeed 已提交
1466
.table-hover .table-secondary:hover {
A
Abdullah Almsaeed 已提交
1467 1468 1469 1470 1471 1472 1473
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}
A
Abdullah Almsaeed 已提交
1474 1475 1476 1477

.table-success,
.table-success > th,
.table-success > td {
A
Abdullah Almsaeed 已提交
1478 1479
  background-color: #c3e6cb;
}
A
Abdullah Almsaeed 已提交
1480

1481 1482 1483 1484 1485 1486 1487
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

A
Abdullah Almsaeed 已提交
1488
.table-hover .table-success:hover {
A
Abdullah Almsaeed 已提交
1489 1490 1491 1492 1493 1494 1495
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}
A
Abdullah Almsaeed 已提交
1496 1497 1498 1499

.table-info,
.table-info > th,
.table-info > td {
A
Abdullah Almsaeed 已提交
1500 1501
  background-color: #bee5eb;
}
A
Abdullah Almsaeed 已提交
1502

1503 1504 1505 1506 1507 1508 1509
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

A
Abdullah Almsaeed 已提交
1510
.table-hover .table-info:hover {
A
Abdullah Almsaeed 已提交
1511 1512 1513 1514 1515 1516 1517
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}
A
Abdullah Almsaeed 已提交
1518 1519 1520 1521

.table-warning,
.table-warning > th,
.table-warning > td {
A
Abdullah Almsaeed 已提交
1522 1523
  background-color: #ffeeba;
}
A
Abdullah Almsaeed 已提交
1524

1525 1526 1527 1528 1529 1530 1531
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

A
Abdullah Almsaeed 已提交
1532
.table-hover .table-warning:hover {
A
Abdullah Almsaeed 已提交
1533 1534 1535 1536 1537 1538 1539
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}
A
Abdullah Almsaeed 已提交
1540 1541 1542 1543

.table-danger,
.table-danger > th,
.table-danger > td {
A
Abdullah Almsaeed 已提交
1544 1545
  background-color: #f5c6cb;
}
A
Abdullah Almsaeed 已提交
1546

1547 1548 1549 1550 1551 1552 1553
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

A
Abdullah Almsaeed 已提交
1554
.table-hover .table-danger:hover {
A
Abdullah Almsaeed 已提交
1555 1556 1557 1558 1559 1560 1561
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}
A
Abdullah Almsaeed 已提交
1562 1563 1564 1565

.table-light,
.table-light > th,
.table-light > td {
A
Abdullah Almsaeed 已提交
1566 1567
  background-color: #fdfdfe;
}
A
Abdullah Almsaeed 已提交
1568

1569 1570 1571 1572 1573 1574 1575
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

A
Abdullah Almsaeed 已提交
1576
.table-hover .table-light:hover {
A
Abdullah Almsaeed 已提交
1577 1578 1579 1580 1581 1582 1583
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}
A
Abdullah Almsaeed 已提交
1584 1585 1586 1587

.table-dark,
.table-dark > th,
.table-dark > td {
A
Abdullah Almsaeed 已提交
1588 1589
  background-color: #c6c8ca;
}
A
Abdullah Almsaeed 已提交
1590

1591 1592 1593 1594 1595 1596 1597
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

A
Abdullah Almsaeed 已提交
1598
.table-hover .table-dark:hover {
A
Abdullah Almsaeed 已提交
1599 1600 1601 1602 1603 1604 1605
  background-color: #b9bbbe;
}

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

A
Abdullah Almsaeed 已提交
1607 1608 1609
.table-active,
.table-active > th,
.table-active > td {
A
Abdullah Almsaeed 已提交
1610 1611
  background-color: rgba(0, 0, 0, 0.075);
}
A
Abdullah Almsaeed 已提交
1612

A
Abdullah Almsaeed 已提交
1613
.table-hover .table-active:hover {
A
Abdullah Almsaeed 已提交
1614 1615 1616 1617 1618 1619 1620
  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 已提交
1621 1622

.table .thead-dark th {
A
Abdullah Almsaeed 已提交
1623
  color: #ffffff;
A
Abdullah Almsaeed 已提交
1624
  background-color: #212529;
A
Abdullah Almsaeed 已提交
1625 1626
  border-color: #32383e;
}
A
Abdullah Almsaeed 已提交
1627 1628 1629 1630

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
A
Abdullah Almsaeed 已提交
1631 1632
  border-color: #dee2e6;
}
A
Abdullah Almsaeed 已提交
1633 1634

.table-dark {
A
Abdullah Almsaeed 已提交
1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653
  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 {
1654
  color: #ffffff;
A
Abdullah Almsaeed 已提交
1655 1656 1657 1658
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
A
Abdullah Almsaeed 已提交
1659 1660 1661 1662 1663
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1664 1665 1666 1667 1668
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
A
Abdullah Almsaeed 已提交
1669

A
Abdullah Almsaeed 已提交
1670
@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
1671 1672 1673 1674 1675
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1676 1677 1678 1679 1680
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
A
Abdullah Almsaeed 已提交
1681

A
Abdullah Almsaeed 已提交
1682
@media (max-width: 991.98px) {
A
Abdullah Almsaeed 已提交
1683 1684 1685 1686 1687
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1688 1689 1690 1691 1692
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
A
Abdullah Almsaeed 已提交
1693

A
Abdullah Almsaeed 已提交
1694
@media (max-width: 1199.98px) {
A
Abdullah Almsaeed 已提交
1695 1696 1697 1698 1699
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1700 1701 1702 1703 1704
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
A
Abdullah Almsaeed 已提交
1705 1706 1707 1708 1709

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
A
Abdullah Almsaeed 已提交
1710
  -webkit-overflow-scrolling: touch;
A
Abdullah Almsaeed 已提交
1711 1712 1713 1714 1715
}

.table-responsive > .table-bordered {
  border: 0;
}
A
Abdullah Almsaeed 已提交
1716 1717 1718 1719

.form-control {
  display: block;
  width: 100%;
1720
  height: calc(2.25rem + 2px);
A
Abdullah Almsaeed 已提交
1721
  padding: 0.375rem 0.75rem;
A
Abdullah Almsaeed 已提交
1722
  font-size: 1rem;
1723
  font-weight: 400;
A
Abdullah Almsaeed 已提交
1724 1725
  line-height: 1.5;
  color: #495057;
A
Abdullah Almsaeed 已提交
1726
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
1727
  background-clip: padding-box;
A
Abdullah Almsaeed 已提交
1728
  border: 1px solid #ced4da;
A
Abdullah Almsaeed 已提交
1729
  border-radius: 0.25rem;
1730
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
A
Abdullah Almsaeed 已提交
1731 1732 1733
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

1734
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
1735 1736 1737 1738 1739
  .form-control {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
1740 1741 1742 1743 1744 1745 1746 1747 1748 1749
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #ffffff;
  border-color: #80bdff;
  outline: 0;
1750
  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 已提交
1751 1752
}

R
REJack 已提交
1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

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

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

A
Abdullah Almsaeed 已提交
1768 1769 1770 1771 1772 1773 1774 1775 1776
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

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

select.form-control:focus::-ms-value {
A
Abdullah Almsaeed 已提交
1779
  color: #495057;
A
Abdullah Almsaeed 已提交
1780 1781
  background-color: #ffffff;
}
A
Abdullah Almsaeed 已提交
1782 1783 1784

.form-control-file,
.form-control-range {
A
Abdullah Almsaeed 已提交
1785 1786 1787
  display: block;
  width: 100%;
}
A
Abdullah Almsaeed 已提交
1788 1789

.col-form-label {
A
Abdullah Almsaeed 已提交
1790 1791
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
A
Abdullah Almsaeed 已提交
1792
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
1793 1794 1795
  font-size: inherit;
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
1796 1797

.col-form-label-lg {
A
Abdullah Almsaeed 已提交
1798 1799
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
A
Abdullah Almsaeed 已提交
1800
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
1801 1802
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
1803 1804

.col-form-label-sm {
A
Abdullah Almsaeed 已提交
1805 1806
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
A
Abdullah Almsaeed 已提交
1807
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
1808 1809
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
1810

A
Abdullah Almsaeed 已提交
1811
.form-control-plaintext {
A
Abdullah Almsaeed 已提交
1812 1813
  display: block;
  width: 100%;
A
Abdullah Almsaeed 已提交
1814 1815 1816 1817
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
1818
  color: #212529;
A
Abdullah Almsaeed 已提交
1819
  background-color: transparent;
A
Abdullah Almsaeed 已提交
1820
  border: solid transparent;
A
Abdullah Almsaeed 已提交
1821 1822 1823
  border-width: 1px 0;
}

1824
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
A
Abdullah Almsaeed 已提交
1825 1826 1827
  padding-right: 0;
  padding-left: 0;
}
A
Abdullah Almsaeed 已提交
1828

1829 1830
.form-control-sm {
  height: calc(1.8125rem + 2px);
A
Abdullah Almsaeed 已提交
1831 1832
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
1833
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
1834 1835
  border-radius: 0.2rem;
}
A
Abdullah Almsaeed 已提交
1836

1837 1838
.form-control-lg {
  height: calc(2.875rem + 2px);
A
Abdullah Almsaeed 已提交
1839
  padding: 0.5rem 1rem;
A
Abdullah Almsaeed 已提交
1840
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
1841
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
1842 1843
  border-radius: 0.3rem;
}
A
Abdullah Almsaeed 已提交
1844

1845 1846 1847 1848 1849 1850
select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
A
Abdullah Almsaeed 已提交
1851
}
A
Abdullah Almsaeed 已提交
1852 1853

.form-group {
A
Abdullah Almsaeed 已提交
1854 1855
  margin-bottom: 1rem;
}
A
Abdullah Almsaeed 已提交
1856 1857 1858

.form-text {
  display: block;
A
Abdullah Almsaeed 已提交
1859 1860
  margin-top: 0.25rem;
}
A
Abdullah Almsaeed 已提交
1861 1862 1863 1864 1865

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
A
Abdullah Almsaeed 已提交
1866 1867 1868 1869 1870 1871 1872 1873
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
A
Abdullah Almsaeed 已提交
1874 1875 1876 1877 1878

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
A
Abdullah Almsaeed 已提交
1879
}
A
Abdullah Almsaeed 已提交
1880 1881 1882

.form-check-input {
  position: absolute;
A
Abdullah Almsaeed 已提交
1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893
  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 已提交
1894 1895

.form-check-inline {
A
Abdullah Almsaeed 已提交
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
  display: inline-flex;
  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 已提交
1908

A
Abdullah Almsaeed 已提交
1909 1910
.valid-feedback {
  display: none;
A
Abdullah Almsaeed 已提交
1911 1912 1913 1914 1915
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}
A
Abdullah Almsaeed 已提交
1916

A
Abdullah Almsaeed 已提交
1917 1918 1919 1920 1921
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
A
Abdullah Almsaeed 已提交
1922
  max-width: 100%;
1923
  padding: 0.25rem 0.5rem;
A
Abdullah Almsaeed 已提交
1924
  margin-top: .1rem;
1925 1926
  font-size: 0.875rem;
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
1927
  color: #ffffff;
1928 1929
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
1930
}
A
Abdullah Almsaeed 已提交
1931

1932
.was-validated .form-control:valid, .form-control.is-valid {
A
Abdullah Almsaeed 已提交
1933
  border-color: #28a745;
1934 1935 1936 1937 1938
  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 已提交
1939 1940
}

1941
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
A
Abdullah Almsaeed 已提交
1942 1943 1944 1945 1946 1947
  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,
1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969
.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 已提交
1970 1971 1972 1973
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

1974 1975 1976 1977 1978 1979
.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 已提交
1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994
.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 {
1995
  border-color: #28a745;
A
Abdullah Almsaeed 已提交
1996 1997 1998 1999 2000 2001 2002 2003 2004
}

.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 {
2005
  border-color: #34ce57;
R
REJack 已提交
2006
  background-color: #34ce57;
A
Abdullah Almsaeed 已提交
2007 2008 2009
}

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

2013
.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 已提交
2014 2015 2016
  border-color: #28a745;
}

2017 2018
.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
A
Abdullah Almsaeed 已提交
2019 2020 2021 2022 2023 2024 2025 2026 2027
}

.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 {
2028
  border-color: #28a745;
A
Abdullah Almsaeed 已提交
2029 2030
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
A
Abdullah Almsaeed 已提交
2031 2032 2033

.invalid-feedback {
  display: none;
A
Abdullah Almsaeed 已提交
2034 2035 2036 2037 2038
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
A
Abdullah Almsaeed 已提交
2039

A
Abdullah Almsaeed 已提交
2040 2041 2042 2043 2044
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
A
Abdullah Almsaeed 已提交
2045
  max-width: 100%;
2046
  padding: 0.25rem 0.5rem;
A
Abdullah Almsaeed 已提交
2047
  margin-top: .1rem;
2048 2049
  font-size: 0.875rem;
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
2050
  color: #ffffff;
2051 2052
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
2053
}
A
Abdullah Almsaeed 已提交
2054

2055
.was-validated .form-control:invalid, .form-control.is-invalid {
A
Abdullah Almsaeed 已提交
2056
  border-color: #dc3545;
2057 2058 2059 2060 2061
  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 已提交
2062
}
A
Abdullah Almsaeed 已提交
2063

2064
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
A
Abdullah Almsaeed 已提交
2065 2066 2067 2068 2069 2070
  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,
2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092
.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 已提交
2093 2094 2095
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}
A
Abdullah Almsaeed 已提交
2096

2097 2098 2099 2100 2101 2102
.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 已提交
2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117
.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 {
2118
  border-color: #dc3545;
A
Abdullah Almsaeed 已提交
2119 2120 2121 2122 2123 2124 2125 2126 2127
}

.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 {
2128
  border-color: #e4606d;
R
REJack 已提交
2129
  background-color: #e4606d;
A
Abdullah Almsaeed 已提交
2130 2131 2132
}

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

2136
.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 已提交
2137 2138 2139
  border-color: #dc3545;
}

2140 2141
.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
A
Abdullah Almsaeed 已提交
2142 2143 2144 2145 2146 2147 2148 2149 2150
}

.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 {
2151
  border-color: #dc3545;
A
Abdullah Almsaeed 已提交
2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

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

@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    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 已提交
2187 2188
  .form-inline .input-group,
  .form-inline .custom-select {
A
Abdullah Almsaeed 已提交
2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
2200
    flex-shrink: 0;
A
Abdullah Almsaeed 已提交
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
2217
  color: #212529;
A
Abdullah Almsaeed 已提交
2218 2219
  text-align: center;
  vertical-align: middle;
R
REJack 已提交
2220 2221 2222
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
A
Abdullah Almsaeed 已提交
2223
  user-select: none;
2224
  background-color: transparent;
A
Abdullah Almsaeed 已提交
2225
  border: 1px solid transparent;
A
Abdullah Almsaeed 已提交
2226
  padding: 0.375rem 0.75rem;
A
Abdullah Almsaeed 已提交
2227
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
2228
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
2229
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
2230 2231 2232
  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;
}

2233
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
2234 2235 2236 2237 2238
  .btn {
    transition: none;
  }
}

2239 2240
.btn:hover {
  color: #212529;
A
Abdullah Almsaeed 已提交
2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260
  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 已提交
2261 2262

a.btn.disabled,
A
Abdullah Almsaeed 已提交
2263 2264 2265
fieldset:disabled a.btn {
  pointer-events: none;
}
A
Abdullah Almsaeed 已提交
2266 2267

.btn-primary {
A
Abdullah Almsaeed 已提交
2268
  color: #ffffff;
R
REJack 已提交
2269
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
2270 2271 2272 2273 2274 2275
  border-color: #007bff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-primary:hover {
  color: #ffffff;
R
REJack 已提交
2276
  background-color: #0069d9;
A
Abdullah Almsaeed 已提交
2277 2278 2279 2280
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
2281
  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 已提交
2282 2283 2284 2285
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #ffffff;
A
Abdullah Almsaeed 已提交
2286
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298
  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 {
2299
  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 已提交
2300
}
A
Abdullah Almsaeed 已提交
2301 2302

.btn-secondary {
A
Abdullah Almsaeed 已提交
2303
  color: #ffffff;
R
REJack 已提交
2304
  background-color: #6c757d;
A
Abdullah Almsaeed 已提交
2305 2306 2307 2308 2309 2310
  border-color: #6c757d;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-secondary:hover {
  color: #ffffff;
R
REJack 已提交
2311
  background-color: #5a6268;
A
Abdullah Almsaeed 已提交
2312 2313 2314 2315
  border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
2316
  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 已提交
2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333
}

.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 {
2334
  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 已提交
2335
}
A
Abdullah Almsaeed 已提交
2336 2337

.btn-success {
A
Abdullah Almsaeed 已提交
2338
  color: #ffffff;
R
REJack 已提交
2339
  background-color: #28a745;
A
Abdullah Almsaeed 已提交
2340 2341 2342 2343 2344 2345
  border-color: #28a745;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-success:hover {
  color: #ffffff;
R
REJack 已提交
2346
  background-color: #218838;
A
Abdullah Almsaeed 已提交
2347 2348 2349 2350
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
2351
  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 已提交
2352 2353 2354 2355
}

.btn-success.disabled, .btn-success:disabled {
  color: #ffffff;
A
Abdullah Almsaeed 已提交
2356
  background-color: #28a745;
A
Abdullah Almsaeed 已提交
2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368
  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 {
2369
  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 已提交
2370
}
A
Abdullah Almsaeed 已提交
2371

A
Abdullah Almsaeed 已提交
2372
.btn-info {
A
Abdullah Almsaeed 已提交
2373
  color: #ffffff;
R
REJack 已提交
2374
  background-color: #17a2b8;
A
Abdullah Almsaeed 已提交
2375 2376 2377 2378 2379 2380
  border-color: #17a2b8;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-info:hover {
  color: #ffffff;
R
REJack 已提交
2381
  background-color: #138496;
A
Abdullah Almsaeed 已提交
2382 2383 2384 2385
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
2386
  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 已提交
2387 2388 2389 2390
}

.btn-info.disabled, .btn-info:disabled {
  color: #ffffff;
A
Abdullah Almsaeed 已提交
2391
  background-color: #17a2b8;
A
Abdullah Almsaeed 已提交
2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403
  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 {
2404
  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 已提交
2405
}
A
Abdullah Almsaeed 已提交
2406 2407

.btn-warning {
A
Abdullah Almsaeed 已提交
2408
  color: #1F2D3D;
R
REJack 已提交
2409
  background-color: #ffc107;
A
Abdullah Almsaeed 已提交
2410 2411 2412 2413 2414 2415
  border-color: #ffc107;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-warning:hover {
  color: #1F2D3D;
R
REJack 已提交
2416
  background-color: #e0a800;
A
Abdullah Almsaeed 已提交
2417 2418 2419 2420
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
2421
  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 已提交
2422 2423 2424 2425
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #1F2D3D;
A
Abdullah Almsaeed 已提交
2426
  background-color: #ffc107;
A
Abdullah Almsaeed 已提交
2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438
  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 {
2439
  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 已提交
2440
}
A
Abdullah Almsaeed 已提交
2441 2442

.btn-danger {
A
Abdullah Almsaeed 已提交
2443
  color: #ffffff;
R
REJack 已提交
2444
  background-color: #dc3545;
A
Abdullah Almsaeed 已提交
2445 2446 2447 2448 2449 2450
  border-color: #dc3545;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-danger:hover {
  color: #ffffff;
R
REJack 已提交
2451
  background-color: #c82333;
A
Abdullah Almsaeed 已提交
2452 2453 2454 2455
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
2456
  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 已提交
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473
}

.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 {
2474
  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 已提交
2475
}
A
Abdullah Almsaeed 已提交
2476

A
Abdullah Almsaeed 已提交
2477
.btn-light {
A
Abdullah Almsaeed 已提交
2478
  color: #1F2D3D;
R
REJack 已提交
2479
  background-color: #f8f9fa;
A
Abdullah Almsaeed 已提交
2480 2481 2482 2483 2484 2485
  border-color: #f8f9fa;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-light:hover {
  color: #1F2D3D;
R
REJack 已提交
2486
  background-color: #e2e6ea;
A
Abdullah Almsaeed 已提交
2487 2488 2489 2490
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
2491
  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 已提交
2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508
}

.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 {
2509
  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 已提交
2510
}
A
Abdullah Almsaeed 已提交
2511 2512

.btn-dark {
A
Abdullah Almsaeed 已提交
2513
  color: #ffffff;
R
REJack 已提交
2514
  background-color: #343a40;
A
Abdullah Almsaeed 已提交
2515 2516 2517 2518 2519 2520
  border-color: #343a40;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

.btn-dark:hover {
  color: #ffffff;
R
REJack 已提交
2521
  background-color: #23272b;
A
Abdullah Almsaeed 已提交
2522 2523 2524 2525
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
2526
  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 已提交
2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543
}

.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 {
2544
  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 已提交
2545
}
A
Abdullah Almsaeed 已提交
2546 2547

.btn-outline-primary {
A
Abdullah Almsaeed 已提交
2548
  color: #007bff;
A
Abdullah Almsaeed 已提交
2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577
  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 已提交
2578 2579

.btn-outline-secondary {
A
Abdullah Almsaeed 已提交
2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609
  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 已提交
2610 2611

.btn-outline-success {
A
Abdullah Almsaeed 已提交
2612
  color: #28a745;
A
Abdullah Almsaeed 已提交
2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641
  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 已提交
2642

A
Abdullah Almsaeed 已提交
2643 2644
.btn-outline-info {
  color: #17a2b8;
A
Abdullah Almsaeed 已提交
2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673
  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 已提交
2674 2675

.btn-outline-warning {
A
Abdullah Almsaeed 已提交
2676
  color: #ffc107;
A
Abdullah Almsaeed 已提交
2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705
  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 已提交
2706 2707

.btn-outline-danger {
A
Abdullah Almsaeed 已提交
2708
  color: #dc3545;
A
Abdullah Almsaeed 已提交
2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737
  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 已提交
2738

A
Abdullah Almsaeed 已提交
2739 2740
.btn-outline-light {
  color: #f8f9fa;
A
Abdullah Almsaeed 已提交
2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769
  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 已提交
2770 2771 2772

.btn-outline-dark {
  color: #343a40;
A
Abdullah Almsaeed 已提交
2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801
  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 已提交
2802

A
Abdullah Almsaeed 已提交
2803 2804 2805
.btn-link {
  font-weight: 400;
  color: #007bff;
2806
  text-decoration: none;
A
Abdullah Almsaeed 已提交
2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820
}

.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 已提交
2821
  pointer-events: none;
A
Abdullah Almsaeed 已提交
2822
}
A
Abdullah Almsaeed 已提交
2823 2824

.btn-lg, .btn-group-lg > .btn {
A
Abdullah Almsaeed 已提交
2825
  padding: 0.5rem 1rem;
A
Abdullah Almsaeed 已提交
2826
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
2827
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
2828 2829
  border-radius: 0.3rem;
}
A
Abdullah Almsaeed 已提交
2830 2831 2832 2833

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
2834
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
2835 2836
  border-radius: 0.2rem;
}
A
Abdullah Almsaeed 已提交
2837 2838 2839

.btn-block {
  display: block;
A
Abdullah Almsaeed 已提交
2840 2841
  width: 100%;
}
A
Abdullah Almsaeed 已提交
2842 2843

.btn-block + .btn-block {
A
Abdullah Almsaeed 已提交
2844 2845
  margin-top: 0.5rem;
}
A
Abdullah Almsaeed 已提交
2846 2847 2848 2849

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
A
Abdullah Almsaeed 已提交
2850 2851
  width: 100%;
}
A
Abdullah Almsaeed 已提交
2852 2853

.fade {
A
Abdullah Almsaeed 已提交
2854 2855 2856
  transition: opacity 0.15s linear;
}

2857
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
2858 2859 2860
  .fade {
    transition: none;
  }
A
Abdullah Almsaeed 已提交
2861
}
A
Abdullah Almsaeed 已提交
2862

A
Abdullah Almsaeed 已提交
2863 2864
.fade:not(.show) {
  opacity: 0;
A
Abdullah Almsaeed 已提交
2865
}
A
Abdullah Almsaeed 已提交
2866

A
Abdullah Almsaeed 已提交
2867 2868
.collapse:not(.show) {
  display: none;
A
Abdullah Almsaeed 已提交
2869
}
A
Abdullah Almsaeed 已提交
2870 2871 2872 2873 2874

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
A
Abdullah Almsaeed 已提交
2875 2876
  transition: height 0.35s ease;
}
A
Abdullah Almsaeed 已提交
2877

2878
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
2879 2880 2881 2882 2883
  .collapsing {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
2884
.dropup,
A
Abdullah Almsaeed 已提交
2885 2886 2887
.dropright,
.dropdown,
.dropleft {
A
Abdullah Almsaeed 已提交
2888 2889
  position: relative;
}
A
Abdullah Almsaeed 已提交
2890

2891 2892 2893 2894
.dropdown-toggle {
  white-space: nowrap;
}

A
Abdullah Almsaeed 已提交
2895 2896
.dropdown-toggle::after {
  display: inline-block;
A
Abdullah Almsaeed 已提交
2897 2898
  margin-left: 0.255em;
  vertical-align: 0.255em;
A
Abdullah Almsaeed 已提交
2899 2900 2901
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
A
Abdullah Almsaeed 已提交
2902
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
2903 2904
  border-left: 0.3em solid transparent;
}
A
Abdullah Almsaeed 已提交
2905

A
Abdullah Almsaeed 已提交
2906
.dropdown-toggle:empty::after {
A
Abdullah Almsaeed 已提交
2907 2908
  margin-left: 0;
}
A
Abdullah Almsaeed 已提交
2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920

.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 已提交
2921
  color: #212529;
A
Abdullah Almsaeed 已提交
2922 2923
  text-align: left;
  list-style: none;
A
Abdullah Almsaeed 已提交
2924
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
2925 2926
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
A
Abdullah Almsaeed 已提交
2927 2928 2929
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}
A
Abdullah Almsaeed 已提交
2930

2931 2932 2933 2934 2935
.dropdown-menu-left {
  right: auto;
  left: 0;
}

A
Abdullah Almsaeed 已提交
2936 2937 2938 2939 2940
.dropdown-menu-right {
  right: 0;
  left: auto;
}

2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 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 2980 2981 2982 2983 2984
@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 已提交
2985
.dropup .dropdown-menu {
A
Abdullah Almsaeed 已提交
2986 2987
  top: auto;
  bottom: 100%;
A
Abdullah Almsaeed 已提交
2988
  margin-top: 0;
A
Abdullah Almsaeed 已提交
2989 2990
  margin-bottom: 0.125rem;
}
A
Abdullah Almsaeed 已提交
2991 2992 2993 2994 2995 2996 2997 2998 2999

.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 已提交
3000 3001
  border-left: 0.3em solid transparent;
}
A
Abdullah Almsaeed 已提交
3002 3003

.dropup .dropdown-toggle:empty::after {
A
Abdullah Almsaeed 已提交
3004 3005 3006 3007
  margin-left: 0;
}

.dropright .dropdown-menu {
A
Abdullah Almsaeed 已提交
3008 3009 3010
  top: 0;
  right: auto;
  left: 100%;
A
Abdullah Almsaeed 已提交
3011 3012 3013 3014 3015 3016 3017 3018 3019 3020
  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 已提交
3021
  border-right: 0;
A
Abdullah Almsaeed 已提交
3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034
  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 已提交
3035 3036 3037
  top: 0;
  right: 100%;
  left: auto;
A
Abdullah Almsaeed 已提交
3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069
  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 已提交
3070

A
Abdullah Almsaeed 已提交
3071 3072 3073 3074 3075
.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 已提交
3076
.dropdown-divider {
A
Abdullah Almsaeed 已提交
3077
  height: 0;
A
Abdullah Almsaeed 已提交
3078 3079
  margin: 0.5rem 0;
  overflow: hidden;
A
Abdullah Almsaeed 已提交
3080 3081
  border-top: 1px solid #e9ecef;
}
A
Abdullah Almsaeed 已提交
3082 3083 3084 3085

.dropdown-item {
  display: block;
  width: 100%;
A
Abdullah Almsaeed 已提交
3086
  padding: 0.25rem 1rem;
A
Abdullah Almsaeed 已提交
3087
  clear: both;
A
Abdullah Almsaeed 已提交
3088 3089
  font-weight: 400;
  color: #212529;
A
Abdullah Almsaeed 已提交
3090 3091
  text-align: inherit;
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
3092 3093 3094
  background-color: transparent;
  border: 0;
}
A
Abdullah Almsaeed 已提交
3095

A
Abdullah Almsaeed 已提交
3096 3097 3098
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
R
REJack 已提交
3099
  background-color: #f8f9fa;
A
Abdullah Almsaeed 已提交
3100 3101 3102 3103 3104
}

.dropdown-item.active, .dropdown-item:active {
  color: #ffffff;
  text-decoration: none;
R
REJack 已提交
3105
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3106 3107 3108 3109
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
3110
  pointer-events: none;
A
Abdullah Almsaeed 已提交
3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125
  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 已提交
3126

A
Abdullah Almsaeed 已提交
3127 3128 3129 3130 3131 3132
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

A
Abdullah Almsaeed 已提交
3133 3134 3135
.btn-group,
.btn-group-vertical {
  position: relative;
A
Abdullah Almsaeed 已提交
3136
  display: inline-flex;
A
Abdullah Almsaeed 已提交
3137 3138 3139 3140 3141 3142
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
3143
  flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157
}

.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 已提交
3158
.btn-toolbar {
A
Abdullah Almsaeed 已提交
3159 3160
  display: flex;
  flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
3161 3162
  justify-content: flex-start;
}
A
Abdullah Almsaeed 已提交
3163

A
Abdullah Almsaeed 已提交
3164 3165 3166
.btn-toolbar .input-group {
  width: auto;
}
A
Abdullah Almsaeed 已提交
3167

3168 3169 3170
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
A
Abdullah Almsaeed 已提交
3171
}
A
Abdullah Almsaeed 已提交
3172

A
Abdullah Almsaeed 已提交
3173 3174
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
A
Abdullah Almsaeed 已提交
3175
  border-top-right-radius: 0;
A
Abdullah Almsaeed 已提交
3176 3177
  border-bottom-right-radius: 0;
}
A
Abdullah Almsaeed 已提交
3178

A
Abdullah Almsaeed 已提交
3179 3180
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
A
Abdullah Almsaeed 已提交
3181
  border-top-left-radius: 0;
A
Abdullah Almsaeed 已提交
3182 3183
  border-bottom-left-radius: 0;
}
A
Abdullah Almsaeed 已提交
3184

A
Abdullah Almsaeed 已提交
3185
.dropdown-toggle-split {
A
Abdullah Almsaeed 已提交
3186
  padding-right: 0.5625rem;
A
Abdullah Almsaeed 已提交
3187 3188 3189
  padding-left: 0.5625rem;
}

A
Abdullah Almsaeed 已提交
3190 3191 3192
.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
A
Abdullah Almsaeed 已提交
3193 3194
  margin-left: 0;
}
A
Abdullah Almsaeed 已提交
3195

A
Abdullah Almsaeed 已提交
3196 3197 3198 3199
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

A
Abdullah Almsaeed 已提交
3200 3201
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
A
Abdullah Almsaeed 已提交
3202 3203
  padding-left: 0.375rem;
}
A
Abdullah Almsaeed 已提交
3204 3205

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
A
Abdullah Almsaeed 已提交
3206
  padding-right: 0.75rem;
A
Abdullah Almsaeed 已提交
3207 3208 3209 3210 3211 3212 3213 3214 3215 3216
  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 已提交
3217

A
Abdullah Almsaeed 已提交
3218 3219 3220
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
A
Abdullah Almsaeed 已提交
3221 3222 3223
  justify-content: center;
}

3224 3225
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
A
Abdullah Almsaeed 已提交
3226 3227 3228
  width: 100%;
}

3229 3230
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
A
Abdullah Almsaeed 已提交
3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244
  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 已提交
3245

A
Abdullah Almsaeed 已提交
3246 3247 3248 3249 3250 3251 3252 3253 3254
.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 已提交
3255 3256
  position: absolute;
  clip: rect(0, 0, 0, 0);
A
Abdullah Almsaeed 已提交
3257 3258
  pointer-events: none;
}
A
Abdullah Almsaeed 已提交
3259 3260 3261

.input-group {
  position: relative;
A
Abdullah Almsaeed 已提交
3262
  display: flex;
A
Abdullah Almsaeed 已提交
3263
  flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
3264
  align-items: stretch;
A
Abdullah Almsaeed 已提交
3265 3266 3267 3268
  width: 100%;
}

.input-group > .form-control,
3269
.input-group > .form-control-plaintext,
A
Abdullah Almsaeed 已提交
3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  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,
3281 3282 3283
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
A
Abdullah Almsaeed 已提交
3284 3285 3286 3287 3288 3289 3290 3291 3292
.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;
}

3293 3294 3295 3296 3297 3298
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

3299 3300 3301 3302
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

A
Abdullah Almsaeed 已提交
3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320
.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 {
  display: flex;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
A
Abdullah Almsaeed 已提交
3321
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
A
Abdullah Almsaeed 已提交
3322 3323 3324 3325
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

3326
.input-group > .custom-file:not(:first-child) .custom-file-label {
A
Abdullah Almsaeed 已提交
3327 3328 3329 3330 3331 3332
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
A
Abdullah Almsaeed 已提交
3333
  display: flex;
A
Abdullah Almsaeed 已提交
3334 3335 3336 3337 3338 3339 3340 3341
}

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

3342 3343 3344 3345 3346
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

A
Abdullah Almsaeed 已提交
3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360
.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 已提交
3361

A
Abdullah Almsaeed 已提交
3362 3363 3364
.input-group-append {
  margin-left: -1px;
}
A
Abdullah Almsaeed 已提交
3365

A
Abdullah Almsaeed 已提交
3366 3367 3368
.input-group-text {
  display: flex;
  align-items: center;
A
Abdullah Almsaeed 已提交
3369
  padding: 0.375rem 0.75rem;
A
Abdullah Almsaeed 已提交
3370 3371
  margin-bottom: 0;
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
3372 3373 3374
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
A
Abdullah Almsaeed 已提交
3375
  text-align: center;
A
Abdullah Almsaeed 已提交
3376
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
3377 3378
  background-color: #e9ecef;
  border: 1px solid #ced4da;
A
Abdullah Almsaeed 已提交
3379 3380 3381 3382 3383 3384 3385 3386
  border-radius: 0.25rem;
}

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

3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425
.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 已提交
3426 3427 3428 3429 3430 3431
.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 已提交
3432
  border-top-right-radius: 0;
A
Abdullah Almsaeed 已提交
3433 3434 3435 3436 3437 3438 3439 3440 3441
  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 已提交
3442
  border-top-left-radius: 0;
A
Abdullah Almsaeed 已提交
3443 3444
  border-bottom-left-radius: 0;
}
A
Abdullah Almsaeed 已提交
3445 3446 3447

.custom-control {
  position: relative;
A
Abdullah Almsaeed 已提交
3448
  display: block;
A
Abdullah Almsaeed 已提交
3449
  min-height: 1.5rem;
3450
  padding-left: 2.5rem;
A
Abdullah Almsaeed 已提交
3451 3452 3453 3454 3455 3456
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}
A
Abdullah Almsaeed 已提交
3457 3458 3459 3460

.custom-control-input {
  position: absolute;
  z-index: -1;
A
Abdullah Almsaeed 已提交
3461 3462 3463 3464 3465
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #ffffff;
3466
  border-color: #007bff;
R
REJack 已提交
3467
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3468 3469 3470 3471
  box-shadow: none;
}

.custom-control-input:focus ~ .custom-control-label::before {
3472 3473 3474 3475 3476
  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 已提交
3477 3478
}

3479
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
A
Abdullah Almsaeed 已提交
3480 3481
  color: #ffffff;
  background-color: #b3d7ff;
3482
  border-color: #b3d7ff;
A
Abdullah Almsaeed 已提交
3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494
  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 {
3495
  position: relative;
A
Abdullah Almsaeed 已提交
3496
  margin-bottom: 0;
3497
  vertical-align: top;
A
Abdullah Almsaeed 已提交
3498 3499 3500
}

.custom-control-label::before {
A
Abdullah Almsaeed 已提交
3501
  position: absolute;
A
Abdullah Almsaeed 已提交
3502
  top: 0.25rem;
3503
  left: -2.5rem;
A
Abdullah Almsaeed 已提交
3504 3505 3506 3507
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
A
Abdullah Almsaeed 已提交
3508 3509
  content: "";
  background-color: #dee2e6;
3510
  border: #adb5bd solid 1px;
A
Abdullah Almsaeed 已提交
3511 3512 3513 3514 3515 3516
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
3517
  left: -2.5rem;
A
Abdullah Almsaeed 已提交
3518 3519 3520 3521
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
3522
  background: no-repeat 50% / 50% 50%;
A
Abdullah Almsaeed 已提交
3523 3524 3525 3526 3527
}

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

A
Abdullah Almsaeed 已提交
3529 3530 3531
.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 已提交
3532

A
Abdullah Almsaeed 已提交
3533
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
3534
  border-color: #007bff;
R
REJack 已提交
3535
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3536 3537
  box-shadow: none;
}
A
Abdullah Almsaeed 已提交
3538

A
Abdullah Almsaeed 已提交
3539 3540 3541
.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 已提交
3542

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

A
Abdullah Almsaeed 已提交
3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561
.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 已提交
3562

3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580
.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 已提交
3581
  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;
3582
  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 已提交
3583
  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;
3584 3585 3586 3587 3588 3589 3590 3591 3592 3593
}

@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 已提交
3594
  -webkit-transform: translateX(0.75rem);
3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613
  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 已提交
3614
  border: 1px solid #ced4da;
A
Abdullah Almsaeed 已提交
3615
  border-radius: 0.25rem;
3616
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
R
REJack 已提交
3617 3618
  -webkit-appearance: none;
  -moz-appearance: none;
A
Abdullah Almsaeed 已提交
3619 3620 3621 3622 3623 3624
  appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
3625
  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 已提交
3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644
}

.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 {
3645
  display: none;
A
Abdullah Almsaeed 已提交
3646
}
A
Abdullah Almsaeed 已提交
3647 3648

.custom-select-sm {
A
Abdullah Almsaeed 已提交
3649
  height: calc(1.8125rem + 2px);
3650 3651 3652
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
A
Abdullah Almsaeed 已提交
3653 3654 3655 3656 3657
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.875rem + 2px);
3658 3659 3660
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
A
Abdullah Almsaeed 已提交
3661 3662
  font-size: 125%;
}
A
Abdullah Almsaeed 已提交
3663 3664 3665 3666

.custom-file {
  position: relative;
  display: inline-block;
A
Abdullah Almsaeed 已提交
3667
  width: 100%;
A
Abdullah Almsaeed 已提交
3668
  height: calc(2.25rem + 2px);
A
Abdullah Almsaeed 已提交
3669 3670
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
3671 3672

.custom-file-input {
A
Abdullah Almsaeed 已提交
3673 3674 3675
  position: relative;
  z-index: 2;
  width: 100%;
A
Abdullah Almsaeed 已提交
3676
  height: calc(2.25rem + 2px);
A
Abdullah Almsaeed 已提交
3677
  margin: 0;
A
Abdullah Almsaeed 已提交
3678 3679 3680
  opacity: 0;
}

A
Abdullah Almsaeed 已提交
3681
.custom-file-input:focus ~ .custom-file-label {
A
Abdullah Almsaeed 已提交
3682 3683 3684 3685
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

3686 3687 3688 3689
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

A
Abdullah Almsaeed 已提交
3690 3691 3692 3693
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

3694 3695 3696 3697
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

A
Abdullah Almsaeed 已提交
3698
.custom-file-label {
A
Abdullah Almsaeed 已提交
3699 3700 3701 3702
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
A
Abdullah Almsaeed 已提交
3703
  z-index: 1;
A
Abdullah Almsaeed 已提交
3704 3705
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
3706
  font-weight: 400;
A
Abdullah Almsaeed 已提交
3707
  line-height: 1.5;
A
Abdullah Almsaeed 已提交
3708
  color: #495057;
A
Abdullah Almsaeed 已提交
3709
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
3710
  border: 1px solid #ced4da;
A
Abdullah Almsaeed 已提交
3711
  border-radius: 0.25rem;
3712
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
A
Abdullah Almsaeed 已提交
3713 3714 3715 3716 3717 3718 3719 3720 3721
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
3722
  height: 2.25rem;
A
Abdullah Almsaeed 已提交
3723 3724 3725 3726
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
R
REJack 已提交
3727
  background-color: #e9ecef;
3728
  border-left: inherit;
A
Abdullah Almsaeed 已提交
3729 3730
  border-radius: 0 0.25rem 0.25rem 0;
}
A
Abdullah Almsaeed 已提交
3731

A
Abdullah Almsaeed 已提交
3732 3733
.custom-range {
  width: 100%;
3734 3735
  height: calc(1rem + 0.4rem);
  padding: 0;
A
Abdullah Almsaeed 已提交
3736
  background-color: transparent;
R
REJack 已提交
3737 3738
  -webkit-appearance: none;
  -moz-appearance: none;
A
Abdullah Almsaeed 已提交
3739 3740 3741 3742 3743 3744 3745
  appearance: none;
}

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

3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757
.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 已提交
3758 3759 3760 3761 3762 3763 3764 3765
.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
R
REJack 已提交
3766
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3767 3768 3769
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
3770
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
R
REJack 已提交
3771
  -webkit-appearance: none;
A
Abdullah Almsaeed 已提交
3772 3773 3774
  appearance: none;
}

3775
@media (prefers-reduced-motion: reduce) {
3776 3777 3778 3779 3780
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
3781
.custom-range::-webkit-slider-thumb:active {
R
REJack 已提交
3782
  background-color: #b3d7ff;
A
Abdullah Almsaeed 已提交
3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798
}

.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 已提交
3799
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3800 3801 3802
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
3803
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
R
REJack 已提交
3804
  -moz-appearance: none;
A
Abdullah Almsaeed 已提交
3805 3806 3807
  appearance: none;
}

3808
@media (prefers-reduced-motion: reduce) {
3809 3810 3811 3812 3813
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
3814
.custom-range::-moz-range-thumb:active {
R
REJack 已提交
3815
  background-color: #b3d7ff;
A
Abdullah Almsaeed 已提交
3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831
}

.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;
3832 3833 3834
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
R
REJack 已提交
3835
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
3836 3837 3838
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
3839
  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 已提交
3840 3841 3842
  appearance: none;
}

3843
@media (prefers-reduced-motion: reduce) {
3844 3845 3846 3847 3848
  .custom-range::-ms-thumb {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
3849
.custom-range::-ms-thumb:active {
R
REJack 已提交
3850
  background-color: #b3d7ff;
A
Abdullah Almsaeed 已提交
3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874
}

.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;
}

3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894
.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;
}

3895 3896 3897 3898 3899 3900
.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;
}

3901
@media (prefers-reduced-motion: reduce) {
3902 3903 3904 3905 3906 3907 3908
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
3909
.nav {
A
Abdullah Almsaeed 已提交
3910 3911
  display: flex;
  flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
3912 3913
  padding-left: 0;
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
3914 3915
  list-style: none;
}
A
Abdullah Almsaeed 已提交
3916 3917

.nav-link {
A
Abdullah Almsaeed 已提交
3918
  display: block;
A
Abdullah Almsaeed 已提交
3919 3920 3921 3922 3923 3924 3925 3926 3927
  padding: 0.5rem 1rem;
}

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

.nav-link.disabled {
  color: #6c757d;
3928 3929
  pointer-events: none;
  cursor: default;
A
Abdullah Almsaeed 已提交
3930
}
A
Abdullah Almsaeed 已提交
3931

A
Abdullah Almsaeed 已提交
3932
.nav-tabs {
A
Abdullah Almsaeed 已提交
3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967
  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 已提交
3968

A
Abdullah Almsaeed 已提交
3969
.nav-pills .nav-link {
A
Abdullah Almsaeed 已提交
3970 3971
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
3972

A
Abdullah Almsaeed 已提交
3973 3974
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
A
Abdullah Almsaeed 已提交
3975 3976 3977
  color: #ffffff;
  background-color: #007bff;
}
A
Abdullah Almsaeed 已提交
3978

A
Abdullah Almsaeed 已提交
3979 3980
.nav-fill .nav-item {
  flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
3981 3982
  text-align: center;
}
A
Abdullah Almsaeed 已提交
3983

A
Abdullah Almsaeed 已提交
3984 3985 3986
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
A
Abdullah Almsaeed 已提交
3987 3988
  text-align: center;
}
A
Abdullah Almsaeed 已提交
3989

A
Abdullah Almsaeed 已提交
3990
.tab-content > .tab-pane {
A
Abdullah Almsaeed 已提交
3991 3992
  display: none;
}
A
Abdullah Almsaeed 已提交
3993

A
Abdullah Almsaeed 已提交
3994
.tab-content > .active {
A
Abdullah Almsaeed 已提交
3995 3996
  display: block;
}
A
Abdullah Almsaeed 已提交
3997

A
Abdullah Almsaeed 已提交
3998 3999 4000 4001 4002 4003
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
A
Abdullah Almsaeed 已提交
4004 4005 4006 4007 4008 4009 4010 4011 4012 4013
  padding: 0.5rem 0.5rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
A
Abdullah Almsaeed 已提交
4014

A
Abdullah Almsaeed 已提交
4015 4016 4017 4018
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
A
Abdullah Almsaeed 已提交
4019
  margin-right: 0.5rem;
A
Abdullah Almsaeed 已提交
4020 4021
  font-size: 1.25rem;
  line-height: inherit;
A
Abdullah Almsaeed 已提交
4022 4023 4024 4025 4026 4027
  white-space: nowrap;
}

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

A
Abdullah Almsaeed 已提交
4029 4030 4031 4032 4033
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045
  list-style: none;
}

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

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

A
Abdullah Almsaeed 已提交
4047 4048 4049
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
A
Abdullah Almsaeed 已提交
4050 4051
  padding-bottom: 0.5rem;
}
A
Abdullah Almsaeed 已提交
4052

A
Abdullah Almsaeed 已提交
4053 4054 4055
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
A
Abdullah Almsaeed 已提交
4056 4057
  align-items: center;
}
A
Abdullah Almsaeed 已提交
4058

A
Abdullah Almsaeed 已提交
4059
.navbar-toggler {
A
Abdullah Almsaeed 已提交
4060
  padding: 0.25rem 0.75rem;
A
Abdullah Almsaeed 已提交
4061 4062
  font-size: 1.25rem;
  line-height: 1;
A
Abdullah Almsaeed 已提交
4063
  background-color: transparent;
A
Abdullah Almsaeed 已提交
4064
  border: 1px solid transparent;
A
Abdullah Almsaeed 已提交
4065 4066 4067 4068 4069 4070 4071
  border-radius: 0.25rem;
}

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

A
Abdullah Almsaeed 已提交
4072 4073 4074 4075 4076
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
A
Abdullah Almsaeed 已提交
4077
  content: "";
A
Abdullah Almsaeed 已提交
4078
  background: no-repeat center center;
A
Abdullah Almsaeed 已提交
4079 4080
  background-size: 100% 100%;
}
A
Abdullah Almsaeed 已提交
4081

A
Abdullah Almsaeed 已提交
4082
@media (max-width: 575.98px) {
A
Abdullah Almsaeed 已提交
4083 4084 4085
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
A
Abdullah Almsaeed 已提交
4086 4087 4088
    padding-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
4089 4090

@media (min-width: 576px) {
A
Abdullah Almsaeed 已提交
4091 4092
  .navbar-expand-sm {
    flex-flow: row nowrap;
A
Abdullah Almsaeed 已提交
4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    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 {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
4119 4120 4121
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
A
Abdullah Almsaeed 已提交
4122 4123 4124
    padding-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
4125 4126

@media (min-width: 768px) {
A
Abdullah Almsaeed 已提交
4127 4128
  .navbar-expand-md {
    flex-flow: row nowrap;
A
Abdullah Almsaeed 已提交
4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    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 {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
A
Abdullah Almsaeed 已提交
4155 4156 4157
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
A
Abdullah Almsaeed 已提交
4158 4159 4160
    padding-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
4161 4162

@media (min-width: 992px) {
A
Abdullah Almsaeed 已提交
4163 4164
  .navbar-expand-lg {
    flex-flow: row nowrap;
A
Abdullah Almsaeed 已提交
4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    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 {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
A
Abdullah Almsaeed 已提交
4191 4192 4193
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
A
Abdullah Almsaeed 已提交
4194 4195 4196
    padding-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
4197 4198

@media (min-width: 1200px) {
A
Abdullah Almsaeed 已提交
4199 4200
  .navbar-expand-xl {
    flex-flow: row nowrap;
A
Abdullah Almsaeed 已提交
4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    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 {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
A
Abdullah Almsaeed 已提交
4218
    display: flex !important;
A
Abdullah Almsaeed 已提交
4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

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

.navbar-expand .navbar-nav {
  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 {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

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

A
Abdullah Almsaeed 已提交
4264
.navbar-light .navbar-brand {
A
Abdullah Almsaeed 已提交
4265 4266 4267 4268 4269 4270
  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 已提交
4271 4272

.navbar-light .navbar-nav .nav-link {
A
Abdullah Almsaeed 已提交
4273 4274 4275 4276 4277 4278 4279 4280 4281 4282
  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 已提交
4283

A
Abdullah Almsaeed 已提交
4284
.navbar-light .navbar-nav .show > .nav-link,
A
Abdullah Almsaeed 已提交
4285
.navbar-light .navbar-nav .active > .nav-link,
A
Abdullah Almsaeed 已提交
4286 4287
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
A
Abdullah Almsaeed 已提交
4288 4289
  color: rgba(0, 0, 0, 0.9);
}
A
Abdullah Almsaeed 已提交
4290 4291

.navbar-light .navbar-toggler {
A
Abdullah Almsaeed 已提交
4292
  color: rgba(0, 0, 0, 0.5);
A
Abdullah Almsaeed 已提交
4293 4294
  border-color: rgba(0, 0, 0, 0.1);
}
A
Abdullah Almsaeed 已提交
4295

A
Abdullah Almsaeed 已提交
4296
.navbar-light .navbar-toggler-icon {
A
Abdullah Almsaeed 已提交
4297 4298
  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 已提交
4299

A
Abdullah Almsaeed 已提交
4300
.navbar-light .navbar-text {
A
Abdullah Almsaeed 已提交
4301 4302 4303 4304 4305 4306 4307 4308 4309 4310
  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 已提交
4311

A
Abdullah Almsaeed 已提交
4312
.navbar-dark .navbar-brand {
A
Abdullah Almsaeed 已提交
4313 4314 4315 4316 4317 4318
  color: #ffffff;
}

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

.navbar-dark .navbar-nav .nav-link {
A
Abdullah Almsaeed 已提交
4321 4322 4323 4324 4325 4326 4327 4328 4329 4330
  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 已提交
4331

A
Abdullah Almsaeed 已提交
4332
.navbar-dark .navbar-nav .show > .nav-link,
A
Abdullah Almsaeed 已提交
4333
.navbar-dark .navbar-nav .active > .nav-link,
A
Abdullah Almsaeed 已提交
4334 4335
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
A
Abdullah Almsaeed 已提交
4336 4337
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
4338 4339

.navbar-dark .navbar-toggler {
A
Abdullah Almsaeed 已提交
4340 4341 4342
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
}
A
Abdullah Almsaeed 已提交
4343

A
Abdullah Almsaeed 已提交
4344
.navbar-dark .navbar-toggler-icon {
A
Abdullah Almsaeed 已提交
4345 4346
  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 已提交
4347

A
Abdullah Almsaeed 已提交
4348
.navbar-dark .navbar-text {
A
Abdullah Almsaeed 已提交
4349 4350 4351 4352 4353 4354 4355 4356 4357 4358
  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 已提交
4359 4360 4361

.card {
  position: relative;
A
Abdullah Almsaeed 已提交
4362 4363 4364 4365
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
A
Abdullah Almsaeed 已提交
4366
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
4367
  background-clip: border-box;
A
Abdullah Almsaeed 已提交
4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385
  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 已提交
4386

A
Abdullah Almsaeed 已提交
4387 4388
.card-body {
  flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
4389 4390
  padding: 1.25rem;
}
A
Abdullah Almsaeed 已提交
4391 4392

.card-title {
A
Abdullah Almsaeed 已提交
4393 4394
  margin-bottom: 0.75rem;
}
A
Abdullah Almsaeed 已提交
4395 4396 4397

.card-subtitle {
  margin-top: -0.375rem;
A
Abdullah Almsaeed 已提交
4398 4399
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
4400 4401

.card-text:last-child {
A
Abdullah Almsaeed 已提交
4402 4403
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
4404 4405

.card-link:hover {
A
Abdullah Almsaeed 已提交
4406 4407
  text-decoration: none;
}
A
Abdullah Almsaeed 已提交
4408 4409

.card-link + .card-link {
A
Abdullah Almsaeed 已提交
4410 4411
  margin-left: 1.25rem;
}
A
Abdullah Almsaeed 已提交
4412 4413 4414 4415

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
4416
  background-color: rgba(0, 0, 0, 0.03);
A
Abdullah Almsaeed 已提交
4417 4418 4419 4420 4421 4422 4423 4424 4425 4426
  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 已提交
4427 4428 4429

.card-footer {
  padding: 0.75rem 1.25rem;
A
Abdullah Almsaeed 已提交
4430
  background-color: rgba(0, 0, 0, 0.03);
A
Abdullah Almsaeed 已提交
4431 4432 4433 4434 4435 4436
  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 已提交
4437 4438 4439 4440 4441

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
A
Abdullah Almsaeed 已提交
4442 4443
  border-bottom: 0;
}
A
Abdullah Almsaeed 已提交
4444 4445 4446

.card-header-pills {
  margin-right: -0.625rem;
A
Abdullah Almsaeed 已提交
4447 4448
  margin-left: -0.625rem;
}
A
Abdullah Almsaeed 已提交
4449 4450 4451 4452 4453 4454 4455

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
A
Abdullah Almsaeed 已提交
4456 4457
  padding: 1.25rem;
}
A
Abdullah Almsaeed 已提交
4458 4459 4460

.card-img {
  width: 100%;
A
Abdullah Almsaeed 已提交
4461 4462
  border-radius: calc(0.25rem - 0);
}
A
Abdullah Almsaeed 已提交
4463 4464

.card-img-top {
A
Abdullah Almsaeed 已提交
4465
  width: 100%;
A
Abdullah Almsaeed 已提交
4466 4467 4468
  border-top-left-radius: calc(0.25rem - 0);
  border-top-right-radius: calc(0.25rem - 0);
}
A
Abdullah Almsaeed 已提交
4469 4470

.card-img-bottom {
A
Abdullah Almsaeed 已提交
4471
  width: 100%;
A
Abdullah Almsaeed 已提交
4472 4473 4474
  border-bottom-right-radius: calc(0.25rem - 0);
  border-bottom-left-radius: calc(0.25rem - 0);
}
A
Abdullah Almsaeed 已提交
4475

A
Abdullah Almsaeed 已提交
4476 4477
.card-deck {
  display: flex;
A
Abdullah Almsaeed 已提交
4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490
  flex-direction: column;
}

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

@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
  }
A
Abdullah Almsaeed 已提交
4491
  .card-deck .card {
A
Abdullah Almsaeed 已提交
4492 4493 4494 4495 4496 4497 4498 4499
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 7.5px;
    margin-bottom: 0;
    margin-left: 7.5px;
  }
}
A
Abdullah Almsaeed 已提交
4500 4501 4502

.card-group {
  display: flex;
A
Abdullah Almsaeed 已提交
4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521
  flex-direction: column;
}

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

@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
4522
  .card-group > .card:not(:last-child) {
A
Abdullah Almsaeed 已提交
4523 4524 4525
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
4526 4527
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
A
Abdullah Almsaeed 已提交
4528 4529
    border-top-right-radius: 0;
  }
4530 4531
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
A
Abdullah Almsaeed 已提交
4532 4533
    border-bottom-right-radius: 0;
  }
4534
  .card-group > .card:not(:first-child) {
A
Abdullah Almsaeed 已提交
4535 4536 4537
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
4538 4539
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
A
Abdullah Almsaeed 已提交
4540 4541
    border-top-left-radius: 0;
  }
4542 4543
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
A
Abdullah Almsaeed 已提交
4544 4545 4546
    border-bottom-left-radius: 0;
  }
}
A
Abdullah Almsaeed 已提交
4547 4548

.card-columns .card {
A
Abdullah Almsaeed 已提交
4549 4550
  margin-bottom: 0.75rem;
}
A
Abdullah Almsaeed 已提交
4551 4552 4553

@media (min-width: 576px) {
  .card-columns {
R
REJack 已提交
4554
    -webkit-column-count: 3;
A
Abdullah Almsaeed 已提交
4555
    column-count: 3;
R
REJack 已提交
4556
    -webkit-column-gap: 1.25rem;
A
Abdullah Almsaeed 已提交
4557
    column-gap: 1.25rem;
A
Abdullah Almsaeed 已提交
4558 4559
    orphans: 1;
    widows: 1;
A
Abdullah Almsaeed 已提交
4560 4561 4562 4563 4564 4565
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
A
Abdullah Almsaeed 已提交
4566

4567 4568 4569 4570 4571
.accordion > .card {
  overflow: hidden;
}

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

4575 4576
.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
4577 4578 4579
  border-radius: 0;
}

4580
.accordion > .card:first-of-type {
A
Abdullah Almsaeed 已提交
4581 4582 4583 4584 4585
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

4586
.accordion > .card:last-of-type {
A
Abdullah Almsaeed 已提交
4587 4588 4589 4590
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

4591 4592 4593 4594
.accordion > .card .card-header {
  margin-bottom: 0;
}

A
Abdullah Almsaeed 已提交
4595
.breadcrumb {
A
Abdullah Almsaeed 已提交
4596 4597
  display: flex;
  flex-wrap: wrap;
A
Abdullah Almsaeed 已提交
4598 4599 4600
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
A
Abdullah Almsaeed 已提交
4601
  background-color: #e9ecef;
A
Abdullah Almsaeed 已提交
4602 4603
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
4604

A
Abdullah Almsaeed 已提交
4605 4606 4607 4608
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

A
Abdullah Almsaeed 已提交
4609 4610 4611
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
A
Abdullah Almsaeed 已提交
4612 4613 4614
  color: #6c757d;
  content: "/";
}
A
Abdullah Almsaeed 已提交
4615 4616

.breadcrumb-item + .breadcrumb-item:hover::before {
A
Abdullah Almsaeed 已提交
4617 4618
  text-decoration: underline;
}
A
Abdullah Almsaeed 已提交
4619 4620

.breadcrumb-item + .breadcrumb-item:hover::before {
A
Abdullah Almsaeed 已提交
4621 4622
  text-decoration: none;
}
A
Abdullah Almsaeed 已提交
4623 4624

.breadcrumb-item.active {
A
Abdullah Almsaeed 已提交
4625 4626
  color: #6c757d;
}
A
Abdullah Almsaeed 已提交
4627 4628

.pagination {
A
Abdullah Almsaeed 已提交
4629
  display: flex;
A
Abdullah Almsaeed 已提交
4630
  padding-left: 0;
A
Abdullah Almsaeed 已提交
4631
  list-style: none;
A
Abdullah Almsaeed 已提交
4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646
  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 已提交
4647
  z-index: 2;
A
Abdullah Almsaeed 已提交
4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659
  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 已提交
4660 4661 4662
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
4663 4664
  border-bottom-left-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
4665 4666 4667

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

A
Abdullah Almsaeed 已提交
4671
.page-item.active .page-link {
A
Abdullah Almsaeed 已提交
4672 4673
  z-index: 1;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
4674
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
4675 4676
  border-color: #007bff;
}
A
Abdullah Almsaeed 已提交
4677

A
Abdullah Almsaeed 已提交
4678
.page-item.disabled .page-link {
A
Abdullah Almsaeed 已提交
4679
  color: #6c757d;
A
Abdullah Almsaeed 已提交
4680
  pointer-events: none;
A
Abdullah Almsaeed 已提交
4681 4682 4683 4684
  cursor: auto;
  background-color: #ffffff;
  border-color: #dee2e6;
}
A
Abdullah Almsaeed 已提交
4685 4686 4687 4688

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
A
Abdullah Almsaeed 已提交
4689 4690
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
4691 4692 4693

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
4694 4695
  border-bottom-left-radius: 0.3rem;
}
A
Abdullah Almsaeed 已提交
4696 4697 4698

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
4699 4700
  border-bottom-right-radius: 0.3rem;
}
A
Abdullah Almsaeed 已提交
4701 4702

.pagination-sm .page-link {
A
Abdullah Almsaeed 已提交
4703
  padding: 0.25rem 0.5rem;
A
Abdullah Almsaeed 已提交
4704
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
4705 4706
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
4707 4708 4709

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
A
Abdullah Almsaeed 已提交
4710 4711
  border-bottom-left-radius: 0.2rem;
}
A
Abdullah Almsaeed 已提交
4712 4713 4714

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

A
Abdullah Almsaeed 已提交
4718
.badge {
A
Abdullah Almsaeed 已提交
4719 4720 4721
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
A
Abdullah Almsaeed 已提交
4722
  font-weight: 700;
A
Abdullah Almsaeed 已提交
4723 4724 4725 4726
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
A
Abdullah Almsaeed 已提交
4727
  border-radius: 0.25rem;
4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738
  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 已提交
4739 4740 4741 4742 4743
}

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

A
Abdullah Almsaeed 已提交
4745
.btn .badge {
A
Abdullah Almsaeed 已提交
4746
  position: relative;
A
Abdullah Almsaeed 已提交
4747 4748
  top: -1px;
}
A
Abdullah Almsaeed 已提交
4749

A
Abdullah Almsaeed 已提交
4750
.badge-pill {
A
Abdullah Almsaeed 已提交
4751 4752
  padding-right: 0.6em;
  padding-left: 0.6em;
A
Abdullah Almsaeed 已提交
4753 4754
  border-radius: 10rem;
}
A
Abdullah Almsaeed 已提交
4755

A
Abdullah Almsaeed 已提交
4756
.badge-primary {
A
Abdullah Almsaeed 已提交
4757 4758 4759 4760
  color: #ffffff;
  background-color: #007bff;
}

4761
a.badge-primary:hover, a.badge-primary:focus {
A
Abdullah Almsaeed 已提交
4762 4763 4764
  color: #ffffff;
  background-color: #0062cc;
}
A
Abdullah Almsaeed 已提交
4765

4766 4767 4768 4769 4770
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 已提交
4771
.badge-secondary {
A
Abdullah Almsaeed 已提交
4772 4773 4774 4775
  color: #ffffff;
  background-color: #6c757d;
}

4776
a.badge-secondary:hover, a.badge-secondary:focus {
A
Abdullah Almsaeed 已提交
4777 4778 4779
  color: #ffffff;
  background-color: #545b62;
}
A
Abdullah Almsaeed 已提交
4780

4781 4782 4783 4784 4785
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 已提交
4786
.badge-success {
A
Abdullah Almsaeed 已提交
4787 4788 4789 4790
  color: #ffffff;
  background-color: #28a745;
}

4791
a.badge-success:hover, a.badge-success:focus {
A
Abdullah Almsaeed 已提交
4792 4793 4794
  color: #ffffff;
  background-color: #1e7e34;
}
A
Abdullah Almsaeed 已提交
4795

4796 4797 4798 4799 4800
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 已提交
4801
.badge-info {
A
Abdullah Almsaeed 已提交
4802 4803 4804 4805
  color: #ffffff;
  background-color: #17a2b8;
}

4806
a.badge-info:hover, a.badge-info:focus {
A
Abdullah Almsaeed 已提交
4807 4808 4809
  color: #ffffff;
  background-color: #117a8b;
}
A
Abdullah Almsaeed 已提交
4810

4811 4812 4813 4814 4815
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 已提交
4816
.badge-warning {
A
Abdullah Almsaeed 已提交
4817 4818 4819 4820
  color: #1F2D3D;
  background-color: #ffc107;
}

4821
a.badge-warning:hover, a.badge-warning:focus {
A
Abdullah Almsaeed 已提交
4822 4823 4824
  color: #1F2D3D;
  background-color: #d39e00;
}
A
Abdullah Almsaeed 已提交
4825

4826 4827 4828 4829 4830
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 已提交
4831
.badge-danger {
A
Abdullah Almsaeed 已提交
4832 4833 4834 4835
  color: #ffffff;
  background-color: #dc3545;
}

4836
a.badge-danger:hover, a.badge-danger:focus {
A
Abdullah Almsaeed 已提交
4837 4838 4839
  color: #ffffff;
  background-color: #bd2130;
}
A
Abdullah Almsaeed 已提交
4840

4841 4842 4843 4844 4845
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 已提交
4846
.badge-light {
A
Abdullah Almsaeed 已提交
4847 4848 4849 4850
  color: #1F2D3D;
  background-color: #f8f9fa;
}

4851
a.badge-light:hover, a.badge-light:focus {
A
Abdullah Almsaeed 已提交
4852 4853 4854
  color: #1F2D3D;
  background-color: #dae0e5;
}
A
Abdullah Almsaeed 已提交
4855

4856 4857 4858 4859 4860
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 已提交
4861
.badge-dark {
A
Abdullah Almsaeed 已提交
4862 4863 4864 4865
  color: #ffffff;
  background-color: #343a40;
}

4866
a.badge-dark:hover, a.badge-dark:focus {
A
Abdullah Almsaeed 已提交
4867 4868 4869
  color: #ffffff;
  background-color: #1d2124;
}
A
Abdullah Almsaeed 已提交
4870

4871 4872 4873 4874 4875
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 已提交
4876 4877 4878
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
A
Abdullah Almsaeed 已提交
4879
  background-color: #e9ecef;
A
Abdullah Almsaeed 已提交
4880 4881 4882 4883 4884 4885 4886 4887
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
A
Abdullah Almsaeed 已提交
4888 4889 4890 4891

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
A
Abdullah Almsaeed 已提交
4892 4893
  border-radius: 0;
}
A
Abdullah Almsaeed 已提交
4894 4895

.alert {
A
Abdullah Almsaeed 已提交
4896
  position: relative;
A
Abdullah Almsaeed 已提交
4897
  padding: 0.75rem 1.25rem;
A
Abdullah Almsaeed 已提交
4898 4899
  margin-bottom: 1rem;
  border: 1px solid transparent;
A
Abdullah Almsaeed 已提交
4900 4901
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
4902 4903

.alert-heading {
A
Abdullah Almsaeed 已提交
4904 4905
  color: inherit;
}
A
Abdullah Almsaeed 已提交
4906 4907

.alert-link {
A
Abdullah Almsaeed 已提交
4908 4909 4910 4911 4912 4913
  font-weight: 700;
}

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

.alert-dismissible .close, .alert-dismissible .mailbox-attachment-close {
A
Abdullah Almsaeed 已提交
4916 4917 4918 4919
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
A
Abdullah Almsaeed 已提交
4920 4921
  color: inherit;
}
A
Abdullah Almsaeed 已提交
4922 4923 4924

.alert-primary {
  color: #004085;
R
REJack 已提交
4925
  background-color: #cce5ff;
A
Abdullah Almsaeed 已提交
4926 4927 4928 4929 4930 4931 4932 4933 4934 4935
  border-color: #b8daff;
}

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

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

.alert-secondary {
A
Abdullah Almsaeed 已提交
4938
  color: #383d41;
R
REJack 已提交
4939
  background-color: #e2e3e5;
A
Abdullah Almsaeed 已提交
4940 4941 4942 4943 4944 4945 4946 4947 4948 4949
  border-color: #d6d8db;
}

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

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

.alert-success {
A
Abdullah Almsaeed 已提交
4952
  color: #155724;
R
REJack 已提交
4953
  background-color: #d4edda;
A
Abdullah Almsaeed 已提交
4954 4955 4956 4957 4958 4959 4960 4961 4962 4963
  border-color: #c3e6cb;
}

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

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

.alert-info {
A
Abdullah Almsaeed 已提交
4966
  color: #0c5460;
R
REJack 已提交
4967
  background-color: #d1ecf1;
A
Abdullah Almsaeed 已提交
4968 4969 4970 4971 4972 4973 4974 4975 4976 4977
  border-color: #bee5eb;
}

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

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

.alert-warning {
A
Abdullah Almsaeed 已提交
4980
  color: #856404;
R
REJack 已提交
4981
  background-color: #fff3cd;
A
Abdullah Almsaeed 已提交
4982 4983 4984 4985 4986 4987 4988 4989 4990 4991
  border-color: #ffeeba;
}

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

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

.alert-danger {
A
Abdullah Almsaeed 已提交
4994
  color: #721c24;
R
REJack 已提交
4995
  background-color: #f8d7da;
A
Abdullah Almsaeed 已提交
4996 4997 4998 4999 5000 5001 5002 5003 5004 5005
  border-color: #f5c6cb;
}

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

.alert-danger .alert-link {
  color: #491217;
}
A
Abdullah Almsaeed 已提交
5006 5007 5008

.alert-light {
  color: #818182;
R
REJack 已提交
5009
  background-color: #fefefe;
A
Abdullah Almsaeed 已提交
5010 5011 5012 5013 5014 5015 5016 5017 5018 5019
  border-color: #fdfdfe;
}

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

.alert-light .alert-link {
  color: #686868;
}
A
Abdullah Almsaeed 已提交
5020 5021 5022

.alert-dark {
  color: #1b1e21;
R
REJack 已提交
5023
  background-color: #d6d8d9;
A
Abdullah Almsaeed 已提交
5024 5025 5026 5027 5028 5029 5030 5031 5032 5033
  border-color: #c6c8ca;
}

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

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

R
REJack 已提交
5035 5036 5037 5038 5039 5040 5041 5042 5043
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

A
Abdullah Almsaeed 已提交
5044 5045
@keyframes progress-bar-stripes {
  from {
A
Abdullah Almsaeed 已提交
5046 5047
    background-position: 1rem 0;
  }
A
Abdullah Almsaeed 已提交
5048
  to {
A
Abdullah Almsaeed 已提交
5049 5050 5051
    background-position: 0 0;
  }
}
A
Abdullah Almsaeed 已提交
5052 5053

.progress {
A
Abdullah Almsaeed 已提交
5054
  display: flex;
A
Abdullah Almsaeed 已提交
5055
  height: 1rem;
A
Abdullah Almsaeed 已提交
5056 5057 5058
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
A
Abdullah Almsaeed 已提交
5059 5060 5061
  border-radius: 0.25rem;
  box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
A
Abdullah Almsaeed 已提交
5062

A
Abdullah Almsaeed 已提交
5063 5064
.progress-bar {
  display: flex;
A
Abdullah Almsaeed 已提交
5065
  flex-direction: column;
A
Abdullah Almsaeed 已提交
5066
  justify-content: center;
A
Abdullah Almsaeed 已提交
5067 5068
  color: #ffffff;
  text-align: center;
A
Abdullah Almsaeed 已提交
5069
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
5070 5071 5072
  background-color: #007bff;
  transition: width 0.6s ease;
}
A
Abdullah Almsaeed 已提交
5073

5074
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
5075 5076 5077 5078 5079
  .progress-bar {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
5080
.progress-bar-striped {
A
Abdullah Almsaeed 已提交
5081
  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 已提交
5082 5083
  background-size: 1rem 1rem;
}
A
Abdullah Almsaeed 已提交
5084

A
Abdullah Almsaeed 已提交
5085
.progress-bar-animated {
R
REJack 已提交
5086
  -webkit-animation: progress-bar-stripes 1s linear infinite;
A
Abdullah Almsaeed 已提交
5087 5088
  animation: progress-bar-stripes 1s linear infinite;
}
A
Abdullah Almsaeed 已提交
5089

5090 5091
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
R
REJack 已提交
5092
    -webkit-animation: none;
5093 5094 5095 5096
    animation: none;
  }
}

A
Abdullah Almsaeed 已提交
5097 5098
.media {
  display: flex;
A
Abdullah Almsaeed 已提交
5099 5100
  align-items: flex-start;
}
A
Abdullah Almsaeed 已提交
5101 5102

.media-body {
A
Abdullah Almsaeed 已提交
5103 5104
  flex: 1;
}
A
Abdullah Almsaeed 已提交
5105 5106

.list-group {
A
Abdullah Almsaeed 已提交
5107 5108
  display: flex;
  flex-direction: column;
A
Abdullah Almsaeed 已提交
5109
  padding-left: 0;
A
Abdullah Almsaeed 已提交
5110 5111
  margin-bottom: 0;
}
A
Abdullah Almsaeed 已提交
5112 5113 5114 5115

.list-group-item-action {
  width: 100%;
  color: #495057;
A
Abdullah Almsaeed 已提交
5116 5117 5118 5119
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
5120
  z-index: 1;
A
Abdullah Almsaeed 已提交
5121 5122 5123 5124 5125 5126 5127 5128 5129
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
A
Abdullah Almsaeed 已提交
5130 5131 5132 5133 5134 5135

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
A
Abdullah Almsaeed 已提交
5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152
  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;
5153
  pointer-events: none;
A
Abdullah Almsaeed 已提交
5154 5155 5156 5157 5158 5159 5160 5161 5162
  background-color: #ffffff;
}

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

5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269
.list-group-horizontal {
  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 {
    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 {
    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 {
    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 {
    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 已提交
5270 5271 5272
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
A
Abdullah Almsaeed 已提交
5273 5274
  border-radius: 0;
}
A
Abdullah Almsaeed 已提交
5275

5276 5277 5278 5279
.list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}

A
Abdullah Almsaeed 已提交
5280
.list-group-flush:first-child .list-group-item:first-child {
A
Abdullah Almsaeed 已提交
5281 5282
  border-top: 0;
}
A
Abdullah Almsaeed 已提交
5283 5284

.list-group-flush:last-child .list-group-item:last-child {
5285
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
5286 5287
  border-bottom: 0;
}
A
Abdullah Almsaeed 已提交
5288 5289 5290

.list-group-item-primary {
  color: #004085;
A
Abdullah Almsaeed 已提交
5291 5292 5293 5294 5295 5296 5297 5298 5299
  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 已提交
5300
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5301 5302 5303
  background-color: #004085;
  border-color: #004085;
}
A
Abdullah Almsaeed 已提交
5304 5305

.list-group-item-secondary {
A
Abdullah Almsaeed 已提交
5306 5307 5308 5309 5310 5311 5312 5313 5314 5315
  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 已提交
5316
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5317 5318 5319
  background-color: #383d41;
  border-color: #383d41;
}
A
Abdullah Almsaeed 已提交
5320 5321

.list-group-item-success {
A
Abdullah Almsaeed 已提交
5322
  color: #155724;
A
Abdullah Almsaeed 已提交
5323 5324 5325 5326 5327 5328 5329 5330 5331
  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 已提交
5332
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5333 5334 5335
  background-color: #155724;
  border-color: #155724;
}
A
Abdullah Almsaeed 已提交
5336 5337

.list-group-item-info {
A
Abdullah Almsaeed 已提交
5338
  color: #0c5460;
A
Abdullah Almsaeed 已提交
5339 5340 5341 5342 5343 5344 5345 5346 5347
  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 已提交
5348
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5349 5350 5351
  background-color: #0c5460;
  border-color: #0c5460;
}
A
Abdullah Almsaeed 已提交
5352 5353

.list-group-item-warning {
A
Abdullah Almsaeed 已提交
5354
  color: #856404;
A
Abdullah Almsaeed 已提交
5355 5356 5357 5358 5359 5360 5361 5362 5363
  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 已提交
5364
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5365 5366 5367
  background-color: #856404;
  border-color: #856404;
}
A
Abdullah Almsaeed 已提交
5368 5369

.list-group-item-danger {
A
Abdullah Almsaeed 已提交
5370
  color: #721c24;
A
Abdullah Almsaeed 已提交
5371 5372 5373 5374 5375 5376 5377 5378 5379
  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 已提交
5380
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5381 5382 5383
  background-color: #721c24;
  border-color: #721c24;
}
A
Abdullah Almsaeed 已提交
5384 5385 5386

.list-group-item-light {
  color: #818182;
A
Abdullah Almsaeed 已提交
5387 5388 5389 5390 5391 5392 5393 5394 5395
  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 已提交
5396
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5397 5398 5399
  background-color: #818182;
  border-color: #818182;
}
A
Abdullah Almsaeed 已提交
5400 5401 5402

.list-group-item-dark {
  color: #1b1e21;
A
Abdullah Almsaeed 已提交
5403 5404 5405 5406 5407 5408 5409 5410 5411
  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 已提交
5412
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5413 5414 5415
  background-color: #1b1e21;
  border-color: #1b1e21;
}
A
Abdullah Almsaeed 已提交
5416 5417 5418 5419

.close, .mailbox-attachment-close {
  float: right;
  font-size: 1.5rem;
A
Abdullah Almsaeed 已提交
5420
  font-weight: 700;
A
Abdullah Almsaeed 已提交
5421 5422
  line-height: 1;
  color: #000;
A
Abdullah Almsaeed 已提交
5423 5424 5425 5426
  text-shadow: 0 1px 0 #ffffff;
  opacity: .5;
}

5427 5428 5429
.close:hover, .mailbox-attachment-close:hover {
  color: #000;
  text-decoration: none;
5430 5431 5432
}

.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 已提交
5433 5434 5435
  opacity: .75;
}

A
Abdullah Almsaeed 已提交
5436 5437
button.close, button.mailbox-attachment-close {
  padding: 0;
A
Abdullah Almsaeed 已提交
5438
  background-color: transparent;
A
Abdullah Almsaeed 已提交
5439
  border: 0;
R
REJack 已提交
5440 5441
  -webkit-appearance: none;
  -moz-appearance: none;
5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456
  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 已提交
5457
  -webkit-backdrop-filter: blur(10px);
5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491
  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 {
  display: flex;
  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 已提交
5492
}
A
Abdullah Almsaeed 已提交
5493 5494

.modal-open {
A
Abdullah Almsaeed 已提交
5495 5496
  overflow: hidden;
}
A
Abdullah Almsaeed 已提交
5497

5498 5499 5500 5501 5502
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

A
Abdullah Almsaeed 已提交
5503 5504 5505 5506 5507 5508
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
5509 5510
  width: 100%;
  height: 100%;
A
Abdullah Almsaeed 已提交
5511
  overflow: hidden;
A
Abdullah Almsaeed 已提交
5512 5513
  outline: 0;
}
A
Abdullah Almsaeed 已提交
5514 5515 5516 5517

.modal-dialog {
  position: relative;
  width: auto;
A
Abdullah Almsaeed 已提交
5518 5519 5520 5521 5522
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
R
REJack 已提交
5523
  transition: -webkit-transform 0.3s ease-out;
A
Abdullah Almsaeed 已提交
5524
  transition: transform 0.3s ease-out;
R
REJack 已提交
5525 5526
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
5527
  transform: translate(0, -50px);
A
Abdullah Almsaeed 已提交
5528 5529
}

5530
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
5531 5532 5533 5534 5535
  .modal.fade .modal-dialog {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
5536
.modal.show .modal-dialog {
R
REJack 已提交
5537
  -webkit-transform: none;
5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557
  transform: none;
}

.modal-dialog-scrollable {
  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 {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
A
Abdullah Almsaeed 已提交
5558 5559 5560 5561 5562
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  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 已提交
5584
}
A
Abdullah Almsaeed 已提交
5585 5586 5587

.modal-content {
  position: relative;
A
Abdullah Almsaeed 已提交
5588 5589
  display: flex;
  flex-direction: column;
A
Abdullah Almsaeed 已提交
5590
  width: 100%;
A
Abdullah Almsaeed 已提交
5591
  pointer-events: auto;
A
Abdullah Almsaeed 已提交
5592
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
5593 5594 5595
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
5596 5597 5598
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  outline: 0;
}
A
Abdullah Almsaeed 已提交
5599 5600 5601 5602 5603 5604

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
5605 5606
  width: 100vw;
  height: 100vh;
A
Abdullah Almsaeed 已提交
5607 5608
  background-color: #000;
}
A
Abdullah Almsaeed 已提交
5609

A
Abdullah Almsaeed 已提交
5610 5611 5612 5613 5614 5615 5616 5617 5618 5619
.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
A
Abdullah Almsaeed 已提交
5620 5621
  align-items: flex-start;
  justify-content: space-between;
A
Abdullah Almsaeed 已提交
5622
  padding: 1rem;
A
Abdullah Almsaeed 已提交
5623 5624
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
5625 5626 5627 5628 5629 5630 5631
  border-top-right-radius: 0.3rem;
}

.modal-header .close, .modal-header .mailbox-attachment-close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}
A
Abdullah Almsaeed 已提交
5632 5633

.modal-title {
A
Abdullah Almsaeed 已提交
5634
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
5635 5636
  line-height: 1.5;
}
A
Abdullah Almsaeed 已提交
5637 5638 5639

.modal-body {
  position: relative;
A
Abdullah Almsaeed 已提交
5640
  flex: 1 1 auto;
A
Abdullah Almsaeed 已提交
5641 5642
  padding: 1rem;
}
A
Abdullah Almsaeed 已提交
5643 5644

.modal-footer {
A
Abdullah Almsaeed 已提交
5645 5646 5647
  display: flex;
  align-items: center;
  justify-content: flex-end;
A
Abdullah Almsaeed 已提交
5648 5649
  padding: 1rem;
  border-top: 1px solid #e9ecef;
5650 5651
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
5652 5653 5654 5655 5656 5657 5658 5659 5660
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}
A
Abdullah Almsaeed 已提交
5661 5662 5663 5664 5665 5666

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
A
Abdullah Almsaeed 已提交
5667 5668
  overflow: scroll;
}
A
Abdullah Almsaeed 已提交
5669 5670 5671

@media (min-width: 576px) {
  .modal-dialog {
A
Abdullah Almsaeed 已提交
5672
    max-width: 500px;
A
Abdullah Almsaeed 已提交
5673 5674
    margin: 1.75rem auto;
  }
5675 5676 5677 5678 5679 5680
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
A
Abdullah Almsaeed 已提交
5681
  .modal-dialog-centered {
5682 5683 5684 5685
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
A
Abdullah Almsaeed 已提交
5686 5687 5688 5689
  }
  .modal-content {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  }
A
Abdullah Almsaeed 已提交
5690
  .modal-sm {
A
Abdullah Almsaeed 已提交
5691 5692 5693
    max-width: 300px;
  }
}
A
Abdullah Almsaeed 已提交
5694 5695

@media (min-width: 992px) {
5696 5697
  .modal-lg,
  .modal-xl {
A
Abdullah Almsaeed 已提交
5698 5699 5700
    max-width: 800px;
  }
}
A
Abdullah Almsaeed 已提交
5701

5702 5703 5704 5705 5706 5707
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

A
Abdullah Almsaeed 已提交
5708 5709 5710 5711
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
A
Abdullah Almsaeed 已提交
5712
  margin: 0;
A
Abdullah Almsaeed 已提交
5713
  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 已提交
5714
  font-style: normal;
A
Abdullah Almsaeed 已提交
5715
  font-weight: 400;
A
Abdullah Almsaeed 已提交
5716 5717 5718 5719 5720 5721
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
A
Abdullah Almsaeed 已提交
5722
  letter-spacing: normal;
A
Abdullah Almsaeed 已提交
5723 5724
  word-break: normal;
  word-spacing: normal;
A
Abdullah Almsaeed 已提交
5725 5726
  white-space: normal;
  line-break: auto;
A
Abdullah Almsaeed 已提交
5727 5728
  font-size: 0.875rem;
  word-wrap: break-word;
A
Abdullah Almsaeed 已提交
5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808
  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 已提交
5809

A
Abdullah Almsaeed 已提交
5810 5811
.tooltip-inner {
  max-width: 200px;
A
Abdullah Almsaeed 已提交
5812 5813
  padding: 0.25rem 0.5rem;
  color: #ffffff;
A
Abdullah Almsaeed 已提交
5814 5815
  text-align: center;
  background-color: #000;
A
Abdullah Almsaeed 已提交
5816 5817
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
5818

A
Abdullah Almsaeed 已提交
5819 5820 5821
.popover {
  position: absolute;
  top: 0;
A
Abdullah Almsaeed 已提交
5822 5823 5824 5825
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
A
Abdullah Almsaeed 已提交
5826
  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 已提交
5827
  font-style: normal;
A
Abdullah Almsaeed 已提交
5828
  font-weight: 400;
A
Abdullah Almsaeed 已提交
5829 5830 5831 5832 5833 5834
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
A
Abdullah Almsaeed 已提交
5835
  letter-spacing: normal;
A
Abdullah Almsaeed 已提交
5836 5837
  word-break: normal;
  word-spacing: normal;
A
Abdullah Almsaeed 已提交
5838 5839
  white-space: normal;
  line-break: auto;
A
Abdullah Almsaeed 已提交
5840 5841
  font-size: 0.875rem;
  word-wrap: break-word;
A
Abdullah Almsaeed 已提交
5842
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
5843 5844
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
A
Abdullah Almsaeed 已提交
5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868
  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;
}

5869
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
A
Abdullah Almsaeed 已提交
5870 5871 5872
  bottom: calc((0.5rem + 1px) * -1);
}

5873
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
A
Abdullah Almsaeed 已提交
5874
  bottom: 0;
5875
  border-width: 0.5rem 0.5rem 0;
A
Abdullah Almsaeed 已提交
5876 5877 5878
  border-top-color: rgba(0, 0, 0, 0.25);
}

5879
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
A
Abdullah Almsaeed 已提交
5880
  bottom: 1px;
5881
  border-width: 0.5rem 0.5rem 0;
A
Abdullah Almsaeed 已提交
5882 5883 5884 5885 5886 5887 5888
  border-top-color: #ffffff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

5889
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
A
Abdullah Almsaeed 已提交
5890 5891 5892 5893 5894 5895
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

5896
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
A
Abdullah Almsaeed 已提交
5897
  left: 0;
5898
  border-width: 0.5rem 0.5rem 0.5rem 0;
A
Abdullah Almsaeed 已提交
5899 5900 5901
  border-right-color: rgba(0, 0, 0, 0.25);
}

5902
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
A
Abdullah Almsaeed 已提交
5903
  left: 1px;
5904
  border-width: 0.5rem 0.5rem 0.5rem 0;
A
Abdullah Almsaeed 已提交
5905 5906 5907 5908 5909 5910 5911
  border-right-color: #ffffff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

5912
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
A
Abdullah Almsaeed 已提交
5913 5914 5915
  top: calc((0.5rem + 1px) * -1);
}

5916
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
A
Abdullah Almsaeed 已提交
5917
  top: 0;
5918
  border-width: 0 0.5rem 0.5rem 0.5rem;
A
Abdullah Almsaeed 已提交
5919 5920 5921
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

5922
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
A
Abdullah Almsaeed 已提交
5923
  top: 1px;
5924
  border-width: 0 0.5rem 0.5rem 0.5rem;
A
Abdullah Almsaeed 已提交
5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942
  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;
}

5943
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
A
Abdullah Almsaeed 已提交
5944 5945 5946 5947 5948 5949
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

5950
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
A
Abdullah Almsaeed 已提交
5951
  right: 0;
5952
  border-width: 0.5rem 0 0.5rem 0.5rem;
A
Abdullah Almsaeed 已提交
5953 5954 5955
  border-left-color: rgba(0, 0, 0, 0.25);
}

5956
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
A
Abdullah Almsaeed 已提交
5957
  right: 1px;
5958
  border-width: 0.5rem 0 0.5rem 0.5rem;
A
Abdullah Almsaeed 已提交
5959 5960
  border-left-color: #ffffff;
}
A
Abdullah Almsaeed 已提交
5961 5962 5963 5964

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
A
Abdullah Almsaeed 已提交
5965
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
5966
  color: inherit;
A
Abdullah Almsaeed 已提交
5967 5968
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
A
Abdullah Almsaeed 已提交
5969
  border-top-left-radius: calc(0.3rem - 1px);
A
Abdullah Almsaeed 已提交
5970 5971 5972 5973 5974 5975
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}
A
Abdullah Almsaeed 已提交
5976

A
Abdullah Almsaeed 已提交
5977 5978
.popover-body {
  padding: 0.5rem 0.75rem;
A
Abdullah Almsaeed 已提交
5979 5980
  color: #212529;
}
A
Abdullah Almsaeed 已提交
5981 5982

.carousel {
A
Abdullah Almsaeed 已提交
5983 5984
  position: relative;
}
A
Abdullah Almsaeed 已提交
5985

5986 5987 5988 5989
.carousel.pointer-event {
  touch-action: pan-y;
}

A
Abdullah Almsaeed 已提交
5990 5991 5992
.carousel-inner {
  position: relative;
  width: 100%;
A
Abdullah Almsaeed 已提交
5993 5994
  overflow: hidden;
}
A
Abdullah Almsaeed 已提交
5995

5996 5997 5998 5999 6000 6001
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

A
Abdullah Almsaeed 已提交
6002
.carousel-item {
A
Abdullah Almsaeed 已提交
6003 6004
  position: relative;
  display: none;
6005
  float: left;
A
Abdullah Almsaeed 已提交
6006
  width: 100%;
6007
  margin-right: -100%;
R
REJack 已提交
6008
  -webkit-backface-visibility: hidden;
A
Abdullah Almsaeed 已提交
6009
  backface-visibility: hidden;
R
REJack 已提交
6010
  transition: -webkit-transform 0.6s ease;
6011
  transition: transform 0.6s ease;
R
REJack 已提交
6012
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
6013 6014
}

6015 6016
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
6017 6018
    transition: none;
  }
A
Abdullah Almsaeed 已提交
6019
}
A
Abdullah Almsaeed 已提交
6020

6021
.carousel-item.active,
A
Abdullah Almsaeed 已提交
6022 6023
.carousel-item-next,
.carousel-item-prev {
6024
  display: block;
A
Abdullah Almsaeed 已提交
6025
}
A
Abdullah Almsaeed 已提交
6026

6027
.carousel-item-next:not(.carousel-item-left),
A
Abdullah Almsaeed 已提交
6028
.active.carousel-item-right {
R
REJack 已提交
6029
  -webkit-transform: translateX(100%);
6030
  transform: translateX(100%);
A
Abdullah Almsaeed 已提交
6031
}
A
Abdullah Almsaeed 已提交
6032

6033
.carousel-item-prev:not(.carousel-item-right),
A
Abdullah Almsaeed 已提交
6034
.active.carousel-item-left {
R
REJack 已提交
6035
  -webkit-transform: translateX(-100%);
A
Abdullah Almsaeed 已提交
6036 6037 6038
  transform: translateX(-100%);
}

A
Abdullah Almsaeed 已提交
6039 6040 6041
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
R
REJack 已提交
6042
  -webkit-transform: none;
6043
  transform: none;
A
Abdullah Almsaeed 已提交
6044 6045 6046 6047 6048
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
6049
  z-index: 1;
A
Abdullah Almsaeed 已提交
6050 6051 6052 6053 6054
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
6055
  z-index: 0;
A
Abdullah Almsaeed 已提交
6056
  opacity: 0;
6057
  transition: 0s 0.6s opacity;
A
Abdullah Almsaeed 已提交
6058 6059
}

6060
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
6061
  .carousel-fade .active.carousel-item-left,
6062 6063
  .carousel-fade .active.carousel-item-right {
    transition: none;
A
Abdullah Almsaeed 已提交
6064 6065 6066
  }
}

A
Abdullah Almsaeed 已提交
6067 6068
.carousel-control-prev,
.carousel-control-next {
A
Abdullah Almsaeed 已提交
6069 6070 6071
  position: absolute;
  top: 0;
  bottom: 0;
6072
  z-index: 1;
A
Abdullah Almsaeed 已提交
6073 6074 6075
  display: flex;
  align-items: center;
  justify-content: center;
A
Abdullah Almsaeed 已提交
6076
  width: 15%;
A
Abdullah Almsaeed 已提交
6077
  color: #ffffff;
A
Abdullah Almsaeed 已提交
6078
  text-align: center;
A
Abdullah Almsaeed 已提交
6079
  opacity: 0.5;
6080 6081 6082 6083 6084 6085 6086 6087
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
A
Abdullah Almsaeed 已提交
6088 6089 6090 6091 6092 6093 6094 6095
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
6096
  opacity: 0.9;
A
Abdullah Almsaeed 已提交
6097
}
A
Abdullah Almsaeed 已提交
6098

A
Abdullah Almsaeed 已提交
6099
.carousel-control-prev {
A
Abdullah Almsaeed 已提交
6100 6101
  left: 0;
}
A
Abdullah Almsaeed 已提交
6102

A
Abdullah Almsaeed 已提交
6103
.carousel-control-next {
A
Abdullah Almsaeed 已提交
6104 6105
  right: 0;
}
A
Abdullah Almsaeed 已提交
6106

A
Abdullah Almsaeed 已提交
6107 6108
.carousel-control-prev-icon,
.carousel-control-next-icon {
A
Abdullah Almsaeed 已提交
6109 6110 6111
  display: inline-block;
  width: 20px;
  height: 20px;
6112
  background: no-repeat 50% / 100% 100%;
A
Abdullah Almsaeed 已提交
6113
}
A
Abdullah Almsaeed 已提交
6114

A
Abdullah Almsaeed 已提交
6115
.carousel-control-prev-icon {
A
Abdullah Almsaeed 已提交
6116 6117
  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 已提交
6118

A
Abdullah Almsaeed 已提交
6119
.carousel-control-next-icon {
A
Abdullah Almsaeed 已提交
6120 6121
  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 已提交
6122 6123 6124

.carousel-indicators {
  position: absolute;
A
Abdullah Almsaeed 已提交
6125
  right: 0;
6126
  bottom: 0;
A
Abdullah Almsaeed 已提交
6127
  left: 0;
A
Abdullah Almsaeed 已提交
6128
  z-index: 15;
A
Abdullah Almsaeed 已提交
6129 6130
  display: flex;
  justify-content: center;
A
Abdullah Almsaeed 已提交
6131
  padding-left: 0;
A
Abdullah Almsaeed 已提交
6132 6133
  margin-right: 15%;
  margin-left: 15%;
A
Abdullah Almsaeed 已提交
6134 6135 6136 6137
  list-style: none;
}

.carousel-indicators li {
6138
  box-sizing: content-box;
A
Abdullah Almsaeed 已提交
6139 6140 6141 6142 6143 6144
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
6145
  cursor: pointer;
6146 6147 6148 6149 6150 6151
  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 已提交
6152 6153
}

6154 6155 6156 6157
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
A
Abdullah Almsaeed 已提交
6158 6159 6160
}

.carousel-indicators .active {
6161
  opacity: 1;
A
Abdullah Almsaeed 已提交
6162
}
A
Abdullah Almsaeed 已提交
6163 6164 6165 6166 6167 6168 6169 6170 6171

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
A
Abdullah Almsaeed 已提交
6172 6173 6174
  color: #ffffff;
  text-align: center;
}
A
Abdullah Almsaeed 已提交
6175

R
REJack 已提交
6176 6177 6178 6179 6180 6181 6182
@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

6183 6184
@keyframes spinner-border {
  to {
R
REJack 已提交
6185
    -webkit-transform: rotate(360deg);
6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197
    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 已提交
6198
  -webkit-animation: spinner-border .75s linear infinite;
6199 6200 6201 6202 6203 6204 6205 6206 6207
  animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

R
REJack 已提交
6208 6209 6210 6211 6212 6213 6214 6215 6216 6217
@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

6218 6219
@keyframes spinner-grow {
  0% {
R
REJack 已提交
6220
    -webkit-transform: scale(0);
6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235
    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 已提交
6236
  -webkit-animation: spinner-grow .75s linear infinite;
6237 6238 6239 6240 6241 6242 6243 6244
  animation: spinner-grow .75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

A
Abdullah Almsaeed 已提交
6245
.align-baseline {
A
Abdullah Almsaeed 已提交
6246 6247
  vertical-align: baseline !important;
}
A
Abdullah Almsaeed 已提交
6248 6249

.align-top {
A
Abdullah Almsaeed 已提交
6250 6251
  vertical-align: top !important;
}
A
Abdullah Almsaeed 已提交
6252 6253

.align-middle {
A
Abdullah Almsaeed 已提交
6254 6255
  vertical-align: middle !important;
}
A
Abdullah Almsaeed 已提交
6256 6257

.align-bottom {
A
Abdullah Almsaeed 已提交
6258 6259
  vertical-align: bottom !important;
}
A
Abdullah Almsaeed 已提交
6260 6261

.align-text-bottom {
A
Abdullah Almsaeed 已提交
6262 6263
  vertical-align: text-bottom !important;
}
A
Abdullah Almsaeed 已提交
6264 6265

.align-text-top {
A
Abdullah Almsaeed 已提交
6266 6267
  vertical-align: text-top !important;
}
A
Abdullah Almsaeed 已提交
6268

A
Abdullah Almsaeed 已提交
6269
.bg-primary, .label-primary {
A
Abdullah Almsaeed 已提交
6270 6271 6272
  background-color: #007bff !important;
}

A
Abdullah Almsaeed 已提交
6273
a.bg-primary:hover, a.label-primary:hover, a.bg-primary:focus, a.label-primary:focus,
A
Abdullah Almsaeed 已提交
6274 6275 6276
button.bg-primary:hover,
button.label-primary:hover,
button.bg-primary:focus,
A
Abdullah Almsaeed 已提交
6277
button.label-primary:focus {
A
Abdullah Almsaeed 已提交
6278 6279
  background-color: #0062cc !important;
}
A
Abdullah Almsaeed 已提交
6280 6281

.bg-secondary {
A
Abdullah Almsaeed 已提交
6282 6283
  background-color: #6c757d !important;
}
A
Abdullah Almsaeed 已提交
6284

A
Abdullah Almsaeed 已提交
6285 6286 6287 6288 6289
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}
A
Abdullah Almsaeed 已提交
6290

A
Abdullah Almsaeed 已提交
6291
.bg-success, .alert-success, .label-success {
A
Abdullah Almsaeed 已提交
6292 6293 6294
  background-color: #28a745 !important;
}

A
Abdullah Almsaeed 已提交
6295
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 已提交
6296 6297 6298 6299 6300
button.bg-success:hover,
button.alert-success:hover,
button.label-success:hover,
button.bg-success:focus,
button.alert-success:focus,
A
Abdullah Almsaeed 已提交
6301
button.label-success:focus {
A
Abdullah Almsaeed 已提交
6302 6303 6304
  background-color: #1e7e34 !important;
}

A
Abdullah Almsaeed 已提交
6305
.bg-info, .alert-info, .label-info {
A
Abdullah Almsaeed 已提交
6306 6307 6308
  background-color: #17a2b8 !important;
}

A
Abdullah Almsaeed 已提交
6309
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 已提交
6310 6311 6312 6313 6314
button.bg-info:hover,
button.alert-info:hover,
button.label-info:hover,
button.bg-info:focus,
button.alert-info:focus,
A
Abdullah Almsaeed 已提交
6315
button.label-info:focus {
A
Abdullah Almsaeed 已提交
6316 6317 6318
  background-color: #117a8b !important;
}

A
Abdullah Almsaeed 已提交
6319
.bg-warning, .alert-warning, .label-warning {
A
Abdullah Almsaeed 已提交
6320 6321 6322
  background-color: #ffc107 !important;
}

A
Abdullah Almsaeed 已提交
6323
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 已提交
6324 6325 6326 6327 6328
button.bg-warning:hover,
button.alert-warning:hover,
button.label-warning:hover,
button.bg-warning:focus,
button.alert-warning:focus,
A
Abdullah Almsaeed 已提交
6329
button.label-warning:focus {
A
Abdullah Almsaeed 已提交
6330 6331 6332 6333
  background-color: #d39e00 !important;
}

.bg-danger, .alert-danger,
A
Abdullah Almsaeed 已提交
6334
.alert-error, .label-danger {
A
Abdullah Almsaeed 已提交
6335 6336 6337 6338
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.alert-danger:hover,
A
Abdullah Almsaeed 已提交
6339 6340
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 已提交
6341 6342 6343 6344 6345 6346 6347
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 已提交
6348
button.label-danger:focus {
A
Abdullah Almsaeed 已提交
6349 6350
  background-color: #bd2130 !important;
}
A
Abdullah Almsaeed 已提交
6351

A
Abdullah Almsaeed 已提交
6352
.bg-light {
A
Abdullah Almsaeed 已提交
6353 6354
  background-color: #f8f9fa !important;
}
A
Abdullah Almsaeed 已提交
6355

A
Abdullah Almsaeed 已提交
6356 6357 6358 6359 6360
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}
A
Abdullah Almsaeed 已提交
6361

A
Abdullah Almsaeed 已提交
6362
.bg-dark {
A
Abdullah Almsaeed 已提交
6363 6364
  background-color: #343a40 !important;
}
A
Abdullah Almsaeed 已提交
6365

A
Abdullah Almsaeed 已提交
6366 6367 6368 6369 6370
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}
A
Abdullah Almsaeed 已提交
6371

A
Abdullah Almsaeed 已提交
6372
.bg-white {
A
Abdullah Almsaeed 已提交
6373 6374
  background-color: #ffffff !important;
}
A
Abdullah Almsaeed 已提交
6375

A
Abdullah Almsaeed 已提交
6376
.bg-transparent {
A
Abdullah Almsaeed 已提交
6377 6378
  background-color: transparent !important;
}
A
Abdullah Almsaeed 已提交
6379

A
Abdullah Almsaeed 已提交
6380
.border {
A
Abdullah Almsaeed 已提交
6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398
  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 已提交
6399

A
Abdullah Almsaeed 已提交
6400
.border-0 {
A
Abdullah Almsaeed 已提交
6401 6402
  border: 0 !important;
}
A
Abdullah Almsaeed 已提交
6403

A
Abdullah Almsaeed 已提交
6404
.border-top-0 {
A
Abdullah Almsaeed 已提交
6405 6406
  border-top: 0 !important;
}
A
Abdullah Almsaeed 已提交
6407

A
Abdullah Almsaeed 已提交
6408
.border-right-0 {
A
Abdullah Almsaeed 已提交
6409 6410
  border-right: 0 !important;
}
A
Abdullah Almsaeed 已提交
6411

A
Abdullah Almsaeed 已提交
6412
.border-bottom-0 {
A
Abdullah Almsaeed 已提交
6413 6414
  border-bottom: 0 !important;
}
A
Abdullah Almsaeed 已提交
6415

A
Abdullah Almsaeed 已提交
6416
.border-left-0 {
A
Abdullah Almsaeed 已提交
6417 6418
  border-left: 0 !important;
}
A
Abdullah Almsaeed 已提交
6419

A
Abdullah Almsaeed 已提交
6420
.border-primary {
A
Abdullah Almsaeed 已提交
6421 6422
  border-color: #007bff !important;
}
A
Abdullah Almsaeed 已提交
6423

A
Abdullah Almsaeed 已提交
6424
.border-secondary {
A
Abdullah Almsaeed 已提交
6425 6426
  border-color: #6c757d !important;
}
A
Abdullah Almsaeed 已提交
6427

A
Abdullah Almsaeed 已提交
6428
.border-success {
A
Abdullah Almsaeed 已提交
6429 6430
  border-color: #28a745 !important;
}
A
Abdullah Almsaeed 已提交
6431

A
Abdullah Almsaeed 已提交
6432
.border-info {
A
Abdullah Almsaeed 已提交
6433 6434
  border-color: #17a2b8 !important;
}
A
Abdullah Almsaeed 已提交
6435

A
Abdullah Almsaeed 已提交
6436
.border-warning {
A
Abdullah Almsaeed 已提交
6437 6438
  border-color: #ffc107 !important;
}
A
Abdullah Almsaeed 已提交
6439

A
Abdullah Almsaeed 已提交
6440
.border-danger {
A
Abdullah Almsaeed 已提交
6441 6442
  border-color: #dc3545 !important;
}
A
Abdullah Almsaeed 已提交
6443

A
Abdullah Almsaeed 已提交
6444
.border-light {
A
Abdullah Almsaeed 已提交
6445 6446
  border-color: #f8f9fa !important;
}
A
Abdullah Almsaeed 已提交
6447

A
Abdullah Almsaeed 已提交
6448
.border-dark {
A
Abdullah Almsaeed 已提交
6449 6450
  border-color: #343a40 !important;
}
A
Abdullah Almsaeed 已提交
6451

A
Abdullah Almsaeed 已提交
6452
.border-white {
A
Abdullah Almsaeed 已提交
6453 6454
  border-color: #ffffff !important;
}
A
Abdullah Almsaeed 已提交
6455

6456 6457 6458 6459
.rounded-sm {
  border-radius: 0.2rem !important;
}

A
Abdullah Almsaeed 已提交
6460
.rounded {
A
Abdullah Almsaeed 已提交
6461 6462
  border-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6463

A
Abdullah Almsaeed 已提交
6464 6465
.rounded-top {
  border-top-left-radius: 0.25rem !important;
A
Abdullah Almsaeed 已提交
6466 6467
  border-top-right-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6468

A
Abdullah Almsaeed 已提交
6469 6470
.rounded-right {
  border-top-right-radius: 0.25rem !important;
A
Abdullah Almsaeed 已提交
6471 6472
  border-bottom-right-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6473

A
Abdullah Almsaeed 已提交
6474 6475
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
A
Abdullah Almsaeed 已提交
6476 6477
  border-bottom-left-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6478

A
Abdullah Almsaeed 已提交
6479 6480
.rounded-left {
  border-top-left-radius: 0.25rem !important;
A
Abdullah Almsaeed 已提交
6481 6482
  border-bottom-left-radius: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
6483

6484 6485 6486 6487
.rounded-lg {
  border-radius: 0.3rem !important;
}

A
Abdullah Almsaeed 已提交
6488
.rounded-circle {
A
Abdullah Almsaeed 已提交
6489 6490
  border-radius: 50% !important;
}
A
Abdullah Almsaeed 已提交
6491

6492 6493 6494 6495
.rounded-pill {
  border-radius: 50rem !important;
}

A
Abdullah Almsaeed 已提交
6496
.rounded-0 {
A
Abdullah Almsaeed 已提交
6497 6498
  border-radius: 0 !important;
}
A
Abdullah Almsaeed 已提交
6499

A
Abdullah Almsaeed 已提交
6500 6501 6502
.clearfix::after {
  display: block;
  clear: both;
A
Abdullah Almsaeed 已提交
6503 6504
  content: "";
}
A
Abdullah Almsaeed 已提交
6505

A
Abdullah Almsaeed 已提交
6506
.d-none {
A
Abdullah Almsaeed 已提交
6507 6508
  display: none !important;
}
A
Abdullah Almsaeed 已提交
6509

A
Abdullah Almsaeed 已提交
6510
.d-inline {
A
Abdullah Almsaeed 已提交
6511 6512
  display: inline !important;
}
A
Abdullah Almsaeed 已提交
6513

A
Abdullah Almsaeed 已提交
6514
.d-inline-block {
A
Abdullah Almsaeed 已提交
6515 6516
  display: inline-block !important;
}
A
Abdullah Almsaeed 已提交
6517

A
Abdullah Almsaeed 已提交
6518
.d-block {
A
Abdullah Almsaeed 已提交
6519 6520
  display: block !important;
}
A
Abdullah Almsaeed 已提交
6521

A
Abdullah Almsaeed 已提交
6522
.d-table {
A
Abdullah Almsaeed 已提交
6523 6524
  display: table !important;
}
A
Abdullah Almsaeed 已提交
6525

A
Abdullah Almsaeed 已提交
6526
.d-table-row {
A
Abdullah Almsaeed 已提交
6527 6528
  display: table-row !important;
}
A
Abdullah Almsaeed 已提交
6529

A
Abdullah Almsaeed 已提交
6530
.d-table-cell {
A
Abdullah Almsaeed 已提交
6531 6532
  display: table-cell !important;
}
A
Abdullah Almsaeed 已提交
6533

A
Abdullah Almsaeed 已提交
6534 6535 6536
.d-flex, .info-box, .info-box-icon {
  display: flex !important;
}
A
Abdullah Almsaeed 已提交
6537

A
Abdullah Almsaeed 已提交
6538
.d-inline-flex {
A
Abdullah Almsaeed 已提交
6539 6540
  display: inline-flex !important;
}
A
Abdullah Almsaeed 已提交
6541

A
Abdullah Almsaeed 已提交
6542 6543
@media (min-width: 576px) {
  .d-sm-none {
A
Abdullah Almsaeed 已提交
6544 6545
    display: none !important;
  }
A
Abdullah Almsaeed 已提交
6546
  .d-sm-inline {
A
Abdullah Almsaeed 已提交
6547 6548
    display: inline !important;
  }
A
Abdullah Almsaeed 已提交
6549
  .d-sm-inline-block {
A
Abdullah Almsaeed 已提交
6550 6551
    display: inline-block !important;
  }
A
Abdullah Almsaeed 已提交
6552
  .d-sm-block {
A
Abdullah Almsaeed 已提交
6553 6554
    display: block !important;
  }
A
Abdullah Almsaeed 已提交
6555
  .d-sm-table {
A
Abdullah Almsaeed 已提交
6556 6557
    display: table !important;
  }
A
Abdullah Almsaeed 已提交
6558
  .d-sm-table-row {
A
Abdullah Almsaeed 已提交
6559 6560
    display: table-row !important;
  }
A
Abdullah Almsaeed 已提交
6561
  .d-sm-table-cell {
A
Abdullah Almsaeed 已提交
6562 6563
    display: table-cell !important;
  }
A
Abdullah Almsaeed 已提交
6564
  .d-sm-flex {
A
Abdullah Almsaeed 已提交
6565 6566
    display: flex !important;
  }
A
Abdullah Almsaeed 已提交
6567
  .d-sm-inline-flex {
A
Abdullah Almsaeed 已提交
6568 6569 6570
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
6571

A
Abdullah Almsaeed 已提交
6572 6573
@media (min-width: 768px) {
  .d-md-none {
A
Abdullah Almsaeed 已提交
6574 6575
    display: none !important;
  }
A
Abdullah Almsaeed 已提交
6576
  .d-md-inline {
A
Abdullah Almsaeed 已提交
6577 6578
    display: inline !important;
  }
A
Abdullah Almsaeed 已提交
6579
  .d-md-inline-block {
A
Abdullah Almsaeed 已提交
6580 6581
    display: inline-block !important;
  }
A
Abdullah Almsaeed 已提交
6582
  .d-md-block {
A
Abdullah Almsaeed 已提交
6583 6584
    display: block !important;
  }
A
Abdullah Almsaeed 已提交
6585
  .d-md-table {
A
Abdullah Almsaeed 已提交
6586 6587
    display: table !important;
  }
A
Abdullah Almsaeed 已提交
6588
  .d-md-table-row {
A
Abdullah Almsaeed 已提交
6589 6590
    display: table-row !important;
  }
A
Abdullah Almsaeed 已提交
6591
  .d-md-table-cell {
A
Abdullah Almsaeed 已提交
6592 6593
    display: table-cell !important;
  }
A
Abdullah Almsaeed 已提交
6594
  .d-md-flex {
A
Abdullah Almsaeed 已提交
6595 6596
    display: flex !important;
  }
A
Abdullah Almsaeed 已提交
6597
  .d-md-inline-flex {
A
Abdullah Almsaeed 已提交
6598 6599 6600
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
6601

A
Abdullah Almsaeed 已提交
6602 6603
@media (min-width: 992px) {
  .d-lg-none {
A
Abdullah Almsaeed 已提交
6604 6605
    display: none !important;
  }
A
Abdullah Almsaeed 已提交
6606
  .d-lg-inline {
A
Abdullah Almsaeed 已提交
6607 6608
    display: inline !important;
  }
A
Abdullah Almsaeed 已提交
6609
  .d-lg-inline-block {
A
Abdullah Almsaeed 已提交
6610 6611
    display: inline-block !important;
  }
A
Abdullah Almsaeed 已提交
6612
  .d-lg-block {
A
Abdullah Almsaeed 已提交
6613 6614
    display: block !important;
  }
A
Abdullah Almsaeed 已提交
6615
  .d-lg-table {
A
Abdullah Almsaeed 已提交
6616 6617
    display: table !important;
  }
A
Abdullah Almsaeed 已提交
6618
  .d-lg-table-row {
A
Abdullah Almsaeed 已提交
6619 6620
    display: table-row !important;
  }
A
Abdullah Almsaeed 已提交
6621
  .d-lg-table-cell {
A
Abdullah Almsaeed 已提交
6622 6623
    display: table-cell !important;
  }
A
Abdullah Almsaeed 已提交
6624
  .d-lg-flex {
A
Abdullah Almsaeed 已提交
6625 6626
    display: flex !important;
  }
A
Abdullah Almsaeed 已提交
6627
  .d-lg-inline-flex {
A
Abdullah Almsaeed 已提交
6628 6629 6630
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
6631

A
Abdullah Almsaeed 已提交
6632 6633
@media (min-width: 1200px) {
  .d-xl-none {
A
Abdullah Almsaeed 已提交
6634 6635
    display: none !important;
  }
A
Abdullah Almsaeed 已提交
6636
  .d-xl-inline {
A
Abdullah Almsaeed 已提交
6637 6638
    display: inline !important;
  }
A
Abdullah Almsaeed 已提交
6639
  .d-xl-inline-block {
A
Abdullah Almsaeed 已提交
6640 6641
    display: inline-block !important;
  }
A
Abdullah Almsaeed 已提交
6642
  .d-xl-block {
A
Abdullah Almsaeed 已提交
6643 6644
    display: block !important;
  }
A
Abdullah Almsaeed 已提交
6645
  .d-xl-table {
A
Abdullah Almsaeed 已提交
6646 6647
    display: table !important;
  }
A
Abdullah Almsaeed 已提交
6648
  .d-xl-table-row {
A
Abdullah Almsaeed 已提交
6649 6650
    display: table-row !important;
  }
A
Abdullah Almsaeed 已提交
6651
  .d-xl-table-cell {
A
Abdullah Almsaeed 已提交
6652 6653
    display: table-cell !important;
  }
A
Abdullah Almsaeed 已提交
6654
  .d-xl-flex {
A
Abdullah Almsaeed 已提交
6655 6656
    display: flex !important;
  }
A
Abdullah Almsaeed 已提交
6657
  .d-xl-inline-flex {
A
Abdullah Almsaeed 已提交
6658 6659 6660
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
6661

A
Abdullah Almsaeed 已提交
6662 6663
@media print {
  .d-print-none {
A
Abdullah Almsaeed 已提交
6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690
    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 {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
A
Abdullah Almsaeed 已提交
6691

A
Abdullah Almsaeed 已提交
6692 6693 6694 6695 6696
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
A
Abdullah Almsaeed 已提交
6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717
  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 已提交
6718

A
Abdullah Almsaeed 已提交
6719
.embed-responsive-21by9::before {
A
Abdullah Almsaeed 已提交
6720 6721
  padding-top: 42.857143%;
}
A
Abdullah Almsaeed 已提交
6722

A
Abdullah Almsaeed 已提交
6723
.embed-responsive-16by9::before {
A
Abdullah Almsaeed 已提交
6724 6725
  padding-top: 56.25%;
}
A
Abdullah Almsaeed 已提交
6726

A
Abdullah Almsaeed 已提交
6727
.embed-responsive-4by3::before {
A
Abdullah Almsaeed 已提交
6728 6729
  padding-top: 75%;
}
A
Abdullah Almsaeed 已提交
6730

A
Abdullah Almsaeed 已提交
6731
.embed-responsive-1by1::before {
A
Abdullah Almsaeed 已提交
6732 6733
  padding-top: 100%;
}
A
Abdullah Almsaeed 已提交
6734

A
Abdullah Almsaeed 已提交
6735
.flex-row {
A
Abdullah Almsaeed 已提交
6736 6737
  flex-direction: row !important;
}
A
Abdullah Almsaeed 已提交
6738

A
Abdullah Almsaeed 已提交
6739
.flex-column {
A
Abdullah Almsaeed 已提交
6740 6741
  flex-direction: column !important;
}
A
Abdullah Almsaeed 已提交
6742

A
Abdullah Almsaeed 已提交
6743
.flex-row-reverse {
A
Abdullah Almsaeed 已提交
6744 6745
  flex-direction: row-reverse !important;
}
A
Abdullah Almsaeed 已提交
6746

A
Abdullah Almsaeed 已提交
6747
.flex-column-reverse {
A
Abdullah Almsaeed 已提交
6748 6749
  flex-direction: column-reverse !important;
}
A
Abdullah Almsaeed 已提交
6750

A
Abdullah Almsaeed 已提交
6751
.flex-wrap {
A
Abdullah Almsaeed 已提交
6752 6753
  flex-wrap: wrap !important;
}
A
Abdullah Almsaeed 已提交
6754

A
Abdullah Almsaeed 已提交
6755
.flex-nowrap {
A
Abdullah Almsaeed 已提交
6756 6757
  flex-wrap: nowrap !important;
}
A
Abdullah Almsaeed 已提交
6758

A
Abdullah Almsaeed 已提交
6759
.flex-wrap-reverse {
A
Abdullah Almsaeed 已提交
6760 6761
  flex-wrap: wrap-reverse !important;
}
A
Abdullah Almsaeed 已提交
6762

A
Abdullah Almsaeed 已提交
6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782
.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

A
Abdullah Almsaeed 已提交
6783
.justify-content-start {
A
Abdullah Almsaeed 已提交
6784 6785
  justify-content: flex-start !important;
}
A
Abdullah Almsaeed 已提交
6786

A
Abdullah Almsaeed 已提交
6787
.justify-content-end {
A
Abdullah Almsaeed 已提交
6788 6789
  justify-content: flex-end !important;
}
A
Abdullah Almsaeed 已提交
6790

A
Abdullah Almsaeed 已提交
6791 6792 6793
.justify-content-center, .info-box-icon {
  justify-content: center !important;
}
A
Abdullah Almsaeed 已提交
6794

A
Abdullah Almsaeed 已提交
6795
.justify-content-between {
A
Abdullah Almsaeed 已提交
6796 6797
  justify-content: space-between !important;
}
A
Abdullah Almsaeed 已提交
6798

A
Abdullah Almsaeed 已提交
6799
.justify-content-around {
A
Abdullah Almsaeed 已提交
6800 6801
  justify-content: space-around !important;
}
A
Abdullah Almsaeed 已提交
6802

A
Abdullah Almsaeed 已提交
6803
.align-items-start {
A
Abdullah Almsaeed 已提交
6804 6805
  align-items: flex-start !important;
}
A
Abdullah Almsaeed 已提交
6806

A
Abdullah Almsaeed 已提交
6807
.align-items-end {
A
Abdullah Almsaeed 已提交
6808 6809
  align-items: flex-end !important;
}
A
Abdullah Almsaeed 已提交
6810

A
Abdullah Almsaeed 已提交
6811 6812 6813
.align-items-center, .info-box-icon {
  align-items: center !important;
}
A
Abdullah Almsaeed 已提交
6814

A
Abdullah Almsaeed 已提交
6815
.align-items-baseline {
A
Abdullah Almsaeed 已提交
6816 6817
  align-items: baseline !important;
}
A
Abdullah Almsaeed 已提交
6818

A
Abdullah Almsaeed 已提交
6819
.align-items-stretch {
A
Abdullah Almsaeed 已提交
6820 6821
  align-items: stretch !important;
}
A
Abdullah Almsaeed 已提交
6822

A
Abdullah Almsaeed 已提交
6823
.align-content-start {
A
Abdullah Almsaeed 已提交
6824 6825
  align-content: flex-start !important;
}
A
Abdullah Almsaeed 已提交
6826

A
Abdullah Almsaeed 已提交
6827
.align-content-end {
A
Abdullah Almsaeed 已提交
6828 6829
  align-content: flex-end !important;
}
A
Abdullah Almsaeed 已提交
6830

A
Abdullah Almsaeed 已提交
6831
.align-content-center {
A
Abdullah Almsaeed 已提交
6832 6833
  align-content: center !important;
}
A
Abdullah Almsaeed 已提交
6834

A
Abdullah Almsaeed 已提交
6835
.align-content-between {
A
Abdullah Almsaeed 已提交
6836 6837
  align-content: space-between !important;
}
A
Abdullah Almsaeed 已提交
6838

A
Abdullah Almsaeed 已提交
6839
.align-content-around {
A
Abdullah Almsaeed 已提交
6840 6841
  align-content: space-around !important;
}
A
Abdullah Almsaeed 已提交
6842

A
Abdullah Almsaeed 已提交
6843
.align-content-stretch {
A
Abdullah Almsaeed 已提交
6844 6845
  align-content: stretch !important;
}
A
Abdullah Almsaeed 已提交
6846

A
Abdullah Almsaeed 已提交
6847
.align-self-auto {
A
Abdullah Almsaeed 已提交
6848 6849
  align-self: auto !important;
}
A
Abdullah Almsaeed 已提交
6850

A
Abdullah Almsaeed 已提交
6851
.align-self-start {
A
Abdullah Almsaeed 已提交
6852 6853
  align-self: flex-start !important;
}
A
Abdullah Almsaeed 已提交
6854

A
Abdullah Almsaeed 已提交
6855
.align-self-end {
A
Abdullah Almsaeed 已提交
6856 6857
  align-self: flex-end !important;
}
A
Abdullah Almsaeed 已提交
6858

A
Abdullah Almsaeed 已提交
6859
.align-self-center {
A
Abdullah Almsaeed 已提交
6860 6861
  align-self: center !important;
}
A
Abdullah Almsaeed 已提交
6862

A
Abdullah Almsaeed 已提交
6863
.align-self-baseline {
A
Abdullah Almsaeed 已提交
6864 6865
  align-self: baseline !important;
}
A
Abdullah Almsaeed 已提交
6866

A
Abdullah Almsaeed 已提交
6867
.align-self-stretch {
A
Abdullah Almsaeed 已提交
6868 6869
  align-self: stretch !important;
}
A
Abdullah Almsaeed 已提交
6870

A
Abdullah Almsaeed 已提交
6871 6872
@media (min-width: 576px) {
  .flex-sm-row {
A
Abdullah Almsaeed 已提交
6873 6874
    flex-direction: row !important;
  }
A
Abdullah Almsaeed 已提交
6875
  .flex-sm-column {
A
Abdullah Almsaeed 已提交
6876 6877
    flex-direction: column !important;
  }
A
Abdullah Almsaeed 已提交
6878
  .flex-sm-row-reverse {
A
Abdullah Almsaeed 已提交
6879 6880
    flex-direction: row-reverse !important;
  }
A
Abdullah Almsaeed 已提交
6881
  .flex-sm-column-reverse {
A
Abdullah Almsaeed 已提交
6882 6883
    flex-direction: column-reverse !important;
  }
A
Abdullah Almsaeed 已提交
6884
  .flex-sm-wrap {
A
Abdullah Almsaeed 已提交
6885 6886
    flex-wrap: wrap !important;
  }
A
Abdullah Almsaeed 已提交
6887
  .flex-sm-nowrap {
A
Abdullah Almsaeed 已提交
6888 6889
    flex-wrap: nowrap !important;
  }
A
Abdullah Almsaeed 已提交
6890
  .flex-sm-wrap-reverse {
A
Abdullah Almsaeed 已提交
6891 6892
    flex-wrap: wrap-reverse !important;
  }
A
Abdullah Almsaeed 已提交
6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
A
Abdullah Almsaeed 已提交
6908
  .justify-content-sm-start {
A
Abdullah Almsaeed 已提交
6909 6910
    justify-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
6911
  .justify-content-sm-end {
A
Abdullah Almsaeed 已提交
6912 6913
    justify-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
6914
  .justify-content-sm-center {
A
Abdullah Almsaeed 已提交
6915 6916
    justify-content: center !important;
  }
A
Abdullah Almsaeed 已提交
6917
  .justify-content-sm-between {
A
Abdullah Almsaeed 已提交
6918 6919
    justify-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
6920
  .justify-content-sm-around {
A
Abdullah Almsaeed 已提交
6921 6922
    justify-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
6923
  .align-items-sm-start {
A
Abdullah Almsaeed 已提交
6924 6925
    align-items: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
6926
  .align-items-sm-end {
A
Abdullah Almsaeed 已提交
6927 6928
    align-items: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
6929
  .align-items-sm-center {
A
Abdullah Almsaeed 已提交
6930 6931
    align-items: center !important;
  }
A
Abdullah Almsaeed 已提交
6932
  .align-items-sm-baseline {
A
Abdullah Almsaeed 已提交
6933 6934
    align-items: baseline !important;
  }
A
Abdullah Almsaeed 已提交
6935
  .align-items-sm-stretch {
A
Abdullah Almsaeed 已提交
6936 6937
    align-items: stretch !important;
  }
A
Abdullah Almsaeed 已提交
6938
  .align-content-sm-start {
A
Abdullah Almsaeed 已提交
6939 6940
    align-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
6941
  .align-content-sm-end {
A
Abdullah Almsaeed 已提交
6942 6943
    align-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
6944
  .align-content-sm-center {
A
Abdullah Almsaeed 已提交
6945 6946
    align-content: center !important;
  }
A
Abdullah Almsaeed 已提交
6947
  .align-content-sm-between {
A
Abdullah Almsaeed 已提交
6948 6949
    align-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
6950
  .align-content-sm-around {
A
Abdullah Almsaeed 已提交
6951 6952
    align-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
6953
  .align-content-sm-stretch {
A
Abdullah Almsaeed 已提交
6954 6955
    align-content: stretch !important;
  }
A
Abdullah Almsaeed 已提交
6956
  .align-self-sm-auto {
A
Abdullah Almsaeed 已提交
6957 6958
    align-self: auto !important;
  }
A
Abdullah Almsaeed 已提交
6959
  .align-self-sm-start {
A
Abdullah Almsaeed 已提交
6960 6961
    align-self: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
6962
  .align-self-sm-end {
A
Abdullah Almsaeed 已提交
6963 6964
    align-self: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
6965
  .align-self-sm-center {
A
Abdullah Almsaeed 已提交
6966 6967
    align-self: center !important;
  }
A
Abdullah Almsaeed 已提交
6968
  .align-self-sm-baseline {
A
Abdullah Almsaeed 已提交
6969 6970
    align-self: baseline !important;
  }
A
Abdullah Almsaeed 已提交
6971
  .align-self-sm-stretch {
A
Abdullah Almsaeed 已提交
6972 6973 6974
    align-self: stretch !important;
  }
}
A
Abdullah Almsaeed 已提交
6975

A
Abdullah Almsaeed 已提交
6976 6977
@media (min-width: 768px) {
  .flex-md-row {
A
Abdullah Almsaeed 已提交
6978 6979
    flex-direction: row !important;
  }
A
Abdullah Almsaeed 已提交
6980
  .flex-md-column {
A
Abdullah Almsaeed 已提交
6981 6982
    flex-direction: column !important;
  }
A
Abdullah Almsaeed 已提交
6983
  .flex-md-row-reverse {
A
Abdullah Almsaeed 已提交
6984 6985
    flex-direction: row-reverse !important;
  }
A
Abdullah Almsaeed 已提交
6986
  .flex-md-column-reverse {
A
Abdullah Almsaeed 已提交
6987 6988
    flex-direction: column-reverse !important;
  }
A
Abdullah Almsaeed 已提交
6989
  .flex-md-wrap {
A
Abdullah Almsaeed 已提交
6990 6991
    flex-wrap: wrap !important;
  }
A
Abdullah Almsaeed 已提交
6992
  .flex-md-nowrap {
A
Abdullah Almsaeed 已提交
6993 6994
    flex-wrap: nowrap !important;
  }
A
Abdullah Almsaeed 已提交
6995
  .flex-md-wrap-reverse {
A
Abdullah Almsaeed 已提交
6996 6997
    flex-wrap: wrap-reverse !important;
  }
A
Abdullah Almsaeed 已提交
6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
A
Abdullah Almsaeed 已提交
7013
  .justify-content-md-start {
A
Abdullah Almsaeed 已提交
7014 7015
    justify-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7016
  .justify-content-md-end {
A
Abdullah Almsaeed 已提交
7017 7018
    justify-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7019
  .justify-content-md-center {
A
Abdullah Almsaeed 已提交
7020 7021
    justify-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7022
  .justify-content-md-between {
A
Abdullah Almsaeed 已提交
7023 7024
    justify-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7025
  .justify-content-md-around {
A
Abdullah Almsaeed 已提交
7026 7027
    justify-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7028
  .align-items-md-start {
A
Abdullah Almsaeed 已提交
7029 7030
    align-items: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7031
  .align-items-md-end {
A
Abdullah Almsaeed 已提交
7032 7033
    align-items: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7034
  .align-items-md-center {
A
Abdullah Almsaeed 已提交
7035 7036
    align-items: center !important;
  }
A
Abdullah Almsaeed 已提交
7037
  .align-items-md-baseline {
A
Abdullah Almsaeed 已提交
7038 7039
    align-items: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7040
  .align-items-md-stretch {
A
Abdullah Almsaeed 已提交
7041 7042
    align-items: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7043
  .align-content-md-start {
A
Abdullah Almsaeed 已提交
7044 7045
    align-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7046
  .align-content-md-end {
A
Abdullah Almsaeed 已提交
7047 7048
    align-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7049
  .align-content-md-center {
A
Abdullah Almsaeed 已提交
7050 7051
    align-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7052
  .align-content-md-between {
A
Abdullah Almsaeed 已提交
7053 7054
    align-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7055
  .align-content-md-around {
A
Abdullah Almsaeed 已提交
7056 7057
    align-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7058
  .align-content-md-stretch {
A
Abdullah Almsaeed 已提交
7059 7060
    align-content: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7061
  .align-self-md-auto {
A
Abdullah Almsaeed 已提交
7062 7063
    align-self: auto !important;
  }
A
Abdullah Almsaeed 已提交
7064
  .align-self-md-start {
A
Abdullah Almsaeed 已提交
7065 7066
    align-self: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7067
  .align-self-md-end {
A
Abdullah Almsaeed 已提交
7068 7069
    align-self: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7070
  .align-self-md-center {
A
Abdullah Almsaeed 已提交
7071 7072
    align-self: center !important;
  }
A
Abdullah Almsaeed 已提交
7073
  .align-self-md-baseline {
A
Abdullah Almsaeed 已提交
7074 7075
    align-self: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7076
  .align-self-md-stretch {
A
Abdullah Almsaeed 已提交
7077 7078 7079
    align-self: stretch !important;
  }
}
A
Abdullah Almsaeed 已提交
7080

A
Abdullah Almsaeed 已提交
7081 7082
@media (min-width: 992px) {
  .flex-lg-row {
A
Abdullah Almsaeed 已提交
7083 7084
    flex-direction: row !important;
  }
A
Abdullah Almsaeed 已提交
7085
  .flex-lg-column {
A
Abdullah Almsaeed 已提交
7086 7087
    flex-direction: column !important;
  }
A
Abdullah Almsaeed 已提交
7088
  .flex-lg-row-reverse {
A
Abdullah Almsaeed 已提交
7089 7090
    flex-direction: row-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7091
  .flex-lg-column-reverse {
A
Abdullah Almsaeed 已提交
7092 7093
    flex-direction: column-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7094
  .flex-lg-wrap {
A
Abdullah Almsaeed 已提交
7095 7096
    flex-wrap: wrap !important;
  }
A
Abdullah Almsaeed 已提交
7097
  .flex-lg-nowrap {
A
Abdullah Almsaeed 已提交
7098 7099
    flex-wrap: nowrap !important;
  }
A
Abdullah Almsaeed 已提交
7100
  .flex-lg-wrap-reverse {
A
Abdullah Almsaeed 已提交
7101 7102
    flex-wrap: wrap-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
A
Abdullah Almsaeed 已提交
7118
  .justify-content-lg-start {
A
Abdullah Almsaeed 已提交
7119 7120
    justify-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7121
  .justify-content-lg-end {
A
Abdullah Almsaeed 已提交
7122 7123
    justify-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7124
  .justify-content-lg-center {
A
Abdullah Almsaeed 已提交
7125 7126
    justify-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7127
  .justify-content-lg-between {
A
Abdullah Almsaeed 已提交
7128 7129
    justify-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7130
  .justify-content-lg-around {
A
Abdullah Almsaeed 已提交
7131 7132
    justify-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7133
  .align-items-lg-start {
A
Abdullah Almsaeed 已提交
7134 7135
    align-items: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7136
  .align-items-lg-end {
A
Abdullah Almsaeed 已提交
7137 7138
    align-items: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7139
  .align-items-lg-center {
A
Abdullah Almsaeed 已提交
7140 7141
    align-items: center !important;
  }
A
Abdullah Almsaeed 已提交
7142
  .align-items-lg-baseline {
A
Abdullah Almsaeed 已提交
7143 7144
    align-items: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7145
  .align-items-lg-stretch {
A
Abdullah Almsaeed 已提交
7146 7147
    align-items: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7148
  .align-content-lg-start {
A
Abdullah Almsaeed 已提交
7149 7150
    align-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7151
  .align-content-lg-end {
A
Abdullah Almsaeed 已提交
7152 7153
    align-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7154
  .align-content-lg-center {
A
Abdullah Almsaeed 已提交
7155 7156
    align-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7157
  .align-content-lg-between {
A
Abdullah Almsaeed 已提交
7158 7159
    align-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7160
  .align-content-lg-around {
A
Abdullah Almsaeed 已提交
7161 7162
    align-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7163
  .align-content-lg-stretch {
A
Abdullah Almsaeed 已提交
7164 7165
    align-content: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7166
  .align-self-lg-auto {
A
Abdullah Almsaeed 已提交
7167 7168
    align-self: auto !important;
  }
A
Abdullah Almsaeed 已提交
7169
  .align-self-lg-start {
A
Abdullah Almsaeed 已提交
7170 7171
    align-self: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7172
  .align-self-lg-end {
A
Abdullah Almsaeed 已提交
7173 7174
    align-self: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7175
  .align-self-lg-center {
A
Abdullah Almsaeed 已提交
7176 7177
    align-self: center !important;
  }
A
Abdullah Almsaeed 已提交
7178
  .align-self-lg-baseline {
A
Abdullah Almsaeed 已提交
7179 7180
    align-self: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7181
  .align-self-lg-stretch {
A
Abdullah Almsaeed 已提交
7182 7183 7184
    align-self: stretch !important;
  }
}
A
Abdullah Almsaeed 已提交
7185

A
Abdullah Almsaeed 已提交
7186 7187
@media (min-width: 1200px) {
  .flex-xl-row {
A
Abdullah Almsaeed 已提交
7188 7189
    flex-direction: row !important;
  }
A
Abdullah Almsaeed 已提交
7190
  .flex-xl-column {
A
Abdullah Almsaeed 已提交
7191 7192
    flex-direction: column !important;
  }
A
Abdullah Almsaeed 已提交
7193
  .flex-xl-row-reverse {
A
Abdullah Almsaeed 已提交
7194 7195
    flex-direction: row-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7196
  .flex-xl-column-reverse {
A
Abdullah Almsaeed 已提交
7197 7198
    flex-direction: column-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7199
  .flex-xl-wrap {
A
Abdullah Almsaeed 已提交
7200 7201
    flex-wrap: wrap !important;
  }
A
Abdullah Almsaeed 已提交
7202
  .flex-xl-nowrap {
A
Abdullah Almsaeed 已提交
7203 7204
    flex-wrap: nowrap !important;
  }
A
Abdullah Almsaeed 已提交
7205
  .flex-xl-wrap-reverse {
A
Abdullah Almsaeed 已提交
7206 7207
    flex-wrap: wrap-reverse !important;
  }
A
Abdullah Almsaeed 已提交
7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
A
Abdullah Almsaeed 已提交
7223
  .justify-content-xl-start {
A
Abdullah Almsaeed 已提交
7224 7225
    justify-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7226
  .justify-content-xl-end {
A
Abdullah Almsaeed 已提交
7227 7228
    justify-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7229
  .justify-content-xl-center {
A
Abdullah Almsaeed 已提交
7230 7231
    justify-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7232
  .justify-content-xl-between {
A
Abdullah Almsaeed 已提交
7233 7234
    justify-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7235
  .justify-content-xl-around {
A
Abdullah Almsaeed 已提交
7236 7237
    justify-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7238
  .align-items-xl-start {
A
Abdullah Almsaeed 已提交
7239 7240
    align-items: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7241
  .align-items-xl-end {
A
Abdullah Almsaeed 已提交
7242 7243
    align-items: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7244
  .align-items-xl-center {
A
Abdullah Almsaeed 已提交
7245 7246
    align-items: center !important;
  }
A
Abdullah Almsaeed 已提交
7247
  .align-items-xl-baseline {
A
Abdullah Almsaeed 已提交
7248 7249
    align-items: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7250
  .align-items-xl-stretch {
A
Abdullah Almsaeed 已提交
7251 7252
    align-items: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7253
  .align-content-xl-start {
A
Abdullah Almsaeed 已提交
7254 7255
    align-content: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7256
  .align-content-xl-end {
A
Abdullah Almsaeed 已提交
7257 7258
    align-content: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7259
  .align-content-xl-center {
A
Abdullah Almsaeed 已提交
7260 7261
    align-content: center !important;
  }
A
Abdullah Almsaeed 已提交
7262
  .align-content-xl-between {
A
Abdullah Almsaeed 已提交
7263 7264
    align-content: space-between !important;
  }
A
Abdullah Almsaeed 已提交
7265
  .align-content-xl-around {
A
Abdullah Almsaeed 已提交
7266 7267
    align-content: space-around !important;
  }
A
Abdullah Almsaeed 已提交
7268
  .align-content-xl-stretch {
A
Abdullah Almsaeed 已提交
7269 7270
    align-content: stretch !important;
  }
A
Abdullah Almsaeed 已提交
7271
  .align-self-xl-auto {
A
Abdullah Almsaeed 已提交
7272 7273
    align-self: auto !important;
  }
A
Abdullah Almsaeed 已提交
7274
  .align-self-xl-start {
A
Abdullah Almsaeed 已提交
7275 7276
    align-self: flex-start !important;
  }
A
Abdullah Almsaeed 已提交
7277
  .align-self-xl-end {
A
Abdullah Almsaeed 已提交
7278 7279
    align-self: flex-end !important;
  }
A
Abdullah Almsaeed 已提交
7280
  .align-self-xl-center {
A
Abdullah Almsaeed 已提交
7281 7282
    align-self: center !important;
  }
A
Abdullah Almsaeed 已提交
7283
  .align-self-xl-baseline {
A
Abdullah Almsaeed 已提交
7284 7285
    align-self: baseline !important;
  }
A
Abdullah Almsaeed 已提交
7286
  .align-self-xl-stretch {
A
Abdullah Almsaeed 已提交
7287 7288 7289
    align-self: stretch !important;
  }
}
A
Abdullah Almsaeed 已提交
7290 7291

.float-left {
A
Abdullah Almsaeed 已提交
7292 7293
  float: left !important;
}
A
Abdullah Almsaeed 已提交
7294 7295

.float-right {
A
Abdullah Almsaeed 已提交
7296 7297
  float: right !important;
}
A
Abdullah Almsaeed 已提交
7298 7299

.float-none {
A
Abdullah Almsaeed 已提交
7300 7301
  float: none !important;
}
A
Abdullah Almsaeed 已提交
7302

A
Abdullah Almsaeed 已提交
7303 7304
@media (min-width: 576px) {
  .float-sm-left {
A
Abdullah Almsaeed 已提交
7305 7306
    float: left !important;
  }
A
Abdullah Almsaeed 已提交
7307
  .float-sm-right {
A
Abdullah Almsaeed 已提交
7308 7309
    float: right !important;
  }
A
Abdullah Almsaeed 已提交
7310
  .float-sm-none {
A
Abdullah Almsaeed 已提交
7311 7312 7313
    float: none !important;
  }
}
A
Abdullah Almsaeed 已提交
7314 7315 7316

@media (min-width: 768px) {
  .float-md-left {
A
Abdullah Almsaeed 已提交
7317 7318
    float: left !important;
  }
A
Abdullah Almsaeed 已提交
7319
  .float-md-right {
A
Abdullah Almsaeed 已提交
7320 7321
    float: right !important;
  }
A
Abdullah Almsaeed 已提交
7322
  .float-md-none {
A
Abdullah Almsaeed 已提交
7323 7324 7325
    float: none !important;
  }
}
A
Abdullah Almsaeed 已提交
7326 7327 7328

@media (min-width: 992px) {
  .float-lg-left {
A
Abdullah Almsaeed 已提交
7329 7330
    float: left !important;
  }
A
Abdullah Almsaeed 已提交
7331
  .float-lg-right {
A
Abdullah Almsaeed 已提交
7332 7333
    float: right !important;
  }
A
Abdullah Almsaeed 已提交
7334
  .float-lg-none {
A
Abdullah Almsaeed 已提交
7335 7336 7337
    float: none !important;
  }
}
A
Abdullah Almsaeed 已提交
7338 7339 7340

@media (min-width: 1200px) {
  .float-xl-left {
A
Abdullah Almsaeed 已提交
7341 7342
    float: left !important;
  }
A
Abdullah Almsaeed 已提交
7343
  .float-xl-right {
A
Abdullah Almsaeed 已提交
7344 7345
    float: right !important;
  }
A
Abdullah Almsaeed 已提交
7346
  .float-xl-none {
A
Abdullah Almsaeed 已提交
7347 7348 7349
    float: none !important;
  }
}
A
Abdullah Almsaeed 已提交
7350

7351 7352 7353 7354 7355 7356 7357 7358
.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

A
Abdullah Almsaeed 已提交
7359
.position-static {
A
Abdullah Almsaeed 已提交
7360 7361
  position: static !important;
}
A
Abdullah Almsaeed 已提交
7362 7363

.position-relative {
A
Abdullah Almsaeed 已提交
7364 7365
  position: relative !important;
}
A
Abdullah Almsaeed 已提交
7366 7367

.position-absolute {
A
Abdullah Almsaeed 已提交
7368 7369
  position: absolute !important;
}
A
Abdullah Almsaeed 已提交
7370 7371

.position-fixed {
A
Abdullah Almsaeed 已提交
7372 7373
  position: fixed !important;
}
A
Abdullah Almsaeed 已提交
7374 7375

.position-sticky {
R
REJack 已提交
7376
  position: -webkit-sticky !important;
A
Abdullah Almsaeed 已提交
7377 7378
  position: sticky !important;
}
A
Abdullah Almsaeed 已提交
7379 7380 7381 7382 7383 7384

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
A
Abdullah Almsaeed 已提交
7385 7386
  z-index: 1030;
}
A
Abdullah Almsaeed 已提交
7387 7388 7389 7390 7391 7392

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
A
Abdullah Almsaeed 已提交
7393 7394
  z-index: 1030;
}
A
Abdullah Almsaeed 已提交
7395

R
REJack 已提交
7396
@supports ((position: -webkit-sticky) or (position: sticky)) {
A
Abdullah Almsaeed 已提交
7397
  .sticky-top {
R
REJack 已提交
7398
    position: -webkit-sticky;
A
Abdullah Almsaeed 已提交
7399 7400
    position: sticky;
    top: 0;
A
Abdullah Almsaeed 已提交
7401 7402 7403
    z-index: 1020;
  }
}
A
Abdullah Almsaeed 已提交
7404 7405 7406 7407 7408 7409 7410 7411 7412

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
7413 7414
  border: 0;
}
A
Abdullah Almsaeed 已提交
7415 7416 7417 7418 7419 7420 7421 7422

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
A
Abdullah Almsaeed 已提交
7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438
}

.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 已提交
7439
}
A
Abdullah Almsaeed 已提交
7440 7441

.w-25 {
A
Abdullah Almsaeed 已提交
7442 7443
  width: 25% !important;
}
A
Abdullah Almsaeed 已提交
7444 7445

.w-50 {
A
Abdullah Almsaeed 已提交
7446 7447
  width: 50% !important;
}
A
Abdullah Almsaeed 已提交
7448 7449

.w-75 {
A
Abdullah Almsaeed 已提交
7450 7451
  width: 75% !important;
}
A
Abdullah Almsaeed 已提交
7452 7453

.w-100 {
A
Abdullah Almsaeed 已提交
7454 7455
  width: 100% !important;
}
A
Abdullah Almsaeed 已提交
7456

A
Abdullah Almsaeed 已提交
7457 7458 7459 7460
.w-auto {
  width: auto !important;
}

A
Abdullah Almsaeed 已提交
7461
.h-25 {
A
Abdullah Almsaeed 已提交
7462 7463
  height: 25% !important;
}
A
Abdullah Almsaeed 已提交
7464 7465

.h-50 {
A
Abdullah Almsaeed 已提交
7466 7467
  height: 50% !important;
}
A
Abdullah Almsaeed 已提交
7468 7469

.h-75 {
A
Abdullah Almsaeed 已提交
7470 7471
  height: 75% !important;
}
A
Abdullah Almsaeed 已提交
7472 7473

.h-100 {
A
Abdullah Almsaeed 已提交
7474 7475
  height: 100% !important;
}
A
Abdullah Almsaeed 已提交
7476

A
Abdullah Almsaeed 已提交
7477 7478 7479 7480
.h-auto {
  height: auto !important;
}

A
Abdullah Almsaeed 已提交
7481
.mw-100 {
A
Abdullah Almsaeed 已提交
7482 7483
  max-width: 100% !important;
}
A
Abdullah Almsaeed 已提交
7484 7485

.mh-100 {
A
Abdullah Almsaeed 已提交
7486 7487
  max-height: 100% !important;
}
A
Abdullah Almsaeed 已提交
7488

7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516
.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 已提交
7517
.m-0 {
A
Abdullah Almsaeed 已提交
7518 7519
  margin: 0 !important;
}
A
Abdullah Almsaeed 已提交
7520 7521 7522

.mt-0,
.my-0 {
A
Abdullah Almsaeed 已提交
7523 7524
  margin-top: 0 !important;
}
A
Abdullah Almsaeed 已提交
7525 7526 7527

.mr-0,
.mx-0 {
A
Abdullah Almsaeed 已提交
7528 7529
  margin-right: 0 !important;
}
A
Abdullah Almsaeed 已提交
7530 7531 7532

.mb-0,
.my-0 {
A
Abdullah Almsaeed 已提交
7533 7534
  margin-bottom: 0 !important;
}
A
Abdullah Almsaeed 已提交
7535 7536 7537

.ml-0,
.mx-0 {
A
Abdullah Almsaeed 已提交
7538 7539
  margin-left: 0 !important;
}
A
Abdullah Almsaeed 已提交
7540 7541

.m-1 {
A
Abdullah Almsaeed 已提交
7542 7543
  margin: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7544 7545 7546

.mt-1,
.my-1 {
A
Abdullah Almsaeed 已提交
7547 7548
  margin-top: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7549 7550 7551

.mr-1,
.mx-1 {
A
Abdullah Almsaeed 已提交
7552 7553
  margin-right: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7554 7555 7556

.mb-1,
.my-1 {
A
Abdullah Almsaeed 已提交
7557 7558
  margin-bottom: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7559 7560 7561

.ml-1,
.mx-1 {
A
Abdullah Almsaeed 已提交
7562 7563
  margin-left: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7564 7565

.m-2 {
A
Abdullah Almsaeed 已提交
7566 7567
  margin: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7568 7569 7570

.mt-2,
.my-2 {
A
Abdullah Almsaeed 已提交
7571 7572
  margin-top: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7573 7574 7575

.mr-2,
.mx-2 {
A
Abdullah Almsaeed 已提交
7576 7577
  margin-right: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7578

A
Abdullah Almsaeed 已提交
7579
.mb-2, .progress-group,
A
Abdullah Almsaeed 已提交
7580
.my-2 {
A
Abdullah Almsaeed 已提交
7581 7582
  margin-bottom: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7583 7584 7585

.ml-2,
.mx-2 {
A
Abdullah Almsaeed 已提交
7586 7587
  margin-left: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7588 7589

.m-3 {
A
Abdullah Almsaeed 已提交
7590 7591
  margin: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7592 7593 7594

.mt-3,
.my-3 {
A
Abdullah Almsaeed 已提交
7595 7596
  margin-top: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7597 7598 7599

.mr-3,
.mx-3 {
A
Abdullah Almsaeed 已提交
7600 7601
  margin-right: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7602

A
Abdullah Almsaeed 已提交
7603
.mb-3, .small-box, .card, .info-box, .callout,
A
Abdullah Almsaeed 已提交
7604
.my-3 {
A
Abdullah Almsaeed 已提交
7605 7606
  margin-bottom: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7607 7608 7609

.ml-3,
.mx-3 {
A
Abdullah Almsaeed 已提交
7610 7611
  margin-left: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7612 7613

.m-4 {
A
Abdullah Almsaeed 已提交
7614 7615
  margin: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7616 7617 7618

.mt-4,
.my-4 {
A
Abdullah Almsaeed 已提交
7619 7620
  margin-top: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7621 7622 7623

.mr-4,
.mx-4 {
A
Abdullah Almsaeed 已提交
7624 7625
  margin-right: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7626 7627 7628

.mb-4,
.my-4 {
A
Abdullah Almsaeed 已提交
7629 7630
  margin-bottom: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7631 7632 7633

.ml-4,
.mx-4 {
A
Abdullah Almsaeed 已提交
7634 7635
  margin-left: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7636 7637

.m-5 {
A
Abdullah Almsaeed 已提交
7638 7639
  margin: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7640 7641 7642

.mt-5,
.my-5 {
A
Abdullah Almsaeed 已提交
7643 7644
  margin-top: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7645 7646 7647

.mr-5,
.mx-5 {
A
Abdullah Almsaeed 已提交
7648 7649
  margin-right: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7650 7651 7652

.mb-5,
.my-5 {
A
Abdullah Almsaeed 已提交
7653 7654
  margin-bottom: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7655 7656 7657

.ml-5,
.mx-5 {
A
Abdullah Almsaeed 已提交
7658 7659
  margin-left: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7660 7661

.p-0 {
A
Abdullah Almsaeed 已提交
7662 7663
  padding: 0 !important;
}
A
Abdullah Almsaeed 已提交
7664 7665 7666

.pt-0,
.py-0 {
A
Abdullah Almsaeed 已提交
7667 7668
  padding-top: 0 !important;
}
A
Abdullah Almsaeed 已提交
7669 7670 7671

.pr-0,
.px-0 {
A
Abdullah Almsaeed 已提交
7672 7673
  padding-right: 0 !important;
}
A
Abdullah Almsaeed 已提交
7674 7675 7676

.pb-0,
.py-0 {
A
Abdullah Almsaeed 已提交
7677 7678
  padding-bottom: 0 !important;
}
A
Abdullah Almsaeed 已提交
7679 7680 7681

.pl-0,
.px-0 {
A
Abdullah Almsaeed 已提交
7682 7683
  padding-left: 0 !important;
}
A
Abdullah Almsaeed 已提交
7684 7685

.p-1 {
A
Abdullah Almsaeed 已提交
7686 7687
  padding: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7688 7689 7690

.pt-1,
.py-1 {
A
Abdullah Almsaeed 已提交
7691 7692
  padding-top: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7693 7694 7695

.pr-1,
.px-1 {
A
Abdullah Almsaeed 已提交
7696 7697
  padding-right: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7698 7699 7700

.pb-1,
.py-1 {
A
Abdullah Almsaeed 已提交
7701 7702
  padding-bottom: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7703 7704 7705

.pl-1,
.px-1 {
A
Abdullah Almsaeed 已提交
7706 7707
  padding-left: 0.25rem !important;
}
A
Abdullah Almsaeed 已提交
7708 7709

.p-2 {
A
Abdullah Almsaeed 已提交
7710 7711
  padding: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7712 7713 7714

.pt-2,
.py-2 {
A
Abdullah Almsaeed 已提交
7715 7716
  padding-top: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7717 7718 7719

.pr-2,
.px-2 {
A
Abdullah Almsaeed 已提交
7720 7721
  padding-right: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7722 7723 7724

.pb-2,
.py-2 {
A
Abdullah Almsaeed 已提交
7725 7726
  padding-bottom: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7727 7728 7729

.pl-2,
.px-2 {
A
Abdullah Almsaeed 已提交
7730 7731
  padding-left: 0.5rem !important;
}
A
Abdullah Almsaeed 已提交
7732 7733

.p-3 {
A
Abdullah Almsaeed 已提交
7734 7735
  padding: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7736 7737 7738

.pt-3,
.py-3 {
A
Abdullah Almsaeed 已提交
7739 7740
  padding-top: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7741 7742 7743

.pr-3,
.px-3 {
A
Abdullah Almsaeed 已提交
7744 7745
  padding-right: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7746 7747 7748

.pb-3,
.py-3 {
A
Abdullah Almsaeed 已提交
7749 7750
  padding-bottom: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7751 7752 7753

.pl-3,
.px-3 {
A
Abdullah Almsaeed 已提交
7754 7755
  padding-left: 1rem !important;
}
A
Abdullah Almsaeed 已提交
7756 7757

.p-4 {
A
Abdullah Almsaeed 已提交
7758 7759
  padding: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7760 7761 7762

.pt-4,
.py-4 {
A
Abdullah Almsaeed 已提交
7763 7764
  padding-top: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7765

A
Abdullah Almsaeed 已提交
7766 7767 7768 7769
.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 已提交
7770
.px-4 {
A
Abdullah Almsaeed 已提交
7771 7772
  padding-right: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7773 7774 7775

.pb-4,
.py-4 {
A
Abdullah Almsaeed 已提交
7776 7777
  padding-bottom: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7778

A
Abdullah Almsaeed 已提交
7779 7780 7781 7782
.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 已提交
7783
.px-4 {
A
Abdullah Almsaeed 已提交
7784 7785
  padding-left: 1.5rem !important;
}
A
Abdullah Almsaeed 已提交
7786 7787

.p-5 {
A
Abdullah Almsaeed 已提交
7788 7789
  padding: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7790 7791 7792

.pt-5,
.py-5 {
A
Abdullah Almsaeed 已提交
7793 7794
  padding-top: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7795 7796 7797

.pr-5,
.px-5 {
A
Abdullah Almsaeed 已提交
7798 7799
  padding-right: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7800 7801 7802

.pb-5,
.py-5 {
A
Abdullah Almsaeed 已提交
7803 7804
  padding-bottom: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7805 7806 7807

.pl-5,
.px-5 {
A
Abdullah Almsaeed 已提交
7808 7809
  padding-left: 3rem !important;
}
A
Abdullah Almsaeed 已提交
7810

7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930
.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 已提交
7931
.m-auto {
A
Abdullah Almsaeed 已提交
7932 7933
  margin: auto !important;
}
A
Abdullah Almsaeed 已提交
7934 7935 7936

.mt-auto,
.my-auto {
A
Abdullah Almsaeed 已提交
7937 7938
  margin-top: auto !important;
}
A
Abdullah Almsaeed 已提交
7939 7940 7941

.mr-auto,
.mx-auto {
A
Abdullah Almsaeed 已提交
7942 7943
  margin-right: auto !important;
}
A
Abdullah Almsaeed 已提交
7944 7945 7946

.mb-auto,
.my-auto {
A
Abdullah Almsaeed 已提交
7947 7948
  margin-bottom: auto !important;
}
A
Abdullah Almsaeed 已提交
7949 7950 7951

.ml-auto,
.mx-auto {
A
Abdullah Almsaeed 已提交
7952 7953
  margin-left: auto !important;
}
A
Abdullah Almsaeed 已提交
7954 7955 7956

@media (min-width: 576px) {
  .m-sm-0 {
A
Abdullah Almsaeed 已提交
7957 7958
    margin: 0 !important;
  }
A
Abdullah Almsaeed 已提交
7959 7960
  .mt-sm-0,
  .my-sm-0 {
A
Abdullah Almsaeed 已提交
7961 7962
    margin-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
7963 7964
  .mr-sm-0,
  .mx-sm-0 {
A
Abdullah Almsaeed 已提交
7965 7966
    margin-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
7967 7968
  .mb-sm-0,
  .my-sm-0 {
A
Abdullah Almsaeed 已提交
7969 7970
    margin-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
7971 7972
  .ml-sm-0,
  .mx-sm-0 {
A
Abdullah Almsaeed 已提交
7973 7974
    margin-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
7975
  .m-sm-1 {
A
Abdullah Almsaeed 已提交
7976 7977
    margin: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
7978 7979
  .mt-sm-1,
  .my-sm-1 {
A
Abdullah Almsaeed 已提交
7980 7981
    margin-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
7982 7983
  .mr-sm-1,
  .mx-sm-1 {
A
Abdullah Almsaeed 已提交
7984 7985
    margin-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
7986 7987
  .mb-sm-1,
  .my-sm-1 {
A
Abdullah Almsaeed 已提交
7988 7989
    margin-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
7990 7991
  .ml-sm-1,
  .mx-sm-1 {
A
Abdullah Almsaeed 已提交
7992 7993
    margin-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
7994
  .m-sm-2 {
A
Abdullah Almsaeed 已提交
7995 7996
    margin: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
7997 7998
  .mt-sm-2,
  .my-sm-2 {
A
Abdullah Almsaeed 已提交
7999 8000
    margin-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8001 8002
  .mr-sm-2,
  .mx-sm-2 {
A
Abdullah Almsaeed 已提交
8003 8004
    margin-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8005 8006
  .mb-sm-2,
  .my-sm-2 {
A
Abdullah Almsaeed 已提交
8007 8008
    margin-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8009 8010
  .ml-sm-2,
  .mx-sm-2 {
A
Abdullah Almsaeed 已提交
8011 8012
    margin-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8013
  .m-sm-3 {
A
Abdullah Almsaeed 已提交
8014 8015
    margin: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8016 8017
  .mt-sm-3,
  .my-sm-3 {
A
Abdullah Almsaeed 已提交
8018 8019
    margin-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8020 8021
  .mr-sm-3,
  .mx-sm-3 {
A
Abdullah Almsaeed 已提交
8022 8023
    margin-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8024 8025
  .mb-sm-3,
  .my-sm-3 {
A
Abdullah Almsaeed 已提交
8026 8027
    margin-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8028 8029
  .ml-sm-3,
  .mx-sm-3 {
A
Abdullah Almsaeed 已提交
8030 8031
    margin-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8032
  .m-sm-4 {
A
Abdullah Almsaeed 已提交
8033 8034
    margin: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8035 8036
  .mt-sm-4,
  .my-sm-4 {
A
Abdullah Almsaeed 已提交
8037 8038
    margin-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8039 8040
  .mr-sm-4,
  .mx-sm-4 {
A
Abdullah Almsaeed 已提交
8041 8042
    margin-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8043 8044
  .mb-sm-4,
  .my-sm-4 {
A
Abdullah Almsaeed 已提交
8045 8046
    margin-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8047 8048
  .ml-sm-4,
  .mx-sm-4 {
A
Abdullah Almsaeed 已提交
8049 8050
    margin-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8051
  .m-sm-5 {
A
Abdullah Almsaeed 已提交
8052 8053
    margin: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8054 8055
  .mt-sm-5,
  .my-sm-5 {
A
Abdullah Almsaeed 已提交
8056 8057
    margin-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8058 8059
  .mr-sm-5,
  .mx-sm-5 {
A
Abdullah Almsaeed 已提交
8060 8061
    margin-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8062 8063
  .mb-sm-5,
  .my-sm-5 {
A
Abdullah Almsaeed 已提交
8064 8065
    margin-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8066 8067
  .ml-sm-5,
  .mx-sm-5 {
A
Abdullah Almsaeed 已提交
8068 8069
    margin-left: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8070
  .p-sm-0 {
A
Abdullah Almsaeed 已提交
8071 8072
    padding: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8073 8074
  .pt-sm-0,
  .py-sm-0 {
A
Abdullah Almsaeed 已提交
8075 8076
    padding-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8077 8078
  .pr-sm-0,
  .px-sm-0 {
A
Abdullah Almsaeed 已提交
8079 8080
    padding-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8081 8082
  .pb-sm-0,
  .py-sm-0 {
A
Abdullah Almsaeed 已提交
8083 8084
    padding-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8085 8086
  .pl-sm-0,
  .px-sm-0 {
A
Abdullah Almsaeed 已提交
8087 8088
    padding-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8089
  .p-sm-1 {
A
Abdullah Almsaeed 已提交
8090 8091
    padding: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8092 8093
  .pt-sm-1,
  .py-sm-1 {
A
Abdullah Almsaeed 已提交
8094 8095
    padding-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8096 8097
  .pr-sm-1,
  .px-sm-1 {
A
Abdullah Almsaeed 已提交
8098 8099
    padding-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8100 8101
  .pb-sm-1,
  .py-sm-1 {
A
Abdullah Almsaeed 已提交
8102 8103
    padding-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8104 8105
  .pl-sm-1,
  .px-sm-1 {
A
Abdullah Almsaeed 已提交
8106 8107
    padding-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8108
  .p-sm-2 {
A
Abdullah Almsaeed 已提交
8109 8110
    padding: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8111 8112
  .pt-sm-2,
  .py-sm-2 {
A
Abdullah Almsaeed 已提交
8113 8114
    padding-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8115 8116
  .pr-sm-2,
  .px-sm-2 {
A
Abdullah Almsaeed 已提交
8117 8118
    padding-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8119 8120
  .pb-sm-2,
  .py-sm-2 {
A
Abdullah Almsaeed 已提交
8121 8122
    padding-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8123 8124
  .pl-sm-2,
  .px-sm-2 {
A
Abdullah Almsaeed 已提交
8125 8126
    padding-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8127
  .p-sm-3 {
A
Abdullah Almsaeed 已提交
8128 8129
    padding: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8130 8131
  .pt-sm-3,
  .py-sm-3 {
A
Abdullah Almsaeed 已提交
8132 8133
    padding-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8134 8135
  .pr-sm-3,
  .px-sm-3 {
A
Abdullah Almsaeed 已提交
8136 8137
    padding-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8138 8139
  .pb-sm-3,
  .py-sm-3 {
A
Abdullah Almsaeed 已提交
8140 8141
    padding-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8142 8143
  .pl-sm-3,
  .px-sm-3 {
A
Abdullah Almsaeed 已提交
8144 8145
    padding-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8146
  .p-sm-4 {
A
Abdullah Almsaeed 已提交
8147 8148
    padding: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8149 8150
  .pt-sm-4,
  .py-sm-4 {
A
Abdullah Almsaeed 已提交
8151 8152
    padding-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8153 8154
  .pr-sm-4,
  .px-sm-4 {
A
Abdullah Almsaeed 已提交
8155 8156
    padding-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8157 8158
  .pb-sm-4,
  .py-sm-4 {
A
Abdullah Almsaeed 已提交
8159 8160
    padding-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8161 8162
  .pl-sm-4,
  .px-sm-4 {
A
Abdullah Almsaeed 已提交
8163 8164
    padding-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8165
  .p-sm-5 {
A
Abdullah Almsaeed 已提交
8166 8167
    padding: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8168 8169
  .pt-sm-5,
  .py-sm-5 {
A
Abdullah Almsaeed 已提交
8170 8171
    padding-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8172 8173
  .pr-sm-5,
  .px-sm-5 {
A
Abdullah Almsaeed 已提交
8174 8175
    padding-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8176 8177
  .pb-sm-5,
  .py-sm-5 {
A
Abdullah Almsaeed 已提交
8178 8179
    padding-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8180 8181
  .pl-sm-5,
  .px-sm-5 {
A
Abdullah Almsaeed 已提交
8182 8183
    padding-left: 3rem !important;
  }
8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278
  .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 已提交
8279
  .m-sm-auto {
A
Abdullah Almsaeed 已提交
8280 8281
    margin: auto !important;
  }
A
Abdullah Almsaeed 已提交
8282 8283
  .mt-sm-auto,
  .my-sm-auto {
A
Abdullah Almsaeed 已提交
8284 8285
    margin-top: auto !important;
  }
A
Abdullah Almsaeed 已提交
8286 8287
  .mr-sm-auto,
  .mx-sm-auto {
A
Abdullah Almsaeed 已提交
8288 8289
    margin-right: auto !important;
  }
A
Abdullah Almsaeed 已提交
8290 8291
  .mb-sm-auto,
  .my-sm-auto {
A
Abdullah Almsaeed 已提交
8292 8293
    margin-bottom: auto !important;
  }
A
Abdullah Almsaeed 已提交
8294 8295
  .ml-sm-auto,
  .mx-sm-auto {
A
Abdullah Almsaeed 已提交
8296 8297 8298
    margin-left: auto !important;
  }
}
A
Abdullah Almsaeed 已提交
8299 8300 8301

@media (min-width: 768px) {
  .m-md-0 {
A
Abdullah Almsaeed 已提交
8302 8303
    margin: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8304 8305
  .mt-md-0,
  .my-md-0 {
A
Abdullah Almsaeed 已提交
8306 8307
    margin-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8308 8309
  .mr-md-0,
  .mx-md-0 {
A
Abdullah Almsaeed 已提交
8310 8311
    margin-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8312 8313
  .mb-md-0,
  .my-md-0 {
A
Abdullah Almsaeed 已提交
8314 8315
    margin-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8316 8317
  .ml-md-0,
  .mx-md-0 {
A
Abdullah Almsaeed 已提交
8318 8319
    margin-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8320
  .m-md-1 {
A
Abdullah Almsaeed 已提交
8321 8322
    margin: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8323 8324
  .mt-md-1,
  .my-md-1 {
A
Abdullah Almsaeed 已提交
8325 8326
    margin-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8327 8328
  .mr-md-1,
  .mx-md-1 {
A
Abdullah Almsaeed 已提交
8329 8330
    margin-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8331 8332
  .mb-md-1,
  .my-md-1 {
A
Abdullah Almsaeed 已提交
8333 8334
    margin-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8335 8336
  .ml-md-1,
  .mx-md-1 {
A
Abdullah Almsaeed 已提交
8337 8338
    margin-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8339
  .m-md-2 {
A
Abdullah Almsaeed 已提交
8340 8341
    margin: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8342 8343
  .mt-md-2,
  .my-md-2 {
A
Abdullah Almsaeed 已提交
8344 8345
    margin-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8346 8347
  .mr-md-2,
  .mx-md-2 {
A
Abdullah Almsaeed 已提交
8348 8349
    margin-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8350 8351
  .mb-md-2,
  .my-md-2 {
A
Abdullah Almsaeed 已提交
8352 8353
    margin-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8354 8355
  .ml-md-2,
  .mx-md-2 {
A
Abdullah Almsaeed 已提交
8356 8357
    margin-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8358
  .m-md-3 {
A
Abdullah Almsaeed 已提交
8359 8360
    margin: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8361 8362
  .mt-md-3,
  .my-md-3 {
A
Abdullah Almsaeed 已提交
8363 8364
    margin-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8365 8366
  .mr-md-3,
  .mx-md-3 {
A
Abdullah Almsaeed 已提交
8367 8368
    margin-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8369 8370
  .mb-md-3,
  .my-md-3 {
A
Abdullah Almsaeed 已提交
8371 8372
    margin-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8373 8374
  .ml-md-3,
  .mx-md-3 {
A
Abdullah Almsaeed 已提交
8375 8376
    margin-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8377
  .m-md-4 {
A
Abdullah Almsaeed 已提交
8378 8379
    margin: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8380 8381
  .mt-md-4,
  .my-md-4 {
A
Abdullah Almsaeed 已提交
8382 8383
    margin-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8384 8385
  .mr-md-4,
  .mx-md-4 {
A
Abdullah Almsaeed 已提交
8386 8387
    margin-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8388 8389
  .mb-md-4,
  .my-md-4 {
A
Abdullah Almsaeed 已提交
8390 8391
    margin-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8392 8393
  .ml-md-4,
  .mx-md-4 {
A
Abdullah Almsaeed 已提交
8394 8395
    margin-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8396
  .m-md-5 {
A
Abdullah Almsaeed 已提交
8397 8398
    margin: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8399 8400
  .mt-md-5,
  .my-md-5 {
A
Abdullah Almsaeed 已提交
8401 8402
    margin-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8403 8404
  .mr-md-5,
  .mx-md-5 {
A
Abdullah Almsaeed 已提交
8405 8406
    margin-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8407 8408
  .mb-md-5,
  .my-md-5 {
A
Abdullah Almsaeed 已提交
8409 8410
    margin-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8411 8412
  .ml-md-5,
  .mx-md-5 {
A
Abdullah Almsaeed 已提交
8413 8414
    margin-left: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8415
  .p-md-0 {
A
Abdullah Almsaeed 已提交
8416 8417
    padding: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8418 8419
  .pt-md-0,
  .py-md-0 {
A
Abdullah Almsaeed 已提交
8420 8421
    padding-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8422 8423
  .pr-md-0,
  .px-md-0 {
A
Abdullah Almsaeed 已提交
8424 8425
    padding-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8426 8427
  .pb-md-0,
  .py-md-0 {
A
Abdullah Almsaeed 已提交
8428 8429
    padding-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8430 8431
  .pl-md-0,
  .px-md-0 {
A
Abdullah Almsaeed 已提交
8432 8433
    padding-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8434
  .p-md-1 {
A
Abdullah Almsaeed 已提交
8435 8436
    padding: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8437 8438
  .pt-md-1,
  .py-md-1 {
A
Abdullah Almsaeed 已提交
8439 8440
    padding-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8441 8442
  .pr-md-1,
  .px-md-1 {
A
Abdullah Almsaeed 已提交
8443 8444
    padding-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8445 8446
  .pb-md-1,
  .py-md-1 {
A
Abdullah Almsaeed 已提交
8447 8448
    padding-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8449 8450
  .pl-md-1,
  .px-md-1 {
A
Abdullah Almsaeed 已提交
8451 8452
    padding-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8453
  .p-md-2 {
A
Abdullah Almsaeed 已提交
8454 8455
    padding: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8456 8457
  .pt-md-2,
  .py-md-2 {
A
Abdullah Almsaeed 已提交
8458 8459
    padding-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8460 8461
  .pr-md-2,
  .px-md-2 {
A
Abdullah Almsaeed 已提交
8462 8463
    padding-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8464 8465
  .pb-md-2,
  .py-md-2 {
A
Abdullah Almsaeed 已提交
8466 8467
    padding-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8468 8469
  .pl-md-2,
  .px-md-2 {
A
Abdullah Almsaeed 已提交
8470 8471
    padding-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8472
  .p-md-3 {
A
Abdullah Almsaeed 已提交
8473 8474
    padding: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8475 8476
  .pt-md-3,
  .py-md-3 {
A
Abdullah Almsaeed 已提交
8477 8478
    padding-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8479 8480
  .pr-md-3,
  .px-md-3 {
A
Abdullah Almsaeed 已提交
8481 8482
    padding-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8483 8484
  .pb-md-3,
  .py-md-3 {
A
Abdullah Almsaeed 已提交
8485 8486
    padding-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8487 8488
  .pl-md-3,
  .px-md-3 {
A
Abdullah Almsaeed 已提交
8489 8490
    padding-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8491
  .p-md-4 {
A
Abdullah Almsaeed 已提交
8492 8493
    padding: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8494 8495
  .pt-md-4,
  .py-md-4 {
A
Abdullah Almsaeed 已提交
8496 8497
    padding-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8498 8499
  .pr-md-4,
  .px-md-4 {
A
Abdullah Almsaeed 已提交
8500 8501
    padding-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8502 8503
  .pb-md-4,
  .py-md-4 {
A
Abdullah Almsaeed 已提交
8504 8505
    padding-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8506 8507
  .pl-md-4,
  .px-md-4 {
A
Abdullah Almsaeed 已提交
8508 8509
    padding-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8510
  .p-md-5 {
A
Abdullah Almsaeed 已提交
8511 8512
    padding: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8513 8514
  .pt-md-5,
  .py-md-5 {
A
Abdullah Almsaeed 已提交
8515 8516
    padding-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8517 8518
  .pr-md-5,
  .px-md-5 {
A
Abdullah Almsaeed 已提交
8519 8520
    padding-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8521 8522
  .pb-md-5,
  .py-md-5 {
A
Abdullah Almsaeed 已提交
8523 8524
    padding-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8525 8526
  .pl-md-5,
  .px-md-5 {
A
Abdullah Almsaeed 已提交
8527 8528
    padding-left: 3rem !important;
  }
8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623
  .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 已提交
8624
  .m-md-auto {
A
Abdullah Almsaeed 已提交
8625 8626
    margin: auto !important;
  }
A
Abdullah Almsaeed 已提交
8627 8628
  .mt-md-auto,
  .my-md-auto {
A
Abdullah Almsaeed 已提交
8629 8630
    margin-top: auto !important;
  }
A
Abdullah Almsaeed 已提交
8631 8632
  .mr-md-auto,
  .mx-md-auto {
A
Abdullah Almsaeed 已提交
8633 8634
    margin-right: auto !important;
  }
A
Abdullah Almsaeed 已提交
8635 8636
  .mb-md-auto,
  .my-md-auto {
A
Abdullah Almsaeed 已提交
8637 8638
    margin-bottom: auto !important;
  }
A
Abdullah Almsaeed 已提交
8639 8640
  .ml-md-auto,
  .mx-md-auto {
A
Abdullah Almsaeed 已提交
8641 8642 8643
    margin-left: auto !important;
  }
}
A
Abdullah Almsaeed 已提交
8644 8645 8646

@media (min-width: 992px) {
  .m-lg-0 {
A
Abdullah Almsaeed 已提交
8647 8648
    margin: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8649 8650
  .mt-lg-0,
  .my-lg-0 {
A
Abdullah Almsaeed 已提交
8651 8652
    margin-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8653 8654
  .mr-lg-0,
  .mx-lg-0 {
A
Abdullah Almsaeed 已提交
8655 8656
    margin-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8657 8658
  .mb-lg-0,
  .my-lg-0 {
A
Abdullah Almsaeed 已提交
8659 8660
    margin-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8661 8662
  .ml-lg-0,
  .mx-lg-0 {
A
Abdullah Almsaeed 已提交
8663 8664
    margin-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8665
  .m-lg-1 {
A
Abdullah Almsaeed 已提交
8666 8667
    margin: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8668 8669
  .mt-lg-1,
  .my-lg-1 {
A
Abdullah Almsaeed 已提交
8670 8671
    margin-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8672 8673
  .mr-lg-1,
  .mx-lg-1 {
A
Abdullah Almsaeed 已提交
8674 8675
    margin-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8676 8677
  .mb-lg-1,
  .my-lg-1 {
A
Abdullah Almsaeed 已提交
8678 8679
    margin-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8680 8681
  .ml-lg-1,
  .mx-lg-1 {
A
Abdullah Almsaeed 已提交
8682 8683
    margin-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8684
  .m-lg-2 {
A
Abdullah Almsaeed 已提交
8685 8686
    margin: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8687 8688
  .mt-lg-2,
  .my-lg-2 {
A
Abdullah Almsaeed 已提交
8689 8690
    margin-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8691 8692
  .mr-lg-2,
  .mx-lg-2 {
A
Abdullah Almsaeed 已提交
8693 8694
    margin-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8695 8696
  .mb-lg-2,
  .my-lg-2 {
A
Abdullah Almsaeed 已提交
8697 8698
    margin-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8699 8700
  .ml-lg-2,
  .mx-lg-2 {
A
Abdullah Almsaeed 已提交
8701 8702
    margin-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8703
  .m-lg-3 {
A
Abdullah Almsaeed 已提交
8704 8705
    margin: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8706 8707
  .mt-lg-3,
  .my-lg-3 {
A
Abdullah Almsaeed 已提交
8708 8709
    margin-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8710 8711
  .mr-lg-3,
  .mx-lg-3 {
A
Abdullah Almsaeed 已提交
8712 8713
    margin-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8714 8715
  .mb-lg-3,
  .my-lg-3 {
A
Abdullah Almsaeed 已提交
8716 8717
    margin-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8718 8719
  .ml-lg-3,
  .mx-lg-3 {
A
Abdullah Almsaeed 已提交
8720 8721
    margin-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8722
  .m-lg-4 {
A
Abdullah Almsaeed 已提交
8723 8724
    margin: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8725 8726
  .mt-lg-4,
  .my-lg-4 {
A
Abdullah Almsaeed 已提交
8727 8728
    margin-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8729 8730
  .mr-lg-4,
  .mx-lg-4 {
A
Abdullah Almsaeed 已提交
8731 8732
    margin-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8733 8734
  .mb-lg-4,
  .my-lg-4 {
A
Abdullah Almsaeed 已提交
8735 8736
    margin-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8737 8738
  .ml-lg-4,
  .mx-lg-4 {
A
Abdullah Almsaeed 已提交
8739 8740
    margin-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8741
  .m-lg-5 {
A
Abdullah Almsaeed 已提交
8742 8743
    margin: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8744 8745
  .mt-lg-5,
  .my-lg-5 {
A
Abdullah Almsaeed 已提交
8746 8747
    margin-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8748 8749
  .mr-lg-5,
  .mx-lg-5 {
A
Abdullah Almsaeed 已提交
8750 8751
    margin-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8752 8753
  .mb-lg-5,
  .my-lg-5 {
A
Abdullah Almsaeed 已提交
8754 8755
    margin-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8756 8757
  .ml-lg-5,
  .mx-lg-5 {
A
Abdullah Almsaeed 已提交
8758 8759
    margin-left: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8760
  .p-lg-0 {
A
Abdullah Almsaeed 已提交
8761 8762
    padding: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8763 8764
  .pt-lg-0,
  .py-lg-0 {
A
Abdullah Almsaeed 已提交
8765 8766
    padding-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8767 8768
  .pr-lg-0,
  .px-lg-0 {
A
Abdullah Almsaeed 已提交
8769 8770
    padding-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8771 8772
  .pb-lg-0,
  .py-lg-0 {
A
Abdullah Almsaeed 已提交
8773 8774
    padding-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8775 8776
  .pl-lg-0,
  .px-lg-0 {
A
Abdullah Almsaeed 已提交
8777 8778
    padding-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8779
  .p-lg-1 {
A
Abdullah Almsaeed 已提交
8780 8781
    padding: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8782 8783
  .pt-lg-1,
  .py-lg-1 {
A
Abdullah Almsaeed 已提交
8784 8785
    padding-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8786 8787
  .pr-lg-1,
  .px-lg-1 {
A
Abdullah Almsaeed 已提交
8788 8789
    padding-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8790 8791
  .pb-lg-1,
  .py-lg-1 {
A
Abdullah Almsaeed 已提交
8792 8793
    padding-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8794 8795
  .pl-lg-1,
  .px-lg-1 {
A
Abdullah Almsaeed 已提交
8796 8797
    padding-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
8798
  .p-lg-2 {
A
Abdullah Almsaeed 已提交
8799 8800
    padding: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8801 8802
  .pt-lg-2,
  .py-lg-2 {
A
Abdullah Almsaeed 已提交
8803 8804
    padding-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8805 8806
  .pr-lg-2,
  .px-lg-2 {
A
Abdullah Almsaeed 已提交
8807 8808
    padding-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8809 8810
  .pb-lg-2,
  .py-lg-2 {
A
Abdullah Almsaeed 已提交
8811 8812
    padding-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8813 8814
  .pl-lg-2,
  .px-lg-2 {
A
Abdullah Almsaeed 已提交
8815 8816
    padding-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8817
  .p-lg-3 {
A
Abdullah Almsaeed 已提交
8818 8819
    padding: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8820 8821
  .pt-lg-3,
  .py-lg-3 {
A
Abdullah Almsaeed 已提交
8822 8823
    padding-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8824 8825
  .pr-lg-3,
  .px-lg-3 {
A
Abdullah Almsaeed 已提交
8826 8827
    padding-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8828 8829
  .pb-lg-3,
  .py-lg-3 {
A
Abdullah Almsaeed 已提交
8830 8831
    padding-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8832 8833
  .pl-lg-3,
  .px-lg-3 {
A
Abdullah Almsaeed 已提交
8834 8835
    padding-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
8836
  .p-lg-4 {
A
Abdullah Almsaeed 已提交
8837 8838
    padding: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8839 8840
  .pt-lg-4,
  .py-lg-4 {
A
Abdullah Almsaeed 已提交
8841 8842
    padding-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8843 8844
  .pr-lg-4,
  .px-lg-4 {
A
Abdullah Almsaeed 已提交
8845 8846
    padding-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8847 8848
  .pb-lg-4,
  .py-lg-4 {
A
Abdullah Almsaeed 已提交
8849 8850
    padding-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8851 8852
  .pl-lg-4,
  .px-lg-4 {
A
Abdullah Almsaeed 已提交
8853 8854
    padding-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
8855
  .p-lg-5 {
A
Abdullah Almsaeed 已提交
8856 8857
    padding: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8858 8859
  .pt-lg-5,
  .py-lg-5 {
A
Abdullah Almsaeed 已提交
8860 8861
    padding-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8862 8863
  .pr-lg-5,
  .px-lg-5 {
A
Abdullah Almsaeed 已提交
8864 8865
    padding-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8866 8867
  .pb-lg-5,
  .py-lg-5 {
A
Abdullah Almsaeed 已提交
8868 8869
    padding-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
8870 8871
  .pl-lg-5,
  .px-lg-5 {
A
Abdullah Almsaeed 已提交
8872 8873
    padding-left: 3rem !important;
  }
8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968
  .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 已提交
8969
  .m-lg-auto {
A
Abdullah Almsaeed 已提交
8970 8971
    margin: auto !important;
  }
A
Abdullah Almsaeed 已提交
8972 8973
  .mt-lg-auto,
  .my-lg-auto {
A
Abdullah Almsaeed 已提交
8974 8975
    margin-top: auto !important;
  }
A
Abdullah Almsaeed 已提交
8976 8977
  .mr-lg-auto,
  .mx-lg-auto {
A
Abdullah Almsaeed 已提交
8978 8979
    margin-right: auto !important;
  }
A
Abdullah Almsaeed 已提交
8980 8981
  .mb-lg-auto,
  .my-lg-auto {
A
Abdullah Almsaeed 已提交
8982 8983
    margin-bottom: auto !important;
  }
A
Abdullah Almsaeed 已提交
8984 8985
  .ml-lg-auto,
  .mx-lg-auto {
A
Abdullah Almsaeed 已提交
8986 8987 8988
    margin-left: auto !important;
  }
}
A
Abdullah Almsaeed 已提交
8989 8990 8991

@media (min-width: 1200px) {
  .m-xl-0 {
A
Abdullah Almsaeed 已提交
8992 8993
    margin: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8994 8995
  .mt-xl-0,
  .my-xl-0 {
A
Abdullah Almsaeed 已提交
8996 8997
    margin-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
8998 8999
  .mr-xl-0,
  .mx-xl-0 {
A
Abdullah Almsaeed 已提交
9000 9001
    margin-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9002 9003
  .mb-xl-0,
  .my-xl-0 {
A
Abdullah Almsaeed 已提交
9004 9005
    margin-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9006 9007
  .ml-xl-0,
  .mx-xl-0 {
A
Abdullah Almsaeed 已提交
9008 9009
    margin-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9010
  .m-xl-1 {
A
Abdullah Almsaeed 已提交
9011 9012
    margin: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9013 9014
  .mt-xl-1,
  .my-xl-1 {
A
Abdullah Almsaeed 已提交
9015 9016
    margin-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9017 9018
  .mr-xl-1,
  .mx-xl-1 {
A
Abdullah Almsaeed 已提交
9019 9020
    margin-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9021 9022
  .mb-xl-1,
  .my-xl-1 {
A
Abdullah Almsaeed 已提交
9023 9024
    margin-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9025 9026
  .ml-xl-1,
  .mx-xl-1 {
A
Abdullah Almsaeed 已提交
9027 9028
    margin-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9029
  .m-xl-2 {
A
Abdullah Almsaeed 已提交
9030 9031
    margin: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9032 9033
  .mt-xl-2,
  .my-xl-2 {
A
Abdullah Almsaeed 已提交
9034 9035
    margin-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9036 9037
  .mr-xl-2,
  .mx-xl-2 {
A
Abdullah Almsaeed 已提交
9038 9039
    margin-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9040 9041
  .mb-xl-2,
  .my-xl-2 {
A
Abdullah Almsaeed 已提交
9042 9043
    margin-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9044 9045
  .ml-xl-2,
  .mx-xl-2 {
A
Abdullah Almsaeed 已提交
9046 9047
    margin-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9048
  .m-xl-3 {
A
Abdullah Almsaeed 已提交
9049 9050
    margin: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9051 9052
  .mt-xl-3,
  .my-xl-3 {
A
Abdullah Almsaeed 已提交
9053 9054
    margin-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9055 9056
  .mr-xl-3,
  .mx-xl-3 {
A
Abdullah Almsaeed 已提交
9057 9058
    margin-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9059 9060
  .mb-xl-3,
  .my-xl-3 {
A
Abdullah Almsaeed 已提交
9061 9062
    margin-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9063 9064
  .ml-xl-3,
  .mx-xl-3 {
A
Abdullah Almsaeed 已提交
9065 9066
    margin-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9067
  .m-xl-4 {
A
Abdullah Almsaeed 已提交
9068 9069
    margin: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9070 9071
  .mt-xl-4,
  .my-xl-4 {
A
Abdullah Almsaeed 已提交
9072 9073
    margin-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9074 9075
  .mr-xl-4,
  .mx-xl-4 {
A
Abdullah Almsaeed 已提交
9076 9077
    margin-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9078 9079
  .mb-xl-4,
  .my-xl-4 {
A
Abdullah Almsaeed 已提交
9080 9081
    margin-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9082 9083
  .ml-xl-4,
  .mx-xl-4 {
A
Abdullah Almsaeed 已提交
9084 9085
    margin-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9086
  .m-xl-5 {
A
Abdullah Almsaeed 已提交
9087 9088
    margin: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9089 9090
  .mt-xl-5,
  .my-xl-5 {
A
Abdullah Almsaeed 已提交
9091 9092
    margin-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9093 9094
  .mr-xl-5,
  .mx-xl-5 {
A
Abdullah Almsaeed 已提交
9095 9096
    margin-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9097 9098
  .mb-xl-5,
  .my-xl-5 {
A
Abdullah Almsaeed 已提交
9099 9100
    margin-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9101 9102
  .ml-xl-5,
  .mx-xl-5 {
A
Abdullah Almsaeed 已提交
9103 9104
    margin-left: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9105
  .p-xl-0 {
A
Abdullah Almsaeed 已提交
9106 9107
    padding: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9108 9109
  .pt-xl-0,
  .py-xl-0 {
A
Abdullah Almsaeed 已提交
9110 9111
    padding-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9112 9113
  .pr-xl-0,
  .px-xl-0 {
A
Abdullah Almsaeed 已提交
9114 9115
    padding-right: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9116 9117
  .pb-xl-0,
  .py-xl-0 {
A
Abdullah Almsaeed 已提交
9118 9119
    padding-bottom: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9120 9121
  .pl-xl-0,
  .px-xl-0 {
A
Abdullah Almsaeed 已提交
9122 9123
    padding-left: 0 !important;
  }
A
Abdullah Almsaeed 已提交
9124
  .p-xl-1 {
A
Abdullah Almsaeed 已提交
9125 9126
    padding: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9127 9128
  .pt-xl-1,
  .py-xl-1 {
A
Abdullah Almsaeed 已提交
9129 9130
    padding-top: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9131 9132
  .pr-xl-1,
  .px-xl-1 {
A
Abdullah Almsaeed 已提交
9133 9134
    padding-right: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9135 9136
  .pb-xl-1,
  .py-xl-1 {
A
Abdullah Almsaeed 已提交
9137 9138
    padding-bottom: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9139 9140
  .pl-xl-1,
  .px-xl-1 {
A
Abdullah Almsaeed 已提交
9141 9142
    padding-left: 0.25rem !important;
  }
A
Abdullah Almsaeed 已提交
9143
  .p-xl-2 {
A
Abdullah Almsaeed 已提交
9144 9145
    padding: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9146 9147
  .pt-xl-2,
  .py-xl-2 {
A
Abdullah Almsaeed 已提交
9148 9149
    padding-top: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9150 9151
  .pr-xl-2,
  .px-xl-2 {
A
Abdullah Almsaeed 已提交
9152 9153
    padding-right: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9154 9155
  .pb-xl-2,
  .py-xl-2 {
A
Abdullah Almsaeed 已提交
9156 9157
    padding-bottom: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9158 9159
  .pl-xl-2,
  .px-xl-2 {
A
Abdullah Almsaeed 已提交
9160 9161
    padding-left: 0.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9162
  .p-xl-3 {
A
Abdullah Almsaeed 已提交
9163 9164
    padding: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9165 9166
  .pt-xl-3,
  .py-xl-3 {
A
Abdullah Almsaeed 已提交
9167 9168
    padding-top: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9169 9170
  .pr-xl-3,
  .px-xl-3 {
A
Abdullah Almsaeed 已提交
9171 9172
    padding-right: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9173 9174
  .pb-xl-3,
  .py-xl-3 {
A
Abdullah Almsaeed 已提交
9175 9176
    padding-bottom: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9177 9178
  .pl-xl-3,
  .px-xl-3 {
A
Abdullah Almsaeed 已提交
9179 9180
    padding-left: 1rem !important;
  }
A
Abdullah Almsaeed 已提交
9181
  .p-xl-4 {
A
Abdullah Almsaeed 已提交
9182 9183
    padding: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9184 9185
  .pt-xl-4,
  .py-xl-4 {
A
Abdullah Almsaeed 已提交
9186 9187
    padding-top: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9188 9189
  .pr-xl-4,
  .px-xl-4 {
A
Abdullah Almsaeed 已提交
9190 9191
    padding-right: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9192 9193
  .pb-xl-4,
  .py-xl-4 {
A
Abdullah Almsaeed 已提交
9194 9195
    padding-bottom: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9196 9197
  .pl-xl-4,
  .px-xl-4 {
A
Abdullah Almsaeed 已提交
9198 9199
    padding-left: 1.5rem !important;
  }
A
Abdullah Almsaeed 已提交
9200
  .p-xl-5 {
A
Abdullah Almsaeed 已提交
9201 9202
    padding: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9203 9204
  .pt-xl-5,
  .py-xl-5 {
A
Abdullah Almsaeed 已提交
9205 9206
    padding-top: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9207 9208
  .pr-xl-5,
  .px-xl-5 {
A
Abdullah Almsaeed 已提交
9209 9210
    padding-right: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9211 9212
  .pb-xl-5,
  .py-xl-5 {
A
Abdullah Almsaeed 已提交
9213 9214
    padding-bottom: 3rem !important;
  }
A
Abdullah Almsaeed 已提交
9215 9216
  .pl-xl-5,
  .px-xl-5 {
A
Abdullah Almsaeed 已提交
9217 9218
    padding-left: 3rem !important;
  }
9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313
  .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 已提交
9314
  .m-xl-auto {
A
Abdullah Almsaeed 已提交
9315 9316
    margin: auto !important;
  }
A
Abdullah Almsaeed 已提交
9317 9318
  .mt-xl-auto,
  .my-xl-auto {
A
Abdullah Almsaeed 已提交
9319 9320
    margin-top: auto !important;
  }
A
Abdullah Almsaeed 已提交
9321 9322
  .mr-xl-auto,
  .mx-xl-auto {
A
Abdullah Almsaeed 已提交
9323 9324
    margin-right: auto !important;
  }
A
Abdullah Almsaeed 已提交
9325 9326
  .mb-xl-auto,
  .my-xl-auto {
A
Abdullah Almsaeed 已提交
9327 9328
    margin-bottom: auto !important;
  }
A
Abdullah Almsaeed 已提交
9329 9330
  .ml-xl-auto,
  .mx-xl-auto {
A
Abdullah Almsaeed 已提交
9331 9332 9333
    margin-left: auto !important;
  }
}
A
Abdullah Almsaeed 已提交
9334

A
Abdullah Almsaeed 已提交
9335
.text-monospace {
9336
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
A
Abdullah Almsaeed 已提交
9337 9338
}

A
Abdullah Almsaeed 已提交
9339
.text-justify {
A
Abdullah Almsaeed 已提交
9340 9341
  text-align: justify !important;
}
A
Abdullah Almsaeed 已提交
9342

9343 9344 9345 9346
.text-wrap {
  white-space: normal !important;
}

A
Abdullah Almsaeed 已提交
9347
.text-nowrap {
A
Abdullah Almsaeed 已提交
9348 9349
  white-space: nowrap !important;
}
A
Abdullah Almsaeed 已提交
9350 9351 9352 9353

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
A
Abdullah Almsaeed 已提交
9354 9355
  white-space: nowrap;
}
A
Abdullah Almsaeed 已提交
9356

A
Abdullah Almsaeed 已提交
9357
.text-left {
A
Abdullah Almsaeed 已提交
9358 9359
  text-align: left !important;
}
A
Abdullah Almsaeed 已提交
9360

A
Abdullah Almsaeed 已提交
9361
.text-right {
A
Abdullah Almsaeed 已提交
9362 9363
  text-align: right !important;
}
A
Abdullah Almsaeed 已提交
9364

A
Abdullah Almsaeed 已提交
9365
.text-center {
A
Abdullah Almsaeed 已提交
9366 9367
  text-align: center !important;
}
A
Abdullah Almsaeed 已提交
9368 9369 9370

@media (min-width: 576px) {
  .text-sm-left {
A
Abdullah Almsaeed 已提交
9371 9372
    text-align: left !important;
  }
A
Abdullah Almsaeed 已提交
9373
  .text-sm-right {
A
Abdullah Almsaeed 已提交
9374 9375
    text-align: right !important;
  }
A
Abdullah Almsaeed 已提交
9376
  .text-sm-center {
A
Abdullah Almsaeed 已提交
9377 9378 9379
    text-align: center !important;
  }
}
A
Abdullah Almsaeed 已提交
9380 9381 9382

@media (min-width: 768px) {
  .text-md-left {
A
Abdullah Almsaeed 已提交
9383 9384
    text-align: left !important;
  }
A
Abdullah Almsaeed 已提交
9385
  .text-md-right {
A
Abdullah Almsaeed 已提交
9386 9387
    text-align: right !important;
  }
A
Abdullah Almsaeed 已提交
9388
  .text-md-center {
A
Abdullah Almsaeed 已提交
9389 9390 9391
    text-align: center !important;
  }
}
A
Abdullah Almsaeed 已提交
9392 9393 9394

@media (min-width: 992px) {
  .text-lg-left {
A
Abdullah Almsaeed 已提交
9395 9396
    text-align: left !important;
  }
A
Abdullah Almsaeed 已提交
9397
  .text-lg-right {
A
Abdullah Almsaeed 已提交
9398 9399
    text-align: right !important;
  }
A
Abdullah Almsaeed 已提交
9400
  .text-lg-center {
A
Abdullah Almsaeed 已提交
9401 9402 9403
    text-align: center !important;
  }
}
A
Abdullah Almsaeed 已提交
9404 9405 9406

@media (min-width: 1200px) {
  .text-xl-left {
A
Abdullah Almsaeed 已提交
9407 9408
    text-align: left !important;
  }
A
Abdullah Almsaeed 已提交
9409
  .text-xl-right {
A
Abdullah Almsaeed 已提交
9410 9411
    text-align: right !important;
  }
A
Abdullah Almsaeed 已提交
9412
  .text-xl-center {
A
Abdullah Almsaeed 已提交
9413 9414 9415
    text-align: center !important;
  }
}
A
Abdullah Almsaeed 已提交
9416 9417

.text-lowercase {
A
Abdullah Almsaeed 已提交
9418 9419
  text-transform: lowercase !important;
}
A
Abdullah Almsaeed 已提交
9420 9421

.text-uppercase {
A
Abdullah Almsaeed 已提交
9422 9423
  text-transform: uppercase !important;
}
A
Abdullah Almsaeed 已提交
9424 9425

.text-capitalize {
A
Abdullah Almsaeed 已提交
9426 9427
  text-transform: capitalize !important;
}
A
Abdullah Almsaeed 已提交
9428 9429

.font-weight-light {
A
Abdullah Almsaeed 已提交
9430 9431
  font-weight: 300 !important;
}
A
Abdullah Almsaeed 已提交
9432

9433 9434 9435 9436
.font-weight-lighter {
  font-weight: lighter !important;
}

A
Abdullah Almsaeed 已提交
9437
.font-weight-normal {
A
Abdullah Almsaeed 已提交
9438 9439
  font-weight: 400 !important;
}
A
Abdullah Almsaeed 已提交
9440 9441

.font-weight-bold {
A
Abdullah Almsaeed 已提交
9442 9443
  font-weight: 700 !important;
}
A
Abdullah Almsaeed 已提交
9444

9445 9446 9447 9448
.font-weight-bolder {
  font-weight: bolder !important;
}

A
Abdullah Almsaeed 已提交
9449
.font-italic {
A
Abdullah Almsaeed 已提交
9450 9451
  font-style: italic !important;
}
A
Abdullah Almsaeed 已提交
9452 9453

.text-white {
A
Abdullah Almsaeed 已提交
9454
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
9455
}
A
Abdullah Almsaeed 已提交
9456 9457

.text-primary {
A
Abdullah Almsaeed 已提交
9458 9459
  color: #007bff !important;
}
A
Abdullah Almsaeed 已提交
9460

A
Abdullah Almsaeed 已提交
9461
a.text-primary:hover, a.text-primary:focus {
9462
  color: #0056b3 !important;
A
Abdullah Almsaeed 已提交
9463
}
A
Abdullah Almsaeed 已提交
9464 9465

.text-secondary {
A
Abdullah Almsaeed 已提交
9466 9467
  color: #6c757d !important;
}
A
Abdullah Almsaeed 已提交
9468

A
Abdullah Almsaeed 已提交
9469
a.text-secondary:hover, a.text-secondary:focus {
9470
  color: #494f54 !important;
A
Abdullah Almsaeed 已提交
9471
}
A
Abdullah Almsaeed 已提交
9472 9473

.text-success {
A
Abdullah Almsaeed 已提交
9474 9475
  color: #28a745 !important;
}
A
Abdullah Almsaeed 已提交
9476

A
Abdullah Almsaeed 已提交
9477
a.text-success:hover, a.text-success:focus {
9478
  color: #19692c !important;
A
Abdullah Almsaeed 已提交
9479
}
A
Abdullah Almsaeed 已提交
9480 9481

.text-info {
A
Abdullah Almsaeed 已提交
9482 9483
  color: #17a2b8 !important;
}
A
Abdullah Almsaeed 已提交
9484

A
Abdullah Almsaeed 已提交
9485
a.text-info:hover, a.text-info:focus {
9486
  color: #0f6674 !important;
A
Abdullah Almsaeed 已提交
9487
}
A
Abdullah Almsaeed 已提交
9488 9489

.text-warning {
A
Abdullah Almsaeed 已提交
9490 9491
  color: #ffc107 !important;
}
A
Abdullah Almsaeed 已提交
9492

A
Abdullah Almsaeed 已提交
9493
a.text-warning:hover, a.text-warning:focus {
9494
  color: #ba8b00 !important;
A
Abdullah Almsaeed 已提交
9495
}
A
Abdullah Almsaeed 已提交
9496 9497

.text-danger {
A
Abdullah Almsaeed 已提交
9498 9499
  color: #dc3545 !important;
}
A
Abdullah Almsaeed 已提交
9500

A
Abdullah Almsaeed 已提交
9501
a.text-danger:hover, a.text-danger:focus {
9502
  color: #a71d2a !important;
A
Abdullah Almsaeed 已提交
9503
}
A
Abdullah Almsaeed 已提交
9504 9505

.text-light {
A
Abdullah Almsaeed 已提交
9506 9507
  color: #f8f9fa !important;
}
A
Abdullah Almsaeed 已提交
9508

A
Abdullah Almsaeed 已提交
9509
a.text-light:hover, a.text-light:focus {
9510
  color: #cbd3da !important;
A
Abdullah Almsaeed 已提交
9511
}
A
Abdullah Almsaeed 已提交
9512 9513

.text-dark {
A
Abdullah Almsaeed 已提交
9514 9515
  color: #343a40 !important;
}
A
Abdullah Almsaeed 已提交
9516

A
Abdullah Almsaeed 已提交
9517
a.text-dark:hover, a.text-dark:focus {
9518
  color: #121416 !important;
A
Abdullah Almsaeed 已提交
9519
}
A
Abdullah Almsaeed 已提交
9520

A
Abdullah Almsaeed 已提交
9521 9522 9523 9524
.text-body {
  color: #212529 !important;
}

A
Abdullah Almsaeed 已提交
9525
.text-muted {
A
Abdullah Almsaeed 已提交
9526 9527
  color: #6c757d !important;
}
A
Abdullah Almsaeed 已提交
9528

A
Abdullah Almsaeed 已提交
9529 9530 9531 9532 9533 9534 9535 9536
.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 已提交
9537 9538 9539 9540 9541
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
A
Abdullah Almsaeed 已提交
9542 9543
  border: 0;
}
A
Abdullah Almsaeed 已提交
9544

9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557
.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 已提交
9558
.visible {
A
Abdullah Almsaeed 已提交
9559 9560
  visibility: visible !important;
}
A
Abdullah Almsaeed 已提交
9561

A
Abdullah Almsaeed 已提交
9562
.invisible {
A
Abdullah Almsaeed 已提交
9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583
  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 已提交
9584
    border: 1px solid #adb5bd;
A
Abdullah Almsaeed 已提交
9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623
    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 已提交
9624
    background-color: #ffffff !important;
A
Abdullah Almsaeed 已提交
9625 9626 9627
  }
  .table-bordered th,
  .table-bordered td {
A
Abdullah Almsaeed 已提交
9628
    border: 1px solid #dee2e6 !important;
A
Abdullah Almsaeed 已提交
9629
  }
9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642
  .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 已提交
9643
}
A
Abdullah Almsaeed 已提交
9644 9645 9646 9647 9648 9649 9650 9651

/*
 * Core: General Layout Style
 * -------------------------
 */
html,
body,
.wrapper {
A
Abdullah Almsaeed 已提交
9652 9653 9654
  min-height: 100%;
  overflow-x: hidden;
}
A
Abdullah Almsaeed 已提交
9655

9656
.wrapper {
R
REJack 已提交
9657
  overflow: hidden;
A
Abdullah Almsaeed 已提交
9658 9659
  position: relative;
}
A
Abdullah Almsaeed 已提交
9660

R
REJack 已提交
9661 9662 9663 9664
.wrapper .content-wrapper {
  min-height: calc(100vh - 112px);
}

A
Abdullah Almsaeed 已提交
9665 9666 9667 9668 9669 9670 9671 9672
.layout-boxed .wrapper {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.layout-boxed .wrapper, .layout-boxed .wrapper:before {
  margin: 0 auto;
  max-width: 1250px;
}
A
Abdullah Almsaeed 已提交
9673

R
REJack 已提交
9674 9675 9676 9677
.layout-boxed .wrapper .main-sidebar {
  left: inherit;
}

R
REJack 已提交
9678 9679 9680 9681 9682 9683
.layout-navbar-fixed .wrapper .content-wrapper {
  margin-top: 57px;
}

.layout-navbar-fixed .wrapper .main-header {
  position: fixed;
9684
  z-index: 949;
R
REJack 已提交
9685 9686 9687 9688 9689 9690 9691
  top: 0;
  right: 0;
  left: 0;
}

.layout-footer-fixed .wrapper .main-footer {
  position: fixed;
9692
  z-index: 949;
R
REJack 已提交
9693
  bottom: 0;
9694 9695
  right: 0;
  left: 0;
R
REJack 已提交
9696 9697
}

R
REJack 已提交
9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720
.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 已提交
9721
@media (min-width: 576px) {
A
Abdullah Almsaeed 已提交
9722
  .content-wrapper,
A
Abdullah Almsaeed 已提交
9723 9724 9725 9726
  .main-footer,
  .main-header {
    transition: margin-left 0.3s ease-in-out;
    margin-left: 250px;
A
Abdullah Almsaeed 已提交
9727
    z-index: 3000;
A
Abdullah Almsaeed 已提交
9728
  }
A
Abdullah Almsaeed 已提交
9729 9730
}

R
REJack 已提交
9731
@media (min-width: 576px) and (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
9732 9733 9734 9735 9736 9737 9738
  .content-wrapper,
  .main-footer,
  .main-header {
    transition: none;
  }
}

R
REJack 已提交
9739
@media (min-width: 576px) {
A
Abdullah Almsaeed 已提交
9740 9741 9742 9743 9744 9745
  .sidebar-collapse .content-wrapper, .sidebar-collapse
  .main-footer, .sidebar-collapse
  .main-header {
    margin-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
9746

R
REJack 已提交
9747
@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
9748 9749
  .content-wrapper, .content-wrapper:before,
  .main-footer,
A
Abdullah Almsaeed 已提交
9750 9751 9752 9753 9754 9755
  .main-footer:before,
  .main-header,
  .main-header:before {
    margin-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
9756 9757

.content-wrapper {
A
Abdullah Almsaeed 已提交
9758 9759 9760 9761 9762 9763
  background: #f4f6f9;
}

.content-wrapper > .content {
  padding: 0 0.5rem;
}
A
Abdullah Almsaeed 已提交
9764

A
Abdullah Almsaeed 已提交
9765 9766 9767 9768 9769
.main-sidebar, .main-sidebar:before {
  transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
  width: 250px;
}

9770
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
9771 9772 9773 9774 9775
  .main-sidebar, .main-sidebar:before {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
9776 9777 9778 9779
.sidebar-collapse .main-sidebar, .sidebar-collapse .main-sidebar:before {
  margin-left: -250px;
}

R
REJack 已提交
9780
@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
9781
  .main-sidebar, .main-sidebar:before {
A
Abdullah Almsaeed 已提交
9782 9783 9784 9785 9786 9787 9788
    box-shadow: none !important;
    margin-left: -250px;
  }
  .sidebar-open .main-sidebar, .sidebar-open .main-sidebar:before {
    margin-left: 0;
  }
}
A
Abdullah Almsaeed 已提交
9789

R
REJack 已提交
9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803
:not(.layout-fixed) .main-sidebar {
  position: absolute;
  top: 0;
  height: inherit;
  min-height: 100%;
}

.layout-navbar-fixed.sidebar-collapse .brand-link {
  transition: width 0.3s ease-in-out;
  width: 4.6rem;
  height: 57px;
}

.layout-navbar-fixed.sidebar-collapse .main-sidebar:hover .brand-link {
9804
  transition: width 0.3s ease-in-out;
R
REJack 已提交
9805 9806 9807 9808 9809 9810 9811 9812
  width: 250px;
}

.layout-navbar-fixed .sidebar {
  margin-top: 57px;
}

.layout-navbar-fixed .brand-link {
9813
  transition: width 0.3s ease-in-out;
R
REJack 已提交
9814
  position: fixed;
9815
  overflow: hidden;
R
REJack 已提交
9816
  top: 0;
9817
  z-index: 951;
R
REJack 已提交
9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893
  width: 250px;
}

.layout-navbar-fixed .sidebar-dark-primary .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .sidebar-light-primary .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .sidebar-dark-secondary .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .sidebar-light-secondary .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .sidebar-dark-success .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .sidebar-light-success .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .sidebar-dark-info .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .sidebar-light-info .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .sidebar-dark-warning .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .sidebar-light-warning .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .sidebar-dark-danger .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .sidebar-light-danger .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .sidebar-dark-light .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .sidebar-light-light .brand-link {
  background-color: #ffffff;
}

.layout-navbar-fixed .sidebar-dark-dark .brand-link {
  background-color: #343a40;
}

.layout-navbar-fixed .sidebar-light-dark .brand-link {
  background-color: #ffffff;
}

.layout-fixed .main-sidebar {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  float: none;
}

A
Abdullah Almsaeed 已提交
9894 9895 9896
.main-footer {
  padding: 15px;
  color: #555;
A
Abdullah Almsaeed 已提交
9897 9898 9899
  border-top: 1px solid #dee2e6;
  background: #ffffff;
}
A
Abdullah Almsaeed 已提交
9900 9901

.content-header {
A
Abdullah Almsaeed 已提交
9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921
  padding: 15px 0.5rem;
}

.content-header h1 {
  font-size: 1.8rem;
  margin: 0;
}

.content-header .breadcrumb {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  line-height: 1.8rem;
}

.hold-transition .content-wrapper,
.hold-transition .main-header,
.hold-transition .main-footer {
  transition: none !important;
}
A
Abdullah Almsaeed 已提交
9922 9923 9924 9925 9926 9927

/*
 * Component: Main Header
 * ----------------------
 */
.main-header {
R
REJack 已提交
9928
  z-index: 900;
A
Abdullah Almsaeed 已提交
9929
}
A
Abdullah Almsaeed 已提交
9930

A
Abdullah Almsaeed 已提交
9931 9932 9933
.main-header .navbar-nav .nav-item {
  margin: 0;
}
A
Abdullah Almsaeed 已提交
9934

A
Abdullah Almsaeed 已提交
9935 9936 9937 9938
.main-header .nav-link {
  position: relative;
  height: 2.5rem;
}
9939

A
Abdullah Almsaeed 已提交
9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990
.main-header .navbar-nav[class*="-right"] .dropdown-menu {
  margin-top: -3px;
  right: 0;
  left: auto;
}

@media (max-width: 575.98px) {
  .main-header .navbar-nav[class*="-right"] .dropdown-menu {
    left: 0;
    right: auto;
  }
}

.navbar-img {
  height: 1.25rem;
  width: auto;
}

.navbar-badge {
  position: absolute;
  top: 9px;
  right: 5px;
  font-size: .6rem;
  font-weight: 300;
  padding: 2px 4px;
}

.btn-navbar {
  border-left-width: 0;
  background-color: transparent;
}

.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 已提交
9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005
.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);
}

.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 已提交
10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035
.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 {
  border: 0 !important;
  background-color: rgba(255, 255, 255, 0.6);
  color: #343a40;
}

.navbar-light .form-control-navbar,
.navbar-light .btn-navbar {
  background-color: #f2f4f6;
  border: 0;
}

R
REJack 已提交
10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050
.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);
}

.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 已提交
10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 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 10106 10107 10108
.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 {
  border: 0 !important;
  background-color: #e9ecef;
  color: #343a40;
}

.brand-link {
  padding: 0.8125rem 0.5rem;
  font-size: 1.25rem;
  display: block;
  line-height: 1.5;
  white-space: nowrap;
}

.brand-link:hover {
  color: #ffffff;
  text-decoration: none;
}

[class*="sidebar-dark"] .brand-link {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #4b545c;
}

[class*="sidebar-light"] .brand-link {
  color: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #dee2e6;
}

.brand-image {
  float: left;
  line-height: .8;
  max-height: 34px;
  width: auto;
  margin-left: .8rem;
  margin-right: .5rem;
  margin-top: -3px;
}

/**
A
Abdullah Almsaeed 已提交
10109 10110 10111
 * Component: Sidebar
 * ------------------
 */
A
Abdullah Almsaeed 已提交
10112
.main-sidebar {
R
REJack 已提交
10113
  z-index: 950;
A
Abdullah Almsaeed 已提交
10114 10115 10116 10117
  height: 100vh;
  overflow-y: hidden;
}

A
Abdullah Almsaeed 已提交
10118
.sidebar {
A
Abdullah Almsaeed 已提交
10119 10120 10121 10122 10123 10124 10125
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  overflow-y: auto;
  height: calc(100% - 4rem);
}
A
Abdullah Almsaeed 已提交
10126 10127

.user-panel {
A
Abdullah Almsaeed 已提交
10128 10129
  position: relative;
}
A
Abdullah Almsaeed 已提交
10130

A
Abdullah Almsaeed 已提交
10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151
[class*="sidebar-dark"] .user-panel {
  border-bottom: 1px solid #4f5962;
}

[class*="sidebar-light"] .user-panel {
  border-bottom: 1px solid #dee2e6;
}

.user-panel,
.user-panel .info {
  overflow: hidden;
  white-space: nowrap;
}

.user-panel .image {
  padding-left: 0.8rem;
  display: inline-block;
}

.user-panel img {
  width: 2.1rem;
A
Abdullah Almsaeed 已提交
10152
  height: auto;
A
Abdullah Almsaeed 已提交
10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169
}

.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 已提交
10170
  transition: -webkit-transform ease-in-out 0.3s;
A
Abdullah Almsaeed 已提交
10171
  transition: transform ease-in-out 0.3s;
R
REJack 已提交
10172
  transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
A
Abdullah Almsaeed 已提交
10173 10174
}

10175
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
10176 10177 10178 10179 10180
  .nav-sidebar .nav-item > .nav-link .right {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
10181 10182 10183 10184 10185
.nav-sidebar .nav-link > p > .right {
  position: absolute;
  right: 1rem;
  top: 12px;
}
A
Abdullah Almsaeed 已提交
10186

R
REJack 已提交
10187 10188 10189 10190
.nav-sidebar .nav-link > p > .right:nth-child(2) {
  right: 2.5rem;
}

A
Abdullah Almsaeed 已提交
10191
.nav-sidebar .menu-open > .nav-treeview {
A
Abdullah Almsaeed 已提交
10192 10193
  display: block;
}
A
Abdullah Almsaeed 已提交
10194

R
REJack 已提交
10195 10196
.nav-sidebar .menu-open > .nav-link i.right {
  -webkit-transform: rotate(-90deg);
A
Abdullah Almsaeed 已提交
10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210
  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;
}

R
REJack 已提交
10211 10212 10213 10214
.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 {
  font-size: 1.1rem;
}

A
Abdullah Almsaeed 已提交
10215 10216 10217
.nav-sidebar > .nav-item .float-right {
  margin-top: 3px;
}
A
Abdullah Almsaeed 已提交
10218 10219 10220 10221 10222

.nav-sidebar .nav-treeview {
  display: none;
  list-style: none;
  padding: 0;
A
Abdullah Almsaeed 已提交
10223 10224 10225 10226 10227
}

.nav-sidebar .nav-treeview > .nav-item > .nav-link > .nav-icon {
  width: 1.6rem;
}
10228

10229 10230
.nav-sidebar.nav-child-indent   .nav-treeview {
  padding-left: 1rem;
10231 10232
}

10233
.nav-sidebar .nav-header {
A
Abdullah Almsaeed 已提交
10234 10235 10236
  font-size: .9rem;
  padding: 0.5rem;
}
A
Abdullah Almsaeed 已提交
10237

A
Abdullah Almsaeed 已提交
10238 10239 10240
.nav-sidebar .nav-header:not(:first-of-type) {
  padding: 1.7rem 1rem .5rem 1rem;
}
A
Abdullah Almsaeed 已提交
10241

A
Abdullah Almsaeed 已提交
10242 10243 10244 10245
.nav-sidebar .nav-link p {
  display: inline-block;
  margin: 0;
}
A
Abdullah Almsaeed 已提交
10246

A
Abdullah Almsaeed 已提交
10247 10248 10249 10250 10251 10252 10253 10254
#sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.1);
R
REJack 已提交
10255
  z-index: 949;
A
Abdullah Almsaeed 已提交
10256
}
A
Abdullah Almsaeed 已提交
10257

A
Abdullah Almsaeed 已提交
10258 10259 10260 10261 10262
@media (max-width: 991.98px) {
  .sidebar-open #sidebar-overlay {
    display: block;
  }
}
10263

R
REJack 已提交
10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275
@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 已提交
10276 10277 10278
.sidebar-dark-primary {
  background-color: #343a40;
}
A
Abdullah Almsaeed 已提交
10279

A
Abdullah Almsaeed 已提交
10280 10281 10282
.sidebar-dark-primary .user-panel a:hover {
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
10283

A
Abdullah Almsaeed 已提交
10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302
.sidebar-dark-primary .user-panel .status {
  color: #C2C7D0;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-primary .user-panel .status:hover, .sidebar-dark-primary .user-panel .status:focus, .sidebar-dark-primary .user-panel .status:active {
  color: #ffffff;
  background: rgba(247, 247, 247, 0.1);
}

.sidebar-dark-primary .user-panel .dropdown-menu {
  border-color: rgba(242, 242, 242, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sidebar-dark-primary .user-panel .dropdown-item {
  color: #212529;
}

10303
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
10304 10305 10306 10307
  color: #C2C7D0;
}

.sidebar-dark-primary .nav-sidebar > .nav-item.menu-open > .nav-link,
10308 10309
.sidebar-dark-primary .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #007bff;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-primary .nav-header {
  color: #d0d4db;
  background: inherit;
}

.sidebar-dark-primary .sidebar a {
  color: #C2C7D0;
}

10332
.sidebar-dark-primary .sidebar a:hover, .sidebar-dark-primary .sidebar a:focus {
A
Abdullah Almsaeed 已提交
10333 10334 10335 10336 10337 10338 10339
  text-decoration: none;
}

.sidebar-dark-primary .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

10340
.sidebar-dark-primary .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-primary .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10341 10342 10343 10344
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

10345
.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 已提交
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 10409 10410 10411 10412 10413 10414 10415 10416 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
  color: #343a40;
  background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-light-primary {
  background-color: #ffffff;
}

.sidebar-light-primary .user-panel a:hover {
  color: #212529;
}

.sidebar-light-primary .user-panel .status {
  color: #343a40;
  background: #f4f4f5;
}

.sidebar-light-primary .user-panel .status:hover, .sidebar-light-primary .user-panel .status:focus, .sidebar-light-primary .user-panel .status:active {
  color: #212529;
  background: #ececed;
}

.sidebar-light-primary .user-panel .dropdown-menu {
  border-color: #e7e7e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #007bff;
}

.sidebar-light-primary .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-primary .nav-header {
  color: #292d32;
  background: inherit;
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.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 {
  color: #C2C7D0;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-secondary .user-panel .status:hover, .sidebar-dark-secondary .user-panel .status:focus, .sidebar-dark-secondary .user-panel .status:active {
  color: #ffffff;
  background: rgba(247, 247, 247, 0.1);
}

.sidebar-dark-secondary .user-panel .dropdown-menu {
  border-color: rgba(242, 242, 242, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sidebar-dark-secondary .user-panel .dropdown-item {
  color: #212529;
}

10449
.sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
10450 10451 10452 10453
  color: #C2C7D0;
}

.sidebar-dark-secondary .nav-sidebar > .nav-item.menu-open > .nav-link,
10454 10455
.sidebar-dark-secondary .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #6c757d;
}

.sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-secondary .nav-header {
  color: #d0d4db;
  background: inherit;
}

.sidebar-dark-secondary .sidebar a {
  color: #C2C7D0;
}

10478
.sidebar-dark-secondary .sidebar a:hover, .sidebar-dark-secondary .sidebar a:focus {
A
Abdullah Almsaeed 已提交
10479 10480 10481 10482 10483 10484 10485
  text-decoration: none;
}

.sidebar-dark-secondary .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

10486
.sidebar-dark-secondary .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-secondary .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10487 10488 10489 10490
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

10491
.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 已提交
10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 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
  color: #343a40;
  background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-light-secondary {
  background-color: #ffffff;
}

.sidebar-light-secondary .user-panel a:hover {
  color: #212529;
}

.sidebar-light-secondary .user-panel .status {
  color: #343a40;
  background: #f4f4f5;
}

.sidebar-light-secondary .user-panel .status:hover, .sidebar-light-secondary .user-panel .status:focus, .sidebar-light-secondary .user-panel .status:active {
  color: #212529;
  background: #ececed;
}

.sidebar-light-secondary .user-panel .dropdown-menu {
  border-color: #e7e7e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.sidebar-light-secondary .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #6c757d;
}

.sidebar-light-secondary .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-secondary .nav-header {
  color: #292d32;
  background: inherit;
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.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 {
  color: #C2C7D0;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-success .user-panel .status:hover, .sidebar-dark-success .user-panel .status:focus, .sidebar-dark-success .user-panel .status:active {
  color: #ffffff;
  background: rgba(247, 247, 247, 0.1);
}

.sidebar-dark-success .user-panel .dropdown-menu {
  border-color: rgba(242, 242, 242, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sidebar-dark-success .user-panel .dropdown-item {
  color: #212529;
}

10595
.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
10596 10597 10598 10599
  color: #C2C7D0;
}

.sidebar-dark-success .nav-sidebar > .nav-item.menu-open > .nav-link,
10600 10601
.sidebar-dark-success .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #28a745;
}

.sidebar-dark-success .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-success .nav-header {
  color: #d0d4db;
  background: inherit;
}

.sidebar-dark-success .sidebar a {
  color: #C2C7D0;
}

10624
.sidebar-dark-success .sidebar a:hover, .sidebar-dark-success .sidebar a:focus {
A
Abdullah Almsaeed 已提交
10625 10626 10627 10628 10629 10630 10631
  text-decoration: none;
}

.sidebar-dark-success .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

10632
.sidebar-dark-success .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-success .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10633 10634 10635 10636
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

10637
.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 已提交
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 10697 10698 10699 10700 10701 10702 10703 10704 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
  color: #343a40;
  background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-light-success {
  background-color: #ffffff;
}

.sidebar-light-success .user-panel a:hover {
  color: #212529;
}

.sidebar-light-success .user-panel .status {
  color: #343a40;
  background: #f4f4f5;
}

.sidebar-light-success .user-panel .status:hover, .sidebar-light-success .user-panel .status:focus, .sidebar-light-success .user-panel .status:active {
  color: #212529;
  background: #ececed;
}

.sidebar-light-success .user-panel .dropdown-menu {
  border-color: #e7e7e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.sidebar-light-success .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #28a745;
}

.sidebar-light-success .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-success .nav-header {
  color: #292d32;
  background: inherit;
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.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 {
  color: #C2C7D0;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-info .user-panel .status:hover, .sidebar-dark-info .user-panel .status:focus, .sidebar-dark-info .user-panel .status:active {
  color: #ffffff;
  background: rgba(247, 247, 247, 0.1);
}

.sidebar-dark-info .user-panel .dropdown-menu {
  border-color: rgba(242, 242, 242, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sidebar-dark-info .user-panel .dropdown-item {
  color: #212529;
}

10741
.sidebar-dark-info .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
10742 10743 10744 10745
  color: #C2C7D0;
}

.sidebar-dark-info .nav-sidebar > .nav-item.menu-open > .nav-link,
10746 10747
.sidebar-dark-info .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-info .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-info .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #17a2b8;
}

.sidebar-dark-info .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-info .nav-header {
  color: #d0d4db;
  background: inherit;
}

.sidebar-dark-info .sidebar a {
  color: #C2C7D0;
}

10770
.sidebar-dark-info .sidebar a:hover, .sidebar-dark-info .sidebar a:focus {
A
Abdullah Almsaeed 已提交
10771 10772 10773 10774 10775 10776 10777
  text-decoration: none;
}

.sidebar-dark-info .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

10778
.sidebar-dark-info .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-info .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10779 10780 10781 10782
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

10783
.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 已提交
10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 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
  color: #343a40;
  background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-light-info {
  background-color: #ffffff;
}

.sidebar-light-info .user-panel a:hover {
  color: #212529;
}

.sidebar-light-info .user-panel .status {
  color: #343a40;
  background: #f4f4f5;
}

.sidebar-light-info .user-panel .status:hover, .sidebar-light-info .user-panel .status:focus, .sidebar-light-info .user-panel .status:active {
  color: #212529;
  background: #ececed;
}

.sidebar-light-info .user-panel .dropdown-menu {
  border-color: #e7e7e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.sidebar-light-info .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #17a2b8;
}

.sidebar-light-info .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-info .nav-header {
  color: #292d32;
  background: inherit;
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.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 {
  color: #C2C7D0;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-warning .user-panel .status:hover, .sidebar-dark-warning .user-panel .status:focus, .sidebar-dark-warning .user-panel .status:active {
  color: #ffffff;
  background: rgba(247, 247, 247, 0.1);
}

.sidebar-dark-warning .user-panel .dropdown-menu {
  border-color: rgba(242, 242, 242, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sidebar-dark-warning .user-panel .dropdown-item {
  color: #212529;
}

10887
.sidebar-dark-warning .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
10888 10889 10890 10891
  color: #C2C7D0;
}

.sidebar-dark-warning .nav-sidebar > .nav-item.menu-open > .nav-link,
10892 10893
.sidebar-dark-warning .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-warning .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-warning .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #ffc107;
}

.sidebar-dark-warning .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-warning .nav-header {
  color: #d0d4db;
  background: inherit;
}

.sidebar-dark-warning .sidebar a {
  color: #C2C7D0;
}

10916
.sidebar-dark-warning .sidebar a:hover, .sidebar-dark-warning .sidebar a:focus {
A
Abdullah Almsaeed 已提交
10917 10918 10919 10920 10921 10922 10923
  text-decoration: none;
}

.sidebar-dark-warning .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

10924
.sidebar-dark-warning .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-warning .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
10925 10926 10927 10928
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

10929
.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 已提交
10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032
  color: #343a40;
  background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-light-warning {
  background-color: #ffffff;
}

.sidebar-light-warning .user-panel a:hover {
  color: #212529;
}

.sidebar-light-warning .user-panel .status {
  color: #343a40;
  background: #f4f4f5;
}

.sidebar-light-warning .user-panel .status:hover, .sidebar-light-warning .user-panel .status:focus, .sidebar-light-warning .user-panel .status:active {
  color: #212529;
  background: #ececed;
}

.sidebar-light-warning .user-panel .dropdown-menu {
  border-color: #e7e7e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.sidebar-light-warning .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #ffc107;
}

.sidebar-light-warning .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-warning .nav-header {
  color: #292d32;
  background: inherit;
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.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 {
  color: #C2C7D0;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-danger .user-panel .status:hover, .sidebar-dark-danger .user-panel .status:focus, .sidebar-dark-danger .user-panel .status:active {
  color: #ffffff;
  background: rgba(247, 247, 247, 0.1);
}

.sidebar-dark-danger .user-panel .dropdown-menu {
  border-color: rgba(242, 242, 242, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sidebar-dark-danger .user-panel .dropdown-item {
  color: #212529;
}

11033
.sidebar-dark-danger .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
11034 11035 11036 11037
  color: #C2C7D0;
}

.sidebar-dark-danger .nav-sidebar > .nav-item.menu-open > .nav-link,
11038 11039
.sidebar-dark-danger .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-danger .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-danger .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #dc3545;
}

.sidebar-dark-danger .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-danger .nav-header {
  color: #d0d4db;
  background: inherit;
}

.sidebar-dark-danger .sidebar a {
  color: #C2C7D0;
}

11062
.sidebar-dark-danger .sidebar a:hover, .sidebar-dark-danger .sidebar a:focus {
A
Abdullah Almsaeed 已提交
11063 11064 11065 11066 11067 11068 11069
  text-decoration: none;
}

.sidebar-dark-danger .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

11070
.sidebar-dark-danger .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-danger .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11071 11072 11073 11074
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

11075
.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 {
A
Abdullah Almsaeed 已提交
11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178
  color: #343a40;
  background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-light-danger {
  background-color: #ffffff;
}

.sidebar-light-danger .user-panel a:hover {
  color: #212529;
}

.sidebar-light-danger .user-panel .status {
  color: #343a40;
  background: #f4f4f5;
}

.sidebar-light-danger .user-panel .status:hover, .sidebar-light-danger .user-panel .status:focus, .sidebar-light-danger .user-panel .status:active {
  color: #212529;
  background: #ececed;
}

.sidebar-light-danger .user-panel .dropdown-menu {
  border-color: #e7e7e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.sidebar-light-danger .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #dc3545;
}

.sidebar-light-danger .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-danger .nav-header {
  color: #292d32;
  background: inherit;
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.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 {
  color: #C2C7D0;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-light .user-panel .status:hover, .sidebar-dark-light .user-panel .status:focus, .sidebar-dark-light .user-panel .status:active {
  color: #ffffff;
  background: rgba(247, 247, 247, 0.1);
}

.sidebar-dark-light .user-panel .dropdown-menu {
  border-color: rgba(242, 242, 242, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sidebar-dark-light .user-panel .dropdown-item {
  color: #212529;
}

11179
.sidebar-dark-light .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
11180 11181 11182 11183
  color: #C2C7D0;
}

.sidebar-dark-light .nav-sidebar > .nav-item.menu-open > .nav-link,
11184 11185
.sidebar-dark-light .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-light .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-light .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #f8f9fa;
}

.sidebar-dark-light .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-light .nav-header {
  color: #d0d4db;
  background: inherit;
}

.sidebar-dark-light .sidebar a {
  color: #C2C7D0;
}

11208
.sidebar-dark-light .sidebar a:hover, .sidebar-dark-light .sidebar a:focus {
A
Abdullah Almsaeed 已提交
11209 11210 11211 11212 11213 11214 11215
  text-decoration: none;
}

.sidebar-dark-light .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

11216
.sidebar-dark-light .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-light .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11217 11218 11219 11220
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

11221
.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 {
A
Abdullah Almsaeed 已提交
11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324
  color: #343a40;
  background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-light-light {
  background-color: #ffffff;
}

.sidebar-light-light .user-panel a:hover {
  color: #212529;
}

.sidebar-light-light .user-panel .status {
  color: #343a40;
  background: #f4f4f5;
}

.sidebar-light-light .user-panel .status:hover, .sidebar-light-light .user-panel .status:focus, .sidebar-light-light .user-panel .status:active {
  color: #212529;
  background: #ececed;
}

.sidebar-light-light .user-panel .dropdown-menu {
  border-color: #e7e7e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.sidebar-light-light .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #f8f9fa;
}

.sidebar-light-light .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-light .nav-header {
  color: #292d32;
  background: inherit;
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.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 {
  color: #C2C7D0;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-dark .user-panel .status:hover, .sidebar-dark-dark .user-panel .status:focus, .sidebar-dark-dark .user-panel .status:active {
  color: #ffffff;
  background: rgba(247, 247, 247, 0.1);
}

.sidebar-dark-dark .user-panel .dropdown-menu {
  border-color: rgba(242, 242, 242, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sidebar-dark-dark .user-panel .dropdown-item {
  color: #212529;
}

11325
.sidebar-dark-dark .nav-sidebar > .nav-item > .nav-link:active {
A
Abdullah Almsaeed 已提交
11326 11327 11328 11329
  color: #C2C7D0;
}

.sidebar-dark-dark .nav-sidebar > .nav-item.menu-open > .nav-link,
11330 11331
.sidebar-dark-dark .nav-sidebar > .nav-item:hover > .nav-link,
.sidebar-dark-dark .nav-sidebar > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-dark-dark .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #343a40;
}

.sidebar-dark-dark .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-dark-dark .nav-header {
  color: #d0d4db;
  background: inherit;
}

.sidebar-dark-dark .sidebar a {
  color: #C2C7D0;
}

11354
.sidebar-dark-dark .sidebar a:hover, .sidebar-dark-dark .sidebar a:focus {
A
Abdullah Almsaeed 已提交
11355 11356 11357 11358 11359 11360 11361
  text-decoration: none;
}

.sidebar-dark-dark .nav-treeview > .nav-item > .nav-link {
  color: #C2C7D0;
}

11362
.sidebar-dark-dark .nav-treeview > .nav-item > .nav-link:hover, .sidebar-dark-dark .nav-treeview > .nav-item > .nav-link:focus {
A
Abdullah Almsaeed 已提交
11363 11364 11365 11366
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

11367
.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 {
A
Abdullah Almsaeed 已提交
11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464
  color: #343a40;
  background-color: rgba(255, 255, 255, 0.9);
}

.sidebar-light-dark {
  background-color: #ffffff;
}

.sidebar-light-dark .user-panel a:hover {
  color: #212529;
}

.sidebar-light-dark .user-panel .status {
  color: #343a40;
  background: #f4f4f5;
}

.sidebar-light-dark .user-panel .status:hover, .sidebar-light-dark .user-panel .status:focus, .sidebar-light-dark .user-panel .status:active {
  color: #212529;
  background: #ececed;
}

.sidebar-light-dark .user-panel .dropdown-menu {
  border-color: #e7e7e8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.sidebar-light-dark .nav-sidebar > .nav-item > .nav-link.active {
  color: #ffffff;
  background-color: #343a40;
}

.sidebar-light-dark .nav-sidebar > .nav-item > .nav-treeview {
  background: transparent;
}

.sidebar-light-dark .nav-header {
  color: #292d32;
  background: inherit;
}

.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 {
  color: #212529;
  background-color: #f4f4f5;
}

.sidebar-light-dark .nav-treeview > .nav-item > .nav-link:hover {
  background-color: #f4f4f5;
}

/*
 * Component: Sidebar Mini
 */
@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;
  }
11465 11466 11467
  .sidebar-mini.sidebar-collapse .nav-sidebar .nav-link p {
    width: 0;
  }
A
Abdullah Almsaeed 已提交
11468 11469 11470
  .sidebar-mini.sidebar-collapse .sidebar .user-panel > .info,
  .sidebar-mini.sidebar-collapse .nav-sidebar .nav-link p,
  .sidebar-mini.sidebar-collapse .brand-text {
11471
    visibility: hidden;
A
Abdullah Almsaeed 已提交
11472 11473 11474
    opacity: 0;
    margin-left: -10px;
  }
R
REJack 已提交
11475 11476 11477
  .sidebar-mini.sidebar-collapse .main-sidebar {
    overflow-x: hidden;
  }
A
Abdullah Almsaeed 已提交
11478 11479 11480 11481 11482 11483 11484
  .sidebar-mini.sidebar-collapse .main-sidebar, .sidebar-mini.sidebar-collapse .main-sidebar:before {
    margin-left: 0;
    width: 4.6rem;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar .user-panel .image {
    float: none;
  }
11485
  .sidebar-mini.sidebar-collapse .main-sidebar:hover, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused {
A
Abdullah Almsaeed 已提交
11486 11487
    width: 250px;
  }
11488
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel {
A
Abdullah Almsaeed 已提交
11489 11490
    text-align: left;
  }
11491
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel .image, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel .image {
A
Abdullah Almsaeed 已提交
11492 11493 11494 11495
    float: left;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel > .info,
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .nav-sidebar .nav-link p,
11496 11497 11498
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .brand-text, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info,
  .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar .nav-link p,
  .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .brand-text {
11499
    visibility: visible;
A
Abdullah Almsaeed 已提交
11500 11501 11502 11503
    opacity: 1;
    margin-left: 0;
    display: inline-block;
  }
11504
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .brand-image, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .brand-image {
A
Abdullah Almsaeed 已提交
11505 11506 11507
    margin-right: .5rem;
  }
  .sidebar-mini.sidebar-collapse .main-sidebar:hover .sidebar-form,
11508 11509
  .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 已提交
11510 11511 11512
    display: block !important;
    -webkit-transform: translateZ(0);
  }
11513
  .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 已提交
11514 11515 11516 11517 11518 11519 11520
    display: inline-block !important;
  }
  .sidebar-mini.sidebar-collapse .visible-sidebar-mini {
    display: block !important;
  }
}

R
REJack 已提交
11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544
@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 {
11545
    visibility: hidden;
R
REJack 已提交
11546 11547 11548
    opacity: 0;
    margin-left: -10px;
  }
R
REJack 已提交
11549 11550 11551
  .sidebar-mini-md.sidebar-collapse .main-sidebar {
    overflow-x: hidden;
  }
R
REJack 已提交
11552 11553 11554 11555 11556 11557 11558
  .sidebar-mini-md.sidebar-collapse .main-sidebar, .sidebar-mini-md.sidebar-collapse .main-sidebar:before {
    margin-left: 0;
    width: 4.6rem;
  }
  .sidebar-mini-md.sidebar-collapse .main-sidebar .user-panel .image {
    float: none;
  }
11559
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused {
R
REJack 已提交
11560 11561
    width: 250px;
  }
11562
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .user-panel, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel {
R
REJack 已提交
11563 11564
    text-align: left;
  }
11565
  .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 已提交
11566 11567 11568 11569
    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,
11570 11571 11572
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .brand-text, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info,
  .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar .nav-link p,
  .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .brand-text {
11573
    visibility: visible;
R
REJack 已提交
11574 11575 11576 11577
    opacity: 1;
    margin-left: 0;
    display: inline-block;
  }
11578
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .brand-image, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .brand-image {
R
REJack 已提交
11579 11580 11581
    margin-right: .5rem;
  }
  .sidebar-mini-md.sidebar-collapse .main-sidebar:hover .sidebar-form,
11582 11583
  .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 已提交
11584 11585 11586
    display: block !important;
    -webkit-transform: translateZ(0);
  }
11587
  .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 已提交
11588 11589 11590 11591 11592 11593 11594
    display: inline-block !important;
  }
  .sidebar-mini-md.sidebar-collapse .visible-sidebar-mini {
    display: block !important;
  }
}

A
Abdullah Almsaeed 已提交
11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618
.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 {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -7px;
}
A
Abdullah Almsaeed 已提交
11619

A
Abdullah Almsaeed 已提交
11620 11621 11622
.sidebar .nav-link p,
.main-sidebar .brand-text,
.sidebar .user-panel .info {
11623
  transition: margin-left 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
A
Abdullah Almsaeed 已提交
11624
}
11625

11626
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
11627 11628 11629 11630 11631 11632 11633
  .sidebar .nav-link p,
  .main-sidebar .brand-text,
  .sidebar .user-panel .info {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
11634 11635 11636 11637 11638
/*
 * Component: Control sidebar. By default, this is the right sidebar.
 */
.control-sidebar {
  position: absolute;
A
Abdullah Almsaeed 已提交
11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649
  top: 2.5rem;
  z-index: 830;
}

.control-sidebar, .control-sidebar:before {
  width: 250px;
  right: -250px;
  bottom: 0;
  transition: right 0.3s ease-in-out;
}

11650
@media (prefers-reduced-motion: reduce) {
A
Abdullah Almsaeed 已提交
11651 11652 11653 11654 11655
  .control-sidebar, .control-sidebar:before {
    transition: none;
  }
}

A
Abdullah Almsaeed 已提交
11656 11657 11658 11659 11660 11661 11662
.control-sidebar:before {
  top: 0;
  display: block;
  position: fixed;
  content: " ";
  z-index: -1;
}
A
Abdullah Almsaeed 已提交
11663

A
Abdullah Almsaeed 已提交
11664 11665
@media (min-width: 768px) {
  .control-sidebar-open .control-sidebar, .control-sidebar-open .control-sidebar:before {
A
Abdullah Almsaeed 已提交
11666 11667
    right: 0;
  }
A
Abdullah Almsaeed 已提交
11668 11669
  .control-sidebar-open .content-wrapper,
  .control-sidebar-open .main-footer {
A
Abdullah Almsaeed 已提交
11670 11671 11672
    margin-right: 250px;
  }
}
A
Abdullah Almsaeed 已提交
11673

A
Abdullah Almsaeed 已提交
11674
@media (max-width: 991.98px) {
A
Abdullah Almsaeed 已提交
11675
  .control-sidebar-open .control-sidebar, .control-sidebar-open .control-sidebar:before {
A
Abdullah Almsaeed 已提交
11676 11677 11678
    right: 0;
  }
}
A
Abdullah Almsaeed 已提交
11679

11680
.control-sidebar-slide-open .control-sidebar, .control-sidebar-slide-open .control-sidebar:before {
A
Abdullah Almsaeed 已提交
11681 11682
  right: 0;
}
A
Abdullah Almsaeed 已提交
11683

11684 11685 11686
.control-sidebar-dark,
.control-sidebar-dark a,
.control-sidebar-dark .nav-link {
A
Abdullah Almsaeed 已提交
11687 11688
  color: #C2C7D0;
}
A
Abdullah Almsaeed 已提交
11689

11690
.control-sidebar-dark, .control-sidebar-dark:before {
A
Abdullah Almsaeed 已提交
11691 11692
  background: #343a40;
}
A
Abdullah Almsaeed 已提交
11693

11694
.control-sidebar-dark a:hover {
A
Abdullah Almsaeed 已提交
11695 11696
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
11697

11698 11699 11700 11701 11702 11703 11704
.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 已提交
11705 11706
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
11707

11708 11709
.control-sidebar-dark .nav-tabs {
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 5px;
}

.control-sidebar-dark .nav-tabs .nav-item {
  margin: 0;
}

.control-sidebar-dark .nav-tabs .nav-link {
  position: relative;
  border-radius: 0;
  text-align: center;
  padding: 10px 20px;
}

.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-left-color: transparent;
  border-bottom-color: transparent;
  border-top-color: transparent;
  color: #ffffff;
}

.control-sidebar-dark .nav-tabs .nav-link.active {
  background-color: #343a40;
}
A
Abdullah Almsaeed 已提交
11739

11740
.control-sidebar-dark .tab-pane {
A
Abdullah Almsaeed 已提交
11741 11742
  padding: 10px 15px;
}
A
Abdullah Almsaeed 已提交
11743 11744

.control-sidebar-light {
A
Abdullah Almsaeed 已提交
11745 11746 11747 11748 11749 11750 11751
  color: #4b545c;
}

.control-sidebar-light, .control-sidebar-light:before {
  background: #ffffff;
  border-left: 1px solid #adb5bd;
}
A
Abdullah Almsaeed 已提交
11752

11753 11754 11755 11756 11757 11758
/*
 * Component: Dropdown menus
 * -------------------------
 */
.dropdown-item-title {
  font-size: 1rem;
A
Abdullah Almsaeed 已提交
11759 11760
  margin: 0;
}
A
Abdullah Almsaeed 已提交
11761

11762 11763 11764
.dropdown-menu-lg {
  min-width: 280px;
  max-width: 300px;
A
Abdullah Almsaeed 已提交
11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779
  padding: 0;
}

.dropdown-menu-lg .dropdown-divider {
  margin: 0;
}

.dropdown-menu-lg .dropdown-item {
  padding: 0.5rem 1rem;
}

.dropdown-menu-lg p {
  white-space: normal;
  margin: 0;
}
A
Abdullah Almsaeed 已提交
11780

11781 11782
.dropdown-footer,
.dropdown-header {
A
Abdullah Almsaeed 已提交
11783 11784
  text-align: center;
  display: block;
A
Abdullah Almsaeed 已提交
11785 11786 11787
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
11788

A
Abdullah Almsaeed 已提交
11789 11790 11791
/* 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 已提交
11792
  -webkit-backface-visibility: visible !important;
A
Abdullah Almsaeed 已提交
11793
  backface-visibility: visible !important;
R
REJack 已提交
11794
  -webkit-animation: flipInX 0.7s both;
A
Abdullah Almsaeed 已提交
11795 11796
  animation: flipInX 0.7s both;
}
A
Abdullah Almsaeed 已提交
11797 11798 11799

@keyframes flipInX {
  0% {
R
REJack 已提交
11800
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
A
Abdullah Almsaeed 已提交
11801 11802
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transition-timing-function: ease-in;
A
Abdullah Almsaeed 已提交
11803 11804
    opacity: 0;
  }
A
Abdullah Almsaeed 已提交
11805
  40% {
R
REJack 已提交
11806
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
A
Abdullah Almsaeed 已提交
11807
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
A
Abdullah Almsaeed 已提交
11808 11809
    transition-timing-function: ease-in;
  }
A
Abdullah Almsaeed 已提交
11810
  60% {
R
REJack 已提交
11811
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
A
Abdullah Almsaeed 已提交
11812
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
A
Abdullah Almsaeed 已提交
11813 11814
    opacity: 1;
  }
A
Abdullah Almsaeed 已提交
11815
  80% {
R
REJack 已提交
11816
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
A
Abdullah Almsaeed 已提交
11817 11818
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
A
Abdullah Almsaeed 已提交
11819
  100% {
R
REJack 已提交
11820
    -webkit-transform: perspective(400px);
A
Abdullah Almsaeed 已提交
11821 11822 11823
    transform: perspective(400px);
  }
}
A
Abdullah Almsaeed 已提交
11824 11825 11826 11827 11828

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
A
Abdullah Almsaeed 已提交
11829 11830
    opacity: 0;
  }
A
Abdullah Almsaeed 已提交
11831 11832
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
A
Abdullah Almsaeed 已提交
11833 11834
    -webkit-transition-timing-function: ease-in;
  }
A
Abdullah Almsaeed 已提交
11835 11836
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
A
Abdullah Almsaeed 已提交
11837 11838
    opacity: 1;
  }
A
Abdullah Almsaeed 已提交
11839
  80% {
A
Abdullah Almsaeed 已提交
11840 11841
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
A
Abdullah Almsaeed 已提交
11842
  100% {
A
Abdullah Almsaeed 已提交
11843 11844 11845
    -webkit-transform: perspective(400px);
  }
}
A
Abdullah Almsaeed 已提交
11846 11847 11848

/* Fix dropdown menu in navbars */
.navbar-custom-menu > .navbar-nav > li {
A
Abdullah Almsaeed 已提交
11849 11850
  position: relative;
}
A
Abdullah Almsaeed 已提交
11851

A
Abdullah Almsaeed 已提交
11852 11853 11854 11855 11856 11857 11858
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
}

@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
11859
  .navbar-custom-menu > .navbar-nav {
A
Abdullah Almsaeed 已提交
11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872
    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 已提交
11873

R
REJack 已提交
11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980
/* 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 已提交
11981 11982 11983 11984
/*
 * Component: Form
 * ---------------
 */
11985
.form-group.has-icon {
A
Abdullah Almsaeed 已提交
11986 11987 11988 11989 11990 11991
  position: relative;
}

.form-group.has-icon .form-control {
  padding-right: 35px;
}
11992

A
Abdullah Almsaeed 已提交
11993 11994 11995 11996 11997 11998 11999 12000 12001 12002
.form-group.has-icon .form-icon {
  cursor: pointer;
  position: absolute;
  right: 3px;
  top: 0;
  padding: 0.375rem 0.75rem;
  border: 0;
  background-color: transparent;
  font-size: 1rem;
}
A
Abdullah Almsaeed 已提交
12003 12004 12005

/* button groups */
.btn-group-vertical .btn.btn-flat:first-of-type, .btn-group-vertical .btn.btn-flat:last-of-type {
A
Abdullah Almsaeed 已提交
12006 12007
  border-radius: 0;
}
A
Abdullah Almsaeed 已提交
12008

A
Abdullah Almsaeed 已提交
12009
/* Support Font Awesome icons in form-control */
R
REJack 已提交
12010
.form-control-feedback.fa, .form-control-feedback.fas, .form-control-feedback.far, .form-control-feedback.fab {
A
Abdullah Almsaeed 已提交
12011 12012
  line-height: calc(2.25rem + 2px);
}
A
Abdullah Almsaeed 已提交
12013 12014 12015

.input-lg + .form-control-feedback.fa,
.input-group-lg + .form-control-feedback.fa,
R
REJack 已提交
12016 12017 12018 12019 12020 12021 12022 12023 12024 12025
.form-group-lg .form-control + .form-control-feedback.fa,
.input-lg + .form-control-feedback.fas,
.input-group-lg + .form-control-feedback.fas,
.form-group-lg .form-control + .form-control-feedback.fas,
.input-lg + .form-control-feedback.far,
.input-group-lg + .form-control-feedback.far,
.form-group-lg .form-control + .form-control-feedback.far,
.input-lg + .form-control-feedback.fab,
.input-group-lg + .form-control-feedback.fab,
.form-group-lg .form-control + .form-control-feedback.fab {
A
Abdullah Almsaeed 已提交
12026 12027
  line-height: calc(2.875rem + 2px);
}
A
Abdullah Almsaeed 已提交
12028 12029 12030

.input-sm + .form-control-feedback.fa,
.input-group-sm + .form-control-feedback.fa,
R
REJack 已提交
12031 12032 12033 12034 12035 12036 12037 12038 12039 12040
.form-group-sm .form-control + .form-control-feedback.fa,
.input-sm + .form-control-feedback.fas,
.input-group-sm + .form-control-feedback.fas,
.form-group-sm .form-control + .form-control-feedback.fas,
.input-sm + .form-control-feedback.far,
.input-group-sm + .form-control-feedback.far,
.form-group-sm .form-control + .form-control-feedback.far,
.input-sm + .form-control-feedback.fab,
.input-group-sm + .form-control-feedback.fab,
.form-group-sm .form-control + .form-control-feedback.fab {
A
Abdullah Almsaeed 已提交
12041 12042 12043 12044 12045 12046
  line-height: calc(1.8125rem + 2px);
}

label:not(.form-check-label):not(.custom-file-label) {
  font-weight: 700;
}
A
Abdullah Almsaeed 已提交
12047

R
REJack 已提交
12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132
.warning-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #ffc107;
}

.warning-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1F2D3D;
  background-color: rgba(255, 193, 7, 0.9);
  border-radius: 0.25rem;
}

.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 {
  border-color: #ffce3a;
R
REJack 已提交
12133
  background-color: #ffce3a;
R
REJack 已提交
12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157
}

.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 已提交
12158
.custom-switch.custom-switch-off-primary .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12159
  background: #007bff;
R
REJack 已提交
12160
  border-color: #004a99;
R
REJack 已提交
12161 12162 12163
}

.custom-switch.custom-switch-off-primary .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12164
  background: #003e80;
R
REJack 已提交
12165 12166 12167
}

.custom-switch.custom-switch-on-primary .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12168
  background: #007bff;
R
REJack 已提交
12169
  border-color: #004a99;
R
REJack 已提交
12170 12171 12172
}

.custom-switch.custom-switch-on-primary .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12173
  background: #99caff;
R
REJack 已提交
12174 12175 12176
}

.custom-switch.custom-switch-off-secondary .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12177
  background: #6c757d;
R
REJack 已提交
12178
  border-color: #3d4246;
R
REJack 已提交
12179 12180 12181
}

.custom-switch.custom-switch-off-secondary .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12182
  background: #313539;
R
REJack 已提交
12183 12184 12185
}

.custom-switch.custom-switch-on-secondary .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12186
  background: #6c757d;
R
REJack 已提交
12187
  border-color: #3d4246;
R
REJack 已提交
12188 12189 12190
}

.custom-switch.custom-switch-on-secondary .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12191
  background: #bcc1c6;
R
REJack 已提交
12192 12193 12194
}

.custom-switch.custom-switch-off-success .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12195
  background: #28a745;
R
REJack 已提交
12196
  border-color: #145523;
R
REJack 已提交
12197 12198 12199
}

.custom-switch.custom-switch-off-success .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12200
  background: #0f401b;
R
REJack 已提交
12201 12202 12203
}

.custom-switch.custom-switch-on-success .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12204
  background: #28a745;
R
REJack 已提交
12205
  border-color: #145523;
R
REJack 已提交
12206 12207 12208
}

.custom-switch.custom-switch-on-success .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12209
  background: #86e29b;
R
REJack 已提交
12210 12211 12212
}

.custom-switch.custom-switch-off-info .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12213
  background: #17a2b8;
R
REJack 已提交
12214
  border-color: #0c525d;
R
REJack 已提交
12215 12216 12217
}

.custom-switch.custom-switch-off-info .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12218
  background: #093e47;
R
REJack 已提交
12219 12220 12221
}

.custom-switch.custom-switch-on-info .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12222
  background: #17a2b8;
R
REJack 已提交
12223
  border-color: #0c525d;
R
REJack 已提交
12224 12225 12226
}

.custom-switch.custom-switch-on-info .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12227
  background: #7adeee;
R
REJack 已提交
12228 12229 12230
}

.custom-switch.custom-switch-off-warning .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12231
  background: #ffc107;
R
REJack 已提交
12232
  border-color: #a07800;
R
REJack 已提交
12233 12234 12235
}

.custom-switch.custom-switch-off-warning .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12236
  background: #876500;
R
REJack 已提交
12237 12238 12239
}

.custom-switch.custom-switch-on-warning .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12240
  background: #ffc107;
R
REJack 已提交
12241
  border-color: #a07800;
R
REJack 已提交
12242 12243 12244
}

.custom-switch.custom-switch-on-warning .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12245
  background: #ffe7a0;
R
REJack 已提交
12246 12247 12248
}

.custom-switch.custom-switch-off-danger .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12249
  background: #dc3545;
R
REJack 已提交
12250
  border-color: #921925;
R
REJack 已提交
12251 12252 12253
}

.custom-switch.custom-switch-off-danger .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12254
  background: #7c151f;
R
REJack 已提交
12255 12256 12257
}

.custom-switch.custom-switch-on-danger .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12258
  background: #dc3545;
R
REJack 已提交
12259
  border-color: #921925;
R
REJack 已提交
12260 12261 12262
}

.custom-switch.custom-switch-on-danger .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12263
  background: #f3b7bd;
R
REJack 已提交
12264 12265 12266
}

.custom-switch.custom-switch-off-light .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12267
  background: #f8f9fa;
R
REJack 已提交
12268
  border-color: #bdc6d0;
R
REJack 已提交
12269 12270 12271
}

.custom-switch.custom-switch-off-light .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12272
  background: #aeb9c5;
R
REJack 已提交
12273 12274 12275
}

.custom-switch.custom-switch-on-light .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12276
  background: #f8f9fa;
R
REJack 已提交
12277
  border-color: #bdc6d0;
R
REJack 已提交
12278 12279 12280
}

.custom-switch.custom-switch-on-light .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12281
  background: white;
R
REJack 已提交
12282 12283 12284
}

.custom-switch.custom-switch-off-dark .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12285
  background: #343a40;
R
REJack 已提交
12286
  border-color: #060708;
R
REJack 已提交
12287 12288 12289
}

.custom-switch.custom-switch-off-dark .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12290
  background: black;
R
REJack 已提交
12291 12292 12293
}

.custom-switch.custom-switch-on-dark .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12294
  background: #343a40;
R
REJack 已提交
12295
  border-color: #060708;
R
REJack 已提交
12296 12297 12298
}

.custom-switch.custom-switch-on-dark .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12299
  background: #7a8793;
R
REJack 已提交
12300 12301 12302
}

.custom-switch.custom-switch-off-blue .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12303
  background: #007bff;
R
REJack 已提交
12304
  border-color: #004a99;
R
REJack 已提交
12305 12306 12307
}

.custom-switch.custom-switch-off-blue .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12308
  background: #003e80;
R
REJack 已提交
12309 12310 12311
}

.custom-switch.custom-switch-on-blue .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12312
  background: #007bff;
R
REJack 已提交
12313
  border-color: #004a99;
R
REJack 已提交
12314 12315 12316
}

.custom-switch.custom-switch-on-blue .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12317
  background: #99caff;
R
REJack 已提交
12318 12319 12320
}

.custom-switch.custom-switch-off-indigo .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12321
  background: #6610f2;
R
REJack 已提交
12322
  border-color: #3d0894;
R
REJack 已提交
12323 12324 12325
}

.custom-switch.custom-switch-off-indigo .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12326
  background: #33077c;
R
REJack 已提交
12327 12328 12329
}

.custom-switch.custom-switch-on-indigo .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12330
  background: #6610f2;
R
REJack 已提交
12331
  border-color: #3d0894;
R
REJack 已提交
12332 12333 12334
}

.custom-switch.custom-switch-on-indigo .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12335
  background: #c3a1fa;
R
REJack 已提交
12336 12337 12338
}

.custom-switch.custom-switch-off-purple .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12339
  background: #6f42c1;
R
REJack 已提交
12340
  border-color: #432776;
R
REJack 已提交
12341 12342 12343
}

.custom-switch.custom-switch-off-purple .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12344
  background: #382063;
R
REJack 已提交
12345 12346 12347
}

.custom-switch.custom-switch-on-purple .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12348
  background: #6f42c1;
R
REJack 已提交
12349
  border-color: #432776;
R
REJack 已提交
12350 12351 12352
}

.custom-switch.custom-switch-on-purple .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12353
  background: #c7b5e7;
R
REJack 已提交
12354 12355 12356
}

.custom-switch.custom-switch-off-pink .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12357
  background: #e83e8c;
R
REJack 已提交
12358
  border-color: #ac145a;
R
REJack 已提交
12359 12360 12361
}

.custom-switch.custom-switch-off-pink .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12362
  background: #95124e;
R
REJack 已提交
12363 12364 12365
}

.custom-switch.custom-switch-on-pink .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12366
  background: #e83e8c;
R
REJack 已提交
12367
  border-color: #ac145a;
R
REJack 已提交
12368 12369 12370
}

.custom-switch.custom-switch-on-pink .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12371
  background: #f8c7dd;
R
REJack 已提交
12372 12373 12374
}

.custom-switch.custom-switch-off-red .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12375
  background: #dc3545;
R
REJack 已提交
12376
  border-color: #921925;
R
REJack 已提交
12377 12378 12379
}

.custom-switch.custom-switch-off-red .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12380
  background: #7c151f;
R
REJack 已提交
12381 12382 12383
}

.custom-switch.custom-switch-on-red .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12384
  background: #dc3545;
R
REJack 已提交
12385
  border-color: #921925;
R
REJack 已提交
12386 12387 12388
}

.custom-switch.custom-switch-on-red .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12389
  background: #f3b7bd;
R
REJack 已提交
12390 12391 12392
}

.custom-switch.custom-switch-off-orange .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12393
  background: #fd7e14;
R
REJack 已提交
12394
  border-color: #aa4e01;
R
REJack 已提交
12395 12396 12397
}

.custom-switch.custom-switch-off-orange .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12398
  background: #904201;
R
REJack 已提交
12399 12400 12401
}

.custom-switch.custom-switch-on-orange .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12402
  background: #fd7e14;
R
REJack 已提交
12403
  border-color: #aa4e01;
R
REJack 已提交
12404 12405 12406
}

.custom-switch.custom-switch-on-orange .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12407
  background: #fed1ac;
R
REJack 已提交
12408 12409 12410
}

.custom-switch.custom-switch-off-yellow .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12411
  background: #ffc107;
R
REJack 已提交
12412
  border-color: #a07800;
R
REJack 已提交
12413 12414 12415
}

.custom-switch.custom-switch-off-yellow .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12416
  background: #876500;
R
REJack 已提交
12417 12418 12419
}

.custom-switch.custom-switch-on-yellow .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12420
  background: #ffc107;
R
REJack 已提交
12421
  border-color: #a07800;
R
REJack 已提交
12422 12423 12424
}

.custom-switch.custom-switch-on-yellow .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12425
  background: #ffe7a0;
R
REJack 已提交
12426 12427 12428
}

.custom-switch.custom-switch-off-green .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12429
  background: #28a745;
R
REJack 已提交
12430
  border-color: #145523;
R
REJack 已提交
12431 12432 12433
}

.custom-switch.custom-switch-off-green .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12434
  background: #0f401b;
R
REJack 已提交
12435 12436 12437
}

.custom-switch.custom-switch-on-green .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12438
  background: #28a745;
R
REJack 已提交
12439
  border-color: #145523;
R
REJack 已提交
12440 12441 12442
}

.custom-switch.custom-switch-on-green .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12443
  background: #86e29b;
R
REJack 已提交
12444 12445 12446
}

.custom-switch.custom-switch-off-teal .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12447
  background: #20c997;
R
REJack 已提交
12448
  border-color: #127155;
R
REJack 已提交
12449 12450 12451
}

.custom-switch.custom-switch-off-teal .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12452
  background: #0e5b44;
R
REJack 已提交
12453 12454 12455
}

.custom-switch.custom-switch-on-teal .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12456
  background: #20c997;
R
REJack 已提交
12457
  border-color: #127155;
R
REJack 已提交
12458 12459 12460
}

.custom-switch.custom-switch-on-teal .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12461
  background: #94eed3;
R
REJack 已提交
12462 12463 12464
}

.custom-switch.custom-switch-off-cyan .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12465
  background: #17a2b8;
R
REJack 已提交
12466
  border-color: #0c525d;
R
REJack 已提交
12467 12468 12469
}

.custom-switch.custom-switch-off-cyan .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12470
  background: #093e47;
R
REJack 已提交
12471 12472 12473
}

.custom-switch.custom-switch-on-cyan .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12474
  background: #17a2b8;
R
REJack 已提交
12475
  border-color: #0c525d;
R
REJack 已提交
12476 12477 12478
}

.custom-switch.custom-switch-on-cyan .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12479
  background: #7adeee;
R
REJack 已提交
12480 12481 12482
}

.custom-switch.custom-switch-off-white .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12483
  background: #ffffff;
R
REJack 已提交
12484
  border-color: #cccccc;
R
REJack 已提交
12485 12486 12487
}

.custom-switch.custom-switch-off-white .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12488
  background: #bfbfbf;
R
REJack 已提交
12489 12490 12491
}

.custom-switch.custom-switch-on-white .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12492
  background: #ffffff;
R
REJack 已提交
12493
  border-color: #cccccc;
R
REJack 已提交
12494 12495 12496
}

.custom-switch.custom-switch-on-white .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12497
  background: white;
R
REJack 已提交
12498 12499 12500
}

.custom-switch.custom-switch-off-gray .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12501
  background: #6c757d;
R
REJack 已提交
12502
  border-color: #3d4246;
R
REJack 已提交
12503 12504 12505
}

.custom-switch.custom-switch-off-gray .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12506
  background: #313539;
R
REJack 已提交
12507 12508 12509
}

.custom-switch.custom-switch-on-gray .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12510
  background: #6c757d;
R
REJack 已提交
12511
  border-color: #3d4246;
R
REJack 已提交
12512 12513 12514
}

.custom-switch.custom-switch-on-gray .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12515
  background: #bcc1c6;
R
REJack 已提交
12516 12517 12518
}

.custom-switch.custom-switch-off-gray-dark .custom-control-input ~ .custom-control-label::before {
R
REJack 已提交
12519
  background: #343a40;
R
REJack 已提交
12520
  border-color: #060708;
R
REJack 已提交
12521 12522 12523
}

.custom-switch.custom-switch-off-gray-dark .custom-control-input ~ .custom-control-label::after {
R
REJack 已提交
12524
  background: black;
R
REJack 已提交
12525 12526 12527
}

.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked ~ .custom-control-label::before {
R
REJack 已提交
12528
  background: #343a40;
R
REJack 已提交
12529
  border-color: #060708;
R
REJack 已提交
12530 12531 12532
}

.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked ~ .custom-control-label::after {
R
REJack 已提交
12533
  background: #7a8793;
R
REJack 已提交
12534 12535
}

R
REJack 已提交
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
.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 已提交
13040 13041 13042 13043
/*
 * Component: Progress Bar
 * -----------------------
 */
A
Abdullah Almsaeed 已提交
13044
.progress {
A
Abdullah Almsaeed 已提交
13045 13046 13047
  box-shadow: none;
  border-radius: 1px;
}
A
Abdullah Almsaeed 已提交
13048 13049

.progress-sm {
A
Abdullah Almsaeed 已提交
13050 13051
  height: 10px;
}
A
Abdullah Almsaeed 已提交
13052 13053

.progress-xs {
A
Abdullah Almsaeed 已提交
13054 13055
  height: 7px;
}
A
Abdullah Almsaeed 已提交
13056 13057

.progress-xxs {
A
Abdullah Almsaeed 已提交
13058 13059
  height: 3px;
}
A
Abdullah Almsaeed 已提交
13060 13061 13062 13063 13064 13065

.progress.vertical {
  position: relative;
  width: 30px;
  height: 200px;
  display: inline-block;
A
Abdullah Almsaeed 已提交
13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085
  margin-right: 10px;
}

.progress.vertical > .progress-bar {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.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 已提交
13086 13087

.table tr > td .progress {
A
Abdullah Almsaeed 已提交
13088 13089
  margin: 0;
}
A
Abdullah Almsaeed 已提交
13090 13091 13092 13093 13094 13095

/*
 * Component: Small Box
 * --------------------
 */
.small-box {
A
Abdullah Almsaeed 已提交
13096 13097
  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 已提交
13098 13099 13100
  position: relative;
  display: block;
  margin-bottom: 20px;
A
Abdullah Almsaeed 已提交
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
}

.small-box > .inner {
  padding: 10px;
}

.small-box > .small-box-footer {
  position: relative;
  text-align: center;
  padding: 3px 0;
  color: #ffffff;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  z-index: 10;
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.small-box > .small-box-footer:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.15);
}

.small-box h3 {
  font-size: 38px;
  font-weight: bold;
  margin: 0 0 10px 0;
  white-space: nowrap;
  padding: 0;
}

.small-box p {
  font-size: 15px;
}

.small-box p > small {
  display: block;
  color: #f9f9f9;
  font-size: 13px;
  margin-top: 5px;
}

.small-box h3, .small-box p {
  z-index: 5;
}

.small-box .icon {
R
REJack 已提交
13148 13149 13150 13151 13152
  z-index: 0;
  color: rgba(0, 0, 0, 0.15);
}

.small-box .icon > i {
A
Abdullah Almsaeed 已提交
13153 13154
  transition: all 0.3s linear;
  position: absolute;
R
REJack 已提交
13155 13156
  top: 15px;
  right: 15px;
A
Abdullah Almsaeed 已提交
13157
  font-size: 90px;
R
REJack 已提交
13158 13159 13160 13161 13162
}

.small-box .icon > i.fa, .small-box .icon > i.fas, .small-box .icon > i.far, .small-box .icon > i.fab {
  font-size: 70px;
  top: 20px;
A
Abdullah Almsaeed 已提交
13163 13164 13165 13166 13167 13168
}

.small-box:hover {
  text-decoration: none;
}

R
REJack 已提交
13169
.small-box:hover .icon > i {
A
Abdullah Almsaeed 已提交
13170 13171 13172
  font-size: 95px;
}

R
REJack 已提交
13173 13174 13175 13176
.small-box:hover .icon > i.fa, .small-box:hover .icon > i.fas, .small-box:hover .icon > i.far, .small-box:hover .icon > i.fab {
  font-size: 75px;
}

A
Abdullah Almsaeed 已提交
13177 13178
@media (max-width: 767.98px) {
  .small-box {
A
Abdullah Almsaeed 已提交
13179
    text-align: center;
A
Abdullah Almsaeed 已提交
13180
  }
A
Abdullah Almsaeed 已提交
13181
  .small-box .icon {
A
Abdullah Almsaeed 已提交
13182 13183 13184 13185 13186 13187
    display: none;
  }
  .small-box p {
    font-size: 12px;
  }
}
A
Abdullah Almsaeed 已提交
13188 13189 13190 13191 13192 13193

/*
 * Component: Box
 * --------------
 */
.card {
A
Abdullah Almsaeed 已提交
13194 13195 13196 13197 13198 13199 13200 13201
  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;
}

13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225
.card.maximized-card {
  z-index: 9999;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  position: fixed;
  top: 0;
  left: 0;
}

.card.maximized-card.was-collapsed .card-body {
  display: block !important;
}

.card.maximized-card [data-widget="collapse"] {
  display: none;
}

.card.maximized-card .card-header,
.card.maximized-card .card-footer {
  border-radius: 0 !important;
}

A
Abdullah Almsaeed 已提交
13226 13227 13228 13229 13230 13231 13232 13233 13234
.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 已提交
13235

A
Abdullah Almsaeed 已提交
13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252
.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);
}

13253 13254 13255 13256
html.maximized-card {
  overflow: hidden;
}

A
Abdullah Almsaeed 已提交
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
.card-header::after,
.card-body::after,
.card-footer::after {
  display: block;
  clear: both;
  content: "";
}

.card-header {
  position: relative;
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  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;
}

.card-header > .card-tools [data-toggle="tooltip"] {
  position: relative;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}

.btn-tool {
  padding: .25rem .5rem;
  font-size: 0.875rem;
  background: transparent;
  color: #adb5bd;
}

.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 {
  background: #f7f7f7;
}

.card-comments .card-comment {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.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 {
  margin-left: 40px;
  color: #555;
}

.card-comments .username {
  color: #444;
  display: block;
  font-weight: 600;
}

.card-comments .text-muted {
  font-weight: 400;
  font-size: 12px;
}

.todo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: auto;
}

.todo-list > li {
  border-radius: 2px;
  padding: 10px;
  background: #f4f4f4;
  margin-bottom: 2px;
  border-left: 2px solid #e6e7e8;
  color: #444;
}

.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;
  margin-left: 5px;
  font-weight: 600;
}

.todo-list > li .label {
  margin-left: 10px;
  font-size: 9px;
}

.todo-list > li .tools {
  display: none;
  float: right;
  color: #dc3545;
}

R
REJack 已提交
13424 13425 13426 13427 13428 13429
.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 已提交
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
  margin-right: 5px;
  cursor: pointer;
}

.todo-list > li:hover .tools {
  display: inline-block;
}

.todo-list > li.done {
  color: #999;
}

.todo-list > li.done .text {
  text-decoration: line-through;
  font-weight: 500;
}

.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 {
  display: inline-block;
  cursor: move;
  margin: 0 5px;
}

.card-input {
  max-width: 200px;
}
A
Abdullah Almsaeed 已提交
13480

A
Abdullah Almsaeed 已提交
13481 13482
.card-primary:not(.card-outline) .card-header {
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
13483
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494
}

.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 已提交
13495
.bg-primary .btn-tool, .label-primary .btn-tool,
A
Abdullah Almsaeed 已提交
13496 13497 13498 13499 13500
.bg-primary-gradient .btn-tool,
.card-primary:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

A
Abdullah Almsaeed 已提交
13501
.bg-primary .btn-tool:hover, .label-primary .btn-tool:hover,
A
Abdullah Almsaeed 已提交
13502 13503 13504 13505 13506
.bg-primary-gradient .btn-tool:hover,
.card-primary:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}

R
REJack 已提交
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
.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 已提交
13542 13543
.card-secondary:not(.card-outline) .card-header {
  background-color: #6c757d;
A
Abdullah Almsaeed 已提交
13544
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567
}

.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 已提交
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
.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 已提交
13597 13598
.card-success:not(.card-outline) .card-header {
  background-color: #28a745;
A
Abdullah Almsaeed 已提交
13599
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610
}

.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 已提交
13611
.bg-success .btn-tool, .alert-success .btn-tool, .label-success .btn-tool,
A
Abdullah Almsaeed 已提交
13612 13613 13614 13615 13616
.bg-success-gradient .btn-tool,
.card-success:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

A
Abdullah Almsaeed 已提交
13617
.bg-success .btn-tool:hover, .alert-success .btn-tool:hover, .label-success .btn-tool:hover,
A
Abdullah Almsaeed 已提交
13618 13619 13620 13621 13622
.bg-success-gradient .btn-tool:hover,
.card-success:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}

R
REJack 已提交
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
.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 已提交
13664 13665
.card-info:not(.card-outline) .card-header {
  background-color: #17a2b8;
A
Abdullah Almsaeed 已提交
13666
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677
}

.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 已提交
13678
.bg-info .btn-tool, .alert-info .btn-tool, .label-info .btn-tool,
A
Abdullah Almsaeed 已提交
13679 13680 13681 13682 13683
.bg-info-gradient .btn-tool,
.card-info:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

A
Abdullah Almsaeed 已提交
13684
.bg-info .btn-tool:hover, .alert-info .btn-tool:hover, .label-info .btn-tool:hover,
A
Abdullah Almsaeed 已提交
13685 13686 13687 13688 13689
.bg-info-gradient .btn-tool:hover,
.card-info:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}

R
REJack 已提交
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
.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 已提交
13731 13732
.card-warning:not(.card-outline) .card-header {
  background-color: #ffc107;
A
Abdullah Almsaeed 已提交
13733
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744
}

.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 已提交
13745
.bg-warning .btn-tool, .alert-warning .btn-tool, .label-warning .btn-tool,
A
Abdullah Almsaeed 已提交
13746 13747 13748 13749 13750
.bg-warning-gradient .btn-tool,
.card-warning:not(.card-outline) .btn-tool {
  color: rgba(31, 45, 61, 0.8);
}

A
Abdullah Almsaeed 已提交
13751
.bg-warning .btn-tool:hover, .alert-warning .btn-tool:hover, .label-warning .btn-tool:hover,
A
Abdullah Almsaeed 已提交
13752 13753 13754 13755 13756
.bg-warning-gradient .btn-tool:hover,
.card-warning:not(.card-outline) .btn-tool:hover {
  color: #1F2D3D;
}

R
REJack 已提交
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
.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 已提交
13798 13799
.card-danger:not(.card-outline) .card-header {
  background-color: #dc3545;
A
Abdullah Almsaeed 已提交
13800
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811
}

.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 已提交
13812
.bg-danger .btn-tool, .alert-danger .btn-tool, .alert-error .btn-tool, .label-danger .btn-tool,
A
Abdullah Almsaeed 已提交
13813 13814 13815 13816 13817
.bg-danger-gradient .btn-tool,
.card-danger:not(.card-outline) .btn-tool {
  color: rgba(255, 255, 255, 0.8);
}

A
Abdullah Almsaeed 已提交
13818
.bg-danger .btn-tool:hover, .alert-danger .btn-tool:hover, .alert-error .btn-tool:hover, .label-danger .btn-tool:hover,
A
Abdullah Almsaeed 已提交
13819 13820 13821 13822 13823
.bg-danger-gradient .btn-tool:hover,
.card-danger:not(.card-outline) .btn-tool:hover {
  color: #ffffff;
}

R
REJack 已提交
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
.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 已提交
13871 13872
.card-light:not(.card-outline) .card-header {
  background-color: #f8f9fa;
A
Abdullah Almsaeed 已提交
13873
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896
}

.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 已提交
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
.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 已提交
13926 13927
.card-dark:not(.card-outline) .card-header {
  background-color: #343a40;
A
Abdullah Almsaeed 已提交
13928
  border-bottom: 0;
A
Abdullah Almsaeed 已提交
13929
}
A
Abdullah Almsaeed 已提交
13930

A
Abdullah Almsaeed 已提交
13931 13932 13933 13934
.card-dark:not(.card-outline) .card-header,
.card-dark:not(.card-outline) .card-header a {
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
13935

A
Abdullah Almsaeed 已提交
13936 13937 13938
.card-dark.card-outline {
  border-top: 3px solid #343a40;
}
A
Abdullah Almsaeed 已提交
13939

A
Abdullah Almsaeed 已提交
13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950
.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 已提交
13951

R
REJack 已提交
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
.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 已提交
13981 13982 13983 13984 13985
/*
 * Component: Info Box
 * -------------------
 */
.info-box {
A
Abdullah Almsaeed 已提交
13986 13987
  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 已提交
13988
  padding: .5rem;
A
Abdullah Almsaeed 已提交
13989
  min-height: 80px;
A
Abdullah Almsaeed 已提交
13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001
  background: #ffffff;
}

.info-box .progress {
  background-color: rgba(0, 0, 0, 0.125);
  margin: 5px 0;
  height: 2px;
}

.info-box .progress .progress-bar {
  background-color: #ffffff;
}
A
Abdullah Almsaeed 已提交
14002 14003

.info-box-icon {
A
Abdullah Almsaeed 已提交
14004
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
14005
  display: block;
A
Abdullah Almsaeed 已提交
14006
  width: 70px;
A
Abdullah Almsaeed 已提交
14007
  text-align: center;
A
Abdullah Almsaeed 已提交
14008 14009 14010 14011 14012 14013
  font-size: 30px;
}

.info-box-icon > img {
  max-width: 100%;
}
A
Abdullah Almsaeed 已提交
14014 14015 14016

.info-box-content {
  padding: 5px 10px;
A
Abdullah Almsaeed 已提交
14017 14018
  flex: 1;
}
A
Abdullah Almsaeed 已提交
14019 14020 14021

.info-box-number {
  display: block;
A
Abdullah Almsaeed 已提交
14022 14023
  font-weight: 700;
}
A
Abdullah Almsaeed 已提交
14024 14025 14026 14027 14028 14029

.progress-description,
.info-box-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
A
Abdullah Almsaeed 已提交
14030 14031 14032
  text-overflow: ellipsis;
}

A
Abdullah Almsaeed 已提交
14033
.info-box.bg-primary, .info-box.label-primary,
R
REJack 已提交
14034
.info-box.bg-gradient-primary {
A
Abdullah Almsaeed 已提交
14035 14036 14037
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
14038
.info-box.bg-primary .progress-bar, .info-box.label-primary .progress-bar,
R
REJack 已提交
14039
.info-box.bg-gradient-primary .progress-bar {
A
Abdullah Almsaeed 已提交
14040 14041 14042 14043
  background-color: #ffffff;
}

.info-box.bg-secondary,
R
REJack 已提交
14044
.info-box.bg-gradient-secondary {
A
Abdullah Almsaeed 已提交
14045 14046 14047 14048
  color: #ffffff;
}

.info-box.bg-secondary .progress-bar,
R
REJack 已提交
14049
.info-box.bg-gradient-secondary .progress-bar {
A
Abdullah Almsaeed 已提交
14050 14051 14052
  background-color: #ffffff;
}

A
Abdullah Almsaeed 已提交
14053
.info-box.bg-success, .info-box.alert-success, .info-box.label-success,
R
REJack 已提交
14054
.info-box.bg-gradient-success {
A
Abdullah Almsaeed 已提交
14055 14056 14057
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
14058
.info-box.bg-success .progress-bar, .info-box.alert-success .progress-bar, .info-box.label-success .progress-bar,
R
REJack 已提交
14059
.info-box.bg-gradient-success .progress-bar {
A
Abdullah Almsaeed 已提交
14060 14061 14062
  background-color: #ffffff;
}

A
Abdullah Almsaeed 已提交
14063
.info-box.bg-info, .info-box.alert-info, .info-box.label-info,
R
REJack 已提交
14064
.info-box.bg-gradient-info {
A
Abdullah Almsaeed 已提交
14065 14066 14067
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
14068
.info-box.bg-info .progress-bar, .info-box.alert-info .progress-bar, .info-box.label-info .progress-bar,
R
REJack 已提交
14069
.info-box.bg-gradient-info .progress-bar {
A
Abdullah Almsaeed 已提交
14070 14071 14072
  background-color: #ffffff;
}

A
Abdullah Almsaeed 已提交
14073
.info-box.bg-warning, .info-box.alert-warning, .info-box.label-warning,
R
REJack 已提交
14074
.info-box.bg-gradient-warning {
A
Abdullah Almsaeed 已提交
14075 14076 14077
  color: #1F2D3D;
}

A
Abdullah Almsaeed 已提交
14078
.info-box.bg-warning .progress-bar, .info-box.alert-warning .progress-bar, .info-box.label-warning .progress-bar,
R
REJack 已提交
14079
.info-box.bg-gradient-warning .progress-bar {
A
Abdullah Almsaeed 已提交
14080 14081 14082 14083
  background-color: #1F2D3D;
}

.info-box.bg-danger, .info-box.alert-danger,
A
Abdullah Almsaeed 已提交
14084
.info-box.alert-error, .info-box.label-danger,
R
REJack 已提交
14085
.info-box.bg-gradient-danger {
A
Abdullah Almsaeed 已提交
14086 14087 14088
  color: #ffffff;
}

A
Abdullah Almsaeed 已提交
14089
.info-box.bg-danger .progress-bar, .info-box.alert-danger .progress-bar, .info-box.alert-error .progress-bar, .info-box.label-danger .progress-bar,
R
REJack 已提交
14090
.info-box.bg-gradient-danger .progress-bar {
A
Abdullah Almsaeed 已提交
14091 14092 14093 14094
  background-color: #ffffff;
}

.info-box.bg-light,
R
REJack 已提交
14095
.info-box.bg-gradient-light {
A
Abdullah Almsaeed 已提交
14096 14097 14098 14099
  color: #1F2D3D;
}

.info-box.bg-light .progress-bar,
R
REJack 已提交
14100
.info-box.bg-gradient-light .progress-bar {
A
Abdullah Almsaeed 已提交
14101 14102 14103 14104
  background-color: #1F2D3D;
}

.info-box.bg-dark,
R
REJack 已提交
14105
.info-box.bg-gradient-dark {
A
Abdullah Almsaeed 已提交
14106 14107 14108 14109
  color: #ffffff;
}

.info-box.bg-dark .progress-bar,
R
REJack 已提交
14110
.info-box.bg-gradient-dark .progress-bar {
A
Abdullah Almsaeed 已提交
14111 14112
  background-color: #ffffff;
}
A
Abdullah Almsaeed 已提交
14113 14114

.info-box-more {
A
Abdullah Almsaeed 已提交
14115 14116
  display: block;
}
A
Abdullah Almsaeed 已提交
14117 14118

.progress-description {
A
Abdullah Almsaeed 已提交
14119 14120
  margin: 0;
}
A
Abdullah Almsaeed 已提交
14121 14122 14123 14124 14125 14126 14127 14128 14129

/*
 * Component: Timeline
 * -------------------
 */
.timeline {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0;
A
Abdullah Almsaeed 已提交
14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141
  list-style: none;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
  left: 31px;
  margin: 0;
A
Abdullah Almsaeed 已提交
14142
  border-radius: 0.25rem;
A
Abdullah Almsaeed 已提交
14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214
}

.timeline > li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px;
}

.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;
  margin-top: 0;
  background: #ffffff;
  color: #444;
  margin-left: 60px;
  margin-right: 15px;
  padding: 0;
  position: relative;
}

.timeline > li > .timeline-item > .time {
  color: #999;
  float: right;
  padding: 10px;
  font-size: 12px;
}

.timeline > li > .timeline-item > .timeline-header {
  margin: 0;
  color: #555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 10px;
  font-size: 16px;
  line-height: 1.1;
}

.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,
.timeline > li > .glyphicon,
.timeline > li > .ion {
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  position: absolute;
  background: #adb5bd;
  border-radius: 50%;
  text-align: center;
  left: 18px;
  top: 0;
}

.timeline > .time-label > span {
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color: #ffffff;
  border-radius: 4px;
}
A
Abdullah Almsaeed 已提交
14215

A
Abdullah Almsaeed 已提交
14216
.timeline-inverse > li > .timeline-item {
A
Abdullah Almsaeed 已提交
14217
  background: #f8f9fa;
A
Abdullah Almsaeed 已提交
14218 14219 14220 14221 14222 14223 14224
  border: 1px solid #ddd;
  box-shadow: none;
}

.timeline-inverse > li > .timeline-item > .timeline-header {
  border-bottom-color: #ddd;
}
A
Abdullah Almsaeed 已提交
14225 14226 14227 14228 14229

/*
 * Component: Button
 * -----------------
 */
A
Abdullah Almsaeed 已提交
14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254
.btn.btn-flat {
  border-radius: 0;
  box-shadow: none;
  border-width: 1px;
}

.btn.btn-file {
  position: relative;
  overflow: hidden;
}

.btn.btn-file > input[type='file'] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
A
Abdullah Almsaeed 已提交
14255 14256 14257 14258

.btn-default {
  background-color: #f4f4f4;
  color: #444;
A
Abdullah Almsaeed 已提交
14259 14260
  border-color: #ddd;
}
A
Abdullah Almsaeed 已提交
14261

A
Abdullah Almsaeed 已提交
14262
.btn-default:hover, .btn-default:active, .btn-default.hover {
R
REJack 已提交
14263
  color: #2b2b2b;
A
Abdullah Almsaeed 已提交
14264 14265
  background-color: #e7e7e7;
}
A
Abdullah Almsaeed 已提交
14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277

.btn-app {
  border-radius: 3px;
  position: relative;
  padding: 15px 5px;
  margin: 0 0 10px 10px;
  min-width: 80px;
  height: 60px;
  text-align: center;
  color: #666;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
A
Abdullah Almsaeed 已提交
14278 14279 14280
  font-size: 12px;
}

14281
.btn-app > .fa,
R
REJack 已提交
14282 14283 14284
.btn-app > .fas,
.btn-app > .far,
.btn-app > .fab,
14285 14286
.btn-app > .glyphicon,
.btn-app > .ion {
A
Abdullah Almsaeed 已提交
14287 14288 14289 14290 14291 14292 14293
  font-size: 20px;
  display: block;
}

.btn-app:hover {
  background: #f4f4f4;
  color: #444;
R
REJack 已提交
14294
  border-color: #aaaaaa;
A
Abdullah Almsaeed 已提交
14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307
}

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

.btn-app > .badge {
  position: absolute;
  top: -3px;
  right: -10px;
  font-size: 10px;
  font-weight: 400;
}
A
Abdullah Almsaeed 已提交
14308 14309 14310 14311 14312 14313

/*
 * Component: Callout
 * ------------------
 */
.callout {
A
Abdullah Almsaeed 已提交
14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347
  border-radius: 0.25rem;
  background-color: #ffffff;
  padding: .5rem 1rem .5rem .5rem;
  border-left: 5px solid #eee;
}

.callout a {
  color: #ffffff;
  text-decoration: underline;
}

.callout a:hover {
  color: #eee;
}

.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 已提交
14348 14349 14350 14351 14352

/*
 * Component: alert
 * ----------------
 */
A
Abdullah Almsaeed 已提交
14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369
.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 已提交
14370 14371

.alert-success {
A
Abdullah Almsaeed 已提交
14372 14373
  border-color: #23923d;
}
A
Abdullah Almsaeed 已提交
14374 14375 14376

.alert-danger,
.alert-error {
A
Abdullah Almsaeed 已提交
14377 14378
  border-color: #d32535;
}
A
Abdullah Almsaeed 已提交
14379 14380

.alert-warning {
A
Abdullah Almsaeed 已提交
14381 14382
  border-color: #edb100;
}
A
Abdullah Almsaeed 已提交
14383 14384

.alert-info {
A
Abdullah Almsaeed 已提交
14385 14386
  border-color: #148ea1;
}
A
Abdullah Almsaeed 已提交
14387 14388 14389 14390 14391

/*
 * Component: Nav
 * --------------
 */
A
Abdullah Almsaeed 已提交
14392 14393 14394 14395
.nav-pills .nav-link {
  color: #6c757d;
}

R
REJack 已提交
14396
.nav-pills .nav-link:not(.active):hover {
A
Abdullah Almsaeed 已提交
14397 14398 14399
  color: #007bff;
}

R
REJack 已提交
14400 14401 14402 14403
.nav-pills .nav-item.dropdown.show .nav-link:hover {
  color: #ffffff;
}

R
REJack 已提交
14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439
.nav-tabs.flex-column {
  border-right: 1px solid #dee2e6;
  border-bottom: 0;
}

.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-right: 0;
  border-left: 1px solid #dee2e6;
}

.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 已提交
14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 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 14515 14516 14517 14518 14519 14520 14521 14522 14523
.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 已提交
14524 14525 14526 14527 14528 14529 14530
/*
 * Component: Products List
 * ------------------------
 */
.products-list {
  list-style: none;
  margin: 0;
A
Abdullah Almsaeed 已提交
14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557
  padding: 0;
}

.products-list > .item {
  border-radius: 0.25rem;
  padding: 10px 0;
  background: #ffffff;
}

.products-list > .item::after {
  display: block;
  clear: both;
  content: "";
}

.products-list .product-img {
  float: left;
}

.products-list .product-img img {
  width: 50px;
  height: 50px;
}

.products-list .product-info {
  margin-left: 60px;
}
A
Abdullah Almsaeed 已提交
14558

A
Abdullah Almsaeed 已提交
14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571
.products-list .product-title {
  font-weight: 600;
}

.products-list .product-description {
  display: block;
  color: #6c757d;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-list-in-card > .item {
A
Abdullah Almsaeed 已提交
14572
  border-radius: 0;
A
Abdullah Almsaeed 已提交
14573 14574 14575 14576 14577 14578
  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 已提交
14579 14580 14581 14582 14583

/*
 * Component: Table
 * ----------------
 */
14584 14585 14586 14587
.table {
  color: inherit;
}

A
Abdullah Almsaeed 已提交
14588 14589 14590
.table.no-border,
.table.no-border td,
.table.no-border th {
A
Abdullah Almsaeed 已提交
14591 14592
  border: 0;
}
A
Abdullah Almsaeed 已提交
14593

A
Abdullah Almsaeed 已提交
14594 14595 14596
.table.text-center, .table.text-center td, .table.text-center th {
  text-align: center;
}
A
Abdullah Almsaeed 已提交
14597

A
Abdullah Almsaeed 已提交
14598 14599 14600 14601 14602 14603
.table-valign-middle thead > tr > th,
.table-valign-middle thead > tr > td,
.table-valign-middle tbody > tr > th,
.table-valign-middle tbody > tr > td {
  vertical-align: middle;
}
A
Abdullah Almsaeed 已提交
14604 14605 14606 14607 14608 14609

/*
 * Component: Label
 * ----------------
 */
.label-default {
A
Abdullah Almsaeed 已提交
14610
  background-color: #adb5bd;
A
Abdullah Almsaeed 已提交
14611 14612
  color: #444;
}
A
Abdullah Almsaeed 已提交
14613 14614 14615 14616 14617

/*
 * Component: Direct Chat
 * ----------------------
 */
A
Abdullah Almsaeed 已提交
14618
.direct-chat .card-body {
A
Abdullah Almsaeed 已提交
14619 14620
  position: relative;
  overflow-x: hidden;
A
Abdullah Almsaeed 已提交
14621 14622
  padding: 0;
}
A
Abdullah Almsaeed 已提交
14623 14624 14625

.direct-chat.chat-pane-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
A
Abdullah Almsaeed 已提交
14626 14627
  transform: translate(0, 0);
}
A
Abdullah Almsaeed 已提交
14628 14629 14630 14631 14632 14633

.direct-chat-messages {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  padding: 10px;
  height: 250px;
A
Abdullah Almsaeed 已提交
14634 14635
  overflow: auto;
}
A
Abdullah Almsaeed 已提交
14636 14637 14638

.direct-chat-msg,
.direct-chat-text {
A
Abdullah Almsaeed 已提交
14639 14640
  display: block;
}
A
Abdullah Almsaeed 已提交
14641 14642

.direct-chat-msg {
A
Abdullah Almsaeed 已提交
14643 14644 14645 14646 14647 14648 14649 14650
  margin-bottom: 10px;
}

.direct-chat-msg::after {
  display: block;
  clear: both;
  content: "";
}
A
Abdullah Almsaeed 已提交
14651 14652 14653

.direct-chat-messages,
.direct-chat-contacts {
R
REJack 已提交
14654
  transition: -webkit-transform .5s ease-in-out;
A
Abdullah Almsaeed 已提交
14655
  transition: transform .5s ease-in-out;
R
REJack 已提交
14656
  transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
A
Abdullah Almsaeed 已提交
14657
}
A
Abdullah Almsaeed 已提交
14658 14659

.direct-chat-text {
A
Abdullah Almsaeed 已提交
14660
  border-radius: 0.3rem;
A
Abdullah Almsaeed 已提交
14661 14662
  position: relative;
  padding: 5px 10px;
A
Abdullah Almsaeed 已提交
14663 14664
  background: #d2d6de;
  border: 1px solid #d2d6de;
A
Abdullah Almsaeed 已提交
14665
  margin: 5px 0 0 50px;
A
Abdullah Almsaeed 已提交
14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701
  color: #444;
}

.direct-chat-text:after, .direct-chat-text:before {
  position: absolute;
  right: 100%;
  top: 15px;
  border: solid transparent;
  border-right-color: #d2d6de;
  content: ' ';
  height: 0;
  width: 0;
  pointer-events: none;
}

.direct-chat-text:after {
  border-width: 5px;
  margin-top: -5px;
}

.direct-chat-text:before {
  border-width: 6px;
  margin-top: -6px;
}

.right .direct-chat-text {
  margin-right: 50px;
  margin-left: 0;
}

.right .direct-chat-text:after, .right .direct-chat-text:before {
  right: auto;
  left: 100%;
  border-right-color: transparent;
  border-left-color: #d2d6de;
}
A
Abdullah Almsaeed 已提交
14702 14703 14704 14705 14706

.direct-chat-img {
  border-radius: 50%;
  float: left;
  width: 40px;
A
Abdullah Almsaeed 已提交
14707 14708 14709 14710 14711 14712
  height: 40px;
}

.right .direct-chat-img {
  float: right;
}
A
Abdullah Almsaeed 已提交
14713 14714 14715 14716

.direct-chat-info {
  display: block;
  margin-bottom: 2px;
A
Abdullah Almsaeed 已提交
14717 14718
  font-size: 0.875rem;
}
A
Abdullah Almsaeed 已提交
14719 14720

.direct-chat-name {
A
Abdullah Almsaeed 已提交
14721 14722
  font-weight: 600;
}
A
Abdullah Almsaeed 已提交
14723 14724

.direct-chat-timestamp {
A
Abdullah Almsaeed 已提交
14725 14726
  color: #999;
}
A
Abdullah Almsaeed 已提交
14727 14728 14729

.direct-chat-contacts-open .direct-chat-contacts {
  -webkit-transform: translate(0, 0);
A
Abdullah Almsaeed 已提交
14730 14731
  transform: translate(0, 0);
}
A
Abdullah Almsaeed 已提交
14732 14733 14734 14735 14736 14737 14738 14739 14740 14741

.direct-chat-contacts {
  -webkit-transform: translate(101%, 0);
  transform: translate(101%, 0);
  position: absolute;
  top: 0;
  bottom: 0;
  height: 250px;
  width: 100%;
  background: #222d32;
A
Abdullah Almsaeed 已提交
14742 14743 14744
  color: #ffffff;
  overflow: auto;
}
A
Abdullah Almsaeed 已提交
14745 14746 14747 14748

.contacts-list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px;
A
Abdullah Almsaeed 已提交
14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760
  margin: 0;
}

.contacts-list > li::after {
  display: block;
  clear: both;
  content: "";
}

.contacts-list > li:last-of-type {
  border-bottom: none;
}
A
Abdullah Almsaeed 已提交
14761 14762 14763 14764

.contacts-list-img {
  border-radius: 50%;
  width: 40px;
A
Abdullah Almsaeed 已提交
14765 14766
  float: left;
}
A
Abdullah Almsaeed 已提交
14767 14768 14769

.contacts-list-info {
  margin-left: 45px;
A
Abdullah Almsaeed 已提交
14770 14771
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
14772 14773 14774

.contacts-list-name,
.contacts-list-status {
A
Abdullah Almsaeed 已提交
14775 14776
  display: block;
}
A
Abdullah Almsaeed 已提交
14777 14778

.contacts-list-name {
A
Abdullah Almsaeed 已提交
14779 14780
  font-weight: 600;
}
A
Abdullah Almsaeed 已提交
14781 14782

.contacts-list-status {
A
Abdullah Almsaeed 已提交
14783 14784
  font-size: 0.875rem;
}
A
Abdullah Almsaeed 已提交
14785 14786 14787

.contacts-list-date {
  color: #aaa;
A
Abdullah Almsaeed 已提交
14788 14789
  font-weight: normal;
}
A
Abdullah Almsaeed 已提交
14790 14791

.contacts-list-msg {
A
Abdullah Almsaeed 已提交
14792 14793
  color: #999;
}
A
Abdullah Almsaeed 已提交
14794 14795

.direct-chat-danger .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
14796 14797
  background: #dc3545;
  border-color: #dc3545;
A
Abdullah Almsaeed 已提交
14798 14799 14800 14801 14802 14803
  color: #ffffff;
}

.direct-chat-danger .right > .direct-chat-text:after, .direct-chat-danger .right > .direct-chat-text:before {
  border-left-color: #dc3545;
}
A
Abdullah Almsaeed 已提交
14804 14805

.direct-chat-primary .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
14806 14807
  background: #007bff;
  border-color: #007bff;
A
Abdullah Almsaeed 已提交
14808 14809 14810 14811 14812 14813
  color: #ffffff;
}

.direct-chat-primary .right > .direct-chat-text:after, .direct-chat-primary .right > .direct-chat-text:before {
  border-left-color: #007bff;
}
A
Abdullah Almsaeed 已提交
14814 14815

.direct-chat-warning .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
14816 14817
  background: #ffc107;
  border-color: #ffc107;
A
Abdullah Almsaeed 已提交
14818 14819 14820 14821 14822 14823
  color: #1F2D3D;
}

.direct-chat-warning .right > .direct-chat-text:after, .direct-chat-warning .right > .direct-chat-text:before {
  border-left-color: #ffc107;
}
A
Abdullah Almsaeed 已提交
14824 14825

.direct-chat-info .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
14826 14827
  background: #17a2b8;
  border-color: #17a2b8;
A
Abdullah Almsaeed 已提交
14828 14829 14830 14831 14832 14833
  color: #ffffff;
}

.direct-chat-info .right > .direct-chat-text:after, .direct-chat-info .right > .direct-chat-text:before {
  border-left-color: #17a2b8;
}
A
Abdullah Almsaeed 已提交
14834 14835

.direct-chat-success .right > .direct-chat-text {
A
Abdullah Almsaeed 已提交
14836 14837
  background: #28a745;
  border-color: #28a745;
A
Abdullah Almsaeed 已提交
14838 14839 14840 14841 14842 14843
  color: #ffffff;
}

.direct-chat-success .right > .direct-chat-text:after, .direct-chat-success .right > .direct-chat-text:before {
  border-left-color: #28a745;
}
A
Abdullah Almsaeed 已提交
14844 14845 14846 14847 14848 14849 14850 14851 14852

/*
 * Component: Users List
 * ---------------------
 */
.users-list > li {
  width: 25%;
  float: left;
  padding: 10px;
A
Abdullah Almsaeed 已提交
14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865
  text-align: center;
}

.users-list > li img {
  border-radius: 50%;
  max-width: 100%;
  height: auto;
}

.users-list > li > a:hover,
.users-list > li > a:hover .users-list-name {
  color: #999;
}
A
Abdullah Almsaeed 已提交
14866 14867 14868

.users-list-name,
.users-list-date {
A
Abdullah Almsaeed 已提交
14869 14870
  display: block;
}
A
Abdullah Almsaeed 已提交
14871 14872

.users-list-name {
A
Abdullah Almsaeed 已提交
14873
  font-size: 0.875rem;
A
Abdullah Almsaeed 已提交
14874 14875 14876
  color: #444;
  overflow: hidden;
  white-space: nowrap;
A
Abdullah Almsaeed 已提交
14877 14878
  text-overflow: ellipsis;
}
A
Abdullah Almsaeed 已提交
14879 14880 14881

.users-list-date {
  color: #999;
A
Abdullah Almsaeed 已提交
14882 14883
  font-size: 12px;
}
A
Abdullah Almsaeed 已提交
14884 14885 14886 14887 14888 14889

/*
 * Component: Carousel
 * -------------------
 */
.carousel-control.left, .carousel-control.right {
A
Abdullah Almsaeed 已提交
14890 14891
  background-image: none;
}
A
Abdullah Almsaeed 已提交
14892 14893 14894 14895 14896 14897 14898

.carousel-control > .fa {
  font-size: 40px;
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
A
Abdullah Almsaeed 已提交
14899 14900
  margin-top: -20px;
}
A
Abdullah Almsaeed 已提交
14901 14902 14903 14904 14905

/*
 * Component: Social Widgets
 * -------------------------
 */
A
Abdullah Almsaeed 已提交
14906
.card-widget {
A
Abdullah Almsaeed 已提交
14907
  border: none;
A
Abdullah Almsaeed 已提交
14908 14909
  position: relative;
}
A
Abdullah Almsaeed 已提交
14910 14911

.widget-user .widget-user-header {
A
Abdullah Almsaeed 已提交
14912
  padding: 1rem;
A
Abdullah Almsaeed 已提交
14913
  height: 120px;
A
Abdullah Almsaeed 已提交
14914 14915 14916
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
14917 14918 14919 14920 14921 14922

.widget-user .widget-user-username {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 300;
A
Abdullah Almsaeed 已提交
14923 14924
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
A
Abdullah Almsaeed 已提交
14925 14926

.widget-user .widget-user-desc {
A
Abdullah Almsaeed 已提交
14927 14928
  margin-top: 0;
}
A
Abdullah Almsaeed 已提交
14929 14930 14931 14932 14933

.widget-user .widget-user-image {
  position: absolute;
  top: 65px;
  left: 50%;
A
Abdullah Almsaeed 已提交
14934 14935 14936 14937 14938 14939 14940 14941
  margin-left: -45px;
}

.widget-user .widget-user-image > img {
  width: 90px;
  height: auto;
  border: 3px solid #ffffff;
}
A
Abdullah Almsaeed 已提交
14942

A
Abdullah Almsaeed 已提交
14943 14944 14945
.widget-user .card-footer {
  padding-top: 40px;
}
A
Abdullah Almsaeed 已提交
14946 14947

.widget-user-2 .widget-user-header {
A
Abdullah Almsaeed 已提交
14948 14949 14950 14951
  padding: 1rem;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
14952 14953 14954 14955 14956

.widget-user-2 .widget-user-username {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 25px;
A
Abdullah Almsaeed 已提交
14957 14958
  font-weight: 300;
}
A
Abdullah Almsaeed 已提交
14959 14960

.widget-user-2 .widget-user-desc {
A
Abdullah Almsaeed 已提交
14961 14962
  margin-top: 0;
}
A
Abdullah Almsaeed 已提交
14963 14964 14965

.widget-user-2 .widget-user-username,
.widget-user-2 .widget-user-desc {
A
Abdullah Almsaeed 已提交
14966 14967
  margin-left: 75px;
}
A
Abdullah Almsaeed 已提交
14968 14969 14970 14971

.widget-user-2 .widget-user-image > img {
  width: 65px;
  height: auto;
A
Abdullah Almsaeed 已提交
14972 14973
  float: left;
}
A
Abdullah Almsaeed 已提交
14974

R
REJack 已提交
14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000
/*
 * General: Modals
 * ----------------------
 */
.modal-dialog .overlay {
  display: block;
  position: absolute;
  z-index: 1052;
  background: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.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 已提交
15001 15002 15003 15004 15005
/*
 * Page: Mailbox
 * -------------
 */
.mailbox-messages > .table {
A
Abdullah Almsaeed 已提交
15006 15007
  margin: 0;
}
A
Abdullah Almsaeed 已提交
15008 15009

.mailbox-controls {
A
Abdullah Almsaeed 已提交
15010 15011 15012 15013 15014 15015
  padding: 5px;
}

.mailbox-controls.with-border {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
A
Abdullah Almsaeed 已提交
15016 15017

.mailbox-read-info {
A
Abdullah Almsaeed 已提交
15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030
  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 已提交
15031 15032 15033

.mailbox-read-time {
  color: #999;
A
Abdullah Almsaeed 已提交
15034 15035
  font-size: 13px;
}
A
Abdullah Almsaeed 已提交
15036 15037

.mailbox-read-message {
A
Abdullah Almsaeed 已提交
15038 15039
  padding: 10px;
}
A
Abdullah Almsaeed 已提交
15040 15041 15042 15043 15044 15045

.mailbox-attachments li {
  float: left;
  width: 200px;
  border: 1px solid #eee;
  margin-bottom: 10px;
A
Abdullah Almsaeed 已提交
15046 15047
  margin-right: 10px;
}
A
Abdullah Almsaeed 已提交
15048 15049 15050

.mailbox-attachment-name {
  font-weight: bold;
A
Abdullah Almsaeed 已提交
15051 15052
  color: #666;
}
A
Abdullah Almsaeed 已提交
15053 15054 15055 15056

.mailbox-attachment-icon,
.mailbox-attachment-info,
.mailbox-attachment-size {
A
Abdullah Almsaeed 已提交
15057 15058
  display: block;
}
A
Abdullah Almsaeed 已提交
15059 15060 15061

.mailbox-attachment-info {
  padding: 10px;
A
Abdullah Almsaeed 已提交
15062 15063
  background: #f4f4f4;
}
A
Abdullah Almsaeed 已提交
15064 15065 15066

.mailbox-attachment-size {
  color: #999;
A
Abdullah Almsaeed 已提交
15067 15068
  font-size: 12px;
}
A
Abdullah Almsaeed 已提交
15069

R
REJack 已提交
15070 15071 15072 15073 15074
.mailbox-attachment-size > span {
  display: inline-block;
  padding-top: 0.75rem;
}

A
Abdullah Almsaeed 已提交
15075 15076 15077 15078
.mailbox-attachment-icon {
  text-align: center;
  font-size: 65px;
  color: #666;
A
Abdullah Almsaeed 已提交
15079
  padding: 20px 10px;
R
REJack 已提交
15080
  max-height: 132.5px;
A
Abdullah Almsaeed 已提交
15081 15082 15083 15084 15085 15086 15087 15088 15089 15090
}

.mailbox-attachment-icon.has-img {
  padding: 0;
}

.mailbox-attachment-icon.has-img > img {
  max-width: 100%;
  height: auto;
}
A
Abdullah Almsaeed 已提交
15091 15092 15093 15094 15095 15096 15097

/*
 * Page: Lock Screen
 * -----------------
 */
/* ADD THIS CLASS TO THE <BODY> TAG */
.lockscreen {
A
Abdullah Almsaeed 已提交
15098 15099
  background: #e9ecef;
}
A
Abdullah Almsaeed 已提交
15100 15101 15102 15103 15104

.lockscreen-logo {
  font-size: 35px;
  text-align: center;
  margin-bottom: 25px;
A
Abdullah Almsaeed 已提交
15105 15106 15107 15108 15109 15110
  font-weight: 300;
}

.lockscreen-logo a {
  color: #444;
}
A
Abdullah Almsaeed 已提交
15111 15112 15113 15114

.lockscreen-wrapper {
  max-width: 400px;
  margin: 0 auto;
A
Abdullah Almsaeed 已提交
15115 15116
  margin-top: 10%;
}
A
Abdullah Almsaeed 已提交
15117 15118 15119 15120

/* User name [optional] */
.lockscreen .lockscreen-name {
  text-align: center;
A
Abdullah Almsaeed 已提交
15121 15122
  font-weight: 600;
}
A
Abdullah Almsaeed 已提交
15123 15124 15125 15126 15127

/* Will contain the image and the sign in form */
.lockscreen-item {
  border-radius: 4px;
  padding: 0;
A
Abdullah Almsaeed 已提交
15128
  background: #ffffff;
A
Abdullah Almsaeed 已提交
15129 15130
  position: relative;
  margin: 10px auto 30px auto;
A
Abdullah Almsaeed 已提交
15131 15132
  width: 290px;
}
A
Abdullah Almsaeed 已提交
15133 15134 15135 15136 15137 15138 15139

/* User image */
.lockscreen-image {
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: -25px;
A
Abdullah Almsaeed 已提交
15140
  background: #ffffff;
A
Abdullah Almsaeed 已提交
15141
  padding: 5px;
A
Abdullah Almsaeed 已提交
15142 15143 15144 15145 15146 15147 15148 15149
  z-index: 10;
}

.lockscreen-image > img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
}
A
Abdullah Almsaeed 已提交
15150 15151 15152

/* Contains the password input and the login button */
.lockscreen-credentials {
A
Abdullah Almsaeed 已提交
15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164
  margin-left: 70px;
}

.lockscreen-credentials .form-control {
  border: 0;
}

.lockscreen-credentials .btn {
  background-color: #ffffff;
  border: 0;
  padding: 0 10px;
}
A
Abdullah Almsaeed 已提交
15165 15166

.lockscreen-footer {
A
Abdullah Almsaeed 已提交
15167 15168
  margin-top: 10px;
}
A
Abdullah Almsaeed 已提交
15169 15170 15171 15172 15173 15174 15175 15176 15177 15178

/*
 * Page: Login & Register
 * ----------------------
 */
.login-logo,
.register-logo {
  font-size: 35px;
  text-align: center;
  margin-bottom: 25px;
A
Abdullah Almsaeed 已提交
15179 15180 15181 15182 15183 15184 15185
  font-weight: 300;
}

.login-logo a,
.register-logo a {
  color: #444;
}
A
Abdullah Almsaeed 已提交
15186 15187 15188

.login-page,
.register-page {
A
Abdullah Almsaeed 已提交
15189 15190
  background: #e9ecef;
}
A
Abdullah Almsaeed 已提交
15191 15192 15193 15194

.login-box,
.register-box {
  width: 360px;
A
Abdullah Almsaeed 已提交
15195 15196 15197 15198 15199 15200 15201 15202 15203 15204
  margin: 7% auto;
}

@media (max-width: 576px) {
  .login-box,
  .register-box {
    width: 90%;
    margin-top: 20px;
  }
}
A
Abdullah Almsaeed 已提交
15205

H
heemza 已提交
15206 15207
.login-card-body,
.register-card-body {
A
Abdullah Almsaeed 已提交
15208
  background: #ffffff;
A
Abdullah Almsaeed 已提交
15209 15210
  padding: 20px;
  border-top: 0;
A
Abdullah Almsaeed 已提交
15211 15212 15213
  color: #666;
}

H
heemza 已提交
15214 15215 15216 15217 15218
.login-card-body .input-group .form-control,
.register-card-body .input-group .form-control {
  border-right: none;
}

J
Jorge Vilaça 已提交
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
.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 已提交
15249 15250
.login-card-body .input-group .input-group-text,
.register-card-body .input-group .input-group-text {
A
Abdullah Almsaeed 已提交
15251
  color: #777;
H
heemza 已提交
15252
  background-color: transparent;
J
Jorge Vilaça 已提交
15253 15254 15255 15256
  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 已提交
15257
}
A
Abdullah Almsaeed 已提交
15258 15259 15260 15261 15262

.login-box-msg,
.register-box-msg {
  margin: 0;
  text-align: center;
A
Abdullah Almsaeed 已提交
15263 15264
  padding: 0 20px 20px 20px;
}
A
Abdullah Almsaeed 已提交
15265 15266

.social-auth-links {
A
Abdullah Almsaeed 已提交
15267 15268
  margin: 10px 0;
}
A
Abdullah Almsaeed 已提交
15269 15270 15271 15272 15273 15274 15275

/*
 * Page: 400 and 500 error pages
 * ------------------------------
 */
.error-page {
  width: 600px;
A
Abdullah Almsaeed 已提交
15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291
  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 已提交
15292
  .error-page > .headline {
A
Abdullah Almsaeed 已提交
15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303
    float: none;
    text-align: center;
  }
}

.error-page > .error-content {
  margin-left: 190px;
  display: block;
}

@media (max-width: 767.98px) {
A
Abdullah Almsaeed 已提交
15304
  .error-page > .error-content {
A
Abdullah Almsaeed 已提交
15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318
    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 已提交
15319 15320 15321 15322 15323 15324 15325

/*
 * Page: Invoice
 * -------------
 */
.invoice {
  position: relative;
A
Abdullah Almsaeed 已提交
15326 15327 15328
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
A
Abdullah Almsaeed 已提交
15329 15330

.invoice-title {
A
Abdullah Almsaeed 已提交
15331 15332
  margin-top: 0;
}
A
Abdullah Almsaeed 已提交
15333 15334 15335 15336 15337 15338 15339 15340 15341

/*
 * Page: Profile
 * -------------
 */
.profile-user-img {
  margin: 0 auto;
  width: 100px;
  padding: 3px;
A
Abdullah Almsaeed 已提交
15342 15343
  border: 3px solid #adb5bd;
}
A
Abdullah Almsaeed 已提交
15344 15345 15346

.profile-username {
  font-size: 21px;
A
Abdullah Almsaeed 已提交
15347 15348
  margin-top: 5px;
}
A
Abdullah Almsaeed 已提交
15349 15350

.post {
A
Abdullah Almsaeed 已提交
15351
  border-bottom: 1px solid #adb5bd;
A
Abdullah Almsaeed 已提交
15352 15353
  margin-bottom: 15px;
  padding-bottom: 15px;
A
Abdullah Almsaeed 已提交
15354 15355
  color: #666;
}
A
Abdullah Almsaeed 已提交
15356

A
Abdullah Almsaeed 已提交
15357 15358 15359 15360 15361 15362 15363 15364 15365
.post:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post .user-block {
  margin-bottom: 15px;
}
A
Abdullah Almsaeed 已提交
15366 15367 15368 15369 15370 15371 15372 15373 15374 15375

/*
 * Plugin: Full Calendar
 * ---------------------
 */
.fc-button {
  background: #f4f4f4;
  background-image: none;
  color: #444;
  border-color: #ddd;
A
Abdullah Almsaeed 已提交
15376 15377 15378 15379 15380 15381
  border-bottom-color: #ddd;
}

.fc-button:hover, .fc-button:active, .fc-button.hover {
  background-color: #e9e9e9;
}
A
Abdullah Almsaeed 已提交
15382 15383 15384 15385 15386

.fc-header-title h2 {
  font-size: 15px;
  line-height: 1.6em;
  color: #666;
A
Abdullah Almsaeed 已提交
15387 15388
  margin-left: 10px;
}
A
Abdullah Almsaeed 已提交
15389 15390

.fc-header-right {
A
Abdullah Almsaeed 已提交
15391 15392
  padding-right: 10px;
}
A
Abdullah Almsaeed 已提交
15393 15394

.fc-header-left {
A
Abdullah Almsaeed 已提交
15395 15396
  padding-left: 10px;
}
A
Abdullah Almsaeed 已提交
15397 15398

.fc-widget-header {
A
Abdullah Almsaeed 已提交
15399 15400
  background: #fafafa;
}
A
Abdullah Almsaeed 已提交
15401 15402 15403

.fc-grid {
  width: 100%;
A
Abdullah Almsaeed 已提交
15404 15405
  border: 0;
}
A
Abdullah Almsaeed 已提交
15406 15407 15408 15409

.fc-widget-header:first-of-type,
.fc-widget-content:first-of-type {
  border-left: 0;
A
Abdullah Almsaeed 已提交
15410 15411
  border-right: 0;
}
A
Abdullah Almsaeed 已提交
15412 15413 15414

.fc-widget-header:last-of-type,
.fc-widget-content:last-of-type {
A
Abdullah Almsaeed 已提交
15415 15416
  border-right: 0;
}
A
Abdullah Almsaeed 已提交
15417 15418

.fc-toolbar {
A
Abdullah Almsaeed 已提交
15419 15420 15421
  padding: 1rem;
  margin: 0;
}
A
Abdullah Almsaeed 已提交
15422 15423 15424 15425

.fc-day-number {
  font-size: 20px;
  font-weight: 300;
A
Abdullah Almsaeed 已提交
15426 15427
  padding-right: 10px;
}
A
Abdullah Almsaeed 已提交
15428 15429 15430 15431

.fc-color-picker {
  list-style: none;
  margin: 0;
A
Abdullah Almsaeed 已提交
15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442
  padding: 0;
}

.fc-color-picker > li {
  float: left;
  font-size: 30px;
  margin-right: 5px;
  line-height: 30px;
}

.fc-color-picker > li .fa {
R
REJack 已提交
15443
  transition: -webkit-transform linear .3s;
A
Abdullah Almsaeed 已提交
15444
  transition: transform linear .3s;
R
REJack 已提交
15445
  transition: transform linear .3s, -webkit-transform linear .3s;
A
Abdullah Almsaeed 已提交
15446 15447 15448
}

.fc-color-picker > li .fa:hover {
R
REJack 已提交
15449
  -webkit-transform: rotate(30deg);
A
Abdullah Almsaeed 已提交
15450 15451
  transform: rotate(30deg);
}
A
Abdullah Almsaeed 已提交
15452 15453

#add-new-event {
A
Abdullah Almsaeed 已提交
15454 15455
  transition: all linear .3s;
}
A
Abdullah Almsaeed 已提交
15456 15457

.external-event {
A
Abdullah Almsaeed 已提交
15458
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
A
Abdullah Almsaeed 已提交
15459 15460 15461
  padding: 5px 10px;
  font-weight: bold;
  margin-bottom: 4px;
A
Abdullah Almsaeed 已提交
15462 15463 15464 15465 15466 15467 15468
  border-radius: 0.25rem;
  cursor: move;
}

.external-event:hover {
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
}
A
Abdullah Almsaeed 已提交
15469 15470 15471 15472 15473 15474 15475 15476 15477

/*
 * 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 已提交
15478 15479
  outline: none;
}
A
Abdullah Almsaeed 已提交
15480 15481 15482

.select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
A
Abdullah Almsaeed 已提交
15483
  border: 1px solid #d2d6de;
A
Abdullah Almsaeed 已提交
15484
  padding: 6px 12px;
A
Abdullah Almsaeed 已提交
15485 15486
  height: 34px;
}
A
Abdullah Almsaeed 已提交
15487 15488

.select2-container--default.select2-container--open {
A
Abdullah Almsaeed 已提交
15489 15490
  border-color: #007bff;
}
A
Abdullah Almsaeed 已提交
15491 15492

.select2-dropdown {
A
Abdullah Almsaeed 已提交
15493 15494
  border: 1px solid #d2d6de;
}
A
Abdullah Almsaeed 已提交
15495 15496

.select2-container--default .select2-results__option--highlighted[aria-selected] {
A
Abdullah Almsaeed 已提交
15497
  background-color: #007bff;
A
Abdullah Almsaeed 已提交
15498 15499
  color: white;
}
A
Abdullah Almsaeed 已提交
15500 15501 15502

.select2-results__option {
  padding: 6px 12px;
R
REJack 已提交
15503 15504
  -moz-user-select: none;
  -ms-user-select: none;
A
Abdullah Almsaeed 已提交
15505
  user-select: none;
A
Abdullah Almsaeed 已提交
15506 15507
  -webkit-user-select: none;
}
A
Abdullah Almsaeed 已提交
15508 15509 15510 15511 15512

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
  height: auto;
A
Abdullah Almsaeed 已提交
15513 15514
  margin-top: -4px;
}
A
Abdullah Almsaeed 已提交
15515 15516 15517

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 6px;
A
Abdullah Almsaeed 已提交
15518 15519
  padding-left: 20px;
}
A
Abdullah Almsaeed 已提交
15520 15521 15522

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 28px;
A
Abdullah Almsaeed 已提交
15523 15524
  right: 3px;
}
A
Abdullah Almsaeed 已提交
15525 15526

.select2-container--default .select2-selection--single .select2-selection__arrow b {
A
Abdullah Almsaeed 已提交
15527 15528
  margin-top: 0;
}
A
Abdullah Almsaeed 已提交
15529 15530 15531

.select2-dropdown .select2-search__field,
.select2-search--inline .select2-search__field {
A
Abdullah Almsaeed 已提交
15532 15533 15534 15535 15536 15537 15538 15539
  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 已提交
15540 15541

.select2-container--default .select2-results__option[aria-disabled=true] {
A
Abdullah Almsaeed 已提交
15542 15543
  color: #999;
}
A
Abdullah Almsaeed 已提交
15544 15545

.select2-container--default .select2-results__option[aria-selected=true] {
A
Abdullah Almsaeed 已提交
15546 15547 15548 15549 15550 15551
  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 已提交
15552 15553

.select2-container--default .select2-selection--multiple {
A
Abdullah Almsaeed 已提交
15554 15555 15556 15557 15558 15559
  border: 1px solid #d2d6de;
}

.select2-container--default .select2-selection--multiple:focus {
  border-color: #007bff;
}
A
Abdullah Almsaeed 已提交
15560

R
REJack 已提交
15561 15562 15563 15564 15565 15566 15567 15568
.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 已提交
15569
.select2-container--default.select2-container--focus .select2-selection--multiple {
A
Abdullah Almsaeed 已提交
15570 15571
  border-color: #d2d6de;
}
A
Abdullah Almsaeed 已提交
15572 15573

.select2-container--default .select2-selection--multiple .select2-selection__choice {
A
Abdullah Almsaeed 已提交
15574 15575
  background-color: #007bff;
  border-color: #006fe6;
A
Abdullah Almsaeed 已提交
15576
  padding: 1px 10px;
A
Abdullah Almsaeed 已提交
15577 15578
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
15579 15580 15581

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 5px;
A
Abdullah Almsaeed 已提交
15582 15583 15584 15585 15586 15587
  color: rgba(255, 255, 255, 0.7);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #ffffff;
}
A
Abdullah Almsaeed 已提交
15588

R
REJack 已提交
15589
.select2-container .select2-selection--single .select2-selection__rendered li {
A
Abdullah Almsaeed 已提交
15590 15591
  padding-right: 10px;
}
A
Abdullah Almsaeed 已提交
15592

R
REJack 已提交
15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 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
/*
 * Plugin: Bootstrap Slider
 * ---------------------
 */
.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
 * ---------------------
 */
.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;
}

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
/*
 * Plugin: SweetAlert2
 * ---------------
 */
.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
 * ---------------
 */
.toast {
  background-color: #007bff;
}

.toast-success {
  background-color: #28a745;
}

.toast-error {
  background-color: #dc3545;
}

.toast-info {
  background-color: #17a2b8;
}

.toast-warning {
  background-color: #ffc107;
}

A
Abdullah Almsaeed 已提交
16058 16059 16060 16061
/*
 * General: Miscellaneous
 * ----------------------
 */
A
Abdullah Almsaeed 已提交
16062 16063 16064
a.text-muted:hover {
  color: #007bff !important;
}
A
Abdullah Almsaeed 已提交
16065

A
Abdullah Almsaeed 已提交
16066 16067 16068
.border-transparent {
  border-color: transparent !important;
}
A
Abdullah Almsaeed 已提交
16069 16070 16071 16072

.description-block {
  display: block;
  margin: 10px 0;
A
Abdullah Almsaeed 已提交
16073 16074
  text-align: center;
}
A
Abdullah Almsaeed 已提交
16075

A
Abdullah Almsaeed 已提交
16076 16077 16078
.description-block.margin-bottom {
  margin-bottom: 25px;
}
A
Abdullah Almsaeed 已提交
16079

A
Abdullah Almsaeed 已提交
16080 16081 16082 16083 16084 16085
.description-block > .description-header {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 16px;
}
A
Abdullah Almsaeed 已提交
16086

A
Abdullah Almsaeed 已提交
16087 16088 16089
.description-block > .description-text {
  text-transform: uppercase;
}
A
Abdullah Almsaeed 已提交
16090

A
Abdullah Almsaeed 已提交
16091
.bg-primary, .label-primary,
A
Abdullah Almsaeed 已提交
16092 16093 16094
.bg-primary a,
.label-primary a {
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
16095
}
A
Abdullah Almsaeed 已提交
16096

A
Abdullah Almsaeed 已提交
16097 16098
.bg-secondary,
.bg-secondary a {
A
Abdullah Almsaeed 已提交
16099
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
16100
}
A
Abdullah Almsaeed 已提交
16101

A
Abdullah Almsaeed 已提交
16102
.bg-success, .alert-success, .label-success,
A
Abdullah Almsaeed 已提交
16103 16104 16105 16106
.bg-success a,
.alert-success a,
.label-success a {
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
16107
}
A
Abdullah Almsaeed 已提交
16108

A
Abdullah Almsaeed 已提交
16109
.bg-info, .alert-info, .label-info,
A
Abdullah Almsaeed 已提交
16110 16111 16112 16113
.bg-info a,
.alert-info a,
.label-info a {
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
16114
}
A
Abdullah Almsaeed 已提交
16115

A
Abdullah Almsaeed 已提交
16116
.bg-warning, .alert-warning, .label-warning,
A
Abdullah Almsaeed 已提交
16117 16118 16119 16120
.bg-warning a,
.alert-warning a,
.label-warning a {
  color: #1F2D3D !important;
A
Abdullah Almsaeed 已提交
16121
}
A
Abdullah Almsaeed 已提交
16122

A
Abdullah Almsaeed 已提交
16123
.bg-danger, .alert-danger,
A
Abdullah Almsaeed 已提交
16124
.alert-error, .label-danger,
A
Abdullah Almsaeed 已提交
16125 16126 16127 16128 16129
.bg-danger a,
.alert-danger a,
.alert-error a,
.label-danger a {
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
16130
}
A
Abdullah Almsaeed 已提交
16131

A
Abdullah Almsaeed 已提交
16132 16133
.bg-light,
.bg-light a {
A
Abdullah Almsaeed 已提交
16134
  color: #1F2D3D !important;
A
Abdullah Almsaeed 已提交
16135
}
A
Abdullah Almsaeed 已提交
16136

A
Abdullah Almsaeed 已提交
16137 16138
.bg-dark,
.bg-dark a {
A
Abdullah Almsaeed 已提交
16139
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
16140
}
A
Abdullah Almsaeed 已提交
16141

R
REJack 已提交
16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258
.bg-blue {
  background-color: #007bff;
}

.bg-blue,
.bg-blue a {
  color: #ffffff !important;
}

.bg-indigo {
  background-color: #6610f2;
}

.bg-indigo,
.bg-indigo a {
  color: #ffffff !important;
}

.bg-purple {
  background-color: #6f42c1;
}

.bg-purple,
.bg-purple a {
  color: #ffffff !important;
}

.bg-pink {
  background-color: #e83e8c;
}

.bg-pink,
.bg-pink a {
  color: #ffffff !important;
}

.bg-red {
  background-color: #dc3545;
}

.bg-red,
.bg-red a {
  color: #ffffff !important;
}

.bg-orange {
  background-color: #fd7e14;
}

.bg-orange,
.bg-orange a {
  color: #1F2D3D !important;
}

.bg-yellow {
  background-color: #ffc107;
}

.bg-yellow,
.bg-yellow a {
  color: #1F2D3D !important;
}

.bg-green {
  background-color: #28a745;
}

.bg-green,
.bg-green a {
  color: #ffffff !important;
}

.bg-teal {
  background-color: #20c997;
}

.bg-teal,
.bg-teal a {
  color: #ffffff !important;
}

.bg-cyan {
  background-color: #17a2b8;
}

.bg-cyan,
.bg-cyan a {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff;
}

.bg-white,
.bg-white a {
  color: #1F2D3D !important;
}

.bg-gray {
  background-color: #6c757d;
}

.bg-gray,
.bg-gray a {
  color: #ffffff !important;
}

.bg-gray-dark {
  background-color: #343a40;
}

.bg-gray-dark,
.bg-gray-dark a {
  color: #ffffff !important;
}

A
Abdullah Almsaeed 已提交
16259 16260 16261 16262
.bg-gray {
  color: #000;
  background-color: #adb5bd;
}
A
Abdullah Almsaeed 已提交
16263

A
Abdullah Almsaeed 已提交
16264 16265
.bg-gray-light {
  background-color: #f2f4f5;
A
Abdullah Almsaeed 已提交
16266
  color: #1F2D3D !important;
A
Abdullah Almsaeed 已提交
16267
}
A
Abdullah Almsaeed 已提交
16268

A
Abdullah Almsaeed 已提交
16269 16270
.bg-black {
  background-color: #000;
A
Abdullah Almsaeed 已提交
16271
  color: #ffffff !important;
A
Abdullah Almsaeed 已提交
16272
}
A
Abdullah Almsaeed 已提交
16273

A
Abdullah Almsaeed 已提交
16274 16275
.bg-white {
  background-color: #ffffff;
A
Abdullah Almsaeed 已提交
16276
  color: #1F2D3D !important;
A
Abdullah Almsaeed 已提交
16277
}
A
Abdullah Almsaeed 已提交
16278

R
REJack 已提交
16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310
.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 {
  color: #ffffff;
  border-color: #0062cc;
}

.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 {
  color: #ffffff;
  border-color: #005cbf;
}

.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 已提交
16311 16312 16313
  color: #ffffff;
}

R
REJack 已提交
16314 16315 16316 16317 16318 16319 16320 16321 16322 16323
.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 {
R
REJack 已提交
16324
  color: #ffffff;
R
REJack 已提交
16325
  border-color: #545b62;
R
REJack 已提交
16326 16327
}

R
REJack 已提交
16328 16329 16330 16331 16332
.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 {
R
REJack 已提交
16333
  color: #ffffff;
R
REJack 已提交
16334 16335 16336 16337 16338
  border-color: #4e555b;
}

.bg-gradient-secondary.btn:active, .bg-gradient-secondary.btn.active {
  background: #545b62 linear-gradient(180deg, #6e7479, #545b62) repeat-x !important;
R
REJack 已提交
16339 16340
}

R
REJack 已提交
16341
.bg-gradient-success {
R
REJack 已提交
16342 16343 16344
  color: #ffffff;
}

R
REJack 已提交
16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403
.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 {
  color: #ffffff;
  border-color: #1e7e34;
}

.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 {
  color: #ffffff;
  border-color: #1c7430;
}

.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 {
  color: #ffffff;
  border-color: #117a8b;
}

.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 {
  color: #ffffff;
  border-color: #10707f;
}

.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 已提交
16404 16405 16406
  color: #1F2D3D;
}

R
REJack 已提交
16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434
.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 {
  color: #1F2D3D;
  border-color: #d39e00;
}

.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 {
  color: #1F2D3D;
  border-color: #c69500;
}

.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 已提交
16435 16436 16437
  color: #ffffff;
}

R
REJack 已提交
16438 16439 16440 16441 16442 16443 16444 16445 16446 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
.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 {
  color: #ffffff;
  border-color: #bd2130;
}

.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 {
  color: #ffffff;
  border-color: #b21f2d;
}

.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 {
  color: #1F2D3D;
  border-color: #dae0e5;
}

.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 {
R
REJack 已提交
16488
  color: #1F2D3D;
R
REJack 已提交
16489 16490 16491 16492 16493
  border-color: #d3d9df;
}

.bg-gradient-light.btn:active, .bg-gradient-light.btn.active {
  background: #dae0e5 linear-gradient(180deg, #e0e4e9, #dae0e5) repeat-x !important;
R
REJack 已提交
16494 16495
}

R
REJack 已提交
16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518
.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 {
  color: #ffffff;
  border-color: #1d2124;
}

.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 {
16519
  color: #ffffff;
R
REJack 已提交
16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537
  border-color: #171a1d;
}

.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;
16538 16539
}

R
REJack 已提交
16540
.bg-gradient-blue.btn:hover {
16541
  color: #ffffff;
R
REJack 已提交
16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 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 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661
  border-color: #0062cc;
}

.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 {
  color: #ffffff;
  border-color: #005cbf;
}

.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 {
  color: #ffffff;
  border-color: #510bc4;
}

.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 {
  color: #ffffff;
  border-color: #4c0ab8;
}

.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 {
  color: #ffffff;
  border-color: #59339d;
}

.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 {
  color: #ffffff;
  border-color: #533093;
}

.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 {
  color: #ffffff;
  border-color: #d91a72;
}

.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 {
  color: #ffffff;
  border-color: #ce196c;
}

.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;
16662 16663
}

R
REJack 已提交
16664
.bg-gradient-red.btn:hover {
16665
  color: #ffffff;
R
REJack 已提交
16666 16667 16668 16669 16670
  border-color: #bd2130;
}

.bg-gradient-red.btn:hover {
  background: #c82333 linear-gradient(180deg, #d04451, #c82333) repeat-x !important;
16671 16672
}

R
REJack 已提交
16673
.bg-gradient-red.btn:active, .bg-gradient-red.btn.active {
16674
  color: #ffffff;
R
REJack 已提交
16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692
  border-color: #b21f2d;
}

.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;
16693 16694
}

R
REJack 已提交
16695
.bg-gradient-orange.btn:hover {
16696
  color: #ffffff;
R
REJack 已提交
16697 16698 16699 16700 16701
  border-color: #dc6502;
}

.bg-gradient-orange.btn:hover {
  background: #e96b02 linear-gradient(180deg, #ec8128, #e96b02) repeat-x !important;
16702 16703
}

R
REJack 已提交
16704
.bg-gradient-orange.btn:active, .bg-gradient-orange.btn.active {
16705
  color: #ffffff;
R
REJack 已提交
16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723
  border-color: #cf5f02;
}

.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;
16724 16725
}

R
REJack 已提交
16726
.bg-gradient-yellow.btn:hover {
16727
  color: #1F2D3D;
R
REJack 已提交
16728 16729 16730 16731 16732
  border-color: #d39e00;
}

.bg-gradient-yellow.btn:hover {
  background: #e0a800 linear-gradient(180deg, #e4b526, #e0a800) repeat-x !important;
16733 16734
}

R
REJack 已提交
16735
.bg-gradient-yellow.btn:active, .bg-gradient-yellow.btn.active {
16736
  color: #1F2D3D;
R
REJack 已提交
16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780
  border-color: #c69500;
}

.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 {
  color: #ffffff;
  border-color: #1e7e34;
}

.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 {
  color: #ffffff;
  border-color: #1c7430;
}

.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;
16781 16782
}

R
REJack 已提交
16783 16784 16785 16786 16787 16788
.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 {
16789
  color: #ffffff;
R
REJack 已提交
16790 16791 16792 16793 16794
  border-color: #199d76;
}

.bg-gradient-teal.btn:hover {
  background: #1ba87e linear-gradient(180deg, #3db592, #1ba87e) repeat-x !important;
16795 16796
}

R
REJack 已提交
16797
.bg-gradient-teal.btn:active, .bg-gradient-teal.btn.active {
16798
  color: #ffffff;
R
REJack 已提交
16799
  border-color: #17926e;
16800 16801
}

R
REJack 已提交
16802 16803 16804 16805 16806
.bg-gradient-teal.btn:active, .bg-gradient-teal.btn.active {
  background: #199d76 linear-gradient(180deg, #3bac8b, #199d76) repeat-x !important;
}

.bg-gradient-cyan {
16807 16808 16809
  color: #ffffff;
}

R
REJack 已提交
16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859
.bg-gradient-cyan {
  background: #17a2b8 linear-gradient(180deg, #3ab0c3, #17a2b8) repeat-x !important;
}

.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;
}

.bg-gradient-cyan.btn:hover {
  color: #ffffff;
  border-color: #117a8b;
}

.bg-gradient-cyan.btn:hover {
  background: #138496 linear-gradient(180deg, #3697a6, #138496) repeat-x !important;
}

.bg-gradient-cyan.btn:active, .bg-gradient-cyan.btn.active {
  color: #ffffff;
  border-color: #10707f;
}

.bg-gradient-cyan.btn:active, .bg-gradient-cyan.btn.active {
  background: #117a8b linear-gradient(180deg, #358e9c, #117a8b) repeat-x !important;
}

.bg-gradient-white {
  color: #1F2D3D;
}

.bg-gradient-white {
  background: #ffffff linear-gradient(180deg, white, #ffffff) repeat-x !important;
}

.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;
}

.bg-gradient-white.btn:hover {
  color: #1F2D3D;
  border-color: #e6e6e6;
}

.bg-gradient-white.btn:hover {
  background: #ececec linear-gradient(180deg, #efefef, #ececec) repeat-x !important;
}

.bg-gradient-white.btn:active, .bg-gradient-white.btn.active {
16860
  color: #1F2D3D;
R
REJack 已提交
16861 16862 16863 16864 16865
  border-color: #dfdfdf;
}

.bg-gradient-white.btn:active, .bg-gradient-white.btn.active {
  background: #e6e6e6 linear-gradient(180deg, #e9e9e9, #e6e6e6) repeat-x !important;
16866 16867
}

R
REJack 已提交
16868
.bg-gradient-gray {
16869 16870 16871
  color: #ffffff;
}

R
REJack 已提交
16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890
.bg-gradient-gray {
  background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x !important;
}

.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;
}

.bg-gradient-gray.btn:hover {
  color: #ffffff;
  border-color: #545b62;
}

.bg-gradient-gray.btn:hover {
  background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x !important;
}

.bg-gradient-gray.btn:active, .bg-gradient-gray.btn.active {
R
REJack 已提交
16891
  color: #ffffff;
R
REJack 已提交
16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927
  border-color: #4e555b;
}

.bg-gradient-gray.btn:active, .bg-gradient-gray.btn.active {
  background: #545b62 linear-gradient(180deg, #6e7479, #545b62) repeat-x !important;
}

.bg-gradient-gray-dark {
  color: #ffffff;
}

.bg-gradient-gray-dark {
  background: #343a40 linear-gradient(180deg, #52585d, #343a40) repeat-x !important;
}

.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;
}

.bg-gradient-gray-dark.btn:hover {
  color: #ffffff;
  border-color: #1d2124;
}

.bg-gradient-gray-dark.btn:hover {
  background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x !important;
}

.bg-gradient-gray-dark.btn:active, .bg-gradient-gray-dark.btn.active {
  color: #ffffff;
  border-color: #171a1d;
}

.bg-gradient-gray-dark.btn:active, .bg-gradient-gray-dark.btn.active {
  background: #1d2124 linear-gradient(180deg, #3f4245, #1d2124) repeat-x !important;
R
REJack 已提交
16928 16929
}

A
Abdullah Almsaeed 已提交
16930 16931 16932
[class^="bg-"].disabled {
  opacity: .65;
}
A
Abdullah Almsaeed 已提交
16933 16934

.link-muted {
A
Abdullah Almsaeed 已提交
16935 16936 16937 16938 16939 16940
  color: #5d6974;
}

.link-muted:hover, .link-muted:focus {
  color: #464f58;
}
A
Abdullah Almsaeed 已提交
16941 16942

.link-black {
A
Abdullah Almsaeed 已提交
16943 16944 16945 16946 16947 16948
  color: #666;
}

.link-black:hover, .link-black:focus {
  color: #999;
}
A
Abdullah Almsaeed 已提交
16949 16950

.hide {
A
Abdullah Almsaeed 已提交
16951 16952
  display: none !important;
}
A
Abdullah Almsaeed 已提交
16953 16954

.no-border {
A
Abdullah Almsaeed 已提交
16955 16956
  border: 0 !important;
}
A
Abdullah Almsaeed 已提交
16957 16958

.no-shadow {
A
Abdullah Almsaeed 已提交
16959 16960
  box-shadow: none !important;
}
A
Abdullah Almsaeed 已提交
16961 16962

.flat {
A
Abdullah Almsaeed 已提交
16963 16964
  border-radius: 0 !important;
}
A
Abdullah Almsaeed 已提交
16965 16966 16967 16968

.jqstooltip {
  padding: 5px !important;
  width: auto !important;
A
Abdullah Almsaeed 已提交
16969 16970
  height: auto !important;
}
A
Abdullah Almsaeed 已提交
16971

A
Abdullah Almsaeed 已提交
16972 16973 16974
.description-block .description-icon {
  font-size: 16px;
}
A
Abdullah Almsaeed 已提交
16975

16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989
.list-unstyled, .chart-legend, .contacts-list, .users-list, .mailbox-attachments {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-group-unbordered > .list-group-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

A
Abdullah Almsaeed 已提交
16990 16991 16992 16993
.list-header {
  font-size: 15px;
  padding: 10px 4px;
  font-weight: bold;
A
Abdullah Almsaeed 已提交
16994 16995
  color: #666;
}
A
Abdullah Almsaeed 已提交
16996 16997 16998

.list-seperator {
  height: 1px;
A
Abdullah Almsaeed 已提交
16999 17000 17001
  background: rgba(0, 0, 0, 0.125);
  margin: 15px 0 9px 0;
}
A
Abdullah Almsaeed 已提交
17002 17003 17004

.list-link > a {
  padding: 4px;
A
Abdullah Almsaeed 已提交
17005 17006
  color: #777;
}
A
Abdullah Almsaeed 已提交
17007

A
Abdullah Almsaeed 已提交
17008 17009 17010
.list-link > a:hover {
  color: #222;
}
A
Abdullah Almsaeed 已提交
17011 17012

.user-block::after {
A
Abdullah Almsaeed 已提交
17013
  display: block;
A
Abdullah Almsaeed 已提交
17014
  clear: both;
A
Abdullah Almsaeed 已提交
17015 17016
  content: "";
}
A
Abdullah Almsaeed 已提交
17017 17018 17019 17020

.user-block img {
  width: 40px;
  height: 40px;
A
Abdullah Almsaeed 已提交
17021 17022
  float: left;
}
A
Abdullah Almsaeed 已提交
17023 17024 17025 17026 17027

.user-block .username,
.user-block .description,
.user-block .comment {
  display: block;
A
Abdullah Almsaeed 已提交
17028 17029
  margin-left: 50px;
}
A
Abdullah Almsaeed 已提交
17030 17031 17032

.user-block .username {
  font-size: 16px;
A
Abdullah Almsaeed 已提交
17033 17034
  font-weight: 600;
}
A
Abdullah Almsaeed 已提交
17035 17036 17037

.user-block .description {
  color: #999;
A
Abdullah Almsaeed 已提交
17038 17039
  font-size: 13px;
}
A
Abdullah Almsaeed 已提交
17040 17041 17042 17043

.user-block.user-block-sm .username,
.user-block.user-block-sm .description,
.user-block.user-block-sm .comment {
A
Abdullah Almsaeed 已提交
17044 17045
  margin-left: 40px;
}
A
Abdullah Almsaeed 已提交
17046 17047

.user-block.user-block-sm .username {
A
Abdullah Almsaeed 已提交
17048 17049
  font-size: 14px;
}
A
Abdullah Almsaeed 已提交
17050

A
Abdullah Almsaeed 已提交
17051
.img-sm, .card-comments .card-comment img, .user-block.user-block-sm img,
A
Abdullah Almsaeed 已提交
17052 17053
.img-md,
.img-lg {
A
Abdullah Almsaeed 已提交
17054 17055
  float: left;
}
A
Abdullah Almsaeed 已提交
17056

A
Abdullah Almsaeed 已提交
17057
.img-sm, .card-comments .card-comment img, .user-block.user-block-sm img {
A
Abdullah Almsaeed 已提交
17058
  width: 30px !important;
A
Abdullah Almsaeed 已提交
17059 17060 17061 17062 17063 17064
  height: 30px !important;
}

.img-sm + .img-push, .card-comments .card-comment img + .img-push, .user-block.user-block-sm img + .img-push {
  margin-left: 40px;
}
A
Abdullah Almsaeed 已提交
17065 17066 17067

.img-md {
  width: 60px;
A
Abdullah Almsaeed 已提交
17068 17069 17070 17071 17072 17073
  height: 60px;
}

.img-md + .img-push {
  margin-left: 70px;
}
A
Abdullah Almsaeed 已提交
17074 17075 17076

.img-lg {
  width: 100px;
A
Abdullah Almsaeed 已提交
17077 17078 17079 17080 17081 17082
  height: 100px;
}

.img-lg + .img-push {
  margin-left: 110px;
}
A
Abdullah Almsaeed 已提交
17083 17084

.img-bordered {
A
Abdullah Almsaeed 已提交
17085
  border: 3px solid #adb5bd;
A
Abdullah Almsaeed 已提交
17086 17087
  padding: 3px;
}
A
Abdullah Almsaeed 已提交
17088 17089

.img-bordered-sm {
A
Abdullah Almsaeed 已提交
17090
  border: 2px solid #adb5bd;
A
Abdullah Almsaeed 已提交
17091 17092
  padding: 2px;
}
A
Abdullah Almsaeed 已提交
17093 17094

.img-rounded {
A
Abdullah Almsaeed 已提交
17095 17096
  border-radius: 0.25rem;
}
A
Abdullah Almsaeed 已提交
17097 17098

.img-circle {
A
Abdullah Almsaeed 已提交
17099 17100
  border-radius: 50%;
}
A
Abdullah Almsaeed 已提交
17101

17102 17103 17104
.img-size-64,
.img-size-50,
.img-size-32 {
A
Abdullah Almsaeed 已提交
17105 17106
  height: auto;
}
17107 17108

.img-size-64 {
A
Abdullah Almsaeed 已提交
17109 17110
  width: 64px;
}
17111 17112

.img-size-50 {
A
Abdullah Almsaeed 已提交
17113 17114
  width: 50px;
}
17115 17116

.img-size-32 {
A
Abdullah Almsaeed 已提交
17117 17118
  width: 32px;
}
17119 17120 17121 17122 17123

.size-32,
.size-40,
.size-50 {
  display: block;
A
Abdullah Almsaeed 已提交
17124 17125
  text-align: center;
}
17126 17127 17128 17129

.size-32 {
  width: 32px;
  height: 32px;
A
Abdullah Almsaeed 已提交
17130 17131
  line-height: 32px;
}
17132 17133 17134 17135

.size-40 {
  width: 40px;
  height: 40px;
A
Abdullah Almsaeed 已提交
17136 17137
  line-height: 40px;
}
17138 17139 17140 17141

.size-50 {
  width: 50px;
  height: 50px;
A
Abdullah Almsaeed 已提交
17142 17143
  line-height: 50px;
}
17144

A
Abdullah Almsaeed 已提交
17145
.attachment-block {
A
Abdullah Almsaeed 已提交
17146
  border: 1px solid rgba(0, 0, 0, 0.125);
A
Abdullah Almsaeed 已提交
17147 17148
  padding: 5px;
  margin-bottom: 10px;
A
Abdullah Almsaeed 已提交
17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169
  background: #f7f7f7;
}

.attachment-block .attachment-img {
  max-width: 100px;
  max-height: 100px;
  height: auto;
  float: left;
}

.attachment-block .attachment-pushed {
  margin-left: 110px;
}

.attachment-block .attachment-heading {
  margin: 0;
}

.attachment-block .attachment-text {
  color: #555;
}
A
Abdullah Almsaeed 已提交
17170 17171

.connectedSortable {
A
Abdullah Almsaeed 已提交
17172 17173
  min-height: 100px;
}
A
Abdullah Almsaeed 已提交
17174 17175 17176 17177 17178 17179 17180 17181 17182

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
A
Abdullah Almsaeed 已提交
17183 17184
  width: 1px;
}
A
Abdullah Almsaeed 已提交
17185 17186 17187 17188

.sort-highlight {
  background: #f4f4f4;
  border: 1px dashed #ddd;
A
Abdullah Almsaeed 已提交
17189 17190
  margin-bottom: 10px;
}
A
Abdullah Almsaeed 已提交
17191 17192 17193 17194

.chart {
  position: relative;
  overflow: hidden;
A
Abdullah Almsaeed 已提交
17195
}
A
Abdullah Almsaeed 已提交
17196

A
Abdullah Almsaeed 已提交
17197 17198 17199
.flex-1 {
  flex: 1;
}
17200

R
REJack 已提交
17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272
.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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card .overlay,
.overlay-wrapper .overlay,
.info-box .overlay,
.small-box .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.25rem;
}

.card .overlay > .fa,
.card .overlay > .fas,
.card .overlay > .far,
.card .overlay > .fab,
.overlay-wrapper .overlay > .fa,
.overlay-wrapper .overlay > .fas,
.overlay-wrapper .overlay > .far,
.overlay-wrapper .overlay > .fab,
.info-box .overlay > .fa,
.info-box .overlay > .fas,
.info-box .overlay > .far,
.info-box .overlay > .fab,
.small-box .overlay > .fa,
.small-box .overlay > .fas,
.small-box .overlay > .far,
.small-box .overlay > .fab {
  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,
.overlay-wrapper .overlay.dark > .fa,
.overlay-wrapper .overlay.dark > .fas,
.overlay-wrapper .overlay.dark > .far,
.overlay-wrapper .overlay.dark > .fab,
.info-box .overlay.dark > .fa,
.info-box .overlay.dark > .fas,
.info-box .overlay.dark > .far,
.info-box .overlay.dark > .fab,
.small-box .overlay.dark > .fa,
.small-box .overlay.dark > .fas,
.small-box .overlay.dark > .far,
.small-box .overlay.dark > .fab {
  color: #ced4da;
}

A
Abdullah Almsaeed 已提交
17273 17274 17275 17276 17277 17278 17279 17280
/*
 * Misc: print
 * -----------
 */
@media print {
  .no-print, .main-sidebar,
  .main-header,
  .content-header {
A
Abdullah Almsaeed 已提交
17281 17282
    display: none !important;
  }
A
Abdullah Almsaeed 已提交
17283 17284 17285 17286 17287
  .content-wrapper,
  .main-footer {
    margin-left: 0 !important;
    min-height: 0 !important;
    -webkit-transform: translate(0, 0);
A
Abdullah Almsaeed 已提交
17288 17289
    transform: translate(0, 0);
  }
A
Abdullah Almsaeed 已提交
17290
  .layout-fixed .content-wrapper {
A
Abdullah Almsaeed 已提交
17291 17292
    padding-top: 0 !important;
  }
A
Abdullah Almsaeed 已提交
17293 17294 17295 17296
  .invoice {
    width: 100%;
    border: 0;
    margin: 0;
A
Abdullah Almsaeed 已提交
17297 17298
    padding: 0;
  }
A
Abdullah Almsaeed 已提交
17299 17300
  .invoice-col {
    float: left;
A
Abdullah Almsaeed 已提交
17301 17302
    width: 33.3333333%;
  }
A
Abdullah Almsaeed 已提交
17303
  .table-responsive {
A
Abdullah Almsaeed 已提交
17304 17305 17306 17307 17308 17309 17310
    overflow: auto;
  }
  .table-responsive > .table tr th,
  .table-responsive > .table tr td {
    white-space: normal !important;
  }
}
A
Abdullah Almsaeed 已提交
17311

A
Abdullah Almsaeed 已提交
17312 17313 17314
.text-bold, .text-bold.table td, .text-bold.table th {
  font-weight: 700;
}
A
Abdullah Almsaeed 已提交
17315

A
Abdullah Almsaeed 已提交
17316 17317 17318
.text-sm {
  font-size: 0.875rem;
}
A
Abdullah Almsaeed 已提交
17319

A
Abdullah Almsaeed 已提交
17320 17321 17322
.text-xs {
  font-size: 1rem;
}
A
Abdullah Almsaeed 已提交
17323

A
Abdullah Almsaeed 已提交
17324 17325 17326
.text-lg {
  font-size: 1.25rem;
}
A
Abdullah Almsaeed 已提交
17327

A
Abdullah Almsaeed 已提交
17328 17329 17330
.text-xl {
  font-size: 2rem;
}
A
Abdullah Almsaeed 已提交
17331

A
Abdullah Almsaeed 已提交
17332 17333 17334
.elevation-0 {
  box-shadow: none;
}
A
Abdullah Almsaeed 已提交
17335

A
Abdullah Almsaeed 已提交
17336 17337 17338
.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, .callout {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
A
Abdullah Almsaeed 已提交
17339

A
Abdullah Almsaeed 已提交
17340 17341 17342
.elevation-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
A
Abdullah Almsaeed 已提交
17343

A
Abdullah Almsaeed 已提交
17344 17345 17346
.elevation-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
17347

A
Abdullah Almsaeed 已提交
17348 17349 17350
.elevation-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
A
Abdullah Almsaeed 已提交
17351

A
Abdullah Almsaeed 已提交
17352 17353 17354 17355
.elevation-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
/*# sourceMappingURL=adminlte.css.map */