GPQAPP

Форк
0
/
adminlte.plugins.css 
9146 строк · 310.0 Кб
1
/*!
2
 *   AdminLTE v3.2.0
3
 *     Only Plugins
4
 *   Author: Colorlib
5
 *   Website: AdminLTE.io <https://adminlte.io>
6
 *   License: Open source - MIT <https://opensource.org/licenses/MIT>
7
 */
8
@-webkit-keyframes flipInX {
9
  0% {
10
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
11
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
12
    transition-timing-function: ease-in;
13
    opacity: 0;
14
  }
15
  40% {
16
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
17
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
18
    transition-timing-function: ease-in;
19
  }
20
  60% {
21
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
22
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
23
    opacity: 1;
24
  }
25
  80% {
26
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
27
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
28
  }
29
  100% {
30
    -webkit-transform: perspective(400px);
31
    transform: perspective(400px);
32
  }
33
}
34
@keyframes flipInX {
35
  0% {
36
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
37
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
38
    transition-timing-function: ease-in;
39
    opacity: 0;
40
  }
41
  40% {
42
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
43
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
44
    transition-timing-function: ease-in;
45
  }
46
  60% {
47
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
48
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
49
    opacity: 1;
50
  }
51
  80% {
52
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
53
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
54
  }
55
  100% {
56
    -webkit-transform: perspective(400px);
57
    transform: perspective(400px);
58
  }
59
}
60

61
@-webkit-keyframes fadeIn {
62
  from {
63
    opacity: 0;
64
  }
65
  to {
66
    opacity: 1;
67
  }
68
}
69

70
@keyframes fadeIn {
71
  from {
72
    opacity: 0;
73
  }
74
  to {
75
    opacity: 1;
76
  }
77
}
78

79
@-webkit-keyframes fadeOut {
80
  from {
81
    opacity: 1;
82
  }
83
  to {
84
    opacity: 0;
85
  }
86
}
87

88
@keyframes fadeOut {
89
  from {
90
    opacity: 1;
91
  }
92
  to {
93
    opacity: 0;
94
  }
95
}
96

97
@-webkit-keyframes shake {
98
  0% {
99
    -webkit-transform: translate(2px, 1px) rotate(0deg);
100
    transform: translate(2px, 1px) rotate(0deg);
101
  }
102
  10% {
103
    -webkit-transform: translate(-1px, -2px) rotate(-2deg);
104
    transform: translate(-1px, -2px) rotate(-2deg);
105
  }
106
  20% {
107
    -webkit-transform: translate(-3px, 0) rotate(3deg);
108
    transform: translate(-3px, 0) rotate(3deg);
109
  }
110
  30% {
111
    -webkit-transform: translate(0, 2px) rotate(0deg);
112
    transform: translate(0, 2px) rotate(0deg);
113
  }
114
  40% {
115
    -webkit-transform: translate(1px, -1px) rotate(1deg);
116
    transform: translate(1px, -1px) rotate(1deg);
117
  }
118
  50% {
119
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
120
    transform: translate(-1px, 2px) rotate(-1deg);
121
  }
122
  60% {
123
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
124
    transform: translate(-3px, 1px) rotate(0deg);
125
  }
126
  70% {
127
    -webkit-transform: translate(2px, 1px) rotate(-2deg);
128
    transform: translate(2px, 1px) rotate(-2deg);
129
  }
130
  80% {
131
    -webkit-transform: translate(-1px, -1px) rotate(4deg);
132
    transform: translate(-1px, -1px) rotate(4deg);
133
  }
134
  90% {
135
    -webkit-transform: translate(2px, 2px) rotate(0deg);
136
    transform: translate(2px, 2px) rotate(0deg);
137
  }
138
  100% {
139
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
140
    transform: translate(1px, -2px) rotate(-1deg);
141
  }
142
}
143

144
@keyframes shake {
145
  0% {
146
    -webkit-transform: translate(2px, 1px) rotate(0deg);
147
    transform: translate(2px, 1px) rotate(0deg);
148
  }
149
  10% {
150
    -webkit-transform: translate(-1px, -2px) rotate(-2deg);
151
    transform: translate(-1px, -2px) rotate(-2deg);
152
  }
153
  20% {
154
    -webkit-transform: translate(-3px, 0) rotate(3deg);
155
    transform: translate(-3px, 0) rotate(3deg);
156
  }
157
  30% {
158
    -webkit-transform: translate(0, 2px) rotate(0deg);
159
    transform: translate(0, 2px) rotate(0deg);
160
  }
161
  40% {
162
    -webkit-transform: translate(1px, -1px) rotate(1deg);
163
    transform: translate(1px, -1px) rotate(1deg);
164
  }
165
  50% {
166
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
167
    transform: translate(-1px, 2px) rotate(-1deg);
168
  }
169
  60% {
170
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
171
    transform: translate(-3px, 1px) rotate(0deg);
172
  }
173
  70% {
174
    -webkit-transform: translate(2px, 1px) rotate(-2deg);
175
    transform: translate(2px, 1px) rotate(-2deg);
176
  }
177
  80% {
178
    -webkit-transform: translate(-1px, -1px) rotate(4deg);
179
    transform: translate(-1px, -1px) rotate(4deg);
180
  }
181
  90% {
182
    -webkit-transform: translate(2px, 2px) rotate(0deg);
183
    transform: translate(2px, 2px) rotate(0deg);
184
  }
185
  100% {
186
    -webkit-transform: translate(1px, -2px) rotate(-1deg);
187
    transform: translate(1px, -2px) rotate(-1deg);
188
  }
189
}
190

191
@-webkit-keyframes wobble {
192
  0% {
193
    -webkit-transform: none;
194
    transform: none;
195
  }
196
  15% {
197
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
198
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
199
  }
200
  30% {
201
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
202
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
203
  }
204
  45% {
205
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
206
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
207
  }
208
  60% {
209
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
210
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
211
  }
212
  75% {
213
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
214
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
215
  }
216
  100% {
217
    -webkit-transform: none;
218
    transform: none;
219
  }
220
}
221

222
@keyframes wobble {
223
  0% {
224
    -webkit-transform: none;
225
    transform: none;
226
  }
227
  15% {
228
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
229
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
230
  }
231
  30% {
232
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
233
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
234
  }
235
  45% {
236
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
237
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
238
  }
239
  60% {
240
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
241
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
242
  }
243
  75% {
244
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
245
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
246
  }
247
  100% {
248
    -webkit-transform: none;
249
    transform: none;
250
  }
251
}
252

253
.fc-button {
254
  background: #f8f9fa;
255
  background-image: none;
256
  border-bottom-color: #ddd;
257
  border-color: #ddd;
258
  color: #495057;
259
}
260

261
.fc-button:hover, .fc-button:active, .fc-button.hover {
262
  background-color: #e9e9e9;
263
}
264

265
.fc-header-title h2 {
266
  color: #666;
267
  font-size: 15px;
268
  line-height: 1.6em;
269
  margin-left: 10px;
270
}
271

272
.fc-header-right {
273
  padding-right: 10px;
274
}
275

276
.fc-header-left {
277
  padding-left: 10px;
278
}
279

280
.fc-widget-header {
281
  background: #fafafa;
282
}
283

284
.fc-grid {
285
  border: 0;
286
  width: 100%;
287
}
288

289
.fc-widget-header:first-of-type,
290
.fc-widget-content:first-of-type {
291
  border-left: 0;
292
  border-right: 0;
293
}
294

295
.fc-widget-header:last-of-type,
296
.fc-widget-content:last-of-type {
297
  border-right: 0;
298
}
299

300
.fc-toolbar,
301
.fc-toolbar.fc-header-toolbar {
302
  margin: 0;
303
  padding: 1rem;
304
}
305

306
@media (max-width: 575.98px) {
307
  .fc-toolbar {
308
    -ms-flex-direction: column;
309
    flex-direction: column;
310
  }
311
  .fc-toolbar .fc-left {
312
    -ms-flex-order: 1;
313
    order: 1;
314
    margin-bottom: .5rem;
315
  }
316
  .fc-toolbar .fc-center {
317
    -ms-flex-order: 0;
318
    order: 0;
319
    margin-bottom: .375rem;
320
  }
321
  .fc-toolbar .fc-right {
322
    -ms-flex-order: 2;
323
    order: 2;
324
  }
325
}
326

327
.fc-day-number {
328
  font-size: 20px;
329
  font-weight: 300;
330
  padding-right: 10px;
331
}
332

333
.fc-color-picker {
334
  list-style: none;
335
  margin: 0;
336
  padding: 0;
337
}
338

339
.fc-color-picker > li {
340
  float: left;
341
  font-size: 30px;
342
  line-height: 30px;
343
  margin-right: 5px;
344
}
345

346
.fc-color-picker > li .fa,
347
.fc-color-picker > li .fas,
348
.fc-color-picker > li .far,
349
.fc-color-picker > li .fab,
350
.fc-color-picker > li .fal,
351
.fc-color-picker > li .fad,
352
.fc-color-picker > li .svg-inline--fa,
353
.fc-color-picker > li .ion {
354
  transition: -webkit-transform linear .3s;
355
  transition: transform linear .3s;
356
  transition: transform linear .3s, -webkit-transform linear .3s;
357
}
358

359
.fc-color-picker > li .fa:hover,
360
.fc-color-picker > li .fas:hover,
361
.fc-color-picker > li .far:hover,
362
.fc-color-picker > li .fab:hover,
363
.fc-color-picker > li .fal:hover,
364
.fc-color-picker > li .fad:hover,
365
.fc-color-picker > li .svg-inline--fa:hover,
366
.fc-color-picker > li .ion:hover {
367
  -webkit-transform: rotate(30deg);
368
  transform: rotate(30deg);
369
}
370

371
#add-new-event {
372
  transition: all linear .3s;
373
}
374

375
.external-event {
376
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
377
  border-radius: 0.25rem;
378
  cursor: move;
379
  font-weight: 700;
380
  margin-bottom: 4px;
381
  padding: 5px 10px;
382
}
383

384
.external-event:hover {
385
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
386
}
387

388
.select2-container--default .select2-selection--single {
389
  border: 1px solid #ced4da;
390
  padding: 0.46875rem 0.75rem;
391
  height: calc(2.25rem + 2px);
392
}
393

394
.select2-container--default.select2-container--open .select2-selection--single {
395
  border-color: #80bdff;
396
}
397

398
.select2-container--default .select2-dropdown {
399
  border: 1px solid #ced4da;
400
}
401

402
.select2-container--default .select2-results__option {
403
  padding: 6px 12px;
404
  -webkit-user-select: none;
405
  -moz-user-select: none;
406
  -ms-user-select: none;
407
  user-select: none;
408
}
409

410
.select2-container--default .select2-selection--single .select2-selection__rendered {
411
  padding-left: 0;
412
  height: auto;
413
  margin-top: -3px;
414
}
415

416
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__rendered {
417
  padding-right: 6px;
418
  padding-left: 20px;
419
}
420

421
.select2-container--default .select2-selection--single .select2-selection__arrow {
422
  height: 31px;
423
  right: 6px;
424
}
425

426
.select2-container--default .select2-selection--single .select2-selection__arrow b {
427
  margin-top: 0;
428
}
429

430
.select2-container--default .select2-dropdown .select2-search__field,
431
.select2-container--default .select2-search--inline .select2-search__field {
432
  border: 1px solid #ced4da;
433
}
434

435
.select2-container--default .select2-dropdown .select2-search__field:focus,
436
.select2-container--default .select2-search--inline .select2-search__field:focus {
437
  outline: none;
438
  border: 1px solid #80bdff;
439
}
440

441
.select2-container--default .select2-dropdown.select2-dropdown--below {
442
  border-top: 0;
443
}
444

445
.select2-container--default .select2-dropdown.select2-dropdown--above {
446
  border-bottom: 0;
447
}
448

449
.select2-container--default .select2-results__option[aria-disabled='true'] {
450
  color: #6c757d;
451
}
452

453
.select2-container--default .select2-results__option[aria-selected='true'] {
454
  background-color: #dee2e6;
455
}
456

457
.select2-container--default .select2-results__option[aria-selected='true'], .select2-container--default .select2-results__option[aria-selected='true']:hover {
458
  color: #1f2d3d;
459
}
460

461
.select2-container--default .select2-results__option--highlighted {
462
  background-color: #007bff;
463
  color: #fff;
464
}
465

466
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
467
  background-color: #0074f0;
468
  color: #fff;
469
}
470

471
.select2-container--default .select2-selection--multiple {
472
  border: 1px solid #ced4da;
473
  min-height: calc(2.25rem + 2px);
474
}
475

476
.select2-container--default .select2-selection--multiple:focus {
477
  border-color: #80bdff;
478
}
479

480
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
481
  padding: 0 0.375rem 0.375rem;
482
  margin-bottom: -0.375rem;
483
}
484

485
.select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline {
486
  width: 100%;
487
  margin-left: 0.375rem;
488
}
489

490
.select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline .select2-search__field {
491
  width: 100% !important;
492
}
493

494
.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline .select2-search__field {
495
  border: 0;
496
  margin-top: 6px;
497
}
498

499
.select2-container--default .select2-selection--multiple .select2-selection__choice {
500
  background-color: #007bff;
501
  border-color: #006fe6;
502
  color: #fff;
503
  padding: 0 10px;
504
  margin-top: .31rem;
505
}
506

507
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
508
  color: rgba(255, 255, 255, 0.7);
509
  float: right;
510
  margin-left: 5px;
511
  margin-right: -2px;
512
}
513

514
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
515
  color: #fff;
516
}
517

518
.text-sm .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline .select2-search__field, .select2-container--default .select2-selection--multiple.text-sm .select2-search.select2-search--inline .select2-search__field {
519
  margin-top: 8px;
520
}
521

522
.text-sm .select2-container--default .select2-selection--multiple .select2-selection__choice, .select2-container--default .select2-selection--multiple.text-sm .select2-selection__choice {
523
  margin-top: .4rem;
524
}
525

526
.select2-container--default.select2-container--focus .select2-selection--single,
527
.select2-container--default.select2-container--focus .select2-selection--multiple {
528
  border-color: #80bdff;
529
}
530

531
.select2-container--default.select2-container--focus .select2-search__field {
532
  border: 0;
533
}
534

535
.select2-container--default .select2-selection--single .select2-selection__rendered li {
536
  padding-right: 10px;
537
}
538

539
.input-group-prepend ~ .select2-container--default .select2-selection {
540
  border-bottom-left-radius: 0;
541
  border-top-left-radius: 0;
542
}
543

544
.input-group > .select2-container--default:not(:last-child) .select2-selection {
545
  border-bottom-right-radius: 0;
546
  border-top-right-radius: 0;
547
}
548

549
.select2-container--bootstrap4.select2-container--focus .select2-selection {
550
  box-shadow: none;
551
}
552

553
select.form-control-sm ~ .select2-container--default {
554
  font-size: 75%;
555
}
556

557
.text-sm .select2-container--default .select2-selection--single,
558
select.form-control-sm ~ .select2-container--default .select2-selection--single {
559
  height: calc(1.8125rem + 2px);
560
}
561

562
.text-sm .select2-container--default .select2-selection--single .select2-selection__rendered,
563
select.form-control-sm ~ .select2-container--default .select2-selection--single .select2-selection__rendered {
564
  margin-top: -.4rem;
565
}
566

567
.text-sm .select2-container--default .select2-selection--single .select2-selection__arrow,
568
select.form-control-sm ~ .select2-container--default .select2-selection--single .select2-selection__arrow {
569
  top: -.12rem;
570
}
571

572
.text-sm .select2-container--default .select2-selection--multiple,
573
select.form-control-sm ~ .select2-container--default .select2-selection--multiple {
574
  min-height: calc(1.8125rem + 2px);
575
}
576

577
.text-sm .select2-container--default .select2-selection--multiple .select2-selection__rendered,
578
select.form-control-sm ~ .select2-container--default .select2-selection--multiple .select2-selection__rendered {
579
  padding: 0 0.25rem 0.25rem;
580
  margin-top: -0.1rem;
581
}
582

583
.text-sm .select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline,
584
select.form-control-sm ~ .select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline {
585
  margin-left: 0.25rem;
586
}
587

588
.text-sm .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline .select2-search__field,
589
select.form-control-sm ~ .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline .select2-search__field {
590
  margin-top: 6px;
591
}
592

593
.maximized-card .select2-dropdown {
594
  z-index: 9999;
595
}
596

597
.select2-primary + .select2-container--default.select2-container--open .select2-selection--single {
598
  border-color: #80bdff;
599
}
600

601
.select2-primary + .select2-container--default.select2-container--focus .select2-selection--single {
602
  border-color: #80bdff;
603
}
604

605
.select2-container--default .select2-primary.select2-dropdown .select2-search__field:focus,
606
.select2-container--default .select2-primary .select2-dropdown .select2-search__field:focus,
607
.select2-container--default .select2-primary .select2-search--inline .select2-search__field:focus,
608
.select2-primary .select2-container--default.select2-dropdown .select2-search__field:focus,
609
.select2-primary .select2-container--default .select2-dropdown .select2-search__field:focus,
610
.select2-primary .select2-container--default .select2-search--inline .select2-search__field:focus {
611
  border: 1px solid #80bdff;
612
}
613

614
.select2-container--default .select2-primary .select2-results__option--highlighted,
615
.select2-primary .select2-container--default .select2-results__option--highlighted {
616
  background-color: #007bff;
617
  color: #fff;
618
}
619

620
.select2-container--default .select2-primary .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-primary .select2-results__option--highlighted[aria-selected]:hover,
621
.select2-primary .select2-container--default .select2-results__option--highlighted[aria-selected],
622
.select2-primary .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
623
  background-color: #0074f0;
624
  color: #fff;
625
}
626

627
.select2-container--default .select2-primary .select2-selection--multiple:focus,
628
.select2-primary .select2-container--default .select2-selection--multiple:focus {
629
  border-color: #80bdff;
630
}
631

632
.select2-container--default .select2-primary .select2-selection--multiple .select2-selection__choice,
633
.select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice {
634
  background-color: #007bff;
635
  border-color: #006fe6;
636
  color: #fff;
637
}
638

639
.select2-container--default .select2-primary .select2-selection--multiple .select2-selection__choice__remove,
640
.select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
641
  color: rgba(255, 255, 255, 0.7);
642
}
643

644
.select2-container--default .select2-primary .select2-selection--multiple .select2-selection__choice__remove:hover,
645
.select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
646
  color: #fff;
647
}
648

649
.select2-container--default .select2-primary.select2-container--focus .select2-selection--multiple,
650
.select2-primary .select2-container--default.select2-container--focus .select2-selection--multiple {
651
  border-color: #80bdff;
652
}
653

654
.select2-secondary + .select2-container--default.select2-container--open .select2-selection--single {
655
  border-color: #afb5ba;
656
}
657

658
.select2-secondary + .select2-container--default.select2-container--focus .select2-selection--single {
659
  border-color: #afb5ba;
660
}
661

662
.select2-container--default .select2-secondary.select2-dropdown .select2-search__field:focus,
663
.select2-container--default .select2-secondary .select2-dropdown .select2-search__field:focus,
664
.select2-container--default .select2-secondary .select2-search--inline .select2-search__field:focus,
665
.select2-secondary .select2-container--default.select2-dropdown .select2-search__field:focus,
666
.select2-secondary .select2-container--default .select2-dropdown .select2-search__field:focus,
667
.select2-secondary .select2-container--default .select2-search--inline .select2-search__field:focus {
668
  border: 1px solid #afb5ba;
669
}
670

671
.select2-container--default .select2-secondary .select2-results__option--highlighted,
672
.select2-secondary .select2-container--default .select2-results__option--highlighted {
673
  background-color: #6c757d;
674
  color: #fff;
675
}
676

677
.select2-container--default .select2-secondary .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-secondary .select2-results__option--highlighted[aria-selected]:hover,
678
.select2-secondary .select2-container--default .select2-results__option--highlighted[aria-selected],
679
.select2-secondary .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
680
  background-color: #656d75;
681
  color: #fff;
682
}
683

684
.select2-container--default .select2-secondary .select2-selection--multiple:focus,
685
.select2-secondary .select2-container--default .select2-selection--multiple:focus {
686
  border-color: #afb5ba;
687
}
688

689
.select2-container--default .select2-secondary .select2-selection--multiple .select2-selection__choice,
690
.select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice {
691
  background-color: #6c757d;
692
  border-color: #60686f;
693
  color: #fff;
694
}
695

696
.select2-container--default .select2-secondary .select2-selection--multiple .select2-selection__choice__remove,
697
.select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
698
  color: rgba(255, 255, 255, 0.7);
699
}
700

701
.select2-container--default .select2-secondary .select2-selection--multiple .select2-selection__choice__remove:hover,
702
.select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
703
  color: #fff;
704
}
705

706
.select2-container--default .select2-secondary.select2-container--focus .select2-selection--multiple,
707
.select2-secondary .select2-container--default.select2-container--focus .select2-selection--multiple {
708
  border-color: #afb5ba;
709
}
710

711
.select2-success + .select2-container--default.select2-container--open .select2-selection--single {
712
  border-color: #71dd8a;
713
}
714

715
.select2-success + .select2-container--default.select2-container--focus .select2-selection--single {
716
  border-color: #71dd8a;
717
}
718

719
.select2-container--default .select2-success.select2-dropdown .select2-search__field:focus,
720
.select2-container--default .select2-success .select2-dropdown .select2-search__field:focus,
721
.select2-container--default .select2-success .select2-search--inline .select2-search__field:focus,
722
.select2-success .select2-container--default.select2-dropdown .select2-search__field:focus,
723
.select2-success .select2-container--default .select2-dropdown .select2-search__field:focus,
724
.select2-success .select2-container--default .select2-search--inline .select2-search__field:focus {
725
  border: 1px solid #71dd8a;
726
}
727

728
.select2-container--default .select2-success .select2-results__option--highlighted,
729
.select2-success .select2-container--default .select2-results__option--highlighted {
730
  background-color: #28a745;
731
  color: #fff;
732
}
733

734
.select2-container--default .select2-success .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-success .select2-results__option--highlighted[aria-selected]:hover,
735
.select2-success .select2-container--default .select2-results__option--highlighted[aria-selected],
736
.select2-success .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
737
  background-color: #259b40;
738
  color: #fff;
739
}
740

741
.select2-container--default .select2-success .select2-selection--multiple:focus,
742
.select2-success .select2-container--default .select2-selection--multiple:focus {
743
  border-color: #71dd8a;
744
}
745

746
.select2-container--default .select2-success .select2-selection--multiple .select2-selection__choice,
747
.select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice {
748
  background-color: #28a745;
749
  border-color: #23923d;
750
  color: #fff;
751
}
752

753
.select2-container--default .select2-success .select2-selection--multiple .select2-selection__choice__remove,
754
.select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
755
  color: rgba(255, 255, 255, 0.7);
756
}
757

758
.select2-container--default .select2-success .select2-selection--multiple .select2-selection__choice__remove:hover,
759
.select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
760
  color: #fff;
761
}
762

763
.select2-container--default .select2-success.select2-container--focus .select2-selection--multiple,
764
.select2-success .select2-container--default.select2-container--focus .select2-selection--multiple {
765
  border-color: #71dd8a;
766
}
767

768
.select2-info + .select2-container--default.select2-container--open .select2-selection--single {
769
  border-color: #63d9ec;
770
}
771

772
.select2-info + .select2-container--default.select2-container--focus .select2-selection--single {
773
  border-color: #63d9ec;
774
}
775

776
.select2-container--default .select2-info.select2-dropdown .select2-search__field:focus,
777
.select2-container--default .select2-info .select2-dropdown .select2-search__field:focus,
778
.select2-container--default .select2-info .select2-search--inline .select2-search__field:focus,
779
.select2-info .select2-container--default.select2-dropdown .select2-search__field:focus,
780
.select2-info .select2-container--default .select2-dropdown .select2-search__field:focus,
781
.select2-info .select2-container--default .select2-search--inline .select2-search__field:focus {
782
  border: 1px solid #63d9ec;
783
}
784

785
.select2-container--default .select2-info .select2-results__option--highlighted,
786
.select2-info .select2-container--default .select2-results__option--highlighted {
787
  background-color: #17a2b8;
788
  color: #fff;
789
}
790

791
.select2-container--default .select2-info .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-info .select2-results__option--highlighted[aria-selected]:hover,
792
.select2-info .select2-container--default .select2-results__option--highlighted[aria-selected],
793
.select2-info .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
794
  background-color: #1596aa;
795
  color: #fff;
796
}
797

798
.select2-container--default .select2-info .select2-selection--multiple:focus,
799
.select2-info .select2-container--default .select2-selection--multiple:focus {
800
  border-color: #63d9ec;
801
}
802

803
.select2-container--default .select2-info .select2-selection--multiple .select2-selection__choice,
804
.select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice {
805
  background-color: #17a2b8;
806
  border-color: #148ea1;
807
  color: #fff;
808
}
809

810
.select2-container--default .select2-info .select2-selection--multiple .select2-selection__choice__remove,
811
.select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
812
  color: rgba(255, 255, 255, 0.7);
813
}
814

815
.select2-container--default .select2-info .select2-selection--multiple .select2-selection__choice__remove:hover,
816
.select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
817
  color: #fff;
818
}
819

820
.select2-container--default .select2-info.select2-container--focus .select2-selection--multiple,
821
.select2-info .select2-container--default.select2-container--focus .select2-selection--multiple {
822
  border-color: #63d9ec;
823
}
824

825
.select2-warning + .select2-container--default.select2-container--open .select2-selection--single {
826
  border-color: #ffe187;
827
}
828

829
.select2-warning + .select2-container--default.select2-container--focus .select2-selection--single {
830
  border-color: #ffe187;
831
}
832

833
.select2-container--default .select2-warning.select2-dropdown .select2-search__field:focus,
834
.select2-container--default .select2-warning .select2-dropdown .select2-search__field:focus,
835
.select2-container--default .select2-warning .select2-search--inline .select2-search__field:focus,
836
.select2-warning .select2-container--default.select2-dropdown .select2-search__field:focus,
837
.select2-warning .select2-container--default .select2-dropdown .select2-search__field:focus,
838
.select2-warning .select2-container--default .select2-search--inline .select2-search__field:focus {
839
  border: 1px solid #ffe187;
840
}
841

842
.select2-container--default .select2-warning .select2-results__option--highlighted,
843
.select2-warning .select2-container--default .select2-results__option--highlighted {
844
  background-color: #ffc107;
845
  color: #1f2d3d;
846
}
847

848
.select2-container--default .select2-warning .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-warning .select2-results__option--highlighted[aria-selected]:hover,
849
.select2-warning .select2-container--default .select2-results__option--highlighted[aria-selected],
850
.select2-warning .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
851
  background-color: #f7b900;
852
  color: #1f2d3d;
853
}
854

855
.select2-container--default .select2-warning .select2-selection--multiple:focus,
856
.select2-warning .select2-container--default .select2-selection--multiple:focus {
857
  border-color: #ffe187;
858
}
859

860
.select2-container--default .select2-warning .select2-selection--multiple .select2-selection__choice,
861
.select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice {
862
  background-color: #ffc107;
863
  border-color: #edb100;
864
  color: #1f2d3d;
865
}
866

867
.select2-container--default .select2-warning .select2-selection--multiple .select2-selection__choice__remove,
868
.select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
869
  color: rgba(31, 45, 61, 0.7);
870
}
871

872
.select2-container--default .select2-warning .select2-selection--multiple .select2-selection__choice__remove:hover,
873
.select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
874
  color: #1f2d3d;
875
}
876

877
.select2-container--default .select2-warning.select2-container--focus .select2-selection--multiple,
878
.select2-warning .select2-container--default.select2-container--focus .select2-selection--multiple {
879
  border-color: #ffe187;
880
}
881

882
.select2-danger + .select2-container--default.select2-container--open .select2-selection--single {
883
  border-color: #efa2a9;
884
}
885

886
.select2-danger + .select2-container--default.select2-container--focus .select2-selection--single {
887
  border-color: #efa2a9;
888
}
889

890
.select2-container--default .select2-danger.select2-dropdown .select2-search__field:focus,
891
.select2-container--default .select2-danger .select2-dropdown .select2-search__field:focus,
892
.select2-container--default .select2-danger .select2-search--inline .select2-search__field:focus,
893
.select2-danger .select2-container--default.select2-dropdown .select2-search__field:focus,
894
.select2-danger .select2-container--default .select2-dropdown .select2-search__field:focus,
895
.select2-danger .select2-container--default .select2-search--inline .select2-search__field:focus {
896
  border: 1px solid #efa2a9;
897
}
898

899
.select2-container--default .select2-danger .select2-results__option--highlighted,
900
.select2-danger .select2-container--default .select2-results__option--highlighted {
901
  background-color: #dc3545;
902
  color: #fff;
903
}
904

905
.select2-container--default .select2-danger .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-danger .select2-results__option--highlighted[aria-selected]:hover,
906
.select2-danger .select2-container--default .select2-results__option--highlighted[aria-selected],
907
.select2-danger .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
908
  background-color: #da2839;
909
  color: #fff;
910
}
911

912
.select2-container--default .select2-danger .select2-selection--multiple:focus,
913
.select2-danger .select2-container--default .select2-selection--multiple:focus {
914
  border-color: #efa2a9;
915
}
916

917
.select2-container--default .select2-danger .select2-selection--multiple .select2-selection__choice,
918
.select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice {
919
  background-color: #dc3545;
920
  border-color: #d32535;
921
  color: #fff;
922
}
923

924
.select2-container--default .select2-danger .select2-selection--multiple .select2-selection__choice__remove,
925
.select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
926
  color: rgba(255, 255, 255, 0.7);
927
}
928

929
.select2-container--default .select2-danger .select2-selection--multiple .select2-selection__choice__remove:hover,
930
.select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
931
  color: #fff;
932
}
933

934
.select2-container--default .select2-danger.select2-container--focus .select2-selection--multiple,
935
.select2-danger .select2-container--default.select2-container--focus .select2-selection--multiple {
936
  border-color: #efa2a9;
937
}
938

939
.select2-light + .select2-container--default.select2-container--open .select2-selection--single {
940
  border-color: white;
941
}
942

943
.select2-light + .select2-container--default.select2-container--focus .select2-selection--single {
944
  border-color: white;
945
}
946

947
.select2-container--default .select2-light.select2-dropdown .select2-search__field:focus,
948
.select2-container--default .select2-light .select2-dropdown .select2-search__field:focus,
949
.select2-container--default .select2-light .select2-search--inline .select2-search__field:focus,
950
.select2-light .select2-container--default.select2-dropdown .select2-search__field:focus,
951
.select2-light .select2-container--default .select2-dropdown .select2-search__field:focus,
952
.select2-light .select2-container--default .select2-search--inline .select2-search__field:focus {
953
  border: 1px solid white;
954
}
955

956
.select2-container--default .select2-light .select2-results__option--highlighted,
957
.select2-light .select2-container--default .select2-results__option--highlighted {
958
  background-color: #f8f9fa;
959
  color: #1f2d3d;
960
}
961

962
.select2-container--default .select2-light .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-light .select2-results__option--highlighted[aria-selected]:hover,
963
.select2-light .select2-container--default .select2-results__option--highlighted[aria-selected],
964
.select2-light .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
965
  background-color: #eff1f4;
966
  color: #1f2d3d;
967
}
968

969
.select2-container--default .select2-light .select2-selection--multiple:focus,
970
.select2-light .select2-container--default .select2-selection--multiple:focus {
971
  border-color: white;
972
}
973

974
.select2-container--default .select2-light .select2-selection--multiple .select2-selection__choice,
975
.select2-light .select2-container--default .select2-selection--multiple .select2-selection__choice {
976
  background-color: #f8f9fa;
977
  border-color: #e9ecef;
978
  color: #1f2d3d;
979
}
980

981
.select2-container--default .select2-light .select2-selection--multiple .select2-selection__choice__remove,
982
.select2-light .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
983
  color: rgba(31, 45, 61, 0.7);
984
}
985

986
.select2-container--default .select2-light .select2-selection--multiple .select2-selection__choice__remove:hover,
987
.select2-light .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
988
  color: #1f2d3d;
989
}
990

991
.select2-container--default .select2-light.select2-container--focus .select2-selection--multiple,
992
.select2-light .select2-container--default.select2-container--focus .select2-selection--multiple {
993
  border-color: white;
994
}
995

996
.select2-dark + .select2-container--default.select2-container--open .select2-selection--single {
997
  border-color: #6d7a86;
998
}
999

1000
.select2-dark + .select2-container--default.select2-container--focus .select2-selection--single {
1001
  border-color: #6d7a86;
1002
}
1003

1004
.select2-container--default .select2-dark.select2-dropdown .select2-search__field:focus,
1005
.select2-container--default .select2-dark .select2-dropdown .select2-search__field:focus,
1006
.select2-container--default .select2-dark .select2-search--inline .select2-search__field:focus,
1007
.select2-dark .select2-container--default.select2-dropdown .select2-search__field:focus,
1008
.select2-dark .select2-container--default .select2-dropdown .select2-search__field:focus,
1009
.select2-dark .select2-container--default .select2-search--inline .select2-search__field:focus {
1010
  border: 1px solid #6d7a86;
1011
}
1012

1013
.select2-container--default .select2-dark .select2-results__option--highlighted,
1014
.select2-dark .select2-container--default .select2-results__option--highlighted {
1015
  background-color: #343a40;
1016
  color: #fff;
1017
}
1018

1019
.select2-container--default .select2-dark .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-dark .select2-results__option--highlighted[aria-selected]:hover,
1020
.select2-dark .select2-container--default .select2-results__option--highlighted[aria-selected],
1021
.select2-dark .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1022
  background-color: #2d3238;
1023
  color: #fff;
1024
}
1025

1026
.select2-container--default .select2-dark .select2-selection--multiple:focus,
1027
.select2-dark .select2-container--default .select2-selection--multiple:focus {
1028
  border-color: #6d7a86;
1029
}
1030

1031
.select2-container--default .select2-dark .select2-selection--multiple .select2-selection__choice,
1032
.select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice {
1033
  background-color: #343a40;
1034
  border-color: #292d32;
1035
  color: #fff;
1036
}
1037

1038
.select2-container--default .select2-dark .select2-selection--multiple .select2-selection__choice__remove,
1039
.select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1040
  color: rgba(255, 255, 255, 0.7);
1041
}
1042

1043
.select2-container--default .select2-dark .select2-selection--multiple .select2-selection__choice__remove:hover,
1044
.select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1045
  color: #fff;
1046
}
1047

1048
.select2-container--default .select2-dark.select2-container--focus .select2-selection--multiple,
1049
.select2-dark .select2-container--default.select2-container--focus .select2-selection--multiple {
1050
  border-color: #6d7a86;
1051
}
1052

1053
.select2-lightblue + .select2-container--default.select2-container--open .select2-selection--single {
1054
  border-color: #99c5de;
1055
}
1056

1057
.select2-lightblue + .select2-container--default.select2-container--focus .select2-selection--single {
1058
  border-color: #99c5de;
1059
}
1060

1061
.select2-container--default .select2-lightblue.select2-dropdown .select2-search__field:focus,
1062
.select2-container--default .select2-lightblue .select2-dropdown .select2-search__field:focus,
1063
.select2-container--default .select2-lightblue .select2-search--inline .select2-search__field:focus,
1064
.select2-lightblue .select2-container--default.select2-dropdown .select2-search__field:focus,
1065
.select2-lightblue .select2-container--default .select2-dropdown .select2-search__field:focus,
1066
.select2-lightblue .select2-container--default .select2-search--inline .select2-search__field:focus {
1067
  border: 1px solid #99c5de;
1068
}
1069

1070
.select2-container--default .select2-lightblue .select2-results__option--highlighted,
1071
.select2-lightblue .select2-container--default .select2-results__option--highlighted {
1072
  background-color: #3c8dbc;
1073
  color: #fff;
1074
}
1075

1076
.select2-container--default .select2-lightblue .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-lightblue .select2-results__option--highlighted[aria-selected]:hover,
1077
.select2-lightblue .select2-container--default .select2-results__option--highlighted[aria-selected],
1078
.select2-lightblue .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1079
  background-color: #3884b0;
1080
  color: #fff;
1081
}
1082

1083
.select2-container--default .select2-lightblue .select2-selection--multiple:focus,
1084
.select2-lightblue .select2-container--default .select2-selection--multiple:focus {
1085
  border-color: #99c5de;
1086
}
1087

1088
.select2-container--default .select2-lightblue .select2-selection--multiple .select2-selection__choice,
1089
.select2-lightblue .select2-container--default .select2-selection--multiple .select2-selection__choice {
1090
  background-color: #3c8dbc;
1091
  border-color: #367fa9;
1092
  color: #fff;
1093
}
1094

1095
.select2-container--default .select2-lightblue .select2-selection--multiple .select2-selection__choice__remove,
1096
.select2-lightblue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1097
  color: rgba(255, 255, 255, 0.7);
1098
}
1099

1100
.select2-container--default .select2-lightblue .select2-selection--multiple .select2-selection__choice__remove:hover,
1101
.select2-lightblue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1102
  color: #fff;
1103
}
1104

1105
.select2-container--default .select2-lightblue.select2-container--focus .select2-selection--multiple,
1106
.select2-lightblue .select2-container--default.select2-container--focus .select2-selection--multiple {
1107
  border-color: #99c5de;
1108
}
1109

1110
.select2-navy + .select2-container--default.select2-container--open .select2-selection--single {
1111
  border-color: #005ebf;
1112
}
1113

1114
.select2-navy + .select2-container--default.select2-container--focus .select2-selection--single {
1115
  border-color: #005ebf;
1116
}
1117

1118
.select2-container--default .select2-navy.select2-dropdown .select2-search__field:focus,
1119
.select2-container--default .select2-navy .select2-dropdown .select2-search__field:focus,
1120
.select2-container--default .select2-navy .select2-search--inline .select2-search__field:focus,
1121
.select2-navy .select2-container--default.select2-dropdown .select2-search__field:focus,
1122
.select2-navy .select2-container--default .select2-dropdown .select2-search__field:focus,
1123
.select2-navy .select2-container--default .select2-search--inline .select2-search__field:focus {
1124
  border: 1px solid #005ebf;
1125
}
1126

1127
.select2-container--default .select2-navy .select2-results__option--highlighted,
1128
.select2-navy .select2-container--default .select2-results__option--highlighted {
1129
  background-color: #001f3f;
1130
  color: #fff;
1131
}
1132

1133
.select2-container--default .select2-navy .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-navy .select2-results__option--highlighted[aria-selected]:hover,
1134
.select2-navy .select2-container--default .select2-results__option--highlighted[aria-selected],
1135
.select2-navy .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1136
  background-color: #001730;
1137
  color: #fff;
1138
}
1139

1140
.select2-container--default .select2-navy .select2-selection--multiple:focus,
1141
.select2-navy .select2-container--default .select2-selection--multiple:focus {
1142
  border-color: #005ebf;
1143
}
1144

1145
.select2-container--default .select2-navy .select2-selection--multiple .select2-selection__choice,
1146
.select2-navy .select2-container--default .select2-selection--multiple .select2-selection__choice {
1147
  background-color: #001f3f;
1148
  border-color: #001226;
1149
  color: #fff;
1150
}
1151

1152
.select2-container--default .select2-navy .select2-selection--multiple .select2-selection__choice__remove,
1153
.select2-navy .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1154
  color: rgba(255, 255, 255, 0.7);
1155
}
1156

1157
.select2-container--default .select2-navy .select2-selection--multiple .select2-selection__choice__remove:hover,
1158
.select2-navy .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1159
  color: #fff;
1160
}
1161

1162
.select2-container--default .select2-navy.select2-container--focus .select2-selection--multiple,
1163
.select2-navy .select2-container--default.select2-container--focus .select2-selection--multiple {
1164
  border-color: #005ebf;
1165
}
1166

1167
.select2-olive + .select2-container--default.select2-container--open .select2-selection--single {
1168
  border-color: #87cfaf;
1169
}
1170

1171
.select2-olive + .select2-container--default.select2-container--focus .select2-selection--single {
1172
  border-color: #87cfaf;
1173
}
1174

1175
.select2-container--default .select2-olive.select2-dropdown .select2-search__field:focus,
1176
.select2-container--default .select2-olive .select2-dropdown .select2-search__field:focus,
1177
.select2-container--default .select2-olive .select2-search--inline .select2-search__field:focus,
1178
.select2-olive .select2-container--default.select2-dropdown .select2-search__field:focus,
1179
.select2-olive .select2-container--default .select2-dropdown .select2-search__field:focus,
1180
.select2-olive .select2-container--default .select2-search--inline .select2-search__field:focus {
1181
  border: 1px solid #87cfaf;
1182
}
1183

1184
.select2-container--default .select2-olive .select2-results__option--highlighted,
1185
.select2-olive .select2-container--default .select2-results__option--highlighted {
1186
  background-color: #3d9970;
1187
  color: #fff;
1188
}
1189

1190
.select2-container--default .select2-olive .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-olive .select2-results__option--highlighted[aria-selected]:hover,
1191
.select2-olive .select2-container--default .select2-results__option--highlighted[aria-selected],
1192
.select2-olive .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1193
  background-color: #398e68;
1194
  color: #fff;
1195
}
1196

1197
.select2-container--default .select2-olive .select2-selection--multiple:focus,
1198
.select2-olive .select2-container--default .select2-selection--multiple:focus {
1199
  border-color: #87cfaf;
1200
}
1201

1202
.select2-container--default .select2-olive .select2-selection--multiple .select2-selection__choice,
1203
.select2-olive .select2-container--default .select2-selection--multiple .select2-selection__choice {
1204
  background-color: #3d9970;
1205
  border-color: #368763;
1206
  color: #fff;
1207
}
1208

1209
.select2-container--default .select2-olive .select2-selection--multiple .select2-selection__choice__remove,
1210
.select2-olive .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1211
  color: rgba(255, 255, 255, 0.7);
1212
}
1213

1214
.select2-container--default .select2-olive .select2-selection--multiple .select2-selection__choice__remove:hover,
1215
.select2-olive .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1216
  color: #fff;
1217
}
1218

1219
.select2-container--default .select2-olive.select2-container--focus .select2-selection--multiple,
1220
.select2-olive .select2-container--default.select2-container--focus .select2-selection--multiple {
1221
  border-color: #87cfaf;
1222
}
1223

1224
.select2-lime + .select2-container--default.select2-container--open .select2-selection--single {
1225
  border-color: #81ffb8;
1226
}
1227

1228
.select2-lime + .select2-container--default.select2-container--focus .select2-selection--single {
1229
  border-color: #81ffb8;
1230
}
1231

1232
.select2-container--default .select2-lime.select2-dropdown .select2-search__field:focus,
1233
.select2-container--default .select2-lime .select2-dropdown .select2-search__field:focus,
1234
.select2-container--default .select2-lime .select2-search--inline .select2-search__field:focus,
1235
.select2-lime .select2-container--default.select2-dropdown .select2-search__field:focus,
1236
.select2-lime .select2-container--default .select2-dropdown .select2-search__field:focus,
1237
.select2-lime .select2-container--default .select2-search--inline .select2-search__field:focus {
1238
  border: 1px solid #81ffb8;
1239
}
1240

1241
.select2-container--default .select2-lime .select2-results__option--highlighted,
1242
.select2-lime .select2-container--default .select2-results__option--highlighted {
1243
  background-color: #01ff70;
1244
  color: #1f2d3d;
1245
}
1246

1247
.select2-container--default .select2-lime .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-lime .select2-results__option--highlighted[aria-selected]:hover,
1248
.select2-lime .select2-container--default .select2-results__option--highlighted[aria-selected],
1249
.select2-lime .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1250
  background-color: #00f169;
1251
  color: #1f2d3d;
1252
}
1253

1254
.select2-container--default .select2-lime .select2-selection--multiple:focus,
1255
.select2-lime .select2-container--default .select2-selection--multiple:focus {
1256
  border-color: #81ffb8;
1257
}
1258

1259
.select2-container--default .select2-lime .select2-selection--multiple .select2-selection__choice,
1260
.select2-lime .select2-container--default .select2-selection--multiple .select2-selection__choice {
1261
  background-color: #01ff70;
1262
  border-color: #00e765;
1263
  color: #1f2d3d;
1264
}
1265

1266
.select2-container--default .select2-lime .select2-selection--multiple .select2-selection__choice__remove,
1267
.select2-lime .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1268
  color: rgba(31, 45, 61, 0.7);
1269
}
1270

1271
.select2-container--default .select2-lime .select2-selection--multiple .select2-selection__choice__remove:hover,
1272
.select2-lime .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1273
  color: #1f2d3d;
1274
}
1275

1276
.select2-container--default .select2-lime.select2-container--focus .select2-selection--multiple,
1277
.select2-lime .select2-container--default.select2-container--focus .select2-selection--multiple {
1278
  border-color: #81ffb8;
1279
}
1280

1281
.select2-fuchsia + .select2-container--default.select2-container--open .select2-selection--single {
1282
  border-color: #f88adf;
1283
}
1284

1285
.select2-fuchsia + .select2-container--default.select2-container--focus .select2-selection--single {
1286
  border-color: #f88adf;
1287
}
1288

1289
.select2-container--default .select2-fuchsia.select2-dropdown .select2-search__field:focus,
1290
.select2-container--default .select2-fuchsia .select2-dropdown .select2-search__field:focus,
1291
.select2-container--default .select2-fuchsia .select2-search--inline .select2-search__field:focus,
1292
.select2-fuchsia .select2-container--default.select2-dropdown .select2-search__field:focus,
1293
.select2-fuchsia .select2-container--default .select2-dropdown .select2-search__field:focus,
1294
.select2-fuchsia .select2-container--default .select2-search--inline .select2-search__field:focus {
1295
  border: 1px solid #f88adf;
1296
}
1297

1298
.select2-container--default .select2-fuchsia .select2-results__option--highlighted,
1299
.select2-fuchsia .select2-container--default .select2-results__option--highlighted {
1300
  background-color: #f012be;
1301
  color: #fff;
1302
}
1303

1304
.select2-container--default .select2-fuchsia .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-fuchsia .select2-results__option--highlighted[aria-selected]:hover,
1305
.select2-fuchsia .select2-container--default .select2-results__option--highlighted[aria-selected],
1306
.select2-fuchsia .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1307
  background-color: #e40eb4;
1308
  color: #fff;
1309
}
1310

1311
.select2-container--default .select2-fuchsia .select2-selection--multiple:focus,
1312
.select2-fuchsia .select2-container--default .select2-selection--multiple:focus {
1313
  border-color: #f88adf;
1314
}
1315

1316
.select2-container--default .select2-fuchsia .select2-selection--multiple .select2-selection__choice,
1317
.select2-fuchsia .select2-container--default .select2-selection--multiple .select2-selection__choice {
1318
  background-color: #f012be;
1319
  border-color: #db0ead;
1320
  color: #fff;
1321
}
1322

1323
.select2-container--default .select2-fuchsia .select2-selection--multiple .select2-selection__choice__remove,
1324
.select2-fuchsia .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1325
  color: rgba(255, 255, 255, 0.7);
1326
}
1327

1328
.select2-container--default .select2-fuchsia .select2-selection--multiple .select2-selection__choice__remove:hover,
1329
.select2-fuchsia .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1330
  color: #fff;
1331
}
1332

1333
.select2-container--default .select2-fuchsia.select2-container--focus .select2-selection--multiple,
1334
.select2-fuchsia .select2-container--default.select2-container--focus .select2-selection--multiple {
1335
  border-color: #f88adf;
1336
}
1337

1338
.select2-maroon + .select2-container--default.select2-container--open .select2-selection--single {
1339
  border-color: #f083ab;
1340
}
1341

1342
.select2-maroon + .select2-container--default.select2-container--focus .select2-selection--single {
1343
  border-color: #f083ab;
1344
}
1345

1346
.select2-container--default .select2-maroon.select2-dropdown .select2-search__field:focus,
1347
.select2-container--default .select2-maroon .select2-dropdown .select2-search__field:focus,
1348
.select2-container--default .select2-maroon .select2-search--inline .select2-search__field:focus,
1349
.select2-maroon .select2-container--default.select2-dropdown .select2-search__field:focus,
1350
.select2-maroon .select2-container--default .select2-dropdown .select2-search__field:focus,
1351
.select2-maroon .select2-container--default .select2-search--inline .select2-search__field:focus {
1352
  border: 1px solid #f083ab;
1353
}
1354

1355
.select2-container--default .select2-maroon .select2-results__option--highlighted,
1356
.select2-maroon .select2-container--default .select2-results__option--highlighted {
1357
  background-color: #d81b60;
1358
  color: #fff;
1359
}
1360

1361
.select2-container--default .select2-maroon .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-maroon .select2-results__option--highlighted[aria-selected]:hover,
1362
.select2-maroon .select2-container--default .select2-results__option--highlighted[aria-selected],
1363
.select2-maroon .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1364
  background-color: #ca195a;
1365
  color: #fff;
1366
}
1367

1368
.select2-container--default .select2-maroon .select2-selection--multiple:focus,
1369
.select2-maroon .select2-container--default .select2-selection--multiple:focus {
1370
  border-color: #f083ab;
1371
}
1372

1373
.select2-container--default .select2-maroon .select2-selection--multiple .select2-selection__choice,
1374
.select2-maroon .select2-container--default .select2-selection--multiple .select2-selection__choice {
1375
  background-color: #d81b60;
1376
  border-color: #c11856;
1377
  color: #fff;
1378
}
1379

1380
.select2-container--default .select2-maroon .select2-selection--multiple .select2-selection__choice__remove,
1381
.select2-maroon .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1382
  color: rgba(255, 255, 255, 0.7);
1383
}
1384

1385
.select2-container--default .select2-maroon .select2-selection--multiple .select2-selection__choice__remove:hover,
1386
.select2-maroon .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1387
  color: #fff;
1388
}
1389

1390
.select2-container--default .select2-maroon.select2-container--focus .select2-selection--multiple,
1391
.select2-maroon .select2-container--default.select2-container--focus .select2-selection--multiple {
1392
  border-color: #f083ab;
1393
}
1394

1395
.select2-blue + .select2-container--default.select2-container--open .select2-selection--single {
1396
  border-color: #80bdff;
1397
}
1398

1399
.select2-blue + .select2-container--default.select2-container--focus .select2-selection--single {
1400
  border-color: #80bdff;
1401
}
1402

1403
.select2-container--default .select2-blue.select2-dropdown .select2-search__field:focus,
1404
.select2-container--default .select2-blue .select2-dropdown .select2-search__field:focus,
1405
.select2-container--default .select2-blue .select2-search--inline .select2-search__field:focus,
1406
.select2-blue .select2-container--default.select2-dropdown .select2-search__field:focus,
1407
.select2-blue .select2-container--default .select2-dropdown .select2-search__field:focus,
1408
.select2-blue .select2-container--default .select2-search--inline .select2-search__field:focus {
1409
  border: 1px solid #80bdff;
1410
}
1411

1412
.select2-container--default .select2-blue .select2-results__option--highlighted,
1413
.select2-blue .select2-container--default .select2-results__option--highlighted {
1414
  background-color: #007bff;
1415
  color: #fff;
1416
}
1417

1418
.select2-container--default .select2-blue .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-blue .select2-results__option--highlighted[aria-selected]:hover,
1419
.select2-blue .select2-container--default .select2-results__option--highlighted[aria-selected],
1420
.select2-blue .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1421
  background-color: #0074f0;
1422
  color: #fff;
1423
}
1424

1425
.select2-container--default .select2-blue .select2-selection--multiple:focus,
1426
.select2-blue .select2-container--default .select2-selection--multiple:focus {
1427
  border-color: #80bdff;
1428
}
1429

1430
.select2-container--default .select2-blue .select2-selection--multiple .select2-selection__choice,
1431
.select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice {
1432
  background-color: #007bff;
1433
  border-color: #006fe6;
1434
  color: #fff;
1435
}
1436

1437
.select2-container--default .select2-blue .select2-selection--multiple .select2-selection__choice__remove,
1438
.select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1439
  color: rgba(255, 255, 255, 0.7);
1440
}
1441

1442
.select2-container--default .select2-blue .select2-selection--multiple .select2-selection__choice__remove:hover,
1443
.select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1444
  color: #fff;
1445
}
1446

1447
.select2-container--default .select2-blue.select2-container--focus .select2-selection--multiple,
1448
.select2-blue .select2-container--default.select2-container--focus .select2-selection--multiple {
1449
  border-color: #80bdff;
1450
}
1451

1452
.select2-indigo + .select2-container--default.select2-container--open .select2-selection--single {
1453
  border-color: #b389f9;
1454
}
1455

1456
.select2-indigo + .select2-container--default.select2-container--focus .select2-selection--single {
1457
  border-color: #b389f9;
1458
}
1459

1460
.select2-container--default .select2-indigo.select2-dropdown .select2-search__field:focus,
1461
.select2-container--default .select2-indigo .select2-dropdown .select2-search__field:focus,
1462
.select2-container--default .select2-indigo .select2-search--inline .select2-search__field:focus,
1463
.select2-indigo .select2-container--default.select2-dropdown .select2-search__field:focus,
1464
.select2-indigo .select2-container--default .select2-dropdown .select2-search__field:focus,
1465
.select2-indigo .select2-container--default .select2-search--inline .select2-search__field:focus {
1466
  border: 1px solid #b389f9;
1467
}
1468

1469
.select2-container--default .select2-indigo .select2-results__option--highlighted,
1470
.select2-indigo .select2-container--default .select2-results__option--highlighted {
1471
  background-color: #6610f2;
1472
  color: #fff;
1473
}
1474

1475
.select2-container--default .select2-indigo .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-indigo .select2-results__option--highlighted[aria-selected]:hover,
1476
.select2-indigo .select2-container--default .select2-results__option--highlighted[aria-selected],
1477
.select2-indigo .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1478
  background-color: #5f0de6;
1479
  color: #fff;
1480
}
1481

1482
.select2-container--default .select2-indigo .select2-selection--multiple:focus,
1483
.select2-indigo .select2-container--default .select2-selection--multiple:focus {
1484
  border-color: #b389f9;
1485
}
1486

1487
.select2-container--default .select2-indigo .select2-selection--multiple .select2-selection__choice,
1488
.select2-indigo .select2-container--default .select2-selection--multiple .select2-selection__choice {
1489
  background-color: #6610f2;
1490
  border-color: #5b0cdd;
1491
  color: #fff;
1492
}
1493

1494
.select2-container--default .select2-indigo .select2-selection--multiple .select2-selection__choice__remove,
1495
.select2-indigo .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1496
  color: rgba(255, 255, 255, 0.7);
1497
}
1498

1499
.select2-container--default .select2-indigo .select2-selection--multiple .select2-selection__choice__remove:hover,
1500
.select2-indigo .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1501
  color: #fff;
1502
}
1503

1504
.select2-container--default .select2-indigo.select2-container--focus .select2-selection--multiple,
1505
.select2-indigo .select2-container--default.select2-container--focus .select2-selection--multiple {
1506
  border-color: #b389f9;
1507
}
1508

1509
.select2-purple + .select2-container--default.select2-container--open .select2-selection--single {
1510
  border-color: #b8a2e0;
1511
}
1512

1513
.select2-purple + .select2-container--default.select2-container--focus .select2-selection--single {
1514
  border-color: #b8a2e0;
1515
}
1516

1517
.select2-container--default .select2-purple.select2-dropdown .select2-search__field:focus,
1518
.select2-container--default .select2-purple .select2-dropdown .select2-search__field:focus,
1519
.select2-container--default .select2-purple .select2-search--inline .select2-search__field:focus,
1520
.select2-purple .select2-container--default.select2-dropdown .select2-search__field:focus,
1521
.select2-purple .select2-container--default .select2-dropdown .select2-search__field:focus,
1522
.select2-purple .select2-container--default .select2-search--inline .select2-search__field:focus {
1523
  border: 1px solid #b8a2e0;
1524
}
1525

1526
.select2-container--default .select2-purple .select2-results__option--highlighted,
1527
.select2-purple .select2-container--default .select2-results__option--highlighted {
1528
  background-color: #6f42c1;
1529
  color: #fff;
1530
}
1531

1532
.select2-container--default .select2-purple .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-purple .select2-results__option--highlighted[aria-selected]:hover,
1533
.select2-purple .select2-container--default .select2-results__option--highlighted[aria-selected],
1534
.select2-purple .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1535
  background-color: #683cb8;
1536
  color: #fff;
1537
}
1538

1539
.select2-container--default .select2-purple .select2-selection--multiple:focus,
1540
.select2-purple .select2-container--default .select2-selection--multiple:focus {
1541
  border-color: #b8a2e0;
1542
}
1543

1544
.select2-container--default .select2-purple .select2-selection--multiple .select2-selection__choice,
1545
.select2-purple .select2-container--default .select2-selection--multiple .select2-selection__choice {
1546
  background-color: #6f42c1;
1547
  border-color: #643ab0;
1548
  color: #fff;
1549
}
1550

1551
.select2-container--default .select2-purple .select2-selection--multiple .select2-selection__choice__remove,
1552
.select2-purple .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1553
  color: rgba(255, 255, 255, 0.7);
1554
}
1555

1556
.select2-container--default .select2-purple .select2-selection--multiple .select2-selection__choice__remove:hover,
1557
.select2-purple .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1558
  color: #fff;
1559
}
1560

1561
.select2-container--default .select2-purple.select2-container--focus .select2-selection--multiple,
1562
.select2-purple .select2-container--default.select2-container--focus .select2-selection--multiple {
1563
  border-color: #b8a2e0;
1564
}
1565

1566
.select2-pink + .select2-container--default.select2-container--open .select2-selection--single {
1567
  border-color: #f6b0d0;
1568
}
1569

1570
.select2-pink + .select2-container--default.select2-container--focus .select2-selection--single {
1571
  border-color: #f6b0d0;
1572
}
1573

1574
.select2-container--default .select2-pink.select2-dropdown .select2-search__field:focus,
1575
.select2-container--default .select2-pink .select2-dropdown .select2-search__field:focus,
1576
.select2-container--default .select2-pink .select2-search--inline .select2-search__field:focus,
1577
.select2-pink .select2-container--default.select2-dropdown .select2-search__field:focus,
1578
.select2-pink .select2-container--default .select2-dropdown .select2-search__field:focus,
1579
.select2-pink .select2-container--default .select2-search--inline .select2-search__field:focus {
1580
  border: 1px solid #f6b0d0;
1581
}
1582

1583
.select2-container--default .select2-pink .select2-results__option--highlighted,
1584
.select2-pink .select2-container--default .select2-results__option--highlighted {
1585
  background-color: #e83e8c;
1586
  color: #fff;
1587
}
1588

1589
.select2-container--default .select2-pink .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-pink .select2-results__option--highlighted[aria-selected]:hover,
1590
.select2-pink .select2-container--default .select2-results__option--highlighted[aria-selected],
1591
.select2-pink .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1592
  background-color: #e63084;
1593
  color: #fff;
1594
}
1595

1596
.select2-container--default .select2-pink .select2-selection--multiple:focus,
1597
.select2-pink .select2-container--default .select2-selection--multiple:focus {
1598
  border-color: #f6b0d0;
1599
}
1600

1601
.select2-container--default .select2-pink .select2-selection--multiple .select2-selection__choice,
1602
.select2-pink .select2-container--default .select2-selection--multiple .select2-selection__choice {
1603
  background-color: #e83e8c;
1604
  border-color: #e5277e;
1605
  color: #fff;
1606
}
1607

1608
.select2-container--default .select2-pink .select2-selection--multiple .select2-selection__choice__remove,
1609
.select2-pink .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1610
  color: rgba(255, 255, 255, 0.7);
1611
}
1612

1613
.select2-container--default .select2-pink .select2-selection--multiple .select2-selection__choice__remove:hover,
1614
.select2-pink .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1615
  color: #fff;
1616
}
1617

1618
.select2-container--default .select2-pink.select2-container--focus .select2-selection--multiple,
1619
.select2-pink .select2-container--default.select2-container--focus .select2-selection--multiple {
1620
  border-color: #f6b0d0;
1621
}
1622

1623
.select2-red + .select2-container--default.select2-container--open .select2-selection--single {
1624
  border-color: #efa2a9;
1625
}
1626

1627
.select2-red + .select2-container--default.select2-container--focus .select2-selection--single {
1628
  border-color: #efa2a9;
1629
}
1630

1631
.select2-container--default .select2-red.select2-dropdown .select2-search__field:focus,
1632
.select2-container--default .select2-red .select2-dropdown .select2-search__field:focus,
1633
.select2-container--default .select2-red .select2-search--inline .select2-search__field:focus,
1634
.select2-red .select2-container--default.select2-dropdown .select2-search__field:focus,
1635
.select2-red .select2-container--default .select2-dropdown .select2-search__field:focus,
1636
.select2-red .select2-container--default .select2-search--inline .select2-search__field:focus {
1637
  border: 1px solid #efa2a9;
1638
}
1639

1640
.select2-container--default .select2-red .select2-results__option--highlighted,
1641
.select2-red .select2-container--default .select2-results__option--highlighted {
1642
  background-color: #dc3545;
1643
  color: #fff;
1644
}
1645

1646
.select2-container--default .select2-red .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-red .select2-results__option--highlighted[aria-selected]:hover,
1647
.select2-red .select2-container--default .select2-results__option--highlighted[aria-selected],
1648
.select2-red .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1649
  background-color: #da2839;
1650
  color: #fff;
1651
}
1652

1653
.select2-container--default .select2-red .select2-selection--multiple:focus,
1654
.select2-red .select2-container--default .select2-selection--multiple:focus {
1655
  border-color: #efa2a9;
1656
}
1657

1658
.select2-container--default .select2-red .select2-selection--multiple .select2-selection__choice,
1659
.select2-red .select2-container--default .select2-selection--multiple .select2-selection__choice {
1660
  background-color: #dc3545;
1661
  border-color: #d32535;
1662
  color: #fff;
1663
}
1664

1665
.select2-container--default .select2-red .select2-selection--multiple .select2-selection__choice__remove,
1666
.select2-red .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1667
  color: rgba(255, 255, 255, 0.7);
1668
}
1669

1670
.select2-container--default .select2-red .select2-selection--multiple .select2-selection__choice__remove:hover,
1671
.select2-red .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1672
  color: #fff;
1673
}
1674

1675
.select2-container--default .select2-red.select2-container--focus .select2-selection--multiple,
1676
.select2-red .select2-container--default.select2-container--focus .select2-selection--multiple {
1677
  border-color: #efa2a9;
1678
}
1679

1680
.select2-orange + .select2-container--default.select2-container--open .select2-selection--single {
1681
  border-color: #fec392;
1682
}
1683

1684
.select2-orange + .select2-container--default.select2-container--focus .select2-selection--single {
1685
  border-color: #fec392;
1686
}
1687

1688
.select2-container--default .select2-orange.select2-dropdown .select2-search__field:focus,
1689
.select2-container--default .select2-orange .select2-dropdown .select2-search__field:focus,
1690
.select2-container--default .select2-orange .select2-search--inline .select2-search__field:focus,
1691
.select2-orange .select2-container--default.select2-dropdown .select2-search__field:focus,
1692
.select2-orange .select2-container--default .select2-dropdown .select2-search__field:focus,
1693
.select2-orange .select2-container--default .select2-search--inline .select2-search__field:focus {
1694
  border: 1px solid #fec392;
1695
}
1696

1697
.select2-container--default .select2-orange .select2-results__option--highlighted,
1698
.select2-orange .select2-container--default .select2-results__option--highlighted {
1699
  background-color: #fd7e14;
1700
  color: #1f2d3d;
1701
}
1702

1703
.select2-container--default .select2-orange .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-orange .select2-results__option--highlighted[aria-selected]:hover,
1704
.select2-orange .select2-container--default .select2-results__option--highlighted[aria-selected],
1705
.select2-orange .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1706
  background-color: #fd7605;
1707
  color: #fff;
1708
}
1709

1710
.select2-container--default .select2-orange .select2-selection--multiple:focus,
1711
.select2-orange .select2-container--default .select2-selection--multiple:focus {
1712
  border-color: #fec392;
1713
}
1714

1715
.select2-container--default .select2-orange .select2-selection--multiple .select2-selection__choice,
1716
.select2-orange .select2-container--default .select2-selection--multiple .select2-selection__choice {
1717
  background-color: #fd7e14;
1718
  border-color: #f57102;
1719
  color: #1f2d3d;
1720
}
1721

1722
.select2-container--default .select2-orange .select2-selection--multiple .select2-selection__choice__remove,
1723
.select2-orange .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1724
  color: rgba(31, 45, 61, 0.7);
1725
}
1726

1727
.select2-container--default .select2-orange .select2-selection--multiple .select2-selection__choice__remove:hover,
1728
.select2-orange .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1729
  color: #1f2d3d;
1730
}
1731

1732
.select2-container--default .select2-orange.select2-container--focus .select2-selection--multiple,
1733
.select2-orange .select2-container--default.select2-container--focus .select2-selection--multiple {
1734
  border-color: #fec392;
1735
}
1736

1737
.select2-yellow + .select2-container--default.select2-container--open .select2-selection--single {
1738
  border-color: #ffe187;
1739
}
1740

1741
.select2-yellow + .select2-container--default.select2-container--focus .select2-selection--single {
1742
  border-color: #ffe187;
1743
}
1744

1745
.select2-container--default .select2-yellow.select2-dropdown .select2-search__field:focus,
1746
.select2-container--default .select2-yellow .select2-dropdown .select2-search__field:focus,
1747
.select2-container--default .select2-yellow .select2-search--inline .select2-search__field:focus,
1748
.select2-yellow .select2-container--default.select2-dropdown .select2-search__field:focus,
1749
.select2-yellow .select2-container--default .select2-dropdown .select2-search__field:focus,
1750
.select2-yellow .select2-container--default .select2-search--inline .select2-search__field:focus {
1751
  border: 1px solid #ffe187;
1752
}
1753

1754
.select2-container--default .select2-yellow .select2-results__option--highlighted,
1755
.select2-yellow .select2-container--default .select2-results__option--highlighted {
1756
  background-color: #ffc107;
1757
  color: #1f2d3d;
1758
}
1759

1760
.select2-container--default .select2-yellow .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-yellow .select2-results__option--highlighted[aria-selected]:hover,
1761
.select2-yellow .select2-container--default .select2-results__option--highlighted[aria-selected],
1762
.select2-yellow .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1763
  background-color: #f7b900;
1764
  color: #1f2d3d;
1765
}
1766

1767
.select2-container--default .select2-yellow .select2-selection--multiple:focus,
1768
.select2-yellow .select2-container--default .select2-selection--multiple:focus {
1769
  border-color: #ffe187;
1770
}
1771

1772
.select2-container--default .select2-yellow .select2-selection--multiple .select2-selection__choice,
1773
.select2-yellow .select2-container--default .select2-selection--multiple .select2-selection__choice {
1774
  background-color: #ffc107;
1775
  border-color: #edb100;
1776
  color: #1f2d3d;
1777
}
1778

1779
.select2-container--default .select2-yellow .select2-selection--multiple .select2-selection__choice__remove,
1780
.select2-yellow .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1781
  color: rgba(31, 45, 61, 0.7);
1782
}
1783

1784
.select2-container--default .select2-yellow .select2-selection--multiple .select2-selection__choice__remove:hover,
1785
.select2-yellow .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1786
  color: #1f2d3d;
1787
}
1788

1789
.select2-container--default .select2-yellow.select2-container--focus .select2-selection--multiple,
1790
.select2-yellow .select2-container--default.select2-container--focus .select2-selection--multiple {
1791
  border-color: #ffe187;
1792
}
1793

1794
.select2-green + .select2-container--default.select2-container--open .select2-selection--single {
1795
  border-color: #71dd8a;
1796
}
1797

1798
.select2-green + .select2-container--default.select2-container--focus .select2-selection--single {
1799
  border-color: #71dd8a;
1800
}
1801

1802
.select2-container--default .select2-green.select2-dropdown .select2-search__field:focus,
1803
.select2-container--default .select2-green .select2-dropdown .select2-search__field:focus,
1804
.select2-container--default .select2-green .select2-search--inline .select2-search__field:focus,
1805
.select2-green .select2-container--default.select2-dropdown .select2-search__field:focus,
1806
.select2-green .select2-container--default .select2-dropdown .select2-search__field:focus,
1807
.select2-green .select2-container--default .select2-search--inline .select2-search__field:focus {
1808
  border: 1px solid #71dd8a;
1809
}
1810

1811
.select2-container--default .select2-green .select2-results__option--highlighted,
1812
.select2-green .select2-container--default .select2-results__option--highlighted {
1813
  background-color: #28a745;
1814
  color: #fff;
1815
}
1816

1817
.select2-container--default .select2-green .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-green .select2-results__option--highlighted[aria-selected]:hover,
1818
.select2-green .select2-container--default .select2-results__option--highlighted[aria-selected],
1819
.select2-green .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1820
  background-color: #259b40;
1821
  color: #fff;
1822
}
1823

1824
.select2-container--default .select2-green .select2-selection--multiple:focus,
1825
.select2-green .select2-container--default .select2-selection--multiple:focus {
1826
  border-color: #71dd8a;
1827
}
1828

1829
.select2-container--default .select2-green .select2-selection--multiple .select2-selection__choice,
1830
.select2-green .select2-container--default .select2-selection--multiple .select2-selection__choice {
1831
  background-color: #28a745;
1832
  border-color: #23923d;
1833
  color: #fff;
1834
}
1835

1836
.select2-container--default .select2-green .select2-selection--multiple .select2-selection__choice__remove,
1837
.select2-green .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1838
  color: rgba(255, 255, 255, 0.7);
1839
}
1840

1841
.select2-container--default .select2-green .select2-selection--multiple .select2-selection__choice__remove:hover,
1842
.select2-green .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1843
  color: #fff;
1844
}
1845

1846
.select2-container--default .select2-green.select2-container--focus .select2-selection--multiple,
1847
.select2-green .select2-container--default.select2-container--focus .select2-selection--multiple {
1848
  border-color: #71dd8a;
1849
}
1850

1851
.select2-teal + .select2-container--default.select2-container--open .select2-selection--single {
1852
  border-color: #7eeaca;
1853
}
1854

1855
.select2-teal + .select2-container--default.select2-container--focus .select2-selection--single {
1856
  border-color: #7eeaca;
1857
}
1858

1859
.select2-container--default .select2-teal.select2-dropdown .select2-search__field:focus,
1860
.select2-container--default .select2-teal .select2-dropdown .select2-search__field:focus,
1861
.select2-container--default .select2-teal .select2-search--inline .select2-search__field:focus,
1862
.select2-teal .select2-container--default.select2-dropdown .select2-search__field:focus,
1863
.select2-teal .select2-container--default .select2-dropdown .select2-search__field:focus,
1864
.select2-teal .select2-container--default .select2-search--inline .select2-search__field:focus {
1865
  border: 1px solid #7eeaca;
1866
}
1867

1868
.select2-container--default .select2-teal .select2-results__option--highlighted,
1869
.select2-teal .select2-container--default .select2-results__option--highlighted {
1870
  background-color: #20c997;
1871
  color: #fff;
1872
}
1873

1874
.select2-container--default .select2-teal .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-teal .select2-results__option--highlighted[aria-selected]:hover,
1875
.select2-teal .select2-container--default .select2-results__option--highlighted[aria-selected],
1876
.select2-teal .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1877
  background-color: #1ebc8d;
1878
  color: #fff;
1879
}
1880

1881
.select2-container--default .select2-teal .select2-selection--multiple:focus,
1882
.select2-teal .select2-container--default .select2-selection--multiple:focus {
1883
  border-color: #7eeaca;
1884
}
1885

1886
.select2-container--default .select2-teal .select2-selection--multiple .select2-selection__choice,
1887
.select2-teal .select2-container--default .select2-selection--multiple .select2-selection__choice {
1888
  background-color: #20c997;
1889
  border-color: #1cb386;
1890
  color: #fff;
1891
}
1892

1893
.select2-container--default .select2-teal .select2-selection--multiple .select2-selection__choice__remove,
1894
.select2-teal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1895
  color: rgba(255, 255, 255, 0.7);
1896
}
1897

1898
.select2-container--default .select2-teal .select2-selection--multiple .select2-selection__choice__remove:hover,
1899
.select2-teal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1900
  color: #fff;
1901
}
1902

1903
.select2-container--default .select2-teal.select2-container--focus .select2-selection--multiple,
1904
.select2-teal .select2-container--default.select2-container--focus .select2-selection--multiple {
1905
  border-color: #7eeaca;
1906
}
1907

1908
.select2-cyan + .select2-container--default.select2-container--open .select2-selection--single {
1909
  border-color: #63d9ec;
1910
}
1911

1912
.select2-cyan + .select2-container--default.select2-container--focus .select2-selection--single {
1913
  border-color: #63d9ec;
1914
}
1915

1916
.select2-container--default .select2-cyan.select2-dropdown .select2-search__field:focus,
1917
.select2-container--default .select2-cyan .select2-dropdown .select2-search__field:focus,
1918
.select2-container--default .select2-cyan .select2-search--inline .select2-search__field:focus,
1919
.select2-cyan .select2-container--default.select2-dropdown .select2-search__field:focus,
1920
.select2-cyan .select2-container--default .select2-dropdown .select2-search__field:focus,
1921
.select2-cyan .select2-container--default .select2-search--inline .select2-search__field:focus {
1922
  border: 1px solid #63d9ec;
1923
}
1924

1925
.select2-container--default .select2-cyan .select2-results__option--highlighted,
1926
.select2-cyan .select2-container--default .select2-results__option--highlighted {
1927
  background-color: #17a2b8;
1928
  color: #fff;
1929
}
1930

1931
.select2-container--default .select2-cyan .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-cyan .select2-results__option--highlighted[aria-selected]:hover,
1932
.select2-cyan .select2-container--default .select2-results__option--highlighted[aria-selected],
1933
.select2-cyan .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1934
  background-color: #1596aa;
1935
  color: #fff;
1936
}
1937

1938
.select2-container--default .select2-cyan .select2-selection--multiple:focus,
1939
.select2-cyan .select2-container--default .select2-selection--multiple:focus {
1940
  border-color: #63d9ec;
1941
}
1942

1943
.select2-container--default .select2-cyan .select2-selection--multiple .select2-selection__choice,
1944
.select2-cyan .select2-container--default .select2-selection--multiple .select2-selection__choice {
1945
  background-color: #17a2b8;
1946
  border-color: #148ea1;
1947
  color: #fff;
1948
}
1949

1950
.select2-container--default .select2-cyan .select2-selection--multiple .select2-selection__choice__remove,
1951
.select2-cyan .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
1952
  color: rgba(255, 255, 255, 0.7);
1953
}
1954

1955
.select2-container--default .select2-cyan .select2-selection--multiple .select2-selection__choice__remove:hover,
1956
.select2-cyan .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
1957
  color: #fff;
1958
}
1959

1960
.select2-container--default .select2-cyan.select2-container--focus .select2-selection--multiple,
1961
.select2-cyan .select2-container--default.select2-container--focus .select2-selection--multiple {
1962
  border-color: #63d9ec;
1963
}
1964

1965
.select2-white + .select2-container--default.select2-container--open .select2-selection--single {
1966
  border-color: white;
1967
}
1968

1969
.select2-white + .select2-container--default.select2-container--focus .select2-selection--single {
1970
  border-color: white;
1971
}
1972

1973
.select2-container--default .select2-white.select2-dropdown .select2-search__field:focus,
1974
.select2-container--default .select2-white .select2-dropdown .select2-search__field:focus,
1975
.select2-container--default .select2-white .select2-search--inline .select2-search__field:focus,
1976
.select2-white .select2-container--default.select2-dropdown .select2-search__field:focus,
1977
.select2-white .select2-container--default .select2-dropdown .select2-search__field:focus,
1978
.select2-white .select2-container--default .select2-search--inline .select2-search__field:focus {
1979
  border: 1px solid white;
1980
}
1981

1982
.select2-container--default .select2-white .select2-results__option--highlighted,
1983
.select2-white .select2-container--default .select2-results__option--highlighted {
1984
  background-color: #fff;
1985
  color: #1f2d3d;
1986
}
1987

1988
.select2-container--default .select2-white .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-white .select2-results__option--highlighted[aria-selected]:hover,
1989
.select2-white .select2-container--default .select2-results__option--highlighted[aria-selected],
1990
.select2-white .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
1991
  background-color: #f7f7f7;
1992
  color: #1f2d3d;
1993
}
1994

1995
.select2-container--default .select2-white .select2-selection--multiple:focus,
1996
.select2-white .select2-container--default .select2-selection--multiple:focus {
1997
  border-color: white;
1998
}
1999

2000
.select2-container--default .select2-white .select2-selection--multiple .select2-selection__choice,
2001
.select2-white .select2-container--default .select2-selection--multiple .select2-selection__choice {
2002
  background-color: #fff;
2003
  border-color: #f2f2f2;
2004
  color: #1f2d3d;
2005
}
2006

2007
.select2-container--default .select2-white .select2-selection--multiple .select2-selection__choice__remove,
2008
.select2-white .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2009
  color: rgba(31, 45, 61, 0.7);
2010
}
2011

2012
.select2-container--default .select2-white .select2-selection--multiple .select2-selection__choice__remove:hover,
2013
.select2-white .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2014
  color: #1f2d3d;
2015
}
2016

2017
.select2-container--default .select2-white.select2-container--focus .select2-selection--multiple,
2018
.select2-white .select2-container--default.select2-container--focus .select2-selection--multiple {
2019
  border-color: white;
2020
}
2021

2022
.select2-gray + .select2-container--default.select2-container--open .select2-selection--single {
2023
  border-color: #afb5ba;
2024
}
2025

2026
.select2-gray + .select2-container--default.select2-container--focus .select2-selection--single {
2027
  border-color: #afb5ba;
2028
}
2029

2030
.select2-container--default .select2-gray.select2-dropdown .select2-search__field:focus,
2031
.select2-container--default .select2-gray .select2-dropdown .select2-search__field:focus,
2032
.select2-container--default .select2-gray .select2-search--inline .select2-search__field:focus,
2033
.select2-gray .select2-container--default.select2-dropdown .select2-search__field:focus,
2034
.select2-gray .select2-container--default .select2-dropdown .select2-search__field:focus,
2035
.select2-gray .select2-container--default .select2-search--inline .select2-search__field:focus {
2036
  border: 1px solid #afb5ba;
2037
}
2038

2039
.select2-container--default .select2-gray .select2-results__option--highlighted,
2040
.select2-gray .select2-container--default .select2-results__option--highlighted {
2041
  background-color: #6c757d;
2042
  color: #fff;
2043
}
2044

2045
.select2-container--default .select2-gray .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-gray .select2-results__option--highlighted[aria-selected]:hover,
2046
.select2-gray .select2-container--default .select2-results__option--highlighted[aria-selected],
2047
.select2-gray .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2048
  background-color: #656d75;
2049
  color: #fff;
2050
}
2051

2052
.select2-container--default .select2-gray .select2-selection--multiple:focus,
2053
.select2-gray .select2-container--default .select2-selection--multiple:focus {
2054
  border-color: #afb5ba;
2055
}
2056

2057
.select2-container--default .select2-gray .select2-selection--multiple .select2-selection__choice,
2058
.select2-gray .select2-container--default .select2-selection--multiple .select2-selection__choice {
2059
  background-color: #6c757d;
2060
  border-color: #60686f;
2061
  color: #fff;
2062
}
2063

2064
.select2-container--default .select2-gray .select2-selection--multiple .select2-selection__choice__remove,
2065
.select2-gray .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2066
  color: rgba(255, 255, 255, 0.7);
2067
}
2068

2069
.select2-container--default .select2-gray .select2-selection--multiple .select2-selection__choice__remove:hover,
2070
.select2-gray .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2071
  color: #fff;
2072
}
2073

2074
.select2-container--default .select2-gray.select2-container--focus .select2-selection--multiple,
2075
.select2-gray .select2-container--default.select2-container--focus .select2-selection--multiple {
2076
  border-color: #afb5ba;
2077
}
2078

2079
.select2-gray-dark + .select2-container--default.select2-container--open .select2-selection--single {
2080
  border-color: #6d7a86;
2081
}
2082

2083
.select2-gray-dark + .select2-container--default.select2-container--focus .select2-selection--single {
2084
  border-color: #6d7a86;
2085
}
2086

2087
.select2-container--default .select2-gray-dark.select2-dropdown .select2-search__field:focus,
2088
.select2-container--default .select2-gray-dark .select2-dropdown .select2-search__field:focus,
2089
.select2-container--default .select2-gray-dark .select2-search--inline .select2-search__field:focus,
2090
.select2-gray-dark .select2-container--default.select2-dropdown .select2-search__field:focus,
2091
.select2-gray-dark .select2-container--default .select2-dropdown .select2-search__field:focus,
2092
.select2-gray-dark .select2-container--default .select2-search--inline .select2-search__field:focus {
2093
  border: 1px solid #6d7a86;
2094
}
2095

2096
.select2-container--default .select2-gray-dark .select2-results__option--highlighted,
2097
.select2-gray-dark .select2-container--default .select2-results__option--highlighted {
2098
  background-color: #343a40;
2099
  color: #fff;
2100
}
2101

2102
.select2-container--default .select2-gray-dark .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-gray-dark .select2-results__option--highlighted[aria-selected]:hover,
2103
.select2-gray-dark .select2-container--default .select2-results__option--highlighted[aria-selected],
2104
.select2-gray-dark .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2105
  background-color: #2d3238;
2106
  color: #fff;
2107
}
2108

2109
.select2-container--default .select2-gray-dark .select2-selection--multiple:focus,
2110
.select2-gray-dark .select2-container--default .select2-selection--multiple:focus {
2111
  border-color: #6d7a86;
2112
}
2113

2114
.select2-container--default .select2-gray-dark .select2-selection--multiple .select2-selection__choice,
2115
.select2-gray-dark .select2-container--default .select2-selection--multiple .select2-selection__choice {
2116
  background-color: #343a40;
2117
  border-color: #292d32;
2118
  color: #fff;
2119
}
2120

2121
.select2-container--default .select2-gray-dark .select2-selection--multiple .select2-selection__choice__remove,
2122
.select2-gray-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2123
  color: rgba(255, 255, 255, 0.7);
2124
}
2125

2126
.select2-container--default .select2-gray-dark .select2-selection--multiple .select2-selection__choice__remove:hover,
2127
.select2-gray-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2128
  color: #fff;
2129
}
2130

2131
.select2-container--default .select2-gray-dark.select2-container--focus .select2-selection--multiple,
2132
.select2-gray-dark .select2-container--default.select2-container--focus .select2-selection--multiple {
2133
  border-color: #6d7a86;
2134
}
2135

2136
.dark-mode .select2-selection {
2137
  background-color: #343a40;
2138
  border-color: #6c757d;
2139
}
2140

2141
.dark-mode .select2-container--disabled .select2-selection--single {
2142
  background-color: #454d55;
2143
}
2144

2145
.dark-mode .select2-selection--single {
2146
  background-color: #343a40;
2147
  border-color: #6c757d;
2148
}
2149

2150
.dark-mode .select2-selection--single .select2-selection__rendered {
2151
  color: #fff;
2152
}
2153

2154
.dark-mode .select2-dropdown .select2-search__field,
2155
.dark-mode .select2-search--inline .select2-search__field {
2156
  background-color: #343a40;
2157
  border-color: #6c757d;
2158
  color: white;
2159
}
2160

2161
.dark-mode .select2-dropdown {
2162
  background-color: #343a40;
2163
  border-color: #6c757d;
2164
  color: white;
2165
}
2166

2167
.dark-mode .select2-results__option[aria-selected="true"] {
2168
  background-color: #3f474e !important;
2169
  color: #dee2e6;
2170
}
2171

2172
.dark-mode .select2-container .select2-search--inline .select2-search__field {
2173
  background-color: transparent;
2174
  color: #fff;
2175
}
2176

2177
.dark-mode .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
2178
  color: #fff;
2179
}
2180

2181
.dark-mode .select2-primary + .select2-container--default.select2-container--open .select2-selection--single {
2182
  border-color: #85a7ca;
2183
}
2184

2185
.dark-mode .select2-primary + .select2-container--default.select2-container--focus .select2-selection--single {
2186
  border-color: #85a7ca;
2187
}
2188

2189
.select2-container--default .dark-mode .select2-primary.select2-dropdown .select2-search__field:focus,
2190
.select2-container--default .dark-mode .select2-primary .select2-dropdown .select2-search__field:focus,
2191
.select2-container--default .dark-mode .select2-primary .select2-search--inline .select2-search__field:focus,
2192
.dark-mode .select2-primary .select2-container--default.select2-dropdown .select2-search__field:focus,
2193
.dark-mode .select2-primary .select2-container--default .select2-dropdown .select2-search__field:focus,
2194
.dark-mode .select2-primary .select2-container--default .select2-search--inline .select2-search__field:focus {
2195
  border: 1px solid #85a7ca;
2196
}
2197

2198
.select2-container--default .dark-mode .select2-primary .select2-results__option--highlighted,
2199
.dark-mode .select2-primary .select2-container--default .select2-results__option--highlighted {
2200
  background-color: #3f6791;
2201
  color: #fff;
2202
}
2203

2204
.select2-container--default .dark-mode .select2-primary .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-primary .select2-results__option--highlighted[aria-selected]:hover,
2205
.dark-mode .select2-primary .select2-container--default .select2-results__option--highlighted[aria-selected],
2206
.dark-mode .select2-primary .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2207
  background-color: #3a5f86;
2208
  color: #fff;
2209
}
2210

2211
.select2-container--default .dark-mode .select2-primary .select2-selection--multiple:focus,
2212
.dark-mode .select2-primary .select2-container--default .select2-selection--multiple:focus {
2213
  border-color: #85a7ca;
2214
}
2215

2216
.select2-container--default .dark-mode .select2-primary .select2-selection--multiple .select2-selection__choice,
2217
.dark-mode .select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice {
2218
  background-color: #3f6791;
2219
  border-color: #375a7f;
2220
  color: #fff;
2221
}
2222

2223
.select2-container--default .dark-mode .select2-primary .select2-selection--multiple .select2-selection__choice__remove,
2224
.dark-mode .select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2225
  color: rgba(255, 255, 255, 0.7);
2226
}
2227

2228
.select2-container--default .dark-mode .select2-primary .select2-selection--multiple .select2-selection__choice__remove:hover,
2229
.dark-mode .select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2230
  color: #fff;
2231
}
2232

2233
.select2-container--default .dark-mode .select2-primary.select2-container--focus .select2-selection--multiple,
2234
.dark-mode .select2-primary .select2-container--default.select2-container--focus .select2-selection--multiple {
2235
  border-color: #85a7ca;
2236
}
2237

2238
.dark-mode .select2-secondary + .select2-container--default.select2-container--open .select2-selection--single {
2239
  border-color: #afb5ba;
2240
}
2241

2242
.dark-mode .select2-secondary + .select2-container--default.select2-container--focus .select2-selection--single {
2243
  border-color: #afb5ba;
2244
}
2245

2246
.select2-container--default .dark-mode .select2-secondary.select2-dropdown .select2-search__field:focus,
2247
.select2-container--default .dark-mode .select2-secondary .select2-dropdown .select2-search__field:focus,
2248
.select2-container--default .dark-mode .select2-secondary .select2-search--inline .select2-search__field:focus,
2249
.dark-mode .select2-secondary .select2-container--default.select2-dropdown .select2-search__field:focus,
2250
.dark-mode .select2-secondary .select2-container--default .select2-dropdown .select2-search__field:focus,
2251
.dark-mode .select2-secondary .select2-container--default .select2-search--inline .select2-search__field:focus {
2252
  border: 1px solid #afb5ba;
2253
}
2254

2255
.select2-container--default .dark-mode .select2-secondary .select2-results__option--highlighted,
2256
.dark-mode .select2-secondary .select2-container--default .select2-results__option--highlighted {
2257
  background-color: #6c757d;
2258
  color: #fff;
2259
}
2260

2261
.select2-container--default .dark-mode .select2-secondary .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-secondary .select2-results__option--highlighted[aria-selected]:hover,
2262
.dark-mode .select2-secondary .select2-container--default .select2-results__option--highlighted[aria-selected],
2263
.dark-mode .select2-secondary .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2264
  background-color: #656d75;
2265
  color: #fff;
2266
}
2267

2268
.select2-container--default .dark-mode .select2-secondary .select2-selection--multiple:focus,
2269
.dark-mode .select2-secondary .select2-container--default .select2-selection--multiple:focus {
2270
  border-color: #afb5ba;
2271
}
2272

2273
.select2-container--default .dark-mode .select2-secondary .select2-selection--multiple .select2-selection__choice,
2274
.dark-mode .select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice {
2275
  background-color: #6c757d;
2276
  border-color: #60686f;
2277
  color: #fff;
2278
}
2279

2280
.select2-container--default .dark-mode .select2-secondary .select2-selection--multiple .select2-selection__choice__remove,
2281
.dark-mode .select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2282
  color: rgba(255, 255, 255, 0.7);
2283
}
2284

2285
.select2-container--default .dark-mode .select2-secondary .select2-selection--multiple .select2-selection__choice__remove:hover,
2286
.dark-mode .select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2287
  color: #fff;
2288
}
2289

2290
.select2-container--default .dark-mode .select2-secondary.select2-container--focus .select2-selection--multiple,
2291
.dark-mode .select2-secondary .select2-container--default.select2-container--focus .select2-selection--multiple {
2292
  border-color: #afb5ba;
2293
}
2294

2295
.dark-mode .select2-success + .select2-container--default.select2-container--open .select2-selection--single {
2296
  border-color: #3dffcd;
2297
}
2298

2299
.dark-mode .select2-success + .select2-container--default.select2-container--focus .select2-selection--single {
2300
  border-color: #3dffcd;
2301
}
2302

2303
.select2-container--default .dark-mode .select2-success.select2-dropdown .select2-search__field:focus,
2304
.select2-container--default .dark-mode .select2-success .select2-dropdown .select2-search__field:focus,
2305
.select2-container--default .dark-mode .select2-success .select2-search--inline .select2-search__field:focus,
2306
.dark-mode .select2-success .select2-container--default.select2-dropdown .select2-search__field:focus,
2307
.dark-mode .select2-success .select2-container--default .select2-dropdown .select2-search__field:focus,
2308
.dark-mode .select2-success .select2-container--default .select2-search--inline .select2-search__field:focus {
2309
  border: 1px solid #3dffcd;
2310
}
2311

2312
.select2-container--default .dark-mode .select2-success .select2-results__option--highlighted,
2313
.dark-mode .select2-success .select2-container--default .select2-results__option--highlighted {
2314
  background-color: #00bc8c;
2315
  color: #fff;
2316
}
2317

2318
.select2-container--default .dark-mode .select2-success .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-success .select2-results__option--highlighted[aria-selected]:hover,
2319
.dark-mode .select2-success .select2-container--default .select2-results__option--highlighted[aria-selected],
2320
.dark-mode .select2-success .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2321
  background-color: #00ad81;
2322
  color: #fff;
2323
}
2324

2325
.select2-container--default .dark-mode .select2-success .select2-selection--multiple:focus,
2326
.dark-mode .select2-success .select2-container--default .select2-selection--multiple:focus {
2327
  border-color: #3dffcd;
2328
}
2329

2330
.select2-container--default .dark-mode .select2-success .select2-selection--multiple .select2-selection__choice,
2331
.dark-mode .select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice {
2332
  background-color: #00bc8c;
2333
  border-color: #00a379;
2334
  color: #fff;
2335
}
2336

2337
.select2-container--default .dark-mode .select2-success .select2-selection--multiple .select2-selection__choice__remove,
2338
.dark-mode .select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2339
  color: rgba(255, 255, 255, 0.7);
2340
}
2341

2342
.select2-container--default .dark-mode .select2-success .select2-selection--multiple .select2-selection__choice__remove:hover,
2343
.dark-mode .select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2344
  color: #fff;
2345
}
2346

2347
.select2-container--default .dark-mode .select2-success.select2-container--focus .select2-selection--multiple,
2348
.dark-mode .select2-success .select2-container--default.select2-container--focus .select2-selection--multiple {
2349
  border-color: #3dffcd;
2350
}
2351

2352
.dark-mode .select2-info + .select2-container--default.select2-container--open .select2-selection--single {
2353
  border-color: #a0cfee;
2354
}
2355

2356
.dark-mode .select2-info + .select2-container--default.select2-container--focus .select2-selection--single {
2357
  border-color: #a0cfee;
2358
}
2359

2360
.select2-container--default .dark-mode .select2-info.select2-dropdown .select2-search__field:focus,
2361
.select2-container--default .dark-mode .select2-info .select2-dropdown .select2-search__field:focus,
2362
.select2-container--default .dark-mode .select2-info .select2-search--inline .select2-search__field:focus,
2363
.dark-mode .select2-info .select2-container--default.select2-dropdown .select2-search__field:focus,
2364
.dark-mode .select2-info .select2-container--default .select2-dropdown .select2-search__field:focus,
2365
.dark-mode .select2-info .select2-container--default .select2-search--inline .select2-search__field:focus {
2366
  border: 1px solid #a0cfee;
2367
}
2368

2369
.select2-container--default .dark-mode .select2-info .select2-results__option--highlighted,
2370
.dark-mode .select2-info .select2-container--default .select2-results__option--highlighted {
2371
  background-color: #3498db;
2372
  color: #fff;
2373
}
2374

2375
.select2-container--default .dark-mode .select2-info .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-info .select2-results__option--highlighted[aria-selected]:hover,
2376
.dark-mode .select2-info .select2-container--default .select2-results__option--highlighted[aria-selected],
2377
.dark-mode .select2-info .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2378
  background-color: #2791d9;
2379
  color: #fff;
2380
}
2381

2382
.select2-container--default .dark-mode .select2-info .select2-selection--multiple:focus,
2383
.dark-mode .select2-info .select2-container--default .select2-selection--multiple:focus {
2384
  border-color: #a0cfee;
2385
}
2386

2387
.select2-container--default .dark-mode .select2-info .select2-selection--multiple .select2-selection__choice,
2388
.dark-mode .select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice {
2389
  background-color: #3498db;
2390
  border-color: #258cd1;
2391
  color: #fff;
2392
}
2393

2394
.select2-container--default .dark-mode .select2-info .select2-selection--multiple .select2-selection__choice__remove,
2395
.dark-mode .select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2396
  color: rgba(255, 255, 255, 0.7);
2397
}
2398

2399
.select2-container--default .dark-mode .select2-info .select2-selection--multiple .select2-selection__choice__remove:hover,
2400
.dark-mode .select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2401
  color: #fff;
2402
}
2403

2404
.select2-container--default .dark-mode .select2-info.select2-container--focus .select2-selection--multiple,
2405
.dark-mode .select2-info .select2-container--default.select2-container--focus .select2-selection--multiple {
2406
  border-color: #a0cfee;
2407
}
2408

2409
.dark-mode .select2-warning + .select2-container--default.select2-container--open .select2-selection--single {
2410
  border-color: #f9cf8b;
2411
}
2412

2413
.dark-mode .select2-warning + .select2-container--default.select2-container--focus .select2-selection--single {
2414
  border-color: #f9cf8b;
2415
}
2416

2417
.select2-container--default .dark-mode .select2-warning.select2-dropdown .select2-search__field:focus,
2418
.select2-container--default .dark-mode .select2-warning .select2-dropdown .select2-search__field:focus,
2419
.select2-container--default .dark-mode .select2-warning .select2-search--inline .select2-search__field:focus,
2420
.dark-mode .select2-warning .select2-container--default.select2-dropdown .select2-search__field:focus,
2421
.dark-mode .select2-warning .select2-container--default .select2-dropdown .select2-search__field:focus,
2422
.dark-mode .select2-warning .select2-container--default .select2-search--inline .select2-search__field:focus {
2423
  border: 1px solid #f9cf8b;
2424
}
2425

2426
.select2-container--default .dark-mode .select2-warning .select2-results__option--highlighted,
2427
.dark-mode .select2-warning .select2-container--default .select2-results__option--highlighted {
2428
  background-color: #f39c12;
2429
  color: #1f2d3d;
2430
}
2431

2432
.select2-container--default .dark-mode .select2-warning .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-warning .select2-results__option--highlighted[aria-selected]:hover,
2433
.dark-mode .select2-warning .select2-container--default .select2-results__option--highlighted[aria-selected],
2434
.dark-mode .select2-warning .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2435
  background-color: #ea940c;
2436
  color: #1f2d3d;
2437
}
2438

2439
.select2-container--default .dark-mode .select2-warning .select2-selection--multiple:focus,
2440
.dark-mode .select2-warning .select2-container--default .select2-selection--multiple:focus {
2441
  border-color: #f9cf8b;
2442
}
2443

2444
.select2-container--default .dark-mode .select2-warning .select2-selection--multiple .select2-selection__choice,
2445
.dark-mode .select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice {
2446
  background-color: #f39c12;
2447
  border-color: #e08e0b;
2448
  color: #1f2d3d;
2449
}
2450

2451
.select2-container--default .dark-mode .select2-warning .select2-selection--multiple .select2-selection__choice__remove,
2452
.dark-mode .select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2453
  color: rgba(31, 45, 61, 0.7);
2454
}
2455

2456
.select2-container--default .dark-mode .select2-warning .select2-selection--multiple .select2-selection__choice__remove:hover,
2457
.dark-mode .select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2458
  color: #1f2d3d;
2459
}
2460

2461
.select2-container--default .dark-mode .select2-warning.select2-container--focus .select2-selection--multiple,
2462
.dark-mode .select2-warning .select2-container--default.select2-container--focus .select2-selection--multiple {
2463
  border-color: #f9cf8b;
2464
}
2465

2466
.dark-mode .select2-danger + .select2-container--default.select2-container--open .select2-selection--single {
2467
  border-color: #f5b4ae;
2468
}
2469

2470
.dark-mode .select2-danger + .select2-container--default.select2-container--focus .select2-selection--single {
2471
  border-color: #f5b4ae;
2472
}
2473

2474
.select2-container--default .dark-mode .select2-danger.select2-dropdown .select2-search__field:focus,
2475
.select2-container--default .dark-mode .select2-danger .select2-dropdown .select2-search__field:focus,
2476
.select2-container--default .dark-mode .select2-danger .select2-search--inline .select2-search__field:focus,
2477
.dark-mode .select2-danger .select2-container--default.select2-dropdown .select2-search__field:focus,
2478
.dark-mode .select2-danger .select2-container--default .select2-dropdown .select2-search__field:focus,
2479
.dark-mode .select2-danger .select2-container--default .select2-search--inline .select2-search__field:focus {
2480
  border: 1px solid #f5b4ae;
2481
}
2482

2483
.select2-container--default .dark-mode .select2-danger .select2-results__option--highlighted,
2484
.dark-mode .select2-danger .select2-container--default .select2-results__option--highlighted {
2485
  background-color: #e74c3c;
2486
  color: #fff;
2487
}
2488

2489
.select2-container--default .dark-mode .select2-danger .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-danger .select2-results__option--highlighted[aria-selected]:hover,
2490
.dark-mode .select2-danger .select2-container--default .select2-results__option--highlighted[aria-selected],
2491
.dark-mode .select2-danger .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2492
  background-color: #e53f2e;
2493
  color: #fff;
2494
}
2495

2496
.select2-container--default .dark-mode .select2-danger .select2-selection--multiple:focus,
2497
.dark-mode .select2-danger .select2-container--default .select2-selection--multiple:focus {
2498
  border-color: #f5b4ae;
2499
}
2500

2501
.select2-container--default .dark-mode .select2-danger .select2-selection--multiple .select2-selection__choice,
2502
.dark-mode .select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice {
2503
  background-color: #e74c3c;
2504
  border-color: #e43725;
2505
  color: #fff;
2506
}
2507

2508
.select2-container--default .dark-mode .select2-danger .select2-selection--multiple .select2-selection__choice__remove,
2509
.dark-mode .select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2510
  color: rgba(255, 255, 255, 0.7);
2511
}
2512

2513
.select2-container--default .dark-mode .select2-danger .select2-selection--multiple .select2-selection__choice__remove:hover,
2514
.dark-mode .select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2515
  color: #fff;
2516
}
2517

2518
.select2-container--default .dark-mode .select2-danger.select2-container--focus .select2-selection--multiple,
2519
.dark-mode .select2-danger .select2-container--default.select2-container--focus .select2-selection--multiple {
2520
  border-color: #f5b4ae;
2521
}
2522

2523
.dark-mode .select2-light + .select2-container--default.select2-container--open .select2-selection--single {
2524
  border-color: white;
2525
}
2526

2527
.dark-mode .select2-light + .select2-container--default.select2-container--focus .select2-selection--single {
2528
  border-color: white;
2529
}
2530

2531
.select2-container--default .dark-mode .select2-light.select2-dropdown .select2-search__field:focus,
2532
.select2-container--default .dark-mode .select2-light .select2-dropdown .select2-search__field:focus,
2533
.select2-container--default .dark-mode .select2-light .select2-search--inline .select2-search__field:focus,
2534
.dark-mode .select2-light .select2-container--default.select2-dropdown .select2-search__field:focus,
2535
.dark-mode .select2-light .select2-container--default .select2-dropdown .select2-search__field:focus,
2536
.dark-mode .select2-light .select2-container--default .select2-search--inline .select2-search__field:focus {
2537
  border: 1px solid white;
2538
}
2539

2540
.select2-container--default .dark-mode .select2-light .select2-results__option--highlighted,
2541
.dark-mode .select2-light .select2-container--default .select2-results__option--highlighted {
2542
  background-color: #f8f9fa;
2543
  color: #1f2d3d;
2544
}
2545

2546
.select2-container--default .dark-mode .select2-light .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-light .select2-results__option--highlighted[aria-selected]:hover,
2547
.dark-mode .select2-light .select2-container--default .select2-results__option--highlighted[aria-selected],
2548
.dark-mode .select2-light .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2549
  background-color: #eff1f4;
2550
  color: #1f2d3d;
2551
}
2552

2553
.select2-container--default .dark-mode .select2-light .select2-selection--multiple:focus,
2554
.dark-mode .select2-light .select2-container--default .select2-selection--multiple:focus {
2555
  border-color: white;
2556
}
2557

2558
.select2-container--default .dark-mode .select2-light .select2-selection--multiple .select2-selection__choice,
2559
.dark-mode .select2-light .select2-container--default .select2-selection--multiple .select2-selection__choice {
2560
  background-color: #f8f9fa;
2561
  border-color: #e9ecef;
2562
  color: #1f2d3d;
2563
}
2564

2565
.select2-container--default .dark-mode .select2-light .select2-selection--multiple .select2-selection__choice__remove,
2566
.dark-mode .select2-light .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2567
  color: rgba(31, 45, 61, 0.7);
2568
}
2569

2570
.select2-container--default .dark-mode .select2-light .select2-selection--multiple .select2-selection__choice__remove:hover,
2571
.dark-mode .select2-light .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2572
  color: #1f2d3d;
2573
}
2574

2575
.select2-container--default .dark-mode .select2-light.select2-container--focus .select2-selection--multiple,
2576
.dark-mode .select2-light .select2-container--default.select2-container--focus .select2-selection--multiple {
2577
  border-color: white;
2578
}
2579

2580
.dark-mode .select2-dark + .select2-container--default.select2-container--open .select2-selection--single {
2581
  border-color: #6d7a86;
2582
}
2583

2584
.dark-mode .select2-dark + .select2-container--default.select2-container--focus .select2-selection--single {
2585
  border-color: #6d7a86;
2586
}
2587

2588
.select2-container--default .dark-mode .select2-dark.select2-dropdown .select2-search__field:focus,
2589
.select2-container--default .dark-mode .select2-dark .select2-dropdown .select2-search__field:focus,
2590
.select2-container--default .dark-mode .select2-dark .select2-search--inline .select2-search__field:focus,
2591
.dark-mode .select2-dark .select2-container--default.select2-dropdown .select2-search__field:focus,
2592
.dark-mode .select2-dark .select2-container--default .select2-dropdown .select2-search__field:focus,
2593
.dark-mode .select2-dark .select2-container--default .select2-search--inline .select2-search__field:focus {
2594
  border: 1px solid #6d7a86;
2595
}
2596

2597
.select2-container--default .dark-mode .select2-dark .select2-results__option--highlighted,
2598
.dark-mode .select2-dark .select2-container--default .select2-results__option--highlighted {
2599
  background-color: #343a40;
2600
  color: #fff;
2601
}
2602

2603
.select2-container--default .dark-mode .select2-dark .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-dark .select2-results__option--highlighted[aria-selected]:hover,
2604
.dark-mode .select2-dark .select2-container--default .select2-results__option--highlighted[aria-selected],
2605
.dark-mode .select2-dark .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2606
  background-color: #2d3238;
2607
  color: #fff;
2608
}
2609

2610
.select2-container--default .dark-mode .select2-dark .select2-selection--multiple:focus,
2611
.dark-mode .select2-dark .select2-container--default .select2-selection--multiple:focus {
2612
  border-color: #6d7a86;
2613
}
2614

2615
.select2-container--default .dark-mode .select2-dark .select2-selection--multiple .select2-selection__choice,
2616
.dark-mode .select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice {
2617
  background-color: #343a40;
2618
  border-color: #292d32;
2619
  color: #fff;
2620
}
2621

2622
.select2-container--default .dark-mode .select2-dark .select2-selection--multiple .select2-selection__choice__remove,
2623
.dark-mode .select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2624
  color: rgba(255, 255, 255, 0.7);
2625
}
2626

2627
.select2-container--default .dark-mode .select2-dark .select2-selection--multiple .select2-selection__choice__remove:hover,
2628
.dark-mode .select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2629
  color: #fff;
2630
}
2631

2632
.select2-container--default .dark-mode .select2-dark.select2-container--focus .select2-selection--multiple,
2633
.dark-mode .select2-dark .select2-container--default.select2-container--focus .select2-selection--multiple {
2634
  border-color: #6d7a86;
2635
}
2636

2637
.dark-mode .select2-lightblue + .select2-container--default.select2-container--open .select2-selection--single {
2638
  border-color: #e6f1f7;
2639
}
2640

2641
.dark-mode .select2-lightblue + .select2-container--default.select2-container--focus .select2-selection--single {
2642
  border-color: #e6f1f7;
2643
}
2644

2645
.select2-container--default .dark-mode .select2-lightblue.select2-dropdown .select2-search__field:focus,
2646
.select2-container--default .dark-mode .select2-lightblue .select2-dropdown .select2-search__field:focus,
2647
.select2-container--default .dark-mode .select2-lightblue .select2-search--inline .select2-search__field:focus,
2648
.dark-mode .select2-lightblue .select2-container--default.select2-dropdown .select2-search__field:focus,
2649
.dark-mode .select2-lightblue .select2-container--default .select2-dropdown .select2-search__field:focus,
2650
.dark-mode .select2-lightblue .select2-container--default .select2-search--inline .select2-search__field:focus {
2651
  border: 1px solid #e6f1f7;
2652
}
2653

2654
.select2-container--default .dark-mode .select2-lightblue .select2-results__option--highlighted,
2655
.dark-mode .select2-lightblue .select2-container--default .select2-results__option--highlighted {
2656
  background-color: #86bad8;
2657
  color: #1f2d3d;
2658
}
2659

2660
.select2-container--default .dark-mode .select2-lightblue .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-lightblue .select2-results__option--highlighted[aria-selected]:hover,
2661
.dark-mode .select2-lightblue .select2-container--default .select2-results__option--highlighted[aria-selected],
2662
.dark-mode .select2-lightblue .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2663
  background-color: #7ab3d5;
2664
  color: #1f2d3d;
2665
}
2666

2667
.select2-container--default .dark-mode .select2-lightblue .select2-selection--multiple:focus,
2668
.dark-mode .select2-lightblue .select2-container--default .select2-selection--multiple:focus {
2669
  border-color: #e6f1f7;
2670
}
2671

2672
.select2-container--default .dark-mode .select2-lightblue .select2-selection--multiple .select2-selection__choice,
2673
.dark-mode .select2-lightblue .select2-container--default .select2-selection--multiple .select2-selection__choice {
2674
  background-color: #86bad8;
2675
  border-color: #72afd2;
2676
  color: #1f2d3d;
2677
}
2678

2679
.select2-container--default .dark-mode .select2-lightblue .select2-selection--multiple .select2-selection__choice__remove,
2680
.dark-mode .select2-lightblue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2681
  color: rgba(31, 45, 61, 0.7);
2682
}
2683

2684
.select2-container--default .dark-mode .select2-lightblue .select2-selection--multiple .select2-selection__choice__remove:hover,
2685
.dark-mode .select2-lightblue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2686
  color: #1f2d3d;
2687
}
2688

2689
.select2-container--default .dark-mode .select2-lightblue.select2-container--focus .select2-selection--multiple,
2690
.dark-mode .select2-lightblue .select2-container--default.select2-container--focus .select2-selection--multiple {
2691
  border-color: #e6f1f7;
2692
}
2693

2694
.dark-mode .select2-navy + .select2-container--default.select2-container--open .select2-selection--single {
2695
  border-color: #006ad8;
2696
}
2697

2698
.dark-mode .select2-navy + .select2-container--default.select2-container--focus .select2-selection--single {
2699
  border-color: #006ad8;
2700
}
2701

2702
.select2-container--default .dark-mode .select2-navy.select2-dropdown .select2-search__field:focus,
2703
.select2-container--default .dark-mode .select2-navy .select2-dropdown .select2-search__field:focus,
2704
.select2-container--default .dark-mode .select2-navy .select2-search--inline .select2-search__field:focus,
2705
.dark-mode .select2-navy .select2-container--default.select2-dropdown .select2-search__field:focus,
2706
.dark-mode .select2-navy .select2-container--default .select2-dropdown .select2-search__field:focus,
2707
.dark-mode .select2-navy .select2-container--default .select2-search--inline .select2-search__field:focus {
2708
  border: 1px solid #006ad8;
2709
}
2710

2711
.select2-container--default .dark-mode .select2-navy .select2-results__option--highlighted,
2712
.dark-mode .select2-navy .select2-container--default .select2-results__option--highlighted {
2713
  background-color: #002c59;
2714
  color: #fff;
2715
}
2716

2717
.select2-container--default .dark-mode .select2-navy .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-navy .select2-results__option--highlighted[aria-selected]:hover,
2718
.dark-mode .select2-navy .select2-container--default .select2-results__option--highlighted[aria-selected],
2719
.dark-mode .select2-navy .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2720
  background-color: #002449;
2721
  color: #fff;
2722
}
2723

2724
.select2-container--default .dark-mode .select2-navy .select2-selection--multiple:focus,
2725
.dark-mode .select2-navy .select2-container--default .select2-selection--multiple:focus {
2726
  border-color: #006ad8;
2727
}
2728

2729
.select2-container--default .dark-mode .select2-navy .select2-selection--multiple .select2-selection__choice,
2730
.dark-mode .select2-navy .select2-container--default .select2-selection--multiple .select2-selection__choice {
2731
  background-color: #002c59;
2732
  border-color: #001f3f;
2733
  color: #fff;
2734
}
2735

2736
.select2-container--default .dark-mode .select2-navy .select2-selection--multiple .select2-selection__choice__remove,
2737
.dark-mode .select2-navy .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2738
  color: rgba(255, 255, 255, 0.7);
2739
}
2740

2741
.select2-container--default .dark-mode .select2-navy .select2-selection--multiple .select2-selection__choice__remove:hover,
2742
.dark-mode .select2-navy .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2743
  color: #fff;
2744
}
2745

2746
.select2-container--default .dark-mode .select2-navy.select2-container--focus .select2-selection--multiple,
2747
.dark-mode .select2-navy .select2-container--default.select2-container--focus .select2-selection--multiple {
2748
  border-color: #006ad8;
2749
}
2750

2751
.dark-mode .select2-olive + .select2-container--default.select2-container--open .select2-selection--single {
2752
  border-color: #cfecdf;
2753
}
2754

2755
.dark-mode .select2-olive + .select2-container--default.select2-container--focus .select2-selection--single {
2756
  border-color: #cfecdf;
2757
}
2758

2759
.select2-container--default .dark-mode .select2-olive.select2-dropdown .select2-search__field:focus,
2760
.select2-container--default .dark-mode .select2-olive .select2-dropdown .select2-search__field:focus,
2761
.select2-container--default .dark-mode .select2-olive .select2-search--inline .select2-search__field:focus,
2762
.dark-mode .select2-olive .select2-container--default.select2-dropdown .select2-search__field:focus,
2763
.dark-mode .select2-olive .select2-container--default .select2-dropdown .select2-search__field:focus,
2764
.dark-mode .select2-olive .select2-container--default .select2-search--inline .select2-search__field:focus {
2765
  border: 1px solid #cfecdf;
2766
}
2767

2768
.select2-container--default .dark-mode .select2-olive .select2-results__option--highlighted,
2769
.dark-mode .select2-olive .select2-container--default .select2-results__option--highlighted {
2770
  background-color: #74c8a3;
2771
  color: #1f2d3d;
2772
}
2773

2774
.select2-container--default .dark-mode .select2-olive .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-olive .select2-results__option--highlighted[aria-selected]:hover,
2775
.dark-mode .select2-olive .select2-container--default .select2-results__option--highlighted[aria-selected],
2776
.dark-mode .select2-olive .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2777
  background-color: #69c39b;
2778
  color: #1f2d3d;
2779
}
2780

2781
.select2-container--default .dark-mode .select2-olive .select2-selection--multiple:focus,
2782
.dark-mode .select2-olive .select2-container--default .select2-selection--multiple:focus {
2783
  border-color: #cfecdf;
2784
}
2785

2786
.select2-container--default .dark-mode .select2-olive .select2-selection--multiple .select2-selection__choice,
2787
.dark-mode .select2-olive .select2-container--default .select2-selection--multiple .select2-selection__choice {
2788
  background-color: #74c8a3;
2789
  border-color: #62c096;
2790
  color: #1f2d3d;
2791
}
2792

2793
.select2-container--default .dark-mode .select2-olive .select2-selection--multiple .select2-selection__choice__remove,
2794
.dark-mode .select2-olive .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2795
  color: rgba(31, 45, 61, 0.7);
2796
}
2797

2798
.select2-container--default .dark-mode .select2-olive .select2-selection--multiple .select2-selection__choice__remove:hover,
2799
.dark-mode .select2-olive .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2800
  color: #1f2d3d;
2801
}
2802

2803
.select2-container--default .dark-mode .select2-olive.select2-container--focus .select2-selection--multiple,
2804
.dark-mode .select2-olive .select2-container--default.select2-container--focus .select2-selection--multiple {
2805
  border-color: #cfecdf;
2806
}
2807

2808
.dark-mode .select2-lime + .select2-container--default.select2-container--open .select2-selection--single {
2809
  border-color: #e7fff1;
2810
}
2811

2812
.dark-mode .select2-lime + .select2-container--default.select2-container--focus .select2-selection--single {
2813
  border-color: #e7fff1;
2814
}
2815

2816
.select2-container--default .dark-mode .select2-lime.select2-dropdown .select2-search__field:focus,
2817
.select2-container--default .dark-mode .select2-lime .select2-dropdown .select2-search__field:focus,
2818
.select2-container--default .dark-mode .select2-lime .select2-search--inline .select2-search__field:focus,
2819
.dark-mode .select2-lime .select2-container--default.select2-dropdown .select2-search__field:focus,
2820
.dark-mode .select2-lime .select2-container--default .select2-dropdown .select2-search__field:focus,
2821
.dark-mode .select2-lime .select2-container--default .select2-search--inline .select2-search__field:focus {
2822
  border: 1px solid #e7fff1;
2823
}
2824

2825
.select2-container--default .dark-mode .select2-lime .select2-results__option--highlighted,
2826
.dark-mode .select2-lime .select2-container--default .select2-results__option--highlighted {
2827
  background-color: #67ffa9;
2828
  color: #1f2d3d;
2829
}
2830

2831
.select2-container--default .dark-mode .select2-lime .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-lime .select2-results__option--highlighted[aria-selected]:hover,
2832
.dark-mode .select2-lime .select2-container--default .select2-results__option--highlighted[aria-selected],
2833
.dark-mode .select2-lime .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2834
  background-color: #58ffa1;
2835
  color: #1f2d3d;
2836
}
2837

2838
.select2-container--default .dark-mode .select2-lime .select2-selection--multiple:focus,
2839
.dark-mode .select2-lime .select2-container--default .select2-selection--multiple:focus {
2840
  border-color: #e7fff1;
2841
}
2842

2843
.select2-container--default .dark-mode .select2-lime .select2-selection--multiple .select2-selection__choice,
2844
.dark-mode .select2-lime .select2-container--default .select2-selection--multiple .select2-selection__choice {
2845
  background-color: #67ffa9;
2846
  border-color: #4eff9b;
2847
  color: #1f2d3d;
2848
}
2849

2850
.select2-container--default .dark-mode .select2-lime .select2-selection--multiple .select2-selection__choice__remove,
2851
.dark-mode .select2-lime .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2852
  color: rgba(31, 45, 61, 0.7);
2853
}
2854

2855
.select2-container--default .dark-mode .select2-lime .select2-selection--multiple .select2-selection__choice__remove:hover,
2856
.dark-mode .select2-lime .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2857
  color: #1f2d3d;
2858
}
2859

2860
.select2-container--default .dark-mode .select2-lime.select2-container--focus .select2-selection--multiple,
2861
.dark-mode .select2-lime .select2-container--default.select2-container--focus .select2-selection--multiple {
2862
  border-color: #e7fff1;
2863
}
2864

2865
.dark-mode .select2-fuchsia + .select2-container--default.select2-container--open .select2-selection--single {
2866
  border-color: #feeaf9;
2867
}
2868

2869
.dark-mode .select2-fuchsia + .select2-container--default.select2-container--focus .select2-selection--single {
2870
  border-color: #feeaf9;
2871
}
2872

2873
.select2-container--default .dark-mode .select2-fuchsia.select2-dropdown .select2-search__field:focus,
2874
.select2-container--default .dark-mode .select2-fuchsia .select2-dropdown .select2-search__field:focus,
2875
.select2-container--default .dark-mode .select2-fuchsia .select2-search--inline .select2-search__field:focus,
2876
.dark-mode .select2-fuchsia .select2-container--default.select2-dropdown .select2-search__field:focus,
2877
.dark-mode .select2-fuchsia .select2-container--default .select2-dropdown .select2-search__field:focus,
2878
.dark-mode .select2-fuchsia .select2-container--default .select2-search--inline .select2-search__field:focus {
2879
  border: 1px solid #feeaf9;
2880
}
2881

2882
.select2-container--default .dark-mode .select2-fuchsia .select2-results__option--highlighted,
2883
.dark-mode .select2-fuchsia .select2-container--default .select2-results__option--highlighted {
2884
  background-color: #f672d8;
2885
  color: #1f2d3d;
2886
}
2887

2888
.select2-container--default .dark-mode .select2-fuchsia .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-fuchsia .select2-results__option--highlighted[aria-selected]:hover,
2889
.dark-mode .select2-fuchsia .select2-container--default .select2-results__option--highlighted[aria-selected],
2890
.dark-mode .select2-fuchsia .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2891
  background-color: #f564d4;
2892
  color: #1f2d3d;
2893
}
2894

2895
.select2-container--default .dark-mode .select2-fuchsia .select2-selection--multiple:focus,
2896
.dark-mode .select2-fuchsia .select2-container--default .select2-selection--multiple:focus {
2897
  border-color: #feeaf9;
2898
}
2899

2900
.select2-container--default .dark-mode .select2-fuchsia .select2-selection--multiple .select2-selection__choice,
2901
.dark-mode .select2-fuchsia .select2-container--default .select2-selection--multiple .select2-selection__choice {
2902
  background-color: #f672d8;
2903
  border-color: #f55ad2;
2904
  color: #1f2d3d;
2905
}
2906

2907
.select2-container--default .dark-mode .select2-fuchsia .select2-selection--multiple .select2-selection__choice__remove,
2908
.dark-mode .select2-fuchsia .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2909
  color: rgba(31, 45, 61, 0.7);
2910
}
2911

2912
.select2-container--default .dark-mode .select2-fuchsia .select2-selection--multiple .select2-selection__choice__remove:hover,
2913
.dark-mode .select2-fuchsia .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2914
  color: #1f2d3d;
2915
}
2916

2917
.select2-container--default .dark-mode .select2-fuchsia.select2-container--focus .select2-selection--multiple,
2918
.dark-mode .select2-fuchsia .select2-container--default.select2-container--focus .select2-selection--multiple {
2919
  border-color: #feeaf9;
2920
}
2921

2922
.dark-mode .select2-maroon + .select2-container--default.select2-container--open .select2-selection--single {
2923
  border-color: #fbdee8;
2924
}
2925

2926
.dark-mode .select2-maroon + .select2-container--default.select2-container--focus .select2-selection--single {
2927
  border-color: #fbdee8;
2928
}
2929

2930
.select2-container--default .dark-mode .select2-maroon.select2-dropdown .select2-search__field:focus,
2931
.select2-container--default .dark-mode .select2-maroon .select2-dropdown .select2-search__field:focus,
2932
.select2-container--default .dark-mode .select2-maroon .select2-search--inline .select2-search__field:focus,
2933
.dark-mode .select2-maroon .select2-container--default.select2-dropdown .select2-search__field:focus,
2934
.dark-mode .select2-maroon .select2-container--default .select2-dropdown .select2-search__field:focus,
2935
.dark-mode .select2-maroon .select2-container--default .select2-search--inline .select2-search__field:focus {
2936
  border: 1px solid #fbdee8;
2937
}
2938

2939
.select2-container--default .dark-mode .select2-maroon .select2-results__option--highlighted,
2940
.dark-mode .select2-maroon .select2-container--default .select2-results__option--highlighted {
2941
  background-color: #ed6c9b;
2942
  color: #1f2d3d;
2943
}
2944

2945
.select2-container--default .dark-mode .select2-maroon .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-maroon .select2-results__option--highlighted[aria-selected]:hover,
2946
.dark-mode .select2-maroon .select2-container--default .select2-results__option--highlighted[aria-selected],
2947
.dark-mode .select2-maroon .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
2948
  background-color: #eb5f92;
2949
  color: #fff;
2950
}
2951

2952
.select2-container--default .dark-mode .select2-maroon .select2-selection--multiple:focus,
2953
.dark-mode .select2-maroon .select2-container--default .select2-selection--multiple:focus {
2954
  border-color: #fbdee8;
2955
}
2956

2957
.select2-container--default .dark-mode .select2-maroon .select2-selection--multiple .select2-selection__choice,
2958
.dark-mode .select2-maroon .select2-container--default .select2-selection--multiple .select2-selection__choice {
2959
  background-color: #ed6c9b;
2960
  border-color: #ea568c;
2961
  color: #1f2d3d;
2962
}
2963

2964
.select2-container--default .dark-mode .select2-maroon .select2-selection--multiple .select2-selection__choice__remove,
2965
.dark-mode .select2-maroon .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
2966
  color: rgba(31, 45, 61, 0.7);
2967
}
2968

2969
.select2-container--default .dark-mode .select2-maroon .select2-selection--multiple .select2-selection__choice__remove:hover,
2970
.dark-mode .select2-maroon .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
2971
  color: #1f2d3d;
2972
}
2973

2974
.select2-container--default .dark-mode .select2-maroon.select2-container--focus .select2-selection--multiple,
2975
.dark-mode .select2-maroon .select2-container--default.select2-container--focus .select2-selection--multiple {
2976
  border-color: #fbdee8;
2977
}
2978

2979
.dark-mode .select2-blue + .select2-container--default.select2-container--open .select2-selection--single {
2980
  border-color: #85a7ca;
2981
}
2982

2983
.dark-mode .select2-blue + .select2-container--default.select2-container--focus .select2-selection--single {
2984
  border-color: #85a7ca;
2985
}
2986

2987
.select2-container--default .dark-mode .select2-blue.select2-dropdown .select2-search__field:focus,
2988
.select2-container--default .dark-mode .select2-blue .select2-dropdown .select2-search__field:focus,
2989
.select2-container--default .dark-mode .select2-blue .select2-search--inline .select2-search__field:focus,
2990
.dark-mode .select2-blue .select2-container--default.select2-dropdown .select2-search__field:focus,
2991
.dark-mode .select2-blue .select2-container--default .select2-dropdown .select2-search__field:focus,
2992
.dark-mode .select2-blue .select2-container--default .select2-search--inline .select2-search__field:focus {
2993
  border: 1px solid #85a7ca;
2994
}
2995

2996
.select2-container--default .dark-mode .select2-blue .select2-results__option--highlighted,
2997
.dark-mode .select2-blue .select2-container--default .select2-results__option--highlighted {
2998
  background-color: #3f6791;
2999
  color: #fff;
3000
}
3001

3002
.select2-container--default .dark-mode .select2-blue .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-blue .select2-results__option--highlighted[aria-selected]:hover,
3003
.dark-mode .select2-blue .select2-container--default .select2-results__option--highlighted[aria-selected],
3004
.dark-mode .select2-blue .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3005
  background-color: #3a5f86;
3006
  color: #fff;
3007
}
3008

3009
.select2-container--default .dark-mode .select2-blue .select2-selection--multiple:focus,
3010
.dark-mode .select2-blue .select2-container--default .select2-selection--multiple:focus {
3011
  border-color: #85a7ca;
3012
}
3013

3014
.select2-container--default .dark-mode .select2-blue .select2-selection--multiple .select2-selection__choice,
3015
.dark-mode .select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice {
3016
  background-color: #3f6791;
3017
  border-color: #375a7f;
3018
  color: #fff;
3019
}
3020

3021
.select2-container--default .dark-mode .select2-blue .select2-selection--multiple .select2-selection__choice__remove,
3022
.dark-mode .select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3023
  color: rgba(255, 255, 255, 0.7);
3024
}
3025

3026
.select2-container--default .dark-mode .select2-blue .select2-selection--multiple .select2-selection__choice__remove:hover,
3027
.dark-mode .select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3028
  color: #fff;
3029
}
3030

3031
.select2-container--default .dark-mode .select2-blue.select2-container--focus .select2-selection--multiple,
3032
.dark-mode .select2-blue .select2-container--default.select2-container--focus .select2-selection--multiple {
3033
  border-color: #85a7ca;
3034
}
3035

3036
.dark-mode .select2-indigo + .select2-container--default.select2-container--open .select2-selection--single {
3037
  border-color: #b389f9;
3038
}
3039

3040
.dark-mode .select2-indigo + .select2-container--default.select2-container--focus .select2-selection--single {
3041
  border-color: #b389f9;
3042
}
3043

3044
.select2-container--default .dark-mode .select2-indigo.select2-dropdown .select2-search__field:focus,
3045
.select2-container--default .dark-mode .select2-indigo .select2-dropdown .select2-search__field:focus,
3046
.select2-container--default .dark-mode .select2-indigo .select2-search--inline .select2-search__field:focus,
3047
.dark-mode .select2-indigo .select2-container--default.select2-dropdown .select2-search__field:focus,
3048
.dark-mode .select2-indigo .select2-container--default .select2-dropdown .select2-search__field:focus,
3049
.dark-mode .select2-indigo .select2-container--default .select2-search--inline .select2-search__field:focus {
3050
  border: 1px solid #b389f9;
3051
}
3052

3053
.select2-container--default .dark-mode .select2-indigo .select2-results__option--highlighted,
3054
.dark-mode .select2-indigo .select2-container--default .select2-results__option--highlighted {
3055
  background-color: #6610f2;
3056
  color: #fff;
3057
}
3058

3059
.select2-container--default .dark-mode .select2-indigo .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-indigo .select2-results__option--highlighted[aria-selected]:hover,
3060
.dark-mode .select2-indigo .select2-container--default .select2-results__option--highlighted[aria-selected],
3061
.dark-mode .select2-indigo .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3062
  background-color: #5f0de6;
3063
  color: #fff;
3064
}
3065

3066
.select2-container--default .dark-mode .select2-indigo .select2-selection--multiple:focus,
3067
.dark-mode .select2-indigo .select2-container--default .select2-selection--multiple:focus {
3068
  border-color: #b389f9;
3069
}
3070

3071
.select2-container--default .dark-mode .select2-indigo .select2-selection--multiple .select2-selection__choice,
3072
.dark-mode .select2-indigo .select2-container--default .select2-selection--multiple .select2-selection__choice {
3073
  background-color: #6610f2;
3074
  border-color: #5b0cdd;
3075
  color: #fff;
3076
}
3077

3078
.select2-container--default .dark-mode .select2-indigo .select2-selection--multiple .select2-selection__choice__remove,
3079
.dark-mode .select2-indigo .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3080
  color: rgba(255, 255, 255, 0.7);
3081
}
3082

3083
.select2-container--default .dark-mode .select2-indigo .select2-selection--multiple .select2-selection__choice__remove:hover,
3084
.dark-mode .select2-indigo .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3085
  color: #fff;
3086
}
3087

3088
.select2-container--default .dark-mode .select2-indigo.select2-container--focus .select2-selection--multiple,
3089
.dark-mode .select2-indigo .select2-container--default.select2-container--focus .select2-selection--multiple {
3090
  border-color: #b389f9;
3091
}
3092

3093
.dark-mode .select2-purple + .select2-container--default.select2-container--open .select2-selection--single {
3094
  border-color: #b8a2e0;
3095
}
3096

3097
.dark-mode .select2-purple + .select2-container--default.select2-container--focus .select2-selection--single {
3098
  border-color: #b8a2e0;
3099
}
3100

3101
.select2-container--default .dark-mode .select2-purple.select2-dropdown .select2-search__field:focus,
3102
.select2-container--default .dark-mode .select2-purple .select2-dropdown .select2-search__field:focus,
3103
.select2-container--default .dark-mode .select2-purple .select2-search--inline .select2-search__field:focus,
3104
.dark-mode .select2-purple .select2-container--default.select2-dropdown .select2-search__field:focus,
3105
.dark-mode .select2-purple .select2-container--default .select2-dropdown .select2-search__field:focus,
3106
.dark-mode .select2-purple .select2-container--default .select2-search--inline .select2-search__field:focus {
3107
  border: 1px solid #b8a2e0;
3108
}
3109

3110
.select2-container--default .dark-mode .select2-purple .select2-results__option--highlighted,
3111
.dark-mode .select2-purple .select2-container--default .select2-results__option--highlighted {
3112
  background-color: #6f42c1;
3113
  color: #fff;
3114
}
3115

3116
.select2-container--default .dark-mode .select2-purple .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-purple .select2-results__option--highlighted[aria-selected]:hover,
3117
.dark-mode .select2-purple .select2-container--default .select2-results__option--highlighted[aria-selected],
3118
.dark-mode .select2-purple .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3119
  background-color: #683cb8;
3120
  color: #fff;
3121
}
3122

3123
.select2-container--default .dark-mode .select2-purple .select2-selection--multiple:focus,
3124
.dark-mode .select2-purple .select2-container--default .select2-selection--multiple:focus {
3125
  border-color: #b8a2e0;
3126
}
3127

3128
.select2-container--default .dark-mode .select2-purple .select2-selection--multiple .select2-selection__choice,
3129
.dark-mode .select2-purple .select2-container--default .select2-selection--multiple .select2-selection__choice {
3130
  background-color: #6f42c1;
3131
  border-color: #643ab0;
3132
  color: #fff;
3133
}
3134

3135
.select2-container--default .dark-mode .select2-purple .select2-selection--multiple .select2-selection__choice__remove,
3136
.dark-mode .select2-purple .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3137
  color: rgba(255, 255, 255, 0.7);
3138
}
3139

3140
.select2-container--default .dark-mode .select2-purple .select2-selection--multiple .select2-selection__choice__remove:hover,
3141
.dark-mode .select2-purple .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3142
  color: #fff;
3143
}
3144

3145
.select2-container--default .dark-mode .select2-purple.select2-container--focus .select2-selection--multiple,
3146
.dark-mode .select2-purple .select2-container--default.select2-container--focus .select2-selection--multiple {
3147
  border-color: #b8a2e0;
3148
}
3149

3150
.dark-mode .select2-pink + .select2-container--default.select2-container--open .select2-selection--single {
3151
  border-color: #f6b0d0;
3152
}
3153

3154
.dark-mode .select2-pink + .select2-container--default.select2-container--focus .select2-selection--single {
3155
  border-color: #f6b0d0;
3156
}
3157

3158
.select2-container--default .dark-mode .select2-pink.select2-dropdown .select2-search__field:focus,
3159
.select2-container--default .dark-mode .select2-pink .select2-dropdown .select2-search__field:focus,
3160
.select2-container--default .dark-mode .select2-pink .select2-search--inline .select2-search__field:focus,
3161
.dark-mode .select2-pink .select2-container--default.select2-dropdown .select2-search__field:focus,
3162
.dark-mode .select2-pink .select2-container--default .select2-dropdown .select2-search__field:focus,
3163
.dark-mode .select2-pink .select2-container--default .select2-search--inline .select2-search__field:focus {
3164
  border: 1px solid #f6b0d0;
3165
}
3166

3167
.select2-container--default .dark-mode .select2-pink .select2-results__option--highlighted,
3168
.dark-mode .select2-pink .select2-container--default .select2-results__option--highlighted {
3169
  background-color: #e83e8c;
3170
  color: #fff;
3171
}
3172

3173
.select2-container--default .dark-mode .select2-pink .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-pink .select2-results__option--highlighted[aria-selected]:hover,
3174
.dark-mode .select2-pink .select2-container--default .select2-results__option--highlighted[aria-selected],
3175
.dark-mode .select2-pink .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3176
  background-color: #e63084;
3177
  color: #fff;
3178
}
3179

3180
.select2-container--default .dark-mode .select2-pink .select2-selection--multiple:focus,
3181
.dark-mode .select2-pink .select2-container--default .select2-selection--multiple:focus {
3182
  border-color: #f6b0d0;
3183
}
3184

3185
.select2-container--default .dark-mode .select2-pink .select2-selection--multiple .select2-selection__choice,
3186
.dark-mode .select2-pink .select2-container--default .select2-selection--multiple .select2-selection__choice {
3187
  background-color: #e83e8c;
3188
  border-color: #e5277e;
3189
  color: #fff;
3190
}
3191

3192
.select2-container--default .dark-mode .select2-pink .select2-selection--multiple .select2-selection__choice__remove,
3193
.dark-mode .select2-pink .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3194
  color: rgba(255, 255, 255, 0.7);
3195
}
3196

3197
.select2-container--default .dark-mode .select2-pink .select2-selection--multiple .select2-selection__choice__remove:hover,
3198
.dark-mode .select2-pink .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3199
  color: #fff;
3200
}
3201

3202
.select2-container--default .dark-mode .select2-pink.select2-container--focus .select2-selection--multiple,
3203
.dark-mode .select2-pink .select2-container--default.select2-container--focus .select2-selection--multiple {
3204
  border-color: #f6b0d0;
3205
}
3206

3207
.dark-mode .select2-red + .select2-container--default.select2-container--open .select2-selection--single {
3208
  border-color: #f5b4ae;
3209
}
3210

3211
.dark-mode .select2-red + .select2-container--default.select2-container--focus .select2-selection--single {
3212
  border-color: #f5b4ae;
3213
}
3214

3215
.select2-container--default .dark-mode .select2-red.select2-dropdown .select2-search__field:focus,
3216
.select2-container--default .dark-mode .select2-red .select2-dropdown .select2-search__field:focus,
3217
.select2-container--default .dark-mode .select2-red .select2-search--inline .select2-search__field:focus,
3218
.dark-mode .select2-red .select2-container--default.select2-dropdown .select2-search__field:focus,
3219
.dark-mode .select2-red .select2-container--default .select2-dropdown .select2-search__field:focus,
3220
.dark-mode .select2-red .select2-container--default .select2-search--inline .select2-search__field:focus {
3221
  border: 1px solid #f5b4ae;
3222
}
3223

3224
.select2-container--default .dark-mode .select2-red .select2-results__option--highlighted,
3225
.dark-mode .select2-red .select2-container--default .select2-results__option--highlighted {
3226
  background-color: #e74c3c;
3227
  color: #fff;
3228
}
3229

3230
.select2-container--default .dark-mode .select2-red .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-red .select2-results__option--highlighted[aria-selected]:hover,
3231
.dark-mode .select2-red .select2-container--default .select2-results__option--highlighted[aria-selected],
3232
.dark-mode .select2-red .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3233
  background-color: #e53f2e;
3234
  color: #fff;
3235
}
3236

3237
.select2-container--default .dark-mode .select2-red .select2-selection--multiple:focus,
3238
.dark-mode .select2-red .select2-container--default .select2-selection--multiple:focus {
3239
  border-color: #f5b4ae;
3240
}
3241

3242
.select2-container--default .dark-mode .select2-red .select2-selection--multiple .select2-selection__choice,
3243
.dark-mode .select2-red .select2-container--default .select2-selection--multiple .select2-selection__choice {
3244
  background-color: #e74c3c;
3245
  border-color: #e43725;
3246
  color: #fff;
3247
}
3248

3249
.select2-container--default .dark-mode .select2-red .select2-selection--multiple .select2-selection__choice__remove,
3250
.dark-mode .select2-red .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3251
  color: rgba(255, 255, 255, 0.7);
3252
}
3253

3254
.select2-container--default .dark-mode .select2-red .select2-selection--multiple .select2-selection__choice__remove:hover,
3255
.dark-mode .select2-red .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3256
  color: #fff;
3257
}
3258

3259
.select2-container--default .dark-mode .select2-red.select2-container--focus .select2-selection--multiple,
3260
.dark-mode .select2-red .select2-container--default.select2-container--focus .select2-selection--multiple {
3261
  border-color: #f5b4ae;
3262
}
3263

3264
.dark-mode .select2-orange + .select2-container--default.select2-container--open .select2-selection--single {
3265
  border-color: #fec392;
3266
}
3267

3268
.dark-mode .select2-orange + .select2-container--default.select2-container--focus .select2-selection--single {
3269
  border-color: #fec392;
3270
}
3271

3272
.select2-container--default .dark-mode .select2-orange.select2-dropdown .select2-search__field:focus,
3273
.select2-container--default .dark-mode .select2-orange .select2-dropdown .select2-search__field:focus,
3274
.select2-container--default .dark-mode .select2-orange .select2-search--inline .select2-search__field:focus,
3275
.dark-mode .select2-orange .select2-container--default.select2-dropdown .select2-search__field:focus,
3276
.dark-mode .select2-orange .select2-container--default .select2-dropdown .select2-search__field:focus,
3277
.dark-mode .select2-orange .select2-container--default .select2-search--inline .select2-search__field:focus {
3278
  border: 1px solid #fec392;
3279
}
3280

3281
.select2-container--default .dark-mode .select2-orange .select2-results__option--highlighted,
3282
.dark-mode .select2-orange .select2-container--default .select2-results__option--highlighted {
3283
  background-color: #fd7e14;
3284
  color: #1f2d3d;
3285
}
3286

3287
.select2-container--default .dark-mode .select2-orange .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-orange .select2-results__option--highlighted[aria-selected]:hover,
3288
.dark-mode .select2-orange .select2-container--default .select2-results__option--highlighted[aria-selected],
3289
.dark-mode .select2-orange .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3290
  background-color: #fd7605;
3291
  color: #fff;
3292
}
3293

3294
.select2-container--default .dark-mode .select2-orange .select2-selection--multiple:focus,
3295
.dark-mode .select2-orange .select2-container--default .select2-selection--multiple:focus {
3296
  border-color: #fec392;
3297
}
3298

3299
.select2-container--default .dark-mode .select2-orange .select2-selection--multiple .select2-selection__choice,
3300
.dark-mode .select2-orange .select2-container--default .select2-selection--multiple .select2-selection__choice {
3301
  background-color: #fd7e14;
3302
  border-color: #f57102;
3303
  color: #1f2d3d;
3304
}
3305

3306
.select2-container--default .dark-mode .select2-orange .select2-selection--multiple .select2-selection__choice__remove,
3307
.dark-mode .select2-orange .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3308
  color: rgba(31, 45, 61, 0.7);
3309
}
3310

3311
.select2-container--default .dark-mode .select2-orange .select2-selection--multiple .select2-selection__choice__remove:hover,
3312
.dark-mode .select2-orange .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3313
  color: #1f2d3d;
3314
}
3315

3316
.select2-container--default .dark-mode .select2-orange.select2-container--focus .select2-selection--multiple,
3317
.dark-mode .select2-orange .select2-container--default.select2-container--focus .select2-selection--multiple {
3318
  border-color: #fec392;
3319
}
3320

3321
.dark-mode .select2-yellow + .select2-container--default.select2-container--open .select2-selection--single {
3322
  border-color: #f9cf8b;
3323
}
3324

3325
.dark-mode .select2-yellow + .select2-container--default.select2-container--focus .select2-selection--single {
3326
  border-color: #f9cf8b;
3327
}
3328

3329
.select2-container--default .dark-mode .select2-yellow.select2-dropdown .select2-search__field:focus,
3330
.select2-container--default .dark-mode .select2-yellow .select2-dropdown .select2-search__field:focus,
3331
.select2-container--default .dark-mode .select2-yellow .select2-search--inline .select2-search__field:focus,
3332
.dark-mode .select2-yellow .select2-container--default.select2-dropdown .select2-search__field:focus,
3333
.dark-mode .select2-yellow .select2-container--default .select2-dropdown .select2-search__field:focus,
3334
.dark-mode .select2-yellow .select2-container--default .select2-search--inline .select2-search__field:focus {
3335
  border: 1px solid #f9cf8b;
3336
}
3337

3338
.select2-container--default .dark-mode .select2-yellow .select2-results__option--highlighted,
3339
.dark-mode .select2-yellow .select2-container--default .select2-results__option--highlighted {
3340
  background-color: #f39c12;
3341
  color: #1f2d3d;
3342
}
3343

3344
.select2-container--default .dark-mode .select2-yellow .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-yellow .select2-results__option--highlighted[aria-selected]:hover,
3345
.dark-mode .select2-yellow .select2-container--default .select2-results__option--highlighted[aria-selected],
3346
.dark-mode .select2-yellow .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3347
  background-color: #ea940c;
3348
  color: #1f2d3d;
3349
}
3350

3351
.select2-container--default .dark-mode .select2-yellow .select2-selection--multiple:focus,
3352
.dark-mode .select2-yellow .select2-container--default .select2-selection--multiple:focus {
3353
  border-color: #f9cf8b;
3354
}
3355

3356
.select2-container--default .dark-mode .select2-yellow .select2-selection--multiple .select2-selection__choice,
3357
.dark-mode .select2-yellow .select2-container--default .select2-selection--multiple .select2-selection__choice {
3358
  background-color: #f39c12;
3359
  border-color: #e08e0b;
3360
  color: #1f2d3d;
3361
}
3362

3363
.select2-container--default .dark-mode .select2-yellow .select2-selection--multiple .select2-selection__choice__remove,
3364
.dark-mode .select2-yellow .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3365
  color: rgba(31, 45, 61, 0.7);
3366
}
3367

3368
.select2-container--default .dark-mode .select2-yellow .select2-selection--multiple .select2-selection__choice__remove:hover,
3369
.dark-mode .select2-yellow .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3370
  color: #1f2d3d;
3371
}
3372

3373
.select2-container--default .dark-mode .select2-yellow.select2-container--focus .select2-selection--multiple,
3374
.dark-mode .select2-yellow .select2-container--default.select2-container--focus .select2-selection--multiple {
3375
  border-color: #f9cf8b;
3376
}
3377

3378
.dark-mode .select2-green + .select2-container--default.select2-container--open .select2-selection--single {
3379
  border-color: #3dffcd;
3380
}
3381

3382
.dark-mode .select2-green + .select2-container--default.select2-container--focus .select2-selection--single {
3383
  border-color: #3dffcd;
3384
}
3385

3386
.select2-container--default .dark-mode .select2-green.select2-dropdown .select2-search__field:focus,
3387
.select2-container--default .dark-mode .select2-green .select2-dropdown .select2-search__field:focus,
3388
.select2-container--default .dark-mode .select2-green .select2-search--inline .select2-search__field:focus,
3389
.dark-mode .select2-green .select2-container--default.select2-dropdown .select2-search__field:focus,
3390
.dark-mode .select2-green .select2-container--default .select2-dropdown .select2-search__field:focus,
3391
.dark-mode .select2-green .select2-container--default .select2-search--inline .select2-search__field:focus {
3392
  border: 1px solid #3dffcd;
3393
}
3394

3395
.select2-container--default .dark-mode .select2-green .select2-results__option--highlighted,
3396
.dark-mode .select2-green .select2-container--default .select2-results__option--highlighted {
3397
  background-color: #00bc8c;
3398
  color: #fff;
3399
}
3400

3401
.select2-container--default .dark-mode .select2-green .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-green .select2-results__option--highlighted[aria-selected]:hover,
3402
.dark-mode .select2-green .select2-container--default .select2-results__option--highlighted[aria-selected],
3403
.dark-mode .select2-green .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3404
  background-color: #00ad81;
3405
  color: #fff;
3406
}
3407

3408
.select2-container--default .dark-mode .select2-green .select2-selection--multiple:focus,
3409
.dark-mode .select2-green .select2-container--default .select2-selection--multiple:focus {
3410
  border-color: #3dffcd;
3411
}
3412

3413
.select2-container--default .dark-mode .select2-green .select2-selection--multiple .select2-selection__choice,
3414
.dark-mode .select2-green .select2-container--default .select2-selection--multiple .select2-selection__choice {
3415
  background-color: #00bc8c;
3416
  border-color: #00a379;
3417
  color: #fff;
3418
}
3419

3420
.select2-container--default .dark-mode .select2-green .select2-selection--multiple .select2-selection__choice__remove,
3421
.dark-mode .select2-green .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3422
  color: rgba(255, 255, 255, 0.7);
3423
}
3424

3425
.select2-container--default .dark-mode .select2-green .select2-selection--multiple .select2-selection__choice__remove:hover,
3426
.dark-mode .select2-green .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3427
  color: #fff;
3428
}
3429

3430
.select2-container--default .dark-mode .select2-green.select2-container--focus .select2-selection--multiple,
3431
.dark-mode .select2-green .select2-container--default.select2-container--focus .select2-selection--multiple {
3432
  border-color: #3dffcd;
3433
}
3434

3435
.dark-mode .select2-teal + .select2-container--default.select2-container--open .select2-selection--single {
3436
  border-color: #7eeaca;
3437
}
3438

3439
.dark-mode .select2-teal + .select2-container--default.select2-container--focus .select2-selection--single {
3440
  border-color: #7eeaca;
3441
}
3442

3443
.select2-container--default .dark-mode .select2-teal.select2-dropdown .select2-search__field:focus,
3444
.select2-container--default .dark-mode .select2-teal .select2-dropdown .select2-search__field:focus,
3445
.select2-container--default .dark-mode .select2-teal .select2-search--inline .select2-search__field:focus,
3446
.dark-mode .select2-teal .select2-container--default.select2-dropdown .select2-search__field:focus,
3447
.dark-mode .select2-teal .select2-container--default .select2-dropdown .select2-search__field:focus,
3448
.dark-mode .select2-teal .select2-container--default .select2-search--inline .select2-search__field:focus {
3449
  border: 1px solid #7eeaca;
3450
}
3451

3452
.select2-container--default .dark-mode .select2-teal .select2-results__option--highlighted,
3453
.dark-mode .select2-teal .select2-container--default .select2-results__option--highlighted {
3454
  background-color: #20c997;
3455
  color: #fff;
3456
}
3457

3458
.select2-container--default .dark-mode .select2-teal .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-teal .select2-results__option--highlighted[aria-selected]:hover,
3459
.dark-mode .select2-teal .select2-container--default .select2-results__option--highlighted[aria-selected],
3460
.dark-mode .select2-teal .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3461
  background-color: #1ebc8d;
3462
  color: #fff;
3463
}
3464

3465
.select2-container--default .dark-mode .select2-teal .select2-selection--multiple:focus,
3466
.dark-mode .select2-teal .select2-container--default .select2-selection--multiple:focus {
3467
  border-color: #7eeaca;
3468
}
3469

3470
.select2-container--default .dark-mode .select2-teal .select2-selection--multiple .select2-selection__choice,
3471
.dark-mode .select2-teal .select2-container--default .select2-selection--multiple .select2-selection__choice {
3472
  background-color: #20c997;
3473
  border-color: #1cb386;
3474
  color: #fff;
3475
}
3476

3477
.select2-container--default .dark-mode .select2-teal .select2-selection--multiple .select2-selection__choice__remove,
3478
.dark-mode .select2-teal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3479
  color: rgba(255, 255, 255, 0.7);
3480
}
3481

3482
.select2-container--default .dark-mode .select2-teal .select2-selection--multiple .select2-selection__choice__remove:hover,
3483
.dark-mode .select2-teal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3484
  color: #fff;
3485
}
3486

3487
.select2-container--default .dark-mode .select2-teal.select2-container--focus .select2-selection--multiple,
3488
.dark-mode .select2-teal .select2-container--default.select2-container--focus .select2-selection--multiple {
3489
  border-color: #7eeaca;
3490
}
3491

3492
.dark-mode .select2-cyan + .select2-container--default.select2-container--open .select2-selection--single {
3493
  border-color: #a0cfee;
3494
}
3495

3496
.dark-mode .select2-cyan + .select2-container--default.select2-container--focus .select2-selection--single {
3497
  border-color: #a0cfee;
3498
}
3499

3500
.select2-container--default .dark-mode .select2-cyan.select2-dropdown .select2-search__field:focus,
3501
.select2-container--default .dark-mode .select2-cyan .select2-dropdown .select2-search__field:focus,
3502
.select2-container--default .dark-mode .select2-cyan .select2-search--inline .select2-search__field:focus,
3503
.dark-mode .select2-cyan .select2-container--default.select2-dropdown .select2-search__field:focus,
3504
.dark-mode .select2-cyan .select2-container--default .select2-dropdown .select2-search__field:focus,
3505
.dark-mode .select2-cyan .select2-container--default .select2-search--inline .select2-search__field:focus {
3506
  border: 1px solid #a0cfee;
3507
}
3508

3509
.select2-container--default .dark-mode .select2-cyan .select2-results__option--highlighted,
3510
.dark-mode .select2-cyan .select2-container--default .select2-results__option--highlighted {
3511
  background-color: #3498db;
3512
  color: #fff;
3513
}
3514

3515
.select2-container--default .dark-mode .select2-cyan .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-cyan .select2-results__option--highlighted[aria-selected]:hover,
3516
.dark-mode .select2-cyan .select2-container--default .select2-results__option--highlighted[aria-selected],
3517
.dark-mode .select2-cyan .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3518
  background-color: #2791d9;
3519
  color: #fff;
3520
}
3521

3522
.select2-container--default .dark-mode .select2-cyan .select2-selection--multiple:focus,
3523
.dark-mode .select2-cyan .select2-container--default .select2-selection--multiple:focus {
3524
  border-color: #a0cfee;
3525
}
3526

3527
.select2-container--default .dark-mode .select2-cyan .select2-selection--multiple .select2-selection__choice,
3528
.dark-mode .select2-cyan .select2-container--default .select2-selection--multiple .select2-selection__choice {
3529
  background-color: #3498db;
3530
  border-color: #258cd1;
3531
  color: #fff;
3532
}
3533

3534
.select2-container--default .dark-mode .select2-cyan .select2-selection--multiple .select2-selection__choice__remove,
3535
.dark-mode .select2-cyan .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3536
  color: rgba(255, 255, 255, 0.7);
3537
}
3538

3539
.select2-container--default .dark-mode .select2-cyan .select2-selection--multiple .select2-selection__choice__remove:hover,
3540
.dark-mode .select2-cyan .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3541
  color: #fff;
3542
}
3543

3544
.select2-container--default .dark-mode .select2-cyan.select2-container--focus .select2-selection--multiple,
3545
.dark-mode .select2-cyan .select2-container--default.select2-container--focus .select2-selection--multiple {
3546
  border-color: #a0cfee;
3547
}
3548

3549
.dark-mode .select2-white + .select2-container--default.select2-container--open .select2-selection--single {
3550
  border-color: white;
3551
}
3552

3553
.dark-mode .select2-white + .select2-container--default.select2-container--focus .select2-selection--single {
3554
  border-color: white;
3555
}
3556

3557
.select2-container--default .dark-mode .select2-white.select2-dropdown .select2-search__field:focus,
3558
.select2-container--default .dark-mode .select2-white .select2-dropdown .select2-search__field:focus,
3559
.select2-container--default .dark-mode .select2-white .select2-search--inline .select2-search__field:focus,
3560
.dark-mode .select2-white .select2-container--default.select2-dropdown .select2-search__field:focus,
3561
.dark-mode .select2-white .select2-container--default .select2-dropdown .select2-search__field:focus,
3562
.dark-mode .select2-white .select2-container--default .select2-search--inline .select2-search__field:focus {
3563
  border: 1px solid white;
3564
}
3565

3566
.select2-container--default .dark-mode .select2-white .select2-results__option--highlighted,
3567
.dark-mode .select2-white .select2-container--default .select2-results__option--highlighted {
3568
  background-color: #fff;
3569
  color: #1f2d3d;
3570
}
3571

3572
.select2-container--default .dark-mode .select2-white .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-white .select2-results__option--highlighted[aria-selected]:hover,
3573
.dark-mode .select2-white .select2-container--default .select2-results__option--highlighted[aria-selected],
3574
.dark-mode .select2-white .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3575
  background-color: #f7f7f7;
3576
  color: #1f2d3d;
3577
}
3578

3579
.select2-container--default .dark-mode .select2-white .select2-selection--multiple:focus,
3580
.dark-mode .select2-white .select2-container--default .select2-selection--multiple:focus {
3581
  border-color: white;
3582
}
3583

3584
.select2-container--default .dark-mode .select2-white .select2-selection--multiple .select2-selection__choice,
3585
.dark-mode .select2-white .select2-container--default .select2-selection--multiple .select2-selection__choice {
3586
  background-color: #fff;
3587
  border-color: #f2f2f2;
3588
  color: #1f2d3d;
3589
}
3590

3591
.select2-container--default .dark-mode .select2-white .select2-selection--multiple .select2-selection__choice__remove,
3592
.dark-mode .select2-white .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3593
  color: rgba(31, 45, 61, 0.7);
3594
}
3595

3596
.select2-container--default .dark-mode .select2-white .select2-selection--multiple .select2-selection__choice__remove:hover,
3597
.dark-mode .select2-white .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3598
  color: #1f2d3d;
3599
}
3600

3601
.select2-container--default .dark-mode .select2-white.select2-container--focus .select2-selection--multiple,
3602
.dark-mode .select2-white .select2-container--default.select2-container--focus .select2-selection--multiple {
3603
  border-color: white;
3604
}
3605

3606
.dark-mode .select2-gray + .select2-container--default.select2-container--open .select2-selection--single {
3607
  border-color: #afb5ba;
3608
}
3609

3610
.dark-mode .select2-gray + .select2-container--default.select2-container--focus .select2-selection--single {
3611
  border-color: #afb5ba;
3612
}
3613

3614
.select2-container--default .dark-mode .select2-gray.select2-dropdown .select2-search__field:focus,
3615
.select2-container--default .dark-mode .select2-gray .select2-dropdown .select2-search__field:focus,
3616
.select2-container--default .dark-mode .select2-gray .select2-search--inline .select2-search__field:focus,
3617
.dark-mode .select2-gray .select2-container--default.select2-dropdown .select2-search__field:focus,
3618
.dark-mode .select2-gray .select2-container--default .select2-dropdown .select2-search__field:focus,
3619
.dark-mode .select2-gray .select2-container--default .select2-search--inline .select2-search__field:focus {
3620
  border: 1px solid #afb5ba;
3621
}
3622

3623
.select2-container--default .dark-mode .select2-gray .select2-results__option--highlighted,
3624
.dark-mode .select2-gray .select2-container--default .select2-results__option--highlighted {
3625
  background-color: #6c757d;
3626
  color: #fff;
3627
}
3628

3629
.select2-container--default .dark-mode .select2-gray .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-gray .select2-results__option--highlighted[aria-selected]:hover,
3630
.dark-mode .select2-gray .select2-container--default .select2-results__option--highlighted[aria-selected],
3631
.dark-mode .select2-gray .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3632
  background-color: #656d75;
3633
  color: #fff;
3634
}
3635

3636
.select2-container--default .dark-mode .select2-gray .select2-selection--multiple:focus,
3637
.dark-mode .select2-gray .select2-container--default .select2-selection--multiple:focus {
3638
  border-color: #afb5ba;
3639
}
3640

3641
.select2-container--default .dark-mode .select2-gray .select2-selection--multiple .select2-selection__choice,
3642
.dark-mode .select2-gray .select2-container--default .select2-selection--multiple .select2-selection__choice {
3643
  background-color: #6c757d;
3644
  border-color: #60686f;
3645
  color: #fff;
3646
}
3647

3648
.select2-container--default .dark-mode .select2-gray .select2-selection--multiple .select2-selection__choice__remove,
3649
.dark-mode .select2-gray .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3650
  color: rgba(255, 255, 255, 0.7);
3651
}
3652

3653
.select2-container--default .dark-mode .select2-gray .select2-selection--multiple .select2-selection__choice__remove:hover,
3654
.dark-mode .select2-gray .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3655
  color: #fff;
3656
}
3657

3658
.select2-container--default .dark-mode .select2-gray.select2-container--focus .select2-selection--multiple,
3659
.dark-mode .select2-gray .select2-container--default.select2-container--focus .select2-selection--multiple {
3660
  border-color: #afb5ba;
3661
}
3662

3663
.dark-mode .select2-gray-dark + .select2-container--default.select2-container--open .select2-selection--single {
3664
  border-color: #6d7a86;
3665
}
3666

3667
.dark-mode .select2-gray-dark + .select2-container--default.select2-container--focus .select2-selection--single {
3668
  border-color: #6d7a86;
3669
}
3670

3671
.select2-container--default .dark-mode .select2-gray-dark.select2-dropdown .select2-search__field:focus,
3672
.select2-container--default .dark-mode .select2-gray-dark .select2-dropdown .select2-search__field:focus,
3673
.select2-container--default .dark-mode .select2-gray-dark .select2-search--inline .select2-search__field:focus,
3674
.dark-mode .select2-gray-dark .select2-container--default.select2-dropdown .select2-search__field:focus,
3675
.dark-mode .select2-gray-dark .select2-container--default .select2-dropdown .select2-search__field:focus,
3676
.dark-mode .select2-gray-dark .select2-container--default .select2-search--inline .select2-search__field:focus {
3677
  border: 1px solid #6d7a86;
3678
}
3679

3680
.select2-container--default .dark-mode .select2-gray-dark .select2-results__option--highlighted,
3681
.dark-mode .select2-gray-dark .select2-container--default .select2-results__option--highlighted {
3682
  background-color: #343a40;
3683
  color: #fff;
3684
}
3685

3686
.select2-container--default .dark-mode .select2-gray-dark .select2-results__option--highlighted[aria-selected], .select2-container--default .dark-mode .select2-gray-dark .select2-results__option--highlighted[aria-selected]:hover,
3687
.dark-mode .select2-gray-dark .select2-container--default .select2-results__option--highlighted[aria-selected],
3688
.dark-mode .select2-gray-dark .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
3689
  background-color: #2d3238;
3690
  color: #fff;
3691
}
3692

3693
.select2-container--default .dark-mode .select2-gray-dark .select2-selection--multiple:focus,
3694
.dark-mode .select2-gray-dark .select2-container--default .select2-selection--multiple:focus {
3695
  border-color: #6d7a86;
3696
}
3697

3698
.select2-container--default .dark-mode .select2-gray-dark .select2-selection--multiple .select2-selection__choice,
3699
.dark-mode .select2-gray-dark .select2-container--default .select2-selection--multiple .select2-selection__choice {
3700
  background-color: #343a40;
3701
  border-color: #292d32;
3702
  color: #fff;
3703
}
3704

3705
.select2-container--default .dark-mode .select2-gray-dark .select2-selection--multiple .select2-selection__choice__remove,
3706
.dark-mode .select2-gray-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
3707
  color: rgba(255, 255, 255, 0.7);
3708
}
3709

3710
.select2-container--default .dark-mode .select2-gray-dark .select2-selection--multiple .select2-selection__choice__remove:hover,
3711
.dark-mode .select2-gray-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
3712
  color: #fff;
3713
}
3714

3715
.select2-container--default .dark-mode .select2-gray-dark.select2-container--focus .select2-selection--multiple,
3716
.dark-mode .select2-gray-dark .select2-container--default.select2-container--focus .select2-selection--multiple {
3717
  border-color: #6d7a86;
3718
}
3719

3720
.slider .tooltip.in {
3721
  opacity: 0.9;
3722
}
3723

3724
.slider.slider-vertical {
3725
  height: 100%;
3726
}
3727

3728
.slider.slider-horizontal {
3729
  width: 100%;
3730
}
3731

3732
.slider-primary .slider .slider-selection {
3733
  background: #007bff;
3734
}
3735

3736
.slider-secondary .slider .slider-selection {
3737
  background: #6c757d;
3738
}
3739

3740
.slider-success .slider .slider-selection {
3741
  background: #28a745;
3742
}
3743

3744
.slider-info .slider .slider-selection {
3745
  background: #17a2b8;
3746
}
3747

3748
.slider-warning .slider .slider-selection {
3749
  background: #ffc107;
3750
}
3751

3752
.slider-danger .slider .slider-selection {
3753
  background: #dc3545;
3754
}
3755

3756
.slider-light .slider .slider-selection {
3757
  background: #f8f9fa;
3758
}
3759

3760
.slider-dark .slider .slider-selection {
3761
  background: #343a40;
3762
}
3763

3764
.slider-lightblue .slider .slider-selection {
3765
  background: #3c8dbc;
3766
}
3767

3768
.slider-navy .slider .slider-selection {
3769
  background: #001f3f;
3770
}
3771

3772
.slider-olive .slider .slider-selection {
3773
  background: #3d9970;
3774
}
3775

3776
.slider-lime .slider .slider-selection {
3777
  background: #01ff70;
3778
}
3779

3780
.slider-fuchsia .slider .slider-selection {
3781
  background: #f012be;
3782
}
3783

3784
.slider-maroon .slider .slider-selection {
3785
  background: #d81b60;
3786
}
3787

3788
.slider-blue .slider .slider-selection {
3789
  background: #007bff;
3790
}
3791

3792
.slider-indigo .slider .slider-selection {
3793
  background: #6610f2;
3794
}
3795

3796
.slider-purple .slider .slider-selection {
3797
  background: #6f42c1;
3798
}
3799

3800
.slider-pink .slider .slider-selection {
3801
  background: #e83e8c;
3802
}
3803

3804
.slider-red .slider .slider-selection {
3805
  background: #dc3545;
3806
}
3807

3808
.slider-orange .slider .slider-selection {
3809
  background: #fd7e14;
3810
}
3811

3812
.slider-yellow .slider .slider-selection {
3813
  background: #ffc107;
3814
}
3815

3816
.slider-green .slider .slider-selection {
3817
  background: #28a745;
3818
}
3819

3820
.slider-teal .slider .slider-selection {
3821
  background: #20c997;
3822
}
3823

3824
.slider-cyan .slider .slider-selection {
3825
  background: #17a2b8;
3826
}
3827

3828
.slider-white .slider .slider-selection {
3829
  background: #fff;
3830
}
3831

3832
.slider-gray .slider .slider-selection {
3833
  background: #6c757d;
3834
}
3835

3836
.slider-gray-dark .slider .slider-selection {
3837
  background: #343a40;
3838
}
3839

3840
.dark-mode .slider-track {
3841
  background-color: #4b545c;
3842
  background-image: none;
3843
}
3844

3845
.dark-mode .slider-primary .slider .slider-selection {
3846
  background: #3f6791;
3847
}
3848

3849
.dark-mode .slider-secondary .slider .slider-selection {
3850
  background: #6c757d;
3851
}
3852

3853
.dark-mode .slider-success .slider .slider-selection {
3854
  background: #00bc8c;
3855
}
3856

3857
.dark-mode .slider-info .slider .slider-selection {
3858
  background: #3498db;
3859
}
3860

3861
.dark-mode .slider-warning .slider .slider-selection {
3862
  background: #f39c12;
3863
}
3864

3865
.dark-mode .slider-danger .slider .slider-selection {
3866
  background: #e74c3c;
3867
}
3868

3869
.dark-mode .slider-light .slider .slider-selection {
3870
  background: #f8f9fa;
3871
}
3872

3873
.dark-mode .slider-dark .slider .slider-selection {
3874
  background: #343a40;
3875
}
3876

3877
.dark-mode .slider-lightblue .slider .slider-selection {
3878
  background: #86bad8;
3879
}
3880

3881
.dark-mode .slider-navy .slider .slider-selection {
3882
  background: #002c59;
3883
}
3884

3885
.dark-mode .slider-olive .slider .slider-selection {
3886
  background: #74c8a3;
3887
}
3888

3889
.dark-mode .slider-lime .slider .slider-selection {
3890
  background: #67ffa9;
3891
}
3892

3893
.dark-mode .slider-fuchsia .slider .slider-selection {
3894
  background: #f672d8;
3895
}
3896

3897
.dark-mode .slider-maroon .slider .slider-selection {
3898
  background: #ed6c9b;
3899
}
3900

3901
.dark-mode .slider-blue .slider .slider-selection {
3902
  background: #3f6791;
3903
}
3904

3905
.dark-mode .slider-indigo .slider .slider-selection {
3906
  background: #6610f2;
3907
}
3908

3909
.dark-mode .slider-purple .slider .slider-selection {
3910
  background: #6f42c1;
3911
}
3912

3913
.dark-mode .slider-pink .slider .slider-selection {
3914
  background: #e83e8c;
3915
}
3916

3917
.dark-mode .slider-red .slider .slider-selection {
3918
  background: #e74c3c;
3919
}
3920

3921
.dark-mode .slider-orange .slider .slider-selection {
3922
  background: #fd7e14;
3923
}
3924

3925
.dark-mode .slider-yellow .slider .slider-selection {
3926
  background: #f39c12;
3927
}
3928

3929
.dark-mode .slider-green .slider .slider-selection {
3930
  background: #00bc8c;
3931
}
3932

3933
.dark-mode .slider-teal .slider .slider-selection {
3934
  background: #20c997;
3935
}
3936

3937
.dark-mode .slider-cyan .slider .slider-selection {
3938
  background: #3498db;
3939
}
3940

3941
.dark-mode .slider-white .slider .slider-selection {
3942
  background: #fff;
3943
}
3944

3945
.dark-mode .slider-gray .slider .slider-selection {
3946
  background: #6c757d;
3947
}
3948

3949
.dark-mode .slider-gray-dark .slider .slider-selection {
3950
  background: #343a40;
3951
}
3952

3953
.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before,
3954
.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
3955
  border-color: #007bff;
3956
}
3957

3958
.icheck-primary > input:first-child:not(:checked):not(:disabled):focus + label::before,
3959
.icheck-primary > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
3960
  border-color: #007bff;
3961
}
3962

3963
.icheck-primary > input:first-child:checked + label::before,
3964
.icheck-primary > input:first-child:checked + input[type="hidden"] + label::before {
3965
  background-color: #007bff;
3966
  border-color: #007bff;
3967
}
3968

3969
.icheck-secondary > input:first-child:not(:checked):not(:disabled):hover + label::before,
3970
.icheck-secondary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
3971
  border-color: #6c757d;
3972
}
3973

3974
.icheck-secondary > input:first-child:not(:checked):not(:disabled):focus + label::before,
3975
.icheck-secondary > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
3976
  border-color: #6c757d;
3977
}
3978

3979
.icheck-secondary > input:first-child:checked + label::before,
3980
.icheck-secondary > input:first-child:checked + input[type="hidden"] + label::before {
3981
  background-color: #6c757d;
3982
  border-color: #6c757d;
3983
}
3984

3985
.icheck-success > input:first-child:not(:checked):not(:disabled):hover + label::before,
3986
.icheck-success > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
3987
  border-color: #28a745;
3988
}
3989

3990
.icheck-success > input:first-child:not(:checked):not(:disabled):focus + label::before,
3991
.icheck-success > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
3992
  border-color: #28a745;
3993
}
3994

3995
.icheck-success > input:first-child:checked + label::before,
3996
.icheck-success > input:first-child:checked + input[type="hidden"] + label::before {
3997
  background-color: #28a745;
3998
  border-color: #28a745;
3999
}
4000

4001
.icheck-info > input:first-child:not(:checked):not(:disabled):hover + label::before,
4002
.icheck-info > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4003
  border-color: #17a2b8;
4004
}
4005

4006
.icheck-info > input:first-child:not(:checked):not(:disabled):focus + label::before,
4007
.icheck-info > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4008
  border-color: #17a2b8;
4009
}
4010

4011
.icheck-info > input:first-child:checked + label::before,
4012
.icheck-info > input:first-child:checked + input[type="hidden"] + label::before {
4013
  background-color: #17a2b8;
4014
  border-color: #17a2b8;
4015
}
4016

4017
.icheck-warning > input:first-child:not(:checked):not(:disabled):hover + label::before,
4018
.icheck-warning > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4019
  border-color: #ffc107;
4020
}
4021

4022
.icheck-warning > input:first-child:not(:checked):not(:disabled):focus + label::before,
4023
.icheck-warning > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4024
  border-color: #ffc107;
4025
}
4026

4027
.icheck-warning > input:first-child:checked + label::before,
4028
.icheck-warning > input:first-child:checked + input[type="hidden"] + label::before {
4029
  background-color: #ffc107;
4030
  border-color: #ffc107;
4031
}
4032

4033
.icheck-danger > input:first-child:not(:checked):not(:disabled):hover + label::before,
4034
.icheck-danger > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4035
  border-color: #dc3545;
4036
}
4037

4038
.icheck-danger > input:first-child:not(:checked):not(:disabled):focus + label::before,
4039
.icheck-danger > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4040
  border-color: #dc3545;
4041
}
4042

4043
.icheck-danger > input:first-child:checked + label::before,
4044
.icheck-danger > input:first-child:checked + input[type="hidden"] + label::before {
4045
  background-color: #dc3545;
4046
  border-color: #dc3545;
4047
}
4048

4049
.icheck-light > input:first-child:not(:checked):not(:disabled):hover + label::before,
4050
.icheck-light > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4051
  border-color: #f8f9fa;
4052
}
4053

4054
.icheck-light > input:first-child:not(:checked):not(:disabled):focus + label::before,
4055
.icheck-light > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4056
  border-color: #f8f9fa;
4057
}
4058

4059
.icheck-light > input:first-child:checked + label::before,
4060
.icheck-light > input:first-child:checked + input[type="hidden"] + label::before {
4061
  background-color: #f8f9fa;
4062
  border-color: #f8f9fa;
4063
}
4064

4065
.icheck-dark > input:first-child:not(:checked):not(:disabled):hover + label::before,
4066
.icheck-dark > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4067
  border-color: #343a40;
4068
}
4069

4070
.icheck-dark > input:first-child:not(:checked):not(:disabled):focus + label::before,
4071
.icheck-dark > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4072
  border-color: #343a40;
4073
}
4074

4075
.icheck-dark > input:first-child:checked + label::before,
4076
.icheck-dark > input:first-child:checked + input[type="hidden"] + label::before {
4077
  background-color: #343a40;
4078
  border-color: #343a40;
4079
}
4080

4081
.icheck-lightblue > input:first-child:not(:checked):not(:disabled):hover + label::before,
4082
.icheck-lightblue > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4083
  border-color: #3c8dbc;
4084
}
4085

4086
.icheck-lightblue > input:first-child:not(:checked):not(:disabled):focus + label::before,
4087
.icheck-lightblue > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4088
  border-color: #3c8dbc;
4089
}
4090

4091
.icheck-lightblue > input:first-child:checked + label::before,
4092
.icheck-lightblue > input:first-child:checked + input[type="hidden"] + label::before {
4093
  background-color: #3c8dbc;
4094
  border-color: #3c8dbc;
4095
}
4096

4097
.icheck-navy > input:first-child:not(:checked):not(:disabled):hover + label::before,
4098
.icheck-navy > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4099
  border-color: #001f3f;
4100
}
4101

4102
.icheck-navy > input:first-child:not(:checked):not(:disabled):focus + label::before,
4103
.icheck-navy > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4104
  border-color: #001f3f;
4105
}
4106

4107
.icheck-navy > input:first-child:checked + label::before,
4108
.icheck-navy > input:first-child:checked + input[type="hidden"] + label::before {
4109
  background-color: #001f3f;
4110
  border-color: #001f3f;
4111
}
4112

4113
.icheck-olive > input:first-child:not(:checked):not(:disabled):hover + label::before,
4114
.icheck-olive > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4115
  border-color: #3d9970;
4116
}
4117

4118
.icheck-olive > input:first-child:not(:checked):not(:disabled):focus + label::before,
4119
.icheck-olive > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4120
  border-color: #3d9970;
4121
}
4122

4123
.icheck-olive > input:first-child:checked + label::before,
4124
.icheck-olive > input:first-child:checked + input[type="hidden"] + label::before {
4125
  background-color: #3d9970;
4126
  border-color: #3d9970;
4127
}
4128

4129
.icheck-lime > input:first-child:not(:checked):not(:disabled):hover + label::before,
4130
.icheck-lime > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4131
  border-color: #01ff70;
4132
}
4133

4134
.icheck-lime > input:first-child:not(:checked):not(:disabled):focus + label::before,
4135
.icheck-lime > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4136
  border-color: #01ff70;
4137
}
4138

4139
.icheck-lime > input:first-child:checked + label::before,
4140
.icheck-lime > input:first-child:checked + input[type="hidden"] + label::before {
4141
  background-color: #01ff70;
4142
  border-color: #01ff70;
4143
}
4144

4145
.icheck-fuchsia > input:first-child:not(:checked):not(:disabled):hover + label::before,
4146
.icheck-fuchsia > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4147
  border-color: #f012be;
4148
}
4149

4150
.icheck-fuchsia > input:first-child:not(:checked):not(:disabled):focus + label::before,
4151
.icheck-fuchsia > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4152
  border-color: #f012be;
4153
}
4154

4155
.icheck-fuchsia > input:first-child:checked + label::before,
4156
.icheck-fuchsia > input:first-child:checked + input[type="hidden"] + label::before {
4157
  background-color: #f012be;
4158
  border-color: #f012be;
4159
}
4160

4161
.icheck-maroon > input:first-child:not(:checked):not(:disabled):hover + label::before,
4162
.icheck-maroon > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4163
  border-color: #d81b60;
4164
}
4165

4166
.icheck-maroon > input:first-child:not(:checked):not(:disabled):focus + label::before,
4167
.icheck-maroon > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4168
  border-color: #d81b60;
4169
}
4170

4171
.icheck-maroon > input:first-child:checked + label::before,
4172
.icheck-maroon > input:first-child:checked + input[type="hidden"] + label::before {
4173
  background-color: #d81b60;
4174
  border-color: #d81b60;
4175
}
4176

4177
.icheck-blue > input:first-child:not(:checked):not(:disabled):hover + label::before,
4178
.icheck-blue > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4179
  border-color: #007bff;
4180
}
4181

4182
.icheck-blue > input:first-child:not(:checked):not(:disabled):focus + label::before,
4183
.icheck-blue > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4184
  border-color: #007bff;
4185
}
4186

4187
.icheck-blue > input:first-child:checked + label::before,
4188
.icheck-blue > input:first-child:checked + input[type="hidden"] + label::before {
4189
  background-color: #007bff;
4190
  border-color: #007bff;
4191
}
4192

4193
.icheck-indigo > input:first-child:not(:checked):not(:disabled):hover + label::before,
4194
.icheck-indigo > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4195
  border-color: #6610f2;
4196
}
4197

4198
.icheck-indigo > input:first-child:not(:checked):not(:disabled):focus + label::before,
4199
.icheck-indigo > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4200
  border-color: #6610f2;
4201
}
4202

4203
.icheck-indigo > input:first-child:checked + label::before,
4204
.icheck-indigo > input:first-child:checked + input[type="hidden"] + label::before {
4205
  background-color: #6610f2;
4206
  border-color: #6610f2;
4207
}
4208

4209
.icheck-purple > input:first-child:not(:checked):not(:disabled):hover + label::before,
4210
.icheck-purple > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4211
  border-color: #6f42c1;
4212
}
4213

4214
.icheck-purple > input:first-child:not(:checked):not(:disabled):focus + label::before,
4215
.icheck-purple > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4216
  border-color: #6f42c1;
4217
}
4218

4219
.icheck-purple > input:first-child:checked + label::before,
4220
.icheck-purple > input:first-child:checked + input[type="hidden"] + label::before {
4221
  background-color: #6f42c1;
4222
  border-color: #6f42c1;
4223
}
4224

4225
.icheck-pink > input:first-child:not(:checked):not(:disabled):hover + label::before,
4226
.icheck-pink > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4227
  border-color: #e83e8c;
4228
}
4229

4230
.icheck-pink > input:first-child:not(:checked):not(:disabled):focus + label::before,
4231
.icheck-pink > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4232
  border-color: #e83e8c;
4233
}
4234

4235
.icheck-pink > input:first-child:checked + label::before,
4236
.icheck-pink > input:first-child:checked + input[type="hidden"] + label::before {
4237
  background-color: #e83e8c;
4238
  border-color: #e83e8c;
4239
}
4240

4241
.icheck-red > input:first-child:not(:checked):not(:disabled):hover + label::before,
4242
.icheck-red > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4243
  border-color: #dc3545;
4244
}
4245

4246
.icheck-red > input:first-child:not(:checked):not(:disabled):focus + label::before,
4247
.icheck-red > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4248
  border-color: #dc3545;
4249
}
4250

4251
.icheck-red > input:first-child:checked + label::before,
4252
.icheck-red > input:first-child:checked + input[type="hidden"] + label::before {
4253
  background-color: #dc3545;
4254
  border-color: #dc3545;
4255
}
4256

4257
.icheck-orange > input:first-child:not(:checked):not(:disabled):hover + label::before,
4258
.icheck-orange > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4259
  border-color: #fd7e14;
4260
}
4261

4262
.icheck-orange > input:first-child:not(:checked):not(:disabled):focus + label::before,
4263
.icheck-orange > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4264
  border-color: #fd7e14;
4265
}
4266

4267
.icheck-orange > input:first-child:checked + label::before,
4268
.icheck-orange > input:first-child:checked + input[type="hidden"] + label::before {
4269
  background-color: #fd7e14;
4270
  border-color: #fd7e14;
4271
}
4272

4273
.icheck-yellow > input:first-child:not(:checked):not(:disabled):hover + label::before,
4274
.icheck-yellow > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4275
  border-color: #ffc107;
4276
}
4277

4278
.icheck-yellow > input:first-child:not(:checked):not(:disabled):focus + label::before,
4279
.icheck-yellow > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4280
  border-color: #ffc107;
4281
}
4282

4283
.icheck-yellow > input:first-child:checked + label::before,
4284
.icheck-yellow > input:first-child:checked + input[type="hidden"] + label::before {
4285
  background-color: #ffc107;
4286
  border-color: #ffc107;
4287
}
4288

4289
.icheck-green > input:first-child:not(:checked):not(:disabled):hover + label::before,
4290
.icheck-green > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4291
  border-color: #28a745;
4292
}
4293

4294
.icheck-green > input:first-child:not(:checked):not(:disabled):focus + label::before,
4295
.icheck-green > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4296
  border-color: #28a745;
4297
}
4298

4299
.icheck-green > input:first-child:checked + label::before,
4300
.icheck-green > input:first-child:checked + input[type="hidden"] + label::before {
4301
  background-color: #28a745;
4302
  border-color: #28a745;
4303
}
4304

4305
.icheck-teal > input:first-child:not(:checked):not(:disabled):hover + label::before,
4306
.icheck-teal > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4307
  border-color: #20c997;
4308
}
4309

4310
.icheck-teal > input:first-child:not(:checked):not(:disabled):focus + label::before,
4311
.icheck-teal > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4312
  border-color: #20c997;
4313
}
4314

4315
.icheck-teal > input:first-child:checked + label::before,
4316
.icheck-teal > input:first-child:checked + input[type="hidden"] + label::before {
4317
  background-color: #20c997;
4318
  border-color: #20c997;
4319
}
4320

4321
.icheck-cyan > input:first-child:not(:checked):not(:disabled):hover + label::before,
4322
.icheck-cyan > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4323
  border-color: #17a2b8;
4324
}
4325

4326
.icheck-cyan > input:first-child:not(:checked):not(:disabled):focus + label::before,
4327
.icheck-cyan > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4328
  border-color: #17a2b8;
4329
}
4330

4331
.icheck-cyan > input:first-child:checked + label::before,
4332
.icheck-cyan > input:first-child:checked + input[type="hidden"] + label::before {
4333
  background-color: #17a2b8;
4334
  border-color: #17a2b8;
4335
}
4336

4337
.icheck-white > input:first-child:not(:checked):not(:disabled):hover + label::before,
4338
.icheck-white > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4339
  border-color: #fff;
4340
}
4341

4342
.icheck-white > input:first-child:not(:checked):not(:disabled):focus + label::before,
4343
.icheck-white > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4344
  border-color: #fff;
4345
}
4346

4347
.icheck-white > input:first-child:checked + label::before,
4348
.icheck-white > input:first-child:checked + input[type="hidden"] + label::before {
4349
  background-color: #fff;
4350
  border-color: #fff;
4351
}
4352

4353
.icheck-gray > input:first-child:not(:checked):not(:disabled):hover + label::before,
4354
.icheck-gray > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4355
  border-color: #6c757d;
4356
}
4357

4358
.icheck-gray > input:first-child:not(:checked):not(:disabled):focus + label::before,
4359
.icheck-gray > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4360
  border-color: #6c757d;
4361
}
4362

4363
.icheck-gray > input:first-child:checked + label::before,
4364
.icheck-gray > input:first-child:checked + input[type="hidden"] + label::before {
4365
  background-color: #6c757d;
4366
  border-color: #6c757d;
4367
}
4368

4369
.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):hover + label::before,
4370
.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4371
  border-color: #343a40;
4372
}
4373

4374
.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):focus + label::before,
4375
.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4376
  border-color: #343a40;
4377
}
4378

4379
.icheck-gray-dark > input:first-child:checked + label::before,
4380
.icheck-gray-dark > input:first-child:checked + input[type="hidden"] + label::before {
4381
  background-color: #343a40;
4382
  border-color: #343a40;
4383
}
4384

4385
.dark-mode [class*="icheck-"] > input:first-child:not(:checked) + input[type="hidden"] + label::before,
4386
.dark-mode [class*="icheck-"] > input:first-child:not(:checked) + label::before {
4387
  border-color: #6c757d;
4388
}
4389

4390
.dark-mode .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before,
4391
.dark-mode .icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4392
  border-color: #3f6791;
4393
}
4394

4395
.dark-mode .icheck-primary > input:first-child:not(:checked):not(:disabled):focus + label::before,
4396
.dark-mode .icheck-primary > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4397
  border-color: #3f6791;
4398
}
4399

4400
.dark-mode .icheck-primary > input:first-child:checked + label::before,
4401
.dark-mode .icheck-primary > input:first-child:checked + input[type="hidden"] + label::before {
4402
  background-color: #3f6791;
4403
  border-color: #3f6791;
4404
}
4405

4406
.dark-mode .icheck-secondary > input:first-child:not(:checked):not(:disabled):hover + label::before,
4407
.dark-mode .icheck-secondary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4408
  border-color: #6c757d;
4409
}
4410

4411
.dark-mode .icheck-secondary > input:first-child:not(:checked):not(:disabled):focus + label::before,
4412
.dark-mode .icheck-secondary > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4413
  border-color: #6c757d;
4414
}
4415

4416
.dark-mode .icheck-secondary > input:first-child:checked + label::before,
4417
.dark-mode .icheck-secondary > input:first-child:checked + input[type="hidden"] + label::before {
4418
  background-color: #6c757d;
4419
  border-color: #6c757d;
4420
}
4421

4422
.dark-mode .icheck-success > input:first-child:not(:checked):not(:disabled):hover + label::before,
4423
.dark-mode .icheck-success > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4424
  border-color: #00bc8c;
4425
}
4426

4427
.dark-mode .icheck-success > input:first-child:not(:checked):not(:disabled):focus + label::before,
4428
.dark-mode .icheck-success > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4429
  border-color: #00bc8c;
4430
}
4431

4432
.dark-mode .icheck-success > input:first-child:checked + label::before,
4433
.dark-mode .icheck-success > input:first-child:checked + input[type="hidden"] + label::before {
4434
  background-color: #00bc8c;
4435
  border-color: #00bc8c;
4436
}
4437

4438
.dark-mode .icheck-info > input:first-child:not(:checked):not(:disabled):hover + label::before,
4439
.dark-mode .icheck-info > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4440
  border-color: #3498db;
4441
}
4442

4443
.dark-mode .icheck-info > input:first-child:not(:checked):not(:disabled):focus + label::before,
4444
.dark-mode .icheck-info > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4445
  border-color: #3498db;
4446
}
4447

4448
.dark-mode .icheck-info > input:first-child:checked + label::before,
4449
.dark-mode .icheck-info > input:first-child:checked + input[type="hidden"] + label::before {
4450
  background-color: #3498db;
4451
  border-color: #3498db;
4452
}
4453

4454
.dark-mode .icheck-warning > input:first-child:not(:checked):not(:disabled):hover + label::before,
4455
.dark-mode .icheck-warning > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4456
  border-color: #f39c12;
4457
}
4458

4459
.dark-mode .icheck-warning > input:first-child:not(:checked):not(:disabled):focus + label::before,
4460
.dark-mode .icheck-warning > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4461
  border-color: #f39c12;
4462
}
4463

4464
.dark-mode .icheck-warning > input:first-child:checked + label::before,
4465
.dark-mode .icheck-warning > input:first-child:checked + input[type="hidden"] + label::before {
4466
  background-color: #f39c12;
4467
  border-color: #f39c12;
4468
}
4469

4470
.dark-mode .icheck-danger > input:first-child:not(:checked):not(:disabled):hover + label::before,
4471
.dark-mode .icheck-danger > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4472
  border-color: #e74c3c;
4473
}
4474

4475
.dark-mode .icheck-danger > input:first-child:not(:checked):not(:disabled):focus + label::before,
4476
.dark-mode .icheck-danger > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4477
  border-color: #e74c3c;
4478
}
4479

4480
.dark-mode .icheck-danger > input:first-child:checked + label::before,
4481
.dark-mode .icheck-danger > input:first-child:checked + input[type="hidden"] + label::before {
4482
  background-color: #e74c3c;
4483
  border-color: #e74c3c;
4484
}
4485

4486
.dark-mode .icheck-light > input:first-child:not(:checked):not(:disabled):hover + label::before,
4487
.dark-mode .icheck-light > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4488
  border-color: #f8f9fa;
4489
}
4490

4491
.dark-mode .icheck-light > input:first-child:not(:checked):not(:disabled):focus + label::before,
4492
.dark-mode .icheck-light > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4493
  border-color: #f8f9fa;
4494
}
4495

4496
.dark-mode .icheck-light > input:first-child:checked + label::before,
4497
.dark-mode .icheck-light > input:first-child:checked + input[type="hidden"] + label::before {
4498
  background-color: #f8f9fa;
4499
  border-color: #f8f9fa;
4500
}
4501

4502
.dark-mode .icheck-dark > input:first-child:not(:checked):not(:disabled):hover + label::before,
4503
.dark-mode .icheck-dark > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4504
  border-color: #343a40;
4505
}
4506

4507
.dark-mode .icheck-dark > input:first-child:not(:checked):not(:disabled):focus + label::before,
4508
.dark-mode .icheck-dark > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4509
  border-color: #343a40;
4510
}
4511

4512
.dark-mode .icheck-dark > input:first-child:checked + label::before,
4513
.dark-mode .icheck-dark > input:first-child:checked + input[type="hidden"] + label::before {
4514
  background-color: #343a40;
4515
  border-color: #343a40;
4516
}
4517

4518
.dark-mode .icheck-lightblue > input:first-child:not(:checked):not(:disabled):hover + label::before,
4519
.dark-mode .icheck-lightblue > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4520
  border-color: #86bad8;
4521
}
4522

4523
.dark-mode .icheck-lightblue > input:first-child:not(:checked):not(:disabled):focus + label::before,
4524
.dark-mode .icheck-lightblue > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4525
  border-color: #86bad8;
4526
}
4527

4528
.dark-mode .icheck-lightblue > input:first-child:checked + label::before,
4529
.dark-mode .icheck-lightblue > input:first-child:checked + input[type="hidden"] + label::before {
4530
  background-color: #86bad8;
4531
  border-color: #86bad8;
4532
}
4533

4534
.dark-mode .icheck-navy > input:first-child:not(:checked):not(:disabled):hover + label::before,
4535
.dark-mode .icheck-navy > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4536
  border-color: #002c59;
4537
}
4538

4539
.dark-mode .icheck-navy > input:first-child:not(:checked):not(:disabled):focus + label::before,
4540
.dark-mode .icheck-navy > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4541
  border-color: #002c59;
4542
}
4543

4544
.dark-mode .icheck-navy > input:first-child:checked + label::before,
4545
.dark-mode .icheck-navy > input:first-child:checked + input[type="hidden"] + label::before {
4546
  background-color: #002c59;
4547
  border-color: #002c59;
4548
}
4549

4550
.dark-mode .icheck-olive > input:first-child:not(:checked):not(:disabled):hover + label::before,
4551
.dark-mode .icheck-olive > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4552
  border-color: #74c8a3;
4553
}
4554

4555
.dark-mode .icheck-olive > input:first-child:not(:checked):not(:disabled):focus + label::before,
4556
.dark-mode .icheck-olive > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4557
  border-color: #74c8a3;
4558
}
4559

4560
.dark-mode .icheck-olive > input:first-child:checked + label::before,
4561
.dark-mode .icheck-olive > input:first-child:checked + input[type="hidden"] + label::before {
4562
  background-color: #74c8a3;
4563
  border-color: #74c8a3;
4564
}
4565

4566
.dark-mode .icheck-lime > input:first-child:not(:checked):not(:disabled):hover + label::before,
4567
.dark-mode .icheck-lime > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4568
  border-color: #67ffa9;
4569
}
4570

4571
.dark-mode .icheck-lime > input:first-child:not(:checked):not(:disabled):focus + label::before,
4572
.dark-mode .icheck-lime > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4573
  border-color: #67ffa9;
4574
}
4575

4576
.dark-mode .icheck-lime > input:first-child:checked + label::before,
4577
.dark-mode .icheck-lime > input:first-child:checked + input[type="hidden"] + label::before {
4578
  background-color: #67ffa9;
4579
  border-color: #67ffa9;
4580
}
4581

4582
.dark-mode .icheck-fuchsia > input:first-child:not(:checked):not(:disabled):hover + label::before,
4583
.dark-mode .icheck-fuchsia > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4584
  border-color: #f672d8;
4585
}
4586

4587
.dark-mode .icheck-fuchsia > input:first-child:not(:checked):not(:disabled):focus + label::before,
4588
.dark-mode .icheck-fuchsia > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4589
  border-color: #f672d8;
4590
}
4591

4592
.dark-mode .icheck-fuchsia > input:first-child:checked + label::before,
4593
.dark-mode .icheck-fuchsia > input:first-child:checked + input[type="hidden"] + label::before {
4594
  background-color: #f672d8;
4595
  border-color: #f672d8;
4596
}
4597

4598
.dark-mode .icheck-maroon > input:first-child:not(:checked):not(:disabled):hover + label::before,
4599
.dark-mode .icheck-maroon > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4600
  border-color: #ed6c9b;
4601
}
4602

4603
.dark-mode .icheck-maroon > input:first-child:not(:checked):not(:disabled):focus + label::before,
4604
.dark-mode .icheck-maroon > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4605
  border-color: #ed6c9b;
4606
}
4607

4608
.dark-mode .icheck-maroon > input:first-child:checked + label::before,
4609
.dark-mode .icheck-maroon > input:first-child:checked + input[type="hidden"] + label::before {
4610
  background-color: #ed6c9b;
4611
  border-color: #ed6c9b;
4612
}
4613

4614
.dark-mode .icheck-blue > input:first-child:not(:checked):not(:disabled):hover + label::before,
4615
.dark-mode .icheck-blue > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4616
  border-color: #3f6791;
4617
}
4618

4619
.dark-mode .icheck-blue > input:first-child:not(:checked):not(:disabled):focus + label::before,
4620
.dark-mode .icheck-blue > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4621
  border-color: #3f6791;
4622
}
4623

4624
.dark-mode .icheck-blue > input:first-child:checked + label::before,
4625
.dark-mode .icheck-blue > input:first-child:checked + input[type="hidden"] + label::before {
4626
  background-color: #3f6791;
4627
  border-color: #3f6791;
4628
}
4629

4630
.dark-mode .icheck-indigo > input:first-child:not(:checked):not(:disabled):hover + label::before,
4631
.dark-mode .icheck-indigo > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4632
  border-color: #6610f2;
4633
}
4634

4635
.dark-mode .icheck-indigo > input:first-child:not(:checked):not(:disabled):focus + label::before,
4636
.dark-mode .icheck-indigo > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4637
  border-color: #6610f2;
4638
}
4639

4640
.dark-mode .icheck-indigo > input:first-child:checked + label::before,
4641
.dark-mode .icheck-indigo > input:first-child:checked + input[type="hidden"] + label::before {
4642
  background-color: #6610f2;
4643
  border-color: #6610f2;
4644
}
4645

4646
.dark-mode .icheck-purple > input:first-child:not(:checked):not(:disabled):hover + label::before,
4647
.dark-mode .icheck-purple > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4648
  border-color: #6f42c1;
4649
}
4650

4651
.dark-mode .icheck-purple > input:first-child:not(:checked):not(:disabled):focus + label::before,
4652
.dark-mode .icheck-purple > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4653
  border-color: #6f42c1;
4654
}
4655

4656
.dark-mode .icheck-purple > input:first-child:checked + label::before,
4657
.dark-mode .icheck-purple > input:first-child:checked + input[type="hidden"] + label::before {
4658
  background-color: #6f42c1;
4659
  border-color: #6f42c1;
4660
}
4661

4662
.dark-mode .icheck-pink > input:first-child:not(:checked):not(:disabled):hover + label::before,
4663
.dark-mode .icheck-pink > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4664
  border-color: #e83e8c;
4665
}
4666

4667
.dark-mode .icheck-pink > input:first-child:not(:checked):not(:disabled):focus + label::before,
4668
.dark-mode .icheck-pink > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4669
  border-color: #e83e8c;
4670
}
4671

4672
.dark-mode .icheck-pink > input:first-child:checked + label::before,
4673
.dark-mode .icheck-pink > input:first-child:checked + input[type="hidden"] + label::before {
4674
  background-color: #e83e8c;
4675
  border-color: #e83e8c;
4676
}
4677

4678
.dark-mode .icheck-red > input:first-child:not(:checked):not(:disabled):hover + label::before,
4679
.dark-mode .icheck-red > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4680
  border-color: #e74c3c;
4681
}
4682

4683
.dark-mode .icheck-red > input:first-child:not(:checked):not(:disabled):focus + label::before,
4684
.dark-mode .icheck-red > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4685
  border-color: #e74c3c;
4686
}
4687

4688
.dark-mode .icheck-red > input:first-child:checked + label::before,
4689
.dark-mode .icheck-red > input:first-child:checked + input[type="hidden"] + label::before {
4690
  background-color: #e74c3c;
4691
  border-color: #e74c3c;
4692
}
4693

4694
.dark-mode .icheck-orange > input:first-child:not(:checked):not(:disabled):hover + label::before,
4695
.dark-mode .icheck-orange > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4696
  border-color: #fd7e14;
4697
}
4698

4699
.dark-mode .icheck-orange > input:first-child:not(:checked):not(:disabled):focus + label::before,
4700
.dark-mode .icheck-orange > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4701
  border-color: #fd7e14;
4702
}
4703

4704
.dark-mode .icheck-orange > input:first-child:checked + label::before,
4705
.dark-mode .icheck-orange > input:first-child:checked + input[type="hidden"] + label::before {
4706
  background-color: #fd7e14;
4707
  border-color: #fd7e14;
4708
}
4709

4710
.dark-mode .icheck-yellow > input:first-child:not(:checked):not(:disabled):hover + label::before,
4711
.dark-mode .icheck-yellow > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4712
  border-color: #f39c12;
4713
}
4714

4715
.dark-mode .icheck-yellow > input:first-child:not(:checked):not(:disabled):focus + label::before,
4716
.dark-mode .icheck-yellow > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4717
  border-color: #f39c12;
4718
}
4719

4720
.dark-mode .icheck-yellow > input:first-child:checked + label::before,
4721
.dark-mode .icheck-yellow > input:first-child:checked + input[type="hidden"] + label::before {
4722
  background-color: #f39c12;
4723
  border-color: #f39c12;
4724
}
4725

4726
.dark-mode .icheck-green > input:first-child:not(:checked):not(:disabled):hover + label::before,
4727
.dark-mode .icheck-green > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4728
  border-color: #00bc8c;
4729
}
4730

4731
.dark-mode .icheck-green > input:first-child:not(:checked):not(:disabled):focus + label::before,
4732
.dark-mode .icheck-green > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4733
  border-color: #00bc8c;
4734
}
4735

4736
.dark-mode .icheck-green > input:first-child:checked + label::before,
4737
.dark-mode .icheck-green > input:first-child:checked + input[type="hidden"] + label::before {
4738
  background-color: #00bc8c;
4739
  border-color: #00bc8c;
4740
}
4741

4742
.dark-mode .icheck-teal > input:first-child:not(:checked):not(:disabled):hover + label::before,
4743
.dark-mode .icheck-teal > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4744
  border-color: #20c997;
4745
}
4746

4747
.dark-mode .icheck-teal > input:first-child:not(:checked):not(:disabled):focus + label::before,
4748
.dark-mode .icheck-teal > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4749
  border-color: #20c997;
4750
}
4751

4752
.dark-mode .icheck-teal > input:first-child:checked + label::before,
4753
.dark-mode .icheck-teal > input:first-child:checked + input[type="hidden"] + label::before {
4754
  background-color: #20c997;
4755
  border-color: #20c997;
4756
}
4757

4758
.dark-mode .icheck-cyan > input:first-child:not(:checked):not(:disabled):hover + label::before,
4759
.dark-mode .icheck-cyan > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4760
  border-color: #3498db;
4761
}
4762

4763
.dark-mode .icheck-cyan > input:first-child:not(:checked):not(:disabled):focus + label::before,
4764
.dark-mode .icheck-cyan > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4765
  border-color: #3498db;
4766
}
4767

4768
.dark-mode .icheck-cyan > input:first-child:checked + label::before,
4769
.dark-mode .icheck-cyan > input:first-child:checked + input[type="hidden"] + label::before {
4770
  background-color: #3498db;
4771
  border-color: #3498db;
4772
}
4773

4774
.dark-mode .icheck-white > input:first-child:not(:checked):not(:disabled):hover + label::before,
4775
.dark-mode .icheck-white > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4776
  border-color: #fff;
4777
}
4778

4779
.dark-mode .icheck-white > input:first-child:not(:checked):not(:disabled):focus + label::before,
4780
.dark-mode .icheck-white > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4781
  border-color: #fff;
4782
}
4783

4784
.dark-mode .icheck-white > input:first-child:checked + label::before,
4785
.dark-mode .icheck-white > input:first-child:checked + input[type="hidden"] + label::before {
4786
  background-color: #fff;
4787
  border-color: #fff;
4788
}
4789

4790
.dark-mode .icheck-gray > input:first-child:not(:checked):not(:disabled):hover + label::before,
4791
.dark-mode .icheck-gray > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4792
  border-color: #6c757d;
4793
}
4794

4795
.dark-mode .icheck-gray > input:first-child:not(:checked):not(:disabled):focus + label::before,
4796
.dark-mode .icheck-gray > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4797
  border-color: #6c757d;
4798
}
4799

4800
.dark-mode .icheck-gray > input:first-child:checked + label::before,
4801
.dark-mode .icheck-gray > input:first-child:checked + input[type="hidden"] + label::before {
4802
  background-color: #6c757d;
4803
  border-color: #6c757d;
4804
}
4805

4806
.dark-mode .icheck-gray-dark > input:first-child:not(:checked):not(:disabled):hover + label::before,
4807
.dark-mode .icheck-gray-dark > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
4808
  border-color: #343a40;
4809
}
4810

4811
.dark-mode .icheck-gray-dark > input:first-child:not(:checked):not(:disabled):focus + label::before,
4812
.dark-mode .icheck-gray-dark > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
4813
  border-color: #343a40;
4814
}
4815

4816
.dark-mode .icheck-gray-dark > input:first-child:checked + label::before,
4817
.dark-mode .icheck-gray-dark > input:first-child:checked + input[type="hidden"] + label::before {
4818
  background-color: #343a40;
4819
  border-color: #343a40;
4820
}
4821

4822
.mapael .map {
4823
  position: relative;
4824
}
4825

4826
.mapael .mapTooltip {
4827
  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";
4828
  font-style: normal;
4829
  font-weight: 400;
4830
  line-height: 1.5;
4831
  text-align: left;
4832
  text-align: start;
4833
  text-decoration: none;
4834
  text-shadow: none;
4835
  text-transform: none;
4836
  letter-spacing: normal;
4837
  word-break: normal;
4838
  word-spacing: normal;
4839
  white-space: normal;
4840
  line-break: auto;
4841
  border-radius: 0.25rem;
4842
  font-size: 0.875rem;
4843
  background-color: #000;
4844
  color: #fff;
4845
  display: block;
4846
  max-width: 200px;
4847
  padding: 0.25rem 0.5rem;
4848
  position: absolute;
4849
  text-align: center;
4850
  word-wrap: break-word;
4851
  z-index: 1070;
4852
}
4853

4854
.mapael .myLegend {
4855
  background-color: #f8f9fa;
4856
  border: 1px solid #adb5bd;
4857
  padding: 10px;
4858
  width: 600px;
4859
}
4860

4861
.mapael .zoomButton {
4862
  background-color: #f8f9fa;
4863
  border: 1px solid #ddd;
4864
  border-radius: 0.25rem;
4865
  color: #444;
4866
  cursor: pointer;
4867
  font-weight: 700;
4868
  height: 16px;
4869
  left: 10px;
4870
  line-height: 14px;
4871
  padding-left: 1px;
4872
  position: absolute;
4873
  text-align: center;
4874
  top: 0;
4875
  -webkit-user-select: none;
4876
  -moz-user-select: none;
4877
  -ms-user-select: none;
4878
  user-select: none;
4879
  width: 16px;
4880
}
4881

4882
.mapael .zoomButton:hover, .mapael .zoomButton:active, .mapael .zoomButton.hover {
4883
  background-color: #e9ecef;
4884
  color: #2b2b2b;
4885
}
4886

4887
.mapael .zoomReset {
4888
  line-height: 12px;
4889
  top: 10px;
4890
}
4891

4892
.mapael .zoomIn {
4893
  top: 30px;
4894
}
4895

4896
.mapael .zoomOut {
4897
  top: 50px;
4898
}
4899

4900
.jqvmap-zoomin,
4901
.jqvmap-zoomout {
4902
  background-color: #f8f9fa;
4903
  border: 1px solid #ddd;
4904
  border-radius: 0.25rem;
4905
  color: #444;
4906
  height: 15px;
4907
  width: 15px;
4908
  padding: 1px 2px;
4909
}
4910

4911
.jqvmap-zoomin:hover, .jqvmap-zoomin:active, .jqvmap-zoomin.hover,
4912
.jqvmap-zoomout:hover,
4913
.jqvmap-zoomout:active,
4914
.jqvmap-zoomout.hover {
4915
  background-color: #e9ecef;
4916
  color: #2b2b2b;
4917
}
4918

4919
.swal2-icon.swal2-info {
4920
  border-color: ligthen(#17a2b8, 20%);
4921
  color: #17a2b8;
4922
}
4923

4924
.swal2-icon.swal2-warning {
4925
  border-color: ligthen(#ffc107, 20%);
4926
  color: #ffc107;
4927
}
4928

4929
.swal2-icon.swal2-error {
4930
  border-color: ligthen(#dc3545, 20%);
4931
  color: #dc3545;
4932
}
4933

4934
.swal2-icon.swal2-question {
4935
  border-color: ligthen(#6c757d, 20%);
4936
  color: #6c757d;
4937
}
4938

4939
.swal2-icon.swal2-success {
4940
  border-color: ligthen(#28a745, 20%);
4941
  color: #28a745;
4942
}
4943

4944
.swal2-icon.swal2-success .swal2-success-ring {
4945
  border-color: ligthen(#28a745, 20%);
4946
}
4947

4948
.swal2-icon.swal2-success [class^='swal2-success-line'] {
4949
  background-color: #28a745;
4950
}
4951

4952
.dark-mode .swal2-popup {
4953
  background-color: #343a40;
4954
  color: #e9ecef;
4955
}
4956

4957
.dark-mode .swal2-popup .swal2-content,
4958
.dark-mode .swal2-popup .swal2-title {
4959
  color: #e9ecef;
4960
}
4961

4962
#toast-container .toast {
4963
  background-color: #007bff;
4964
}
4965

4966
#toast-container .toast-success {
4967
  background-color: #28a745;
4968
}
4969

4970
#toast-container .toast-error {
4971
  background-color: #dc3545;
4972
}
4973

4974
#toast-container .toast-info {
4975
  background-color: #17a2b8;
4976
}
4977

4978
#toast-container .toast-warning {
4979
  background-color: #ffc107;
4980
}
4981

4982
.toast-bottom-full-width .toast,
4983
.toast-top-full-width .toast {
4984
  max-width: inherit;
4985
}
4986

4987
.pace {
4988
  z-index: 1048;
4989
}
4990

4991
.pace .pace-progress {
4992
  z-index: 1049;
4993
}
4994

4995
.pace .pace-activity {
4996
  z-index: 1050;
4997
}
4998

4999
.pace-primary .pace .pace-progress {
5000
  background: #007bff;
5001
}
5002

5003
.pace-barber-shop-primary .pace {
5004
  background: #fff;
5005
}
5006

5007
.pace-barber-shop-primary .pace .pace-progress {
5008
  background: #007bff;
5009
}
5010

5011
.pace-barber-shop-primary .pace .pace-activity {
5012
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
5013
}
5014

5015
.pace-big-counter-primary .pace .pace-progress::after {
5016
  color: rgba(0, 123, 255, 0.2);
5017
}
5018

5019
.pace-bounce-primary .pace .pace-activity {
5020
  background: #007bff;
5021
}
5022

5023
.pace-center-atom-primary .pace-progress {
5024
  height: 100px;
5025
  width: 80px;
5026
}
5027

5028
.pace-center-atom-primary .pace-progress::before {
5029
  background: #007bff;
5030
  color: #fff;
5031
  font-size: .8rem;
5032
  line-height: .7rem;
5033
  padding-top: 17%;
5034
}
5035

5036
.pace-center-atom-primary .pace-activity {
5037
  border-color: #007bff;
5038
}
5039

5040
.pace-center-atom-primary .pace-activity::after, .pace-center-atom-primary .pace-activity::before {
5041
  border-color: #007bff;
5042
}
5043

5044
.pace-center-circle-primary .pace .pace-progress {
5045
  background: rgba(0, 123, 255, 0.8);
5046
  color: #fff;
5047
}
5048

5049
.pace-center-radar-primary .pace .pace-activity {
5050
  border-color: #007bff transparent transparent;
5051
}
5052

5053
.pace-center-radar-primary .pace .pace-activity::before {
5054
  border-color: #007bff transparent transparent;
5055
}
5056

5057
.pace-center-simple-primary .pace {
5058
  background: #fff;
5059
  border-color: #007bff;
5060
}
5061

5062
.pace-center-simple-primary .pace .pace-progress {
5063
  background: #007bff;
5064
}
5065

5066
.pace-material-primary .pace {
5067
  color: #007bff;
5068
}
5069

5070
.pace-corner-indicator-primary .pace .pace-activity {
5071
  background: #007bff;
5072
}
5073

5074
.pace-corner-indicator-primary .pace .pace-activity::after,
5075
.pace-corner-indicator-primary .pace .pace-activity::before {
5076
  border: 5px solid #fff;
5077
}
5078

5079
.pace-corner-indicator-primary .pace .pace-activity::before {
5080
  border-right-color: rgba(0, 123, 255, 0.2);
5081
  border-left-color: rgba(0, 123, 255, 0.2);
5082
}
5083

5084
.pace-corner-indicator-primary .pace .pace-activity::after {
5085
  border-top-color: rgba(0, 123, 255, 0.2);
5086
  border-bottom-color: rgba(0, 123, 255, 0.2);
5087
}
5088

5089
.pace-fill-left-primary .pace .pace-progress {
5090
  background-color: rgba(0, 123, 255, 0.2);
5091
}
5092

5093
.pace-flash-primary .pace .pace-progress {
5094
  background: #007bff;
5095
}
5096

5097
.pace-flash-primary .pace .pace-progress-inner {
5098
  box-shadow: 0 0 10px #007bff, 0 0 5px #007bff;
5099
}
5100

5101
.pace-flash-primary .pace .pace-activity {
5102
  border-top-color: #007bff;
5103
  border-left-color: #007bff;
5104
}
5105

5106
.pace-loading-bar-primary .pace .pace-progress {
5107
  background: #007bff;
5108
  color: #007bff;
5109
  box-shadow: 120px 0 #fff, 240px 0 #fff;
5110
}
5111

5112
.pace-loading-bar-primary .pace .pace-activity {
5113
  box-shadow: inset 0 0 0 2px #007bff, inset 0 0 0 7px #fff;
5114
}
5115

5116
.pace-mac-osx-primary .pace .pace-progress {
5117
  background-color: #007bff;
5118
  box-shadow: inset -1px 0 #007bff, inset 0 -1px #007bff, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
5119
}
5120

5121
.pace-mac-osx-primary .pace .pace-activity {
5122
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
5123
  height: 12px;
5124
}
5125

5126
.pace-progress-color-primary .pace-progress {
5127
  color: #007bff;
5128
}
5129

5130
.pace-secondary .pace .pace-progress {
5131
  background: #6c757d;
5132
}
5133

5134
.pace-barber-shop-secondary .pace {
5135
  background: #fff;
5136
}
5137

5138
.pace-barber-shop-secondary .pace .pace-progress {
5139
  background: #6c757d;
5140
}
5141

5142
.pace-barber-shop-secondary .pace .pace-activity {
5143
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
5144
}
5145

5146
.pace-big-counter-secondary .pace .pace-progress::after {
5147
  color: rgba(108, 117, 125, 0.2);
5148
}
5149

5150
.pace-bounce-secondary .pace .pace-activity {
5151
  background: #6c757d;
5152
}
5153

5154
.pace-center-atom-secondary .pace-progress {
5155
  height: 100px;
5156
  width: 80px;
5157
}
5158

5159
.pace-center-atom-secondary .pace-progress::before {
5160
  background: #6c757d;
5161
  color: #fff;
5162
  font-size: .8rem;
5163
  line-height: .7rem;
5164
  padding-top: 17%;
5165
}
5166

5167
.pace-center-atom-secondary .pace-activity {
5168
  border-color: #6c757d;
5169
}
5170

5171
.pace-center-atom-secondary .pace-activity::after, .pace-center-atom-secondary .pace-activity::before {
5172
  border-color: #6c757d;
5173
}
5174

5175
.pace-center-circle-secondary .pace .pace-progress {
5176
  background: rgba(108, 117, 125, 0.8);
5177
  color: #fff;
5178
}
5179

5180
.pace-center-radar-secondary .pace .pace-activity {
5181
  border-color: #6c757d transparent transparent;
5182
}
5183

5184
.pace-center-radar-secondary .pace .pace-activity::before {
5185
  border-color: #6c757d transparent transparent;
5186
}
5187

5188
.pace-center-simple-secondary .pace {
5189
  background: #fff;
5190
  border-color: #6c757d;
5191
}
5192

5193
.pace-center-simple-secondary .pace .pace-progress {
5194
  background: #6c757d;
5195
}
5196

5197
.pace-material-secondary .pace {
5198
  color: #6c757d;
5199
}
5200

5201
.pace-corner-indicator-secondary .pace .pace-activity {
5202
  background: #6c757d;
5203
}
5204

5205
.pace-corner-indicator-secondary .pace .pace-activity::after,
5206
.pace-corner-indicator-secondary .pace .pace-activity::before {
5207
  border: 5px solid #fff;
5208
}
5209

5210
.pace-corner-indicator-secondary .pace .pace-activity::before {
5211
  border-right-color: rgba(108, 117, 125, 0.2);
5212
  border-left-color: rgba(108, 117, 125, 0.2);
5213
}
5214

5215
.pace-corner-indicator-secondary .pace .pace-activity::after {
5216
  border-top-color: rgba(108, 117, 125, 0.2);
5217
  border-bottom-color: rgba(108, 117, 125, 0.2);
5218
}
5219

5220
.pace-fill-left-secondary .pace .pace-progress {
5221
  background-color: rgba(108, 117, 125, 0.2);
5222
}
5223

5224
.pace-flash-secondary .pace .pace-progress {
5225
  background: #6c757d;
5226
}
5227

5228
.pace-flash-secondary .pace .pace-progress-inner {
5229
  box-shadow: 0 0 10px #6c757d, 0 0 5px #6c757d;
5230
}
5231

5232
.pace-flash-secondary .pace .pace-activity {
5233
  border-top-color: #6c757d;
5234
  border-left-color: #6c757d;
5235
}
5236

5237
.pace-loading-bar-secondary .pace .pace-progress {
5238
  background: #6c757d;
5239
  color: #6c757d;
5240
  box-shadow: 120px 0 #fff, 240px 0 #fff;
5241
}
5242

5243
.pace-loading-bar-secondary .pace .pace-activity {
5244
  box-shadow: inset 0 0 0 2px #6c757d, inset 0 0 0 7px #fff;
5245
}
5246

5247
.pace-mac-osx-secondary .pace .pace-progress {
5248
  background-color: #6c757d;
5249
  box-shadow: inset -1px 0 #6c757d, inset 0 -1px #6c757d, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
5250
}
5251

5252
.pace-mac-osx-secondary .pace .pace-activity {
5253
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
5254
  height: 12px;
5255
}
5256

5257
.pace-progress-color-secondary .pace-progress {
5258
  color: #6c757d;
5259
}
5260

5261
.pace-success .pace .pace-progress {
5262
  background: #28a745;
5263
}
5264

5265
.pace-barber-shop-success .pace {
5266
  background: #fff;
5267
}
5268

5269
.pace-barber-shop-success .pace .pace-progress {
5270
  background: #28a745;
5271
}
5272

5273
.pace-barber-shop-success .pace .pace-activity {
5274
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
5275
}
5276

5277
.pace-big-counter-success .pace .pace-progress::after {
5278
  color: rgba(40, 167, 69, 0.2);
5279
}
5280

5281
.pace-bounce-success .pace .pace-activity {
5282
  background: #28a745;
5283
}
5284

5285
.pace-center-atom-success .pace-progress {
5286
  height: 100px;
5287
  width: 80px;
5288
}
5289

5290
.pace-center-atom-success .pace-progress::before {
5291
  background: #28a745;
5292
  color: #fff;
5293
  font-size: .8rem;
5294
  line-height: .7rem;
5295
  padding-top: 17%;
5296
}
5297

5298
.pace-center-atom-success .pace-activity {
5299
  border-color: #28a745;
5300
}
5301

5302
.pace-center-atom-success .pace-activity::after, .pace-center-atom-success .pace-activity::before {
5303
  border-color: #28a745;
5304
}
5305

5306
.pace-center-circle-success .pace .pace-progress {
5307
  background: rgba(40, 167, 69, 0.8);
5308
  color: #fff;
5309
}
5310

5311
.pace-center-radar-success .pace .pace-activity {
5312
  border-color: #28a745 transparent transparent;
5313
}
5314

5315
.pace-center-radar-success .pace .pace-activity::before {
5316
  border-color: #28a745 transparent transparent;
5317
}
5318

5319
.pace-center-simple-success .pace {
5320
  background: #fff;
5321
  border-color: #28a745;
5322
}
5323

5324
.pace-center-simple-success .pace .pace-progress {
5325
  background: #28a745;
5326
}
5327

5328
.pace-material-success .pace {
5329
  color: #28a745;
5330
}
5331

5332
.pace-corner-indicator-success .pace .pace-activity {
5333
  background: #28a745;
5334
}
5335

5336
.pace-corner-indicator-success .pace .pace-activity::after,
5337
.pace-corner-indicator-success .pace .pace-activity::before {
5338
  border: 5px solid #fff;
5339
}
5340

5341
.pace-corner-indicator-success .pace .pace-activity::before {
5342
  border-right-color: rgba(40, 167, 69, 0.2);
5343
  border-left-color: rgba(40, 167, 69, 0.2);
5344
}
5345

5346
.pace-corner-indicator-success .pace .pace-activity::after {
5347
  border-top-color: rgba(40, 167, 69, 0.2);
5348
  border-bottom-color: rgba(40, 167, 69, 0.2);
5349
}
5350

5351
.pace-fill-left-success .pace .pace-progress {
5352
  background-color: rgba(40, 167, 69, 0.2);
5353
}
5354

5355
.pace-flash-success .pace .pace-progress {
5356
  background: #28a745;
5357
}
5358

5359
.pace-flash-success .pace .pace-progress-inner {
5360
  box-shadow: 0 0 10px #28a745, 0 0 5px #28a745;
5361
}
5362

5363
.pace-flash-success .pace .pace-activity {
5364
  border-top-color: #28a745;
5365
  border-left-color: #28a745;
5366
}
5367

5368
.pace-loading-bar-success .pace .pace-progress {
5369
  background: #28a745;
5370
  color: #28a745;
5371
  box-shadow: 120px 0 #fff, 240px 0 #fff;
5372
}
5373

5374
.pace-loading-bar-success .pace .pace-activity {
5375
  box-shadow: inset 0 0 0 2px #28a745, inset 0 0 0 7px #fff;
5376
}
5377

5378
.pace-mac-osx-success .pace .pace-progress {
5379
  background-color: #28a745;
5380
  box-shadow: inset -1px 0 #28a745, inset 0 -1px #28a745, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
5381
}
5382

5383
.pace-mac-osx-success .pace .pace-activity {
5384
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
5385
  height: 12px;
5386
}
5387

5388
.pace-progress-color-success .pace-progress {
5389
  color: #28a745;
5390
}
5391

5392
.pace-info .pace .pace-progress {
5393
  background: #17a2b8;
5394
}
5395

5396
.pace-barber-shop-info .pace {
5397
  background: #fff;
5398
}
5399

5400
.pace-barber-shop-info .pace .pace-progress {
5401
  background: #17a2b8;
5402
}
5403

5404
.pace-barber-shop-info .pace .pace-activity {
5405
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
5406
}
5407

5408
.pace-big-counter-info .pace .pace-progress::after {
5409
  color: rgba(23, 162, 184, 0.2);
5410
}
5411

5412
.pace-bounce-info .pace .pace-activity {
5413
  background: #17a2b8;
5414
}
5415

5416
.pace-center-atom-info .pace-progress {
5417
  height: 100px;
5418
  width: 80px;
5419
}
5420

5421
.pace-center-atom-info .pace-progress::before {
5422
  background: #17a2b8;
5423
  color: #fff;
5424
  font-size: .8rem;
5425
  line-height: .7rem;
5426
  padding-top: 17%;
5427
}
5428

5429
.pace-center-atom-info .pace-activity {
5430
  border-color: #17a2b8;
5431
}
5432

5433
.pace-center-atom-info .pace-activity::after, .pace-center-atom-info .pace-activity::before {
5434
  border-color: #17a2b8;
5435
}
5436

5437
.pace-center-circle-info .pace .pace-progress {
5438
  background: rgba(23, 162, 184, 0.8);
5439
  color: #fff;
5440
}
5441

5442
.pace-center-radar-info .pace .pace-activity {
5443
  border-color: #17a2b8 transparent transparent;
5444
}
5445

5446
.pace-center-radar-info .pace .pace-activity::before {
5447
  border-color: #17a2b8 transparent transparent;
5448
}
5449

5450
.pace-center-simple-info .pace {
5451
  background: #fff;
5452
  border-color: #17a2b8;
5453
}
5454

5455
.pace-center-simple-info .pace .pace-progress {
5456
  background: #17a2b8;
5457
}
5458

5459
.pace-material-info .pace {
5460
  color: #17a2b8;
5461
}
5462

5463
.pace-corner-indicator-info .pace .pace-activity {
5464
  background: #17a2b8;
5465
}
5466

5467
.pace-corner-indicator-info .pace .pace-activity::after,
5468
.pace-corner-indicator-info .pace .pace-activity::before {
5469
  border: 5px solid #fff;
5470
}
5471

5472
.pace-corner-indicator-info .pace .pace-activity::before {
5473
  border-right-color: rgba(23, 162, 184, 0.2);
5474
  border-left-color: rgba(23, 162, 184, 0.2);
5475
}
5476

5477
.pace-corner-indicator-info .pace .pace-activity::after {
5478
  border-top-color: rgba(23, 162, 184, 0.2);
5479
  border-bottom-color: rgba(23, 162, 184, 0.2);
5480
}
5481

5482
.pace-fill-left-info .pace .pace-progress {
5483
  background-color: rgba(23, 162, 184, 0.2);
5484
}
5485

5486
.pace-flash-info .pace .pace-progress {
5487
  background: #17a2b8;
5488
}
5489

5490
.pace-flash-info .pace .pace-progress-inner {
5491
  box-shadow: 0 0 10px #17a2b8, 0 0 5px #17a2b8;
5492
}
5493

5494
.pace-flash-info .pace .pace-activity {
5495
  border-top-color: #17a2b8;
5496
  border-left-color: #17a2b8;
5497
}
5498

5499
.pace-loading-bar-info .pace .pace-progress {
5500
  background: #17a2b8;
5501
  color: #17a2b8;
5502
  box-shadow: 120px 0 #fff, 240px 0 #fff;
5503
}
5504

5505
.pace-loading-bar-info .pace .pace-activity {
5506
  box-shadow: inset 0 0 0 2px #17a2b8, inset 0 0 0 7px #fff;
5507
}
5508

5509
.pace-mac-osx-info .pace .pace-progress {
5510
  background-color: #17a2b8;
5511
  box-shadow: inset -1px 0 #17a2b8, inset 0 -1px #17a2b8, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
5512
}
5513

5514
.pace-mac-osx-info .pace .pace-activity {
5515
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
5516
  height: 12px;
5517
}
5518

5519
.pace-progress-color-info .pace-progress {
5520
  color: #17a2b8;
5521
}
5522

5523
.pace-warning .pace .pace-progress {
5524
  background: #ffc107;
5525
}
5526

5527
.pace-barber-shop-warning .pace {
5528
  background: #1f2d3d;
5529
}
5530

5531
.pace-barber-shop-warning .pace .pace-progress {
5532
  background: #ffc107;
5533
}
5534

5535
.pace-barber-shop-warning .pace .pace-activity {
5536
  background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
5537
}
5538

5539
.pace-big-counter-warning .pace .pace-progress::after {
5540
  color: rgba(255, 193, 7, 0.2);
5541
}
5542

5543
.pace-bounce-warning .pace .pace-activity {
5544
  background: #ffc107;
5545
}
5546

5547
.pace-center-atom-warning .pace-progress {
5548
  height: 100px;
5549
  width: 80px;
5550
}
5551

5552
.pace-center-atom-warning .pace-progress::before {
5553
  background: #ffc107;
5554
  color: #1f2d3d;
5555
  font-size: .8rem;
5556
  line-height: .7rem;
5557
  padding-top: 17%;
5558
}
5559

5560
.pace-center-atom-warning .pace-activity {
5561
  border-color: #ffc107;
5562
}
5563

5564
.pace-center-atom-warning .pace-activity::after, .pace-center-atom-warning .pace-activity::before {
5565
  border-color: #ffc107;
5566
}
5567

5568
.pace-center-circle-warning .pace .pace-progress {
5569
  background: rgba(255, 193, 7, 0.8);
5570
  color: #1f2d3d;
5571
}
5572

5573
.pace-center-radar-warning .pace .pace-activity {
5574
  border-color: #ffc107 transparent transparent;
5575
}
5576

5577
.pace-center-radar-warning .pace .pace-activity::before {
5578
  border-color: #ffc107 transparent transparent;
5579
}
5580

5581
.pace-center-simple-warning .pace {
5582
  background: #1f2d3d;
5583
  border-color: #ffc107;
5584
}
5585

5586
.pace-center-simple-warning .pace .pace-progress {
5587
  background: #ffc107;
5588
}
5589

5590
.pace-material-warning .pace {
5591
  color: #ffc107;
5592
}
5593

5594
.pace-corner-indicator-warning .pace .pace-activity {
5595
  background: #ffc107;
5596
}
5597

5598
.pace-corner-indicator-warning .pace .pace-activity::after,
5599
.pace-corner-indicator-warning .pace .pace-activity::before {
5600
  border: 5px solid #1f2d3d;
5601
}
5602

5603
.pace-corner-indicator-warning .pace .pace-activity::before {
5604
  border-right-color: rgba(255, 193, 7, 0.2);
5605
  border-left-color: rgba(255, 193, 7, 0.2);
5606
}
5607

5608
.pace-corner-indicator-warning .pace .pace-activity::after {
5609
  border-top-color: rgba(255, 193, 7, 0.2);
5610
  border-bottom-color: rgba(255, 193, 7, 0.2);
5611
}
5612

5613
.pace-fill-left-warning .pace .pace-progress {
5614
  background-color: rgba(255, 193, 7, 0.2);
5615
}
5616

5617
.pace-flash-warning .pace .pace-progress {
5618
  background: #ffc107;
5619
}
5620

5621
.pace-flash-warning .pace .pace-progress-inner {
5622
  box-shadow: 0 0 10px #ffc107, 0 0 5px #ffc107;
5623
}
5624

5625
.pace-flash-warning .pace .pace-activity {
5626
  border-top-color: #ffc107;
5627
  border-left-color: #ffc107;
5628
}
5629

5630
.pace-loading-bar-warning .pace .pace-progress {
5631
  background: #ffc107;
5632
  color: #ffc107;
5633
  box-shadow: 120px 0 #1f2d3d, 240px 0 #1f2d3d;
5634
}
5635

5636
.pace-loading-bar-warning .pace .pace-activity {
5637
  box-shadow: inset 0 0 0 2px #ffc107, inset 0 0 0 7px #1f2d3d;
5638
}
5639

5640
.pace-mac-osx-warning .pace .pace-progress {
5641
  background-color: #ffc107;
5642
  box-shadow: inset -1px 0 #ffc107, inset 0 -1px #ffc107, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
5643
}
5644

5645
.pace-mac-osx-warning .pace .pace-activity {
5646
  background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
5647
  height: 12px;
5648
}
5649

5650
.pace-progress-color-warning .pace-progress {
5651
  color: #ffc107;
5652
}
5653

5654
.pace-danger .pace .pace-progress {
5655
  background: #dc3545;
5656
}
5657

5658
.pace-barber-shop-danger .pace {
5659
  background: #fff;
5660
}
5661

5662
.pace-barber-shop-danger .pace .pace-progress {
5663
  background: #dc3545;
5664
}
5665

5666
.pace-barber-shop-danger .pace .pace-activity {
5667
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
5668
}
5669

5670
.pace-big-counter-danger .pace .pace-progress::after {
5671
  color: rgba(220, 53, 69, 0.2);
5672
}
5673

5674
.pace-bounce-danger .pace .pace-activity {
5675
  background: #dc3545;
5676
}
5677

5678
.pace-center-atom-danger .pace-progress {
5679
  height: 100px;
5680
  width: 80px;
5681
}
5682

5683
.pace-center-atom-danger .pace-progress::before {
5684
  background: #dc3545;
5685
  color: #fff;
5686
  font-size: .8rem;
5687
  line-height: .7rem;
5688
  padding-top: 17%;
5689
}
5690

5691
.pace-center-atom-danger .pace-activity {
5692
  border-color: #dc3545;
5693
}
5694

5695
.pace-center-atom-danger .pace-activity::after, .pace-center-atom-danger .pace-activity::before {
5696
  border-color: #dc3545;
5697
}
5698

5699
.pace-center-circle-danger .pace .pace-progress {
5700
  background: rgba(220, 53, 69, 0.8);
5701
  color: #fff;
5702
}
5703

5704
.pace-center-radar-danger .pace .pace-activity {
5705
  border-color: #dc3545 transparent transparent;
5706
}
5707

5708
.pace-center-radar-danger .pace .pace-activity::before {
5709
  border-color: #dc3545 transparent transparent;
5710
}
5711

5712
.pace-center-simple-danger .pace {
5713
  background: #fff;
5714
  border-color: #dc3545;
5715
}
5716

5717
.pace-center-simple-danger .pace .pace-progress {
5718
  background: #dc3545;
5719
}
5720

5721
.pace-material-danger .pace {
5722
  color: #dc3545;
5723
}
5724

5725
.pace-corner-indicator-danger .pace .pace-activity {
5726
  background: #dc3545;
5727
}
5728

5729
.pace-corner-indicator-danger .pace .pace-activity::after,
5730
.pace-corner-indicator-danger .pace .pace-activity::before {
5731
  border: 5px solid #fff;
5732
}
5733

5734
.pace-corner-indicator-danger .pace .pace-activity::before {
5735
  border-right-color: rgba(220, 53, 69, 0.2);
5736
  border-left-color: rgba(220, 53, 69, 0.2);
5737
}
5738

5739
.pace-corner-indicator-danger .pace .pace-activity::after {
5740
  border-top-color: rgba(220, 53, 69, 0.2);
5741
  border-bottom-color: rgba(220, 53, 69, 0.2);
5742
}
5743

5744
.pace-fill-left-danger .pace .pace-progress {
5745
  background-color: rgba(220, 53, 69, 0.2);
5746
}
5747

5748
.pace-flash-danger .pace .pace-progress {
5749
  background: #dc3545;
5750
}
5751

5752
.pace-flash-danger .pace .pace-progress-inner {
5753
  box-shadow: 0 0 10px #dc3545, 0 0 5px #dc3545;
5754
}
5755

5756
.pace-flash-danger .pace .pace-activity {
5757
  border-top-color: #dc3545;
5758
  border-left-color: #dc3545;
5759
}
5760

5761
.pace-loading-bar-danger .pace .pace-progress {
5762
  background: #dc3545;
5763
  color: #dc3545;
5764
  box-shadow: 120px 0 #fff, 240px 0 #fff;
5765
}
5766

5767
.pace-loading-bar-danger .pace .pace-activity {
5768
  box-shadow: inset 0 0 0 2px #dc3545, inset 0 0 0 7px #fff;
5769
}
5770

5771
.pace-mac-osx-danger .pace .pace-progress {
5772
  background-color: #dc3545;
5773
  box-shadow: inset -1px 0 #dc3545, inset 0 -1px #dc3545, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
5774
}
5775

5776
.pace-mac-osx-danger .pace .pace-activity {
5777
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
5778
  height: 12px;
5779
}
5780

5781
.pace-progress-color-danger .pace-progress {
5782
  color: #dc3545;
5783
}
5784

5785
.pace-light .pace .pace-progress {
5786
  background: #f8f9fa;
5787
}
5788

5789
.pace-barber-shop-light .pace {
5790
  background: #1f2d3d;
5791
}
5792

5793
.pace-barber-shop-light .pace .pace-progress {
5794
  background: #f8f9fa;
5795
}
5796

5797
.pace-barber-shop-light .pace .pace-activity {
5798
  background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
5799
}
5800

5801
.pace-big-counter-light .pace .pace-progress::after {
5802
  color: rgba(248, 249, 250, 0.2);
5803
}
5804

5805
.pace-bounce-light .pace .pace-activity {
5806
  background: #f8f9fa;
5807
}
5808

5809
.pace-center-atom-light .pace-progress {
5810
  height: 100px;
5811
  width: 80px;
5812
}
5813

5814
.pace-center-atom-light .pace-progress::before {
5815
  background: #f8f9fa;
5816
  color: #1f2d3d;
5817
  font-size: .8rem;
5818
  line-height: .7rem;
5819
  padding-top: 17%;
5820
}
5821

5822
.pace-center-atom-light .pace-activity {
5823
  border-color: #f8f9fa;
5824
}
5825

5826
.pace-center-atom-light .pace-activity::after, .pace-center-atom-light .pace-activity::before {
5827
  border-color: #f8f9fa;
5828
}
5829

5830
.pace-center-circle-light .pace .pace-progress {
5831
  background: rgba(248, 249, 250, 0.8);
5832
  color: #1f2d3d;
5833
}
5834

5835
.pace-center-radar-light .pace .pace-activity {
5836
  border-color: #f8f9fa transparent transparent;
5837
}
5838

5839
.pace-center-radar-light .pace .pace-activity::before {
5840
  border-color: #f8f9fa transparent transparent;
5841
}
5842

5843
.pace-center-simple-light .pace {
5844
  background: #1f2d3d;
5845
  border-color: #f8f9fa;
5846
}
5847

5848
.pace-center-simple-light .pace .pace-progress {
5849
  background: #f8f9fa;
5850
}
5851

5852
.pace-material-light .pace {
5853
  color: #f8f9fa;
5854
}
5855

5856
.pace-corner-indicator-light .pace .pace-activity {
5857
  background: #f8f9fa;
5858
}
5859

5860
.pace-corner-indicator-light .pace .pace-activity::after,
5861
.pace-corner-indicator-light .pace .pace-activity::before {
5862
  border: 5px solid #1f2d3d;
5863
}
5864

5865
.pace-corner-indicator-light .pace .pace-activity::before {
5866
  border-right-color: rgba(248, 249, 250, 0.2);
5867
  border-left-color: rgba(248, 249, 250, 0.2);
5868
}
5869

5870
.pace-corner-indicator-light .pace .pace-activity::after {
5871
  border-top-color: rgba(248, 249, 250, 0.2);
5872
  border-bottom-color: rgba(248, 249, 250, 0.2);
5873
}
5874

5875
.pace-fill-left-light .pace .pace-progress {
5876
  background-color: rgba(248, 249, 250, 0.2);
5877
}
5878

5879
.pace-flash-light .pace .pace-progress {
5880
  background: #f8f9fa;
5881
}
5882

5883
.pace-flash-light .pace .pace-progress-inner {
5884
  box-shadow: 0 0 10px #f8f9fa, 0 0 5px #f8f9fa;
5885
}
5886

5887
.pace-flash-light .pace .pace-activity {
5888
  border-top-color: #f8f9fa;
5889
  border-left-color: #f8f9fa;
5890
}
5891

5892
.pace-loading-bar-light .pace .pace-progress {
5893
  background: #f8f9fa;
5894
  color: #f8f9fa;
5895
  box-shadow: 120px 0 #1f2d3d, 240px 0 #1f2d3d;
5896
}
5897

5898
.pace-loading-bar-light .pace .pace-activity {
5899
  box-shadow: inset 0 0 0 2px #f8f9fa, inset 0 0 0 7px #1f2d3d;
5900
}
5901

5902
.pace-mac-osx-light .pace .pace-progress {
5903
  background-color: #f8f9fa;
5904
  box-shadow: inset -1px 0 #f8f9fa, inset 0 -1px #f8f9fa, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
5905
}
5906

5907
.pace-mac-osx-light .pace .pace-activity {
5908
  background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
5909
  height: 12px;
5910
}
5911

5912
.pace-progress-color-light .pace-progress {
5913
  color: #f8f9fa;
5914
}
5915

5916
.pace-dark .pace .pace-progress {
5917
  background: #343a40;
5918
}
5919

5920
.pace-barber-shop-dark .pace {
5921
  background: #fff;
5922
}
5923

5924
.pace-barber-shop-dark .pace .pace-progress {
5925
  background: #343a40;
5926
}
5927

5928
.pace-barber-shop-dark .pace .pace-activity {
5929
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
5930
}
5931

5932
.pace-big-counter-dark .pace .pace-progress::after {
5933
  color: rgba(52, 58, 64, 0.2);
5934
}
5935

5936
.pace-bounce-dark .pace .pace-activity {
5937
  background: #343a40;
5938
}
5939

5940
.pace-center-atom-dark .pace-progress {
5941
  height: 100px;
5942
  width: 80px;
5943
}
5944

5945
.pace-center-atom-dark .pace-progress::before {
5946
  background: #343a40;
5947
  color: #fff;
5948
  font-size: .8rem;
5949
  line-height: .7rem;
5950
  padding-top: 17%;
5951
}
5952

5953
.pace-center-atom-dark .pace-activity {
5954
  border-color: #343a40;
5955
}
5956

5957
.pace-center-atom-dark .pace-activity::after, .pace-center-atom-dark .pace-activity::before {
5958
  border-color: #343a40;
5959
}
5960

5961
.pace-center-circle-dark .pace .pace-progress {
5962
  background: rgba(52, 58, 64, 0.8);
5963
  color: #fff;
5964
}
5965

5966
.pace-center-radar-dark .pace .pace-activity {
5967
  border-color: #343a40 transparent transparent;
5968
}
5969

5970
.pace-center-radar-dark .pace .pace-activity::before {
5971
  border-color: #343a40 transparent transparent;
5972
}
5973

5974
.pace-center-simple-dark .pace {
5975
  background: #fff;
5976
  border-color: #343a40;
5977
}
5978

5979
.pace-center-simple-dark .pace .pace-progress {
5980
  background: #343a40;
5981
}
5982

5983
.pace-material-dark .pace {
5984
  color: #343a40;
5985
}
5986

5987
.pace-corner-indicator-dark .pace .pace-activity {
5988
  background: #343a40;
5989
}
5990

5991
.pace-corner-indicator-dark .pace .pace-activity::after,
5992
.pace-corner-indicator-dark .pace .pace-activity::before {
5993
  border: 5px solid #fff;
5994
}
5995

5996
.pace-corner-indicator-dark .pace .pace-activity::before {
5997
  border-right-color: rgba(52, 58, 64, 0.2);
5998
  border-left-color: rgba(52, 58, 64, 0.2);
5999
}
6000

6001
.pace-corner-indicator-dark .pace .pace-activity::after {
6002
  border-top-color: rgba(52, 58, 64, 0.2);
6003
  border-bottom-color: rgba(52, 58, 64, 0.2);
6004
}
6005

6006
.pace-fill-left-dark .pace .pace-progress {
6007
  background-color: rgba(52, 58, 64, 0.2);
6008
}
6009

6010
.pace-flash-dark .pace .pace-progress {
6011
  background: #343a40;
6012
}
6013

6014
.pace-flash-dark .pace .pace-progress-inner {
6015
  box-shadow: 0 0 10px #343a40, 0 0 5px #343a40;
6016
}
6017

6018
.pace-flash-dark .pace .pace-activity {
6019
  border-top-color: #343a40;
6020
  border-left-color: #343a40;
6021
}
6022

6023
.pace-loading-bar-dark .pace .pace-progress {
6024
  background: #343a40;
6025
  color: #343a40;
6026
  box-shadow: 120px 0 #fff, 240px 0 #fff;
6027
}
6028

6029
.pace-loading-bar-dark .pace .pace-activity {
6030
  box-shadow: inset 0 0 0 2px #343a40, inset 0 0 0 7px #fff;
6031
}
6032

6033
.pace-mac-osx-dark .pace .pace-progress {
6034
  background-color: #343a40;
6035
  box-shadow: inset -1px 0 #343a40, inset 0 -1px #343a40, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
6036
}
6037

6038
.pace-mac-osx-dark .pace .pace-activity {
6039
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
6040
  height: 12px;
6041
}
6042

6043
.pace-progress-color-dark .pace-progress {
6044
  color: #343a40;
6045
}
6046

6047
.pace-lightblue .pace .pace-progress {
6048
  background: #3c8dbc;
6049
}
6050

6051
.pace-barber-shop-lightblue .pace {
6052
  background: #fff;
6053
}
6054

6055
.pace-barber-shop-lightblue .pace .pace-progress {
6056
  background: #3c8dbc;
6057
}
6058

6059
.pace-barber-shop-lightblue .pace .pace-activity {
6060
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
6061
}
6062

6063
.pace-big-counter-lightblue .pace .pace-progress::after {
6064
  color: rgba(60, 141, 188, 0.2);
6065
}
6066

6067
.pace-bounce-lightblue .pace .pace-activity {
6068
  background: #3c8dbc;
6069
}
6070

6071
.pace-center-atom-lightblue .pace-progress {
6072
  height: 100px;
6073
  width: 80px;
6074
}
6075

6076
.pace-center-atom-lightblue .pace-progress::before {
6077
  background: #3c8dbc;
6078
  color: #fff;
6079
  font-size: .8rem;
6080
  line-height: .7rem;
6081
  padding-top: 17%;
6082
}
6083

6084
.pace-center-atom-lightblue .pace-activity {
6085
  border-color: #3c8dbc;
6086
}
6087

6088
.pace-center-atom-lightblue .pace-activity::after, .pace-center-atom-lightblue .pace-activity::before {
6089
  border-color: #3c8dbc;
6090
}
6091

6092
.pace-center-circle-lightblue .pace .pace-progress {
6093
  background: rgba(60, 141, 188, 0.8);
6094
  color: #fff;
6095
}
6096

6097
.pace-center-radar-lightblue .pace .pace-activity {
6098
  border-color: #3c8dbc transparent transparent;
6099
}
6100

6101
.pace-center-radar-lightblue .pace .pace-activity::before {
6102
  border-color: #3c8dbc transparent transparent;
6103
}
6104

6105
.pace-center-simple-lightblue .pace {
6106
  background: #fff;
6107
  border-color: #3c8dbc;
6108
}
6109

6110
.pace-center-simple-lightblue .pace .pace-progress {
6111
  background: #3c8dbc;
6112
}
6113

6114
.pace-material-lightblue .pace {
6115
  color: #3c8dbc;
6116
}
6117

6118
.pace-corner-indicator-lightblue .pace .pace-activity {
6119
  background: #3c8dbc;
6120
}
6121

6122
.pace-corner-indicator-lightblue .pace .pace-activity::after,
6123
.pace-corner-indicator-lightblue .pace .pace-activity::before {
6124
  border: 5px solid #fff;
6125
}
6126

6127
.pace-corner-indicator-lightblue .pace .pace-activity::before {
6128
  border-right-color: rgba(60, 141, 188, 0.2);
6129
  border-left-color: rgba(60, 141, 188, 0.2);
6130
}
6131

6132
.pace-corner-indicator-lightblue .pace .pace-activity::after {
6133
  border-top-color: rgba(60, 141, 188, 0.2);
6134
  border-bottom-color: rgba(60, 141, 188, 0.2);
6135
}
6136

6137
.pace-fill-left-lightblue .pace .pace-progress {
6138
  background-color: rgba(60, 141, 188, 0.2);
6139
}
6140

6141
.pace-flash-lightblue .pace .pace-progress {
6142
  background: #3c8dbc;
6143
}
6144

6145
.pace-flash-lightblue .pace .pace-progress-inner {
6146
  box-shadow: 0 0 10px #3c8dbc, 0 0 5px #3c8dbc;
6147
}
6148

6149
.pace-flash-lightblue .pace .pace-activity {
6150
  border-top-color: #3c8dbc;
6151
  border-left-color: #3c8dbc;
6152
}
6153

6154
.pace-loading-bar-lightblue .pace .pace-progress {
6155
  background: #3c8dbc;
6156
  color: #3c8dbc;
6157
  box-shadow: 120px 0 #fff, 240px 0 #fff;
6158
}
6159

6160
.pace-loading-bar-lightblue .pace .pace-activity {
6161
  box-shadow: inset 0 0 0 2px #3c8dbc, inset 0 0 0 7px #fff;
6162
}
6163

6164
.pace-mac-osx-lightblue .pace .pace-progress {
6165
  background-color: #3c8dbc;
6166
  box-shadow: inset -1px 0 #3c8dbc, inset 0 -1px #3c8dbc, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
6167
}
6168

6169
.pace-mac-osx-lightblue .pace .pace-activity {
6170
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
6171
  height: 12px;
6172
}
6173

6174
.pace-progress-color-lightblue .pace-progress {
6175
  color: #3c8dbc;
6176
}
6177

6178
.pace-navy .pace .pace-progress {
6179
  background: #001f3f;
6180
}
6181

6182
.pace-barber-shop-navy .pace {
6183
  background: #fff;
6184
}
6185

6186
.pace-barber-shop-navy .pace .pace-progress {
6187
  background: #001f3f;
6188
}
6189

6190
.pace-barber-shop-navy .pace .pace-activity {
6191
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
6192
}
6193

6194
.pace-big-counter-navy .pace .pace-progress::after {
6195
  color: rgba(0, 31, 63, 0.2);
6196
}
6197

6198
.pace-bounce-navy .pace .pace-activity {
6199
  background: #001f3f;
6200
}
6201

6202
.pace-center-atom-navy .pace-progress {
6203
  height: 100px;
6204
  width: 80px;
6205
}
6206

6207
.pace-center-atom-navy .pace-progress::before {
6208
  background: #001f3f;
6209
  color: #fff;
6210
  font-size: .8rem;
6211
  line-height: .7rem;
6212
  padding-top: 17%;
6213
}
6214

6215
.pace-center-atom-navy .pace-activity {
6216
  border-color: #001f3f;
6217
}
6218

6219
.pace-center-atom-navy .pace-activity::after, .pace-center-atom-navy .pace-activity::before {
6220
  border-color: #001f3f;
6221
}
6222

6223
.pace-center-circle-navy .pace .pace-progress {
6224
  background: rgba(0, 31, 63, 0.8);
6225
  color: #fff;
6226
}
6227

6228
.pace-center-radar-navy .pace .pace-activity {
6229
  border-color: #001f3f transparent transparent;
6230
}
6231

6232
.pace-center-radar-navy .pace .pace-activity::before {
6233
  border-color: #001f3f transparent transparent;
6234
}
6235

6236
.pace-center-simple-navy .pace {
6237
  background: #fff;
6238
  border-color: #001f3f;
6239
}
6240

6241
.pace-center-simple-navy .pace .pace-progress {
6242
  background: #001f3f;
6243
}
6244

6245
.pace-material-navy .pace {
6246
  color: #001f3f;
6247
}
6248

6249
.pace-corner-indicator-navy .pace .pace-activity {
6250
  background: #001f3f;
6251
}
6252

6253
.pace-corner-indicator-navy .pace .pace-activity::after,
6254
.pace-corner-indicator-navy .pace .pace-activity::before {
6255
  border: 5px solid #fff;
6256
}
6257

6258
.pace-corner-indicator-navy .pace .pace-activity::before {
6259
  border-right-color: rgba(0, 31, 63, 0.2);
6260
  border-left-color: rgba(0, 31, 63, 0.2);
6261
}
6262

6263
.pace-corner-indicator-navy .pace .pace-activity::after {
6264
  border-top-color: rgba(0, 31, 63, 0.2);
6265
  border-bottom-color: rgba(0, 31, 63, 0.2);
6266
}
6267

6268
.pace-fill-left-navy .pace .pace-progress {
6269
  background-color: rgba(0, 31, 63, 0.2);
6270
}
6271

6272
.pace-flash-navy .pace .pace-progress {
6273
  background: #001f3f;
6274
}
6275

6276
.pace-flash-navy .pace .pace-progress-inner {
6277
  box-shadow: 0 0 10px #001f3f, 0 0 5px #001f3f;
6278
}
6279

6280
.pace-flash-navy .pace .pace-activity {
6281
  border-top-color: #001f3f;
6282
  border-left-color: #001f3f;
6283
}
6284

6285
.pace-loading-bar-navy .pace .pace-progress {
6286
  background: #001f3f;
6287
  color: #001f3f;
6288
  box-shadow: 120px 0 #fff, 240px 0 #fff;
6289
}
6290

6291
.pace-loading-bar-navy .pace .pace-activity {
6292
  box-shadow: inset 0 0 0 2px #001f3f, inset 0 0 0 7px #fff;
6293
}
6294

6295
.pace-mac-osx-navy .pace .pace-progress {
6296
  background-color: #001f3f;
6297
  box-shadow: inset -1px 0 #001f3f, inset 0 -1px #001f3f, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
6298
}
6299

6300
.pace-mac-osx-navy .pace .pace-activity {
6301
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
6302
  height: 12px;
6303
}
6304

6305
.pace-progress-color-navy .pace-progress {
6306
  color: #001f3f;
6307
}
6308

6309
.pace-olive .pace .pace-progress {
6310
  background: #3d9970;
6311
}
6312

6313
.pace-barber-shop-olive .pace {
6314
  background: #fff;
6315
}
6316

6317
.pace-barber-shop-olive .pace .pace-progress {
6318
  background: #3d9970;
6319
}
6320

6321
.pace-barber-shop-olive .pace .pace-activity {
6322
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
6323
}
6324

6325
.pace-big-counter-olive .pace .pace-progress::after {
6326
  color: rgba(61, 153, 112, 0.2);
6327
}
6328

6329
.pace-bounce-olive .pace .pace-activity {
6330
  background: #3d9970;
6331
}
6332

6333
.pace-center-atom-olive .pace-progress {
6334
  height: 100px;
6335
  width: 80px;
6336
}
6337

6338
.pace-center-atom-olive .pace-progress::before {
6339
  background: #3d9970;
6340
  color: #fff;
6341
  font-size: .8rem;
6342
  line-height: .7rem;
6343
  padding-top: 17%;
6344
}
6345

6346
.pace-center-atom-olive .pace-activity {
6347
  border-color: #3d9970;
6348
}
6349

6350
.pace-center-atom-olive .pace-activity::after, .pace-center-atom-olive .pace-activity::before {
6351
  border-color: #3d9970;
6352
}
6353

6354
.pace-center-circle-olive .pace .pace-progress {
6355
  background: rgba(61, 153, 112, 0.8);
6356
  color: #fff;
6357
}
6358

6359
.pace-center-radar-olive .pace .pace-activity {
6360
  border-color: #3d9970 transparent transparent;
6361
}
6362

6363
.pace-center-radar-olive .pace .pace-activity::before {
6364
  border-color: #3d9970 transparent transparent;
6365
}
6366

6367
.pace-center-simple-olive .pace {
6368
  background: #fff;
6369
  border-color: #3d9970;
6370
}
6371

6372
.pace-center-simple-olive .pace .pace-progress {
6373
  background: #3d9970;
6374
}
6375

6376
.pace-material-olive .pace {
6377
  color: #3d9970;
6378
}
6379

6380
.pace-corner-indicator-olive .pace .pace-activity {
6381
  background: #3d9970;
6382
}
6383

6384
.pace-corner-indicator-olive .pace .pace-activity::after,
6385
.pace-corner-indicator-olive .pace .pace-activity::before {
6386
  border: 5px solid #fff;
6387
}
6388

6389
.pace-corner-indicator-olive .pace .pace-activity::before {
6390
  border-right-color: rgba(61, 153, 112, 0.2);
6391
  border-left-color: rgba(61, 153, 112, 0.2);
6392
}
6393

6394
.pace-corner-indicator-olive .pace .pace-activity::after {
6395
  border-top-color: rgba(61, 153, 112, 0.2);
6396
  border-bottom-color: rgba(61, 153, 112, 0.2);
6397
}
6398

6399
.pace-fill-left-olive .pace .pace-progress {
6400
  background-color: rgba(61, 153, 112, 0.2);
6401
}
6402

6403
.pace-flash-olive .pace .pace-progress {
6404
  background: #3d9970;
6405
}
6406

6407
.pace-flash-olive .pace .pace-progress-inner {
6408
  box-shadow: 0 0 10px #3d9970, 0 0 5px #3d9970;
6409
}
6410

6411
.pace-flash-olive .pace .pace-activity {
6412
  border-top-color: #3d9970;
6413
  border-left-color: #3d9970;
6414
}
6415

6416
.pace-loading-bar-olive .pace .pace-progress {
6417
  background: #3d9970;
6418
  color: #3d9970;
6419
  box-shadow: 120px 0 #fff, 240px 0 #fff;
6420
}
6421

6422
.pace-loading-bar-olive .pace .pace-activity {
6423
  box-shadow: inset 0 0 0 2px #3d9970, inset 0 0 0 7px #fff;
6424
}
6425

6426
.pace-mac-osx-olive .pace .pace-progress {
6427
  background-color: #3d9970;
6428
  box-shadow: inset -1px 0 #3d9970, inset 0 -1px #3d9970, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
6429
}
6430

6431
.pace-mac-osx-olive .pace .pace-activity {
6432
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
6433
  height: 12px;
6434
}
6435

6436
.pace-progress-color-olive .pace-progress {
6437
  color: #3d9970;
6438
}
6439

6440
.pace-lime .pace .pace-progress {
6441
  background: #01ff70;
6442
}
6443

6444
.pace-barber-shop-lime .pace {
6445
  background: #1f2d3d;
6446
}
6447

6448
.pace-barber-shop-lime .pace .pace-progress {
6449
  background: #01ff70;
6450
}
6451

6452
.pace-barber-shop-lime .pace .pace-activity {
6453
  background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
6454
}
6455

6456
.pace-big-counter-lime .pace .pace-progress::after {
6457
  color: rgba(1, 255, 112, 0.2);
6458
}
6459

6460
.pace-bounce-lime .pace .pace-activity {
6461
  background: #01ff70;
6462
}
6463

6464
.pace-center-atom-lime .pace-progress {
6465
  height: 100px;
6466
  width: 80px;
6467
}
6468

6469
.pace-center-atom-lime .pace-progress::before {
6470
  background: #01ff70;
6471
  color: #1f2d3d;
6472
  font-size: .8rem;
6473
  line-height: .7rem;
6474
  padding-top: 17%;
6475
}
6476

6477
.pace-center-atom-lime .pace-activity {
6478
  border-color: #01ff70;
6479
}
6480

6481
.pace-center-atom-lime .pace-activity::after, .pace-center-atom-lime .pace-activity::before {
6482
  border-color: #01ff70;
6483
}
6484

6485
.pace-center-circle-lime .pace .pace-progress {
6486
  background: rgba(1, 255, 112, 0.8);
6487
  color: #1f2d3d;
6488
}
6489

6490
.pace-center-radar-lime .pace .pace-activity {
6491
  border-color: #01ff70 transparent transparent;
6492
}
6493

6494
.pace-center-radar-lime .pace .pace-activity::before {
6495
  border-color: #01ff70 transparent transparent;
6496
}
6497

6498
.pace-center-simple-lime .pace {
6499
  background: #1f2d3d;
6500
  border-color: #01ff70;
6501
}
6502

6503
.pace-center-simple-lime .pace .pace-progress {
6504
  background: #01ff70;
6505
}
6506

6507
.pace-material-lime .pace {
6508
  color: #01ff70;
6509
}
6510

6511
.pace-corner-indicator-lime .pace .pace-activity {
6512
  background: #01ff70;
6513
}
6514

6515
.pace-corner-indicator-lime .pace .pace-activity::after,
6516
.pace-corner-indicator-lime .pace .pace-activity::before {
6517
  border: 5px solid #1f2d3d;
6518
}
6519

6520
.pace-corner-indicator-lime .pace .pace-activity::before {
6521
  border-right-color: rgba(1, 255, 112, 0.2);
6522
  border-left-color: rgba(1, 255, 112, 0.2);
6523
}
6524

6525
.pace-corner-indicator-lime .pace .pace-activity::after {
6526
  border-top-color: rgba(1, 255, 112, 0.2);
6527
  border-bottom-color: rgba(1, 255, 112, 0.2);
6528
}
6529

6530
.pace-fill-left-lime .pace .pace-progress {
6531
  background-color: rgba(1, 255, 112, 0.2);
6532
}
6533

6534
.pace-flash-lime .pace .pace-progress {
6535
  background: #01ff70;
6536
}
6537

6538
.pace-flash-lime .pace .pace-progress-inner {
6539
  box-shadow: 0 0 10px #01ff70, 0 0 5px #01ff70;
6540
}
6541

6542
.pace-flash-lime .pace .pace-activity {
6543
  border-top-color: #01ff70;
6544
  border-left-color: #01ff70;
6545
}
6546

6547
.pace-loading-bar-lime .pace .pace-progress {
6548
  background: #01ff70;
6549
  color: #01ff70;
6550
  box-shadow: 120px 0 #1f2d3d, 240px 0 #1f2d3d;
6551
}
6552

6553
.pace-loading-bar-lime .pace .pace-activity {
6554
  box-shadow: inset 0 0 0 2px #01ff70, inset 0 0 0 7px #1f2d3d;
6555
}
6556

6557
.pace-mac-osx-lime .pace .pace-progress {
6558
  background-color: #01ff70;
6559
  box-shadow: inset -1px 0 #01ff70, inset 0 -1px #01ff70, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
6560
}
6561

6562
.pace-mac-osx-lime .pace .pace-activity {
6563
  background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
6564
  height: 12px;
6565
}
6566

6567
.pace-progress-color-lime .pace-progress {
6568
  color: #01ff70;
6569
}
6570

6571
.pace-fuchsia .pace .pace-progress {
6572
  background: #f012be;
6573
}
6574

6575
.pace-barber-shop-fuchsia .pace {
6576
  background: #fff;
6577
}
6578

6579
.pace-barber-shop-fuchsia .pace .pace-progress {
6580
  background: #f012be;
6581
}
6582

6583
.pace-barber-shop-fuchsia .pace .pace-activity {
6584
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
6585
}
6586

6587
.pace-big-counter-fuchsia .pace .pace-progress::after {
6588
  color: rgba(240, 18, 190, 0.2);
6589
}
6590

6591
.pace-bounce-fuchsia .pace .pace-activity {
6592
  background: #f012be;
6593
}
6594

6595
.pace-center-atom-fuchsia .pace-progress {
6596
  height: 100px;
6597
  width: 80px;
6598
}
6599

6600
.pace-center-atom-fuchsia .pace-progress::before {
6601
  background: #f012be;
6602
  color: #fff;
6603
  font-size: .8rem;
6604
  line-height: .7rem;
6605
  padding-top: 17%;
6606
}
6607

6608
.pace-center-atom-fuchsia .pace-activity {
6609
  border-color: #f012be;
6610
}
6611

6612
.pace-center-atom-fuchsia .pace-activity::after, .pace-center-atom-fuchsia .pace-activity::before {
6613
  border-color: #f012be;
6614
}
6615

6616
.pace-center-circle-fuchsia .pace .pace-progress {
6617
  background: rgba(240, 18, 190, 0.8);
6618
  color: #fff;
6619
}
6620

6621
.pace-center-radar-fuchsia .pace .pace-activity {
6622
  border-color: #f012be transparent transparent;
6623
}
6624

6625
.pace-center-radar-fuchsia .pace .pace-activity::before {
6626
  border-color: #f012be transparent transparent;
6627
}
6628

6629
.pace-center-simple-fuchsia .pace {
6630
  background: #fff;
6631
  border-color: #f012be;
6632
}
6633

6634
.pace-center-simple-fuchsia .pace .pace-progress {
6635
  background: #f012be;
6636
}
6637

6638
.pace-material-fuchsia .pace {
6639
  color: #f012be;
6640
}
6641

6642
.pace-corner-indicator-fuchsia .pace .pace-activity {
6643
  background: #f012be;
6644
}
6645

6646
.pace-corner-indicator-fuchsia .pace .pace-activity::after,
6647
.pace-corner-indicator-fuchsia .pace .pace-activity::before {
6648
  border: 5px solid #fff;
6649
}
6650

6651
.pace-corner-indicator-fuchsia .pace .pace-activity::before {
6652
  border-right-color: rgba(240, 18, 190, 0.2);
6653
  border-left-color: rgba(240, 18, 190, 0.2);
6654
}
6655

6656
.pace-corner-indicator-fuchsia .pace .pace-activity::after {
6657
  border-top-color: rgba(240, 18, 190, 0.2);
6658
  border-bottom-color: rgba(240, 18, 190, 0.2);
6659
}
6660

6661
.pace-fill-left-fuchsia .pace .pace-progress {
6662
  background-color: rgba(240, 18, 190, 0.2);
6663
}
6664

6665
.pace-flash-fuchsia .pace .pace-progress {
6666
  background: #f012be;
6667
}
6668

6669
.pace-flash-fuchsia .pace .pace-progress-inner {
6670
  box-shadow: 0 0 10px #f012be, 0 0 5px #f012be;
6671
}
6672

6673
.pace-flash-fuchsia .pace .pace-activity {
6674
  border-top-color: #f012be;
6675
  border-left-color: #f012be;
6676
}
6677

6678
.pace-loading-bar-fuchsia .pace .pace-progress {
6679
  background: #f012be;
6680
  color: #f012be;
6681
  box-shadow: 120px 0 #fff, 240px 0 #fff;
6682
}
6683

6684
.pace-loading-bar-fuchsia .pace .pace-activity {
6685
  box-shadow: inset 0 0 0 2px #f012be, inset 0 0 0 7px #fff;
6686
}
6687

6688
.pace-mac-osx-fuchsia .pace .pace-progress {
6689
  background-color: #f012be;
6690
  box-shadow: inset -1px 0 #f012be, inset 0 -1px #f012be, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
6691
}
6692

6693
.pace-mac-osx-fuchsia .pace .pace-activity {
6694
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
6695
  height: 12px;
6696
}
6697

6698
.pace-progress-color-fuchsia .pace-progress {
6699
  color: #f012be;
6700
}
6701

6702
.pace-maroon .pace .pace-progress {
6703
  background: #d81b60;
6704
}
6705

6706
.pace-barber-shop-maroon .pace {
6707
  background: #fff;
6708
}
6709

6710
.pace-barber-shop-maroon .pace .pace-progress {
6711
  background: #d81b60;
6712
}
6713

6714
.pace-barber-shop-maroon .pace .pace-activity {
6715
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
6716
}
6717

6718
.pace-big-counter-maroon .pace .pace-progress::after {
6719
  color: rgba(216, 27, 96, 0.2);
6720
}
6721

6722
.pace-bounce-maroon .pace .pace-activity {
6723
  background: #d81b60;
6724
}
6725

6726
.pace-center-atom-maroon .pace-progress {
6727
  height: 100px;
6728
  width: 80px;
6729
}
6730

6731
.pace-center-atom-maroon .pace-progress::before {
6732
  background: #d81b60;
6733
  color: #fff;
6734
  font-size: .8rem;
6735
  line-height: .7rem;
6736
  padding-top: 17%;
6737
}
6738

6739
.pace-center-atom-maroon .pace-activity {
6740
  border-color: #d81b60;
6741
}
6742

6743
.pace-center-atom-maroon .pace-activity::after, .pace-center-atom-maroon .pace-activity::before {
6744
  border-color: #d81b60;
6745
}
6746

6747
.pace-center-circle-maroon .pace .pace-progress {
6748
  background: rgba(216, 27, 96, 0.8);
6749
  color: #fff;
6750
}
6751

6752
.pace-center-radar-maroon .pace .pace-activity {
6753
  border-color: #d81b60 transparent transparent;
6754
}
6755

6756
.pace-center-radar-maroon .pace .pace-activity::before {
6757
  border-color: #d81b60 transparent transparent;
6758
}
6759

6760
.pace-center-simple-maroon .pace {
6761
  background: #fff;
6762
  border-color: #d81b60;
6763
}
6764

6765
.pace-center-simple-maroon .pace .pace-progress {
6766
  background: #d81b60;
6767
}
6768

6769
.pace-material-maroon .pace {
6770
  color: #d81b60;
6771
}
6772

6773
.pace-corner-indicator-maroon .pace .pace-activity {
6774
  background: #d81b60;
6775
}
6776

6777
.pace-corner-indicator-maroon .pace .pace-activity::after,
6778
.pace-corner-indicator-maroon .pace .pace-activity::before {
6779
  border: 5px solid #fff;
6780
}
6781

6782
.pace-corner-indicator-maroon .pace .pace-activity::before {
6783
  border-right-color: rgba(216, 27, 96, 0.2);
6784
  border-left-color: rgba(216, 27, 96, 0.2);
6785
}
6786

6787
.pace-corner-indicator-maroon .pace .pace-activity::after {
6788
  border-top-color: rgba(216, 27, 96, 0.2);
6789
  border-bottom-color: rgba(216, 27, 96, 0.2);
6790
}
6791

6792
.pace-fill-left-maroon .pace .pace-progress {
6793
  background-color: rgba(216, 27, 96, 0.2);
6794
}
6795

6796
.pace-flash-maroon .pace .pace-progress {
6797
  background: #d81b60;
6798
}
6799

6800
.pace-flash-maroon .pace .pace-progress-inner {
6801
  box-shadow: 0 0 10px #d81b60, 0 0 5px #d81b60;
6802
}
6803

6804
.pace-flash-maroon .pace .pace-activity {
6805
  border-top-color: #d81b60;
6806
  border-left-color: #d81b60;
6807
}
6808

6809
.pace-loading-bar-maroon .pace .pace-progress {
6810
  background: #d81b60;
6811
  color: #d81b60;
6812
  box-shadow: 120px 0 #fff, 240px 0 #fff;
6813
}
6814

6815
.pace-loading-bar-maroon .pace .pace-activity {
6816
  box-shadow: inset 0 0 0 2px #d81b60, inset 0 0 0 7px #fff;
6817
}
6818

6819
.pace-mac-osx-maroon .pace .pace-progress {
6820
  background-color: #d81b60;
6821
  box-shadow: inset -1px 0 #d81b60, inset 0 -1px #d81b60, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
6822
}
6823

6824
.pace-mac-osx-maroon .pace .pace-activity {
6825
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
6826
  height: 12px;
6827
}
6828

6829
.pace-progress-color-maroon .pace-progress {
6830
  color: #d81b60;
6831
}
6832

6833
.pace-blue .pace .pace-progress {
6834
  background: #007bff;
6835
}
6836

6837
.pace-barber-shop-blue .pace {
6838
  background: #fff;
6839
}
6840

6841
.pace-barber-shop-blue .pace .pace-progress {
6842
  background: #007bff;
6843
}
6844

6845
.pace-barber-shop-blue .pace .pace-activity {
6846
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
6847
}
6848

6849
.pace-big-counter-blue .pace .pace-progress::after {
6850
  color: rgba(0, 123, 255, 0.2);
6851
}
6852

6853
.pace-bounce-blue .pace .pace-activity {
6854
  background: #007bff;
6855
}
6856

6857
.pace-center-atom-blue .pace-progress {
6858
  height: 100px;
6859
  width: 80px;
6860
}
6861

6862
.pace-center-atom-blue .pace-progress::before {
6863
  background: #007bff;
6864
  color: #fff;
6865
  font-size: .8rem;
6866
  line-height: .7rem;
6867
  padding-top: 17%;
6868
}
6869

6870
.pace-center-atom-blue .pace-activity {
6871
  border-color: #007bff;
6872
}
6873

6874
.pace-center-atom-blue .pace-activity::after, .pace-center-atom-blue .pace-activity::before {
6875
  border-color: #007bff;
6876
}
6877

6878
.pace-center-circle-blue .pace .pace-progress {
6879
  background: rgba(0, 123, 255, 0.8);
6880
  color: #fff;
6881
}
6882

6883
.pace-center-radar-blue .pace .pace-activity {
6884
  border-color: #007bff transparent transparent;
6885
}
6886

6887
.pace-center-radar-blue .pace .pace-activity::before {
6888
  border-color: #007bff transparent transparent;
6889
}
6890

6891
.pace-center-simple-blue .pace {
6892
  background: #fff;
6893
  border-color: #007bff;
6894
}
6895

6896
.pace-center-simple-blue .pace .pace-progress {
6897
  background: #007bff;
6898
}
6899

6900
.pace-material-blue .pace {
6901
  color: #007bff;
6902
}
6903

6904
.pace-corner-indicator-blue .pace .pace-activity {
6905
  background: #007bff;
6906
}
6907

6908
.pace-corner-indicator-blue .pace .pace-activity::after,
6909
.pace-corner-indicator-blue .pace .pace-activity::before {
6910
  border: 5px solid #fff;
6911
}
6912

6913
.pace-corner-indicator-blue .pace .pace-activity::before {
6914
  border-right-color: rgba(0, 123, 255, 0.2);
6915
  border-left-color: rgba(0, 123, 255, 0.2);
6916
}
6917

6918
.pace-corner-indicator-blue .pace .pace-activity::after {
6919
  border-top-color: rgba(0, 123, 255, 0.2);
6920
  border-bottom-color: rgba(0, 123, 255, 0.2);
6921
}
6922

6923
.pace-fill-left-blue .pace .pace-progress {
6924
  background-color: rgba(0, 123, 255, 0.2);
6925
}
6926

6927
.pace-flash-blue .pace .pace-progress {
6928
  background: #007bff;
6929
}
6930

6931
.pace-flash-blue .pace .pace-progress-inner {
6932
  box-shadow: 0 0 10px #007bff, 0 0 5px #007bff;
6933
}
6934

6935
.pace-flash-blue .pace .pace-activity {
6936
  border-top-color: #007bff;
6937
  border-left-color: #007bff;
6938
}
6939

6940
.pace-loading-bar-blue .pace .pace-progress {
6941
  background: #007bff;
6942
  color: #007bff;
6943
  box-shadow: 120px 0 #fff, 240px 0 #fff;
6944
}
6945

6946
.pace-loading-bar-blue .pace .pace-activity {
6947
  box-shadow: inset 0 0 0 2px #007bff, inset 0 0 0 7px #fff;
6948
}
6949

6950
.pace-mac-osx-blue .pace .pace-progress {
6951
  background-color: #007bff;
6952
  box-shadow: inset -1px 0 #007bff, inset 0 -1px #007bff, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
6953
}
6954

6955
.pace-mac-osx-blue .pace .pace-activity {
6956
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
6957
  height: 12px;
6958
}
6959

6960
.pace-progress-color-blue .pace-progress {
6961
  color: #007bff;
6962
}
6963

6964
.pace-indigo .pace .pace-progress {
6965
  background: #6610f2;
6966
}
6967

6968
.pace-barber-shop-indigo .pace {
6969
  background: #fff;
6970
}
6971

6972
.pace-barber-shop-indigo .pace .pace-progress {
6973
  background: #6610f2;
6974
}
6975

6976
.pace-barber-shop-indigo .pace .pace-activity {
6977
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
6978
}
6979

6980
.pace-big-counter-indigo .pace .pace-progress::after {
6981
  color: rgba(102, 16, 242, 0.2);
6982
}
6983

6984
.pace-bounce-indigo .pace .pace-activity {
6985
  background: #6610f2;
6986
}
6987

6988
.pace-center-atom-indigo .pace-progress {
6989
  height: 100px;
6990
  width: 80px;
6991
}
6992

6993
.pace-center-atom-indigo .pace-progress::before {
6994
  background: #6610f2;
6995
  color: #fff;
6996
  font-size: .8rem;
6997
  line-height: .7rem;
6998
  padding-top: 17%;
6999
}
7000

7001
.pace-center-atom-indigo .pace-activity {
7002
  border-color: #6610f2;
7003
}
7004

7005
.pace-center-atom-indigo .pace-activity::after, .pace-center-atom-indigo .pace-activity::before {
7006
  border-color: #6610f2;
7007
}
7008

7009
.pace-center-circle-indigo .pace .pace-progress {
7010
  background: rgba(102, 16, 242, 0.8);
7011
  color: #fff;
7012
}
7013

7014
.pace-center-radar-indigo .pace .pace-activity {
7015
  border-color: #6610f2 transparent transparent;
7016
}
7017

7018
.pace-center-radar-indigo .pace .pace-activity::before {
7019
  border-color: #6610f2 transparent transparent;
7020
}
7021

7022
.pace-center-simple-indigo .pace {
7023
  background: #fff;
7024
  border-color: #6610f2;
7025
}
7026

7027
.pace-center-simple-indigo .pace .pace-progress {
7028
  background: #6610f2;
7029
}
7030

7031
.pace-material-indigo .pace {
7032
  color: #6610f2;
7033
}
7034

7035
.pace-corner-indicator-indigo .pace .pace-activity {
7036
  background: #6610f2;
7037
}
7038

7039
.pace-corner-indicator-indigo .pace .pace-activity::after,
7040
.pace-corner-indicator-indigo .pace .pace-activity::before {
7041
  border: 5px solid #fff;
7042
}
7043

7044
.pace-corner-indicator-indigo .pace .pace-activity::before {
7045
  border-right-color: rgba(102, 16, 242, 0.2);
7046
  border-left-color: rgba(102, 16, 242, 0.2);
7047
}
7048

7049
.pace-corner-indicator-indigo .pace .pace-activity::after {
7050
  border-top-color: rgba(102, 16, 242, 0.2);
7051
  border-bottom-color: rgba(102, 16, 242, 0.2);
7052
}
7053

7054
.pace-fill-left-indigo .pace .pace-progress {
7055
  background-color: rgba(102, 16, 242, 0.2);
7056
}
7057

7058
.pace-flash-indigo .pace .pace-progress {
7059
  background: #6610f2;
7060
}
7061

7062
.pace-flash-indigo .pace .pace-progress-inner {
7063
  box-shadow: 0 0 10px #6610f2, 0 0 5px #6610f2;
7064
}
7065

7066
.pace-flash-indigo .pace .pace-activity {
7067
  border-top-color: #6610f2;
7068
  border-left-color: #6610f2;
7069
}
7070

7071
.pace-loading-bar-indigo .pace .pace-progress {
7072
  background: #6610f2;
7073
  color: #6610f2;
7074
  box-shadow: 120px 0 #fff, 240px 0 #fff;
7075
}
7076

7077
.pace-loading-bar-indigo .pace .pace-activity {
7078
  box-shadow: inset 0 0 0 2px #6610f2, inset 0 0 0 7px #fff;
7079
}
7080

7081
.pace-mac-osx-indigo .pace .pace-progress {
7082
  background-color: #6610f2;
7083
  box-shadow: inset -1px 0 #6610f2, inset 0 -1px #6610f2, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
7084
}
7085

7086
.pace-mac-osx-indigo .pace .pace-activity {
7087
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
7088
  height: 12px;
7089
}
7090

7091
.pace-progress-color-indigo .pace-progress {
7092
  color: #6610f2;
7093
}
7094

7095
.pace-purple .pace .pace-progress {
7096
  background: #6f42c1;
7097
}
7098

7099
.pace-barber-shop-purple .pace {
7100
  background: #fff;
7101
}
7102

7103
.pace-barber-shop-purple .pace .pace-progress {
7104
  background: #6f42c1;
7105
}
7106

7107
.pace-barber-shop-purple .pace .pace-activity {
7108
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
7109
}
7110

7111
.pace-big-counter-purple .pace .pace-progress::after {
7112
  color: rgba(111, 66, 193, 0.2);
7113
}
7114

7115
.pace-bounce-purple .pace .pace-activity {
7116
  background: #6f42c1;
7117
}
7118

7119
.pace-center-atom-purple .pace-progress {
7120
  height: 100px;
7121
  width: 80px;
7122
}
7123

7124
.pace-center-atom-purple .pace-progress::before {
7125
  background: #6f42c1;
7126
  color: #fff;
7127
  font-size: .8rem;
7128
  line-height: .7rem;
7129
  padding-top: 17%;
7130
}
7131

7132
.pace-center-atom-purple .pace-activity {
7133
  border-color: #6f42c1;
7134
}
7135

7136
.pace-center-atom-purple .pace-activity::after, .pace-center-atom-purple .pace-activity::before {
7137
  border-color: #6f42c1;
7138
}
7139

7140
.pace-center-circle-purple .pace .pace-progress {
7141
  background: rgba(111, 66, 193, 0.8);
7142
  color: #fff;
7143
}
7144

7145
.pace-center-radar-purple .pace .pace-activity {
7146
  border-color: #6f42c1 transparent transparent;
7147
}
7148

7149
.pace-center-radar-purple .pace .pace-activity::before {
7150
  border-color: #6f42c1 transparent transparent;
7151
}
7152

7153
.pace-center-simple-purple .pace {
7154
  background: #fff;
7155
  border-color: #6f42c1;
7156
}
7157

7158
.pace-center-simple-purple .pace .pace-progress {
7159
  background: #6f42c1;
7160
}
7161

7162
.pace-material-purple .pace {
7163
  color: #6f42c1;
7164
}
7165

7166
.pace-corner-indicator-purple .pace .pace-activity {
7167
  background: #6f42c1;
7168
}
7169

7170
.pace-corner-indicator-purple .pace .pace-activity::after,
7171
.pace-corner-indicator-purple .pace .pace-activity::before {
7172
  border: 5px solid #fff;
7173
}
7174

7175
.pace-corner-indicator-purple .pace .pace-activity::before {
7176
  border-right-color: rgba(111, 66, 193, 0.2);
7177
  border-left-color: rgba(111, 66, 193, 0.2);
7178
}
7179

7180
.pace-corner-indicator-purple .pace .pace-activity::after {
7181
  border-top-color: rgba(111, 66, 193, 0.2);
7182
  border-bottom-color: rgba(111, 66, 193, 0.2);
7183
}
7184

7185
.pace-fill-left-purple .pace .pace-progress {
7186
  background-color: rgba(111, 66, 193, 0.2);
7187
}
7188

7189
.pace-flash-purple .pace .pace-progress {
7190
  background: #6f42c1;
7191
}
7192

7193
.pace-flash-purple .pace .pace-progress-inner {
7194
  box-shadow: 0 0 10px #6f42c1, 0 0 5px #6f42c1;
7195
}
7196

7197
.pace-flash-purple .pace .pace-activity {
7198
  border-top-color: #6f42c1;
7199
  border-left-color: #6f42c1;
7200
}
7201

7202
.pace-loading-bar-purple .pace .pace-progress {
7203
  background: #6f42c1;
7204
  color: #6f42c1;
7205
  box-shadow: 120px 0 #fff, 240px 0 #fff;
7206
}
7207

7208
.pace-loading-bar-purple .pace .pace-activity {
7209
  box-shadow: inset 0 0 0 2px #6f42c1, inset 0 0 0 7px #fff;
7210
}
7211

7212
.pace-mac-osx-purple .pace .pace-progress {
7213
  background-color: #6f42c1;
7214
  box-shadow: inset -1px 0 #6f42c1, inset 0 -1px #6f42c1, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
7215
}
7216

7217
.pace-mac-osx-purple .pace .pace-activity {
7218
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
7219
  height: 12px;
7220
}
7221

7222
.pace-progress-color-purple .pace-progress {
7223
  color: #6f42c1;
7224
}
7225

7226
.pace-pink .pace .pace-progress {
7227
  background: #e83e8c;
7228
}
7229

7230
.pace-barber-shop-pink .pace {
7231
  background: #fff;
7232
}
7233

7234
.pace-barber-shop-pink .pace .pace-progress {
7235
  background: #e83e8c;
7236
}
7237

7238
.pace-barber-shop-pink .pace .pace-activity {
7239
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
7240
}
7241

7242
.pace-big-counter-pink .pace .pace-progress::after {
7243
  color: rgba(232, 62, 140, 0.2);
7244
}
7245

7246
.pace-bounce-pink .pace .pace-activity {
7247
  background: #e83e8c;
7248
}
7249

7250
.pace-center-atom-pink .pace-progress {
7251
  height: 100px;
7252
  width: 80px;
7253
}
7254

7255
.pace-center-atom-pink .pace-progress::before {
7256
  background: #e83e8c;
7257
  color: #fff;
7258
  font-size: .8rem;
7259
  line-height: .7rem;
7260
  padding-top: 17%;
7261
}
7262

7263
.pace-center-atom-pink .pace-activity {
7264
  border-color: #e83e8c;
7265
}
7266

7267
.pace-center-atom-pink .pace-activity::after, .pace-center-atom-pink .pace-activity::before {
7268
  border-color: #e83e8c;
7269
}
7270

7271
.pace-center-circle-pink .pace .pace-progress {
7272
  background: rgba(232, 62, 140, 0.8);
7273
  color: #fff;
7274
}
7275

7276
.pace-center-radar-pink .pace .pace-activity {
7277
  border-color: #e83e8c transparent transparent;
7278
}
7279

7280
.pace-center-radar-pink .pace .pace-activity::before {
7281
  border-color: #e83e8c transparent transparent;
7282
}
7283

7284
.pace-center-simple-pink .pace {
7285
  background: #fff;
7286
  border-color: #e83e8c;
7287
}
7288

7289
.pace-center-simple-pink .pace .pace-progress {
7290
  background: #e83e8c;
7291
}
7292

7293
.pace-material-pink .pace {
7294
  color: #e83e8c;
7295
}
7296

7297
.pace-corner-indicator-pink .pace .pace-activity {
7298
  background: #e83e8c;
7299
}
7300

7301
.pace-corner-indicator-pink .pace .pace-activity::after,
7302
.pace-corner-indicator-pink .pace .pace-activity::before {
7303
  border: 5px solid #fff;
7304
}
7305

7306
.pace-corner-indicator-pink .pace .pace-activity::before {
7307
  border-right-color: rgba(232, 62, 140, 0.2);
7308
  border-left-color: rgba(232, 62, 140, 0.2);
7309
}
7310

7311
.pace-corner-indicator-pink .pace .pace-activity::after {
7312
  border-top-color: rgba(232, 62, 140, 0.2);
7313
  border-bottom-color: rgba(232, 62, 140, 0.2);
7314
}
7315

7316
.pace-fill-left-pink .pace .pace-progress {
7317
  background-color: rgba(232, 62, 140, 0.2);
7318
}
7319

7320
.pace-flash-pink .pace .pace-progress {
7321
  background: #e83e8c;
7322
}
7323

7324
.pace-flash-pink .pace .pace-progress-inner {
7325
  box-shadow: 0 0 10px #e83e8c, 0 0 5px #e83e8c;
7326
}
7327

7328
.pace-flash-pink .pace .pace-activity {
7329
  border-top-color: #e83e8c;
7330
  border-left-color: #e83e8c;
7331
}
7332

7333
.pace-loading-bar-pink .pace .pace-progress {
7334
  background: #e83e8c;
7335
  color: #e83e8c;
7336
  box-shadow: 120px 0 #fff, 240px 0 #fff;
7337
}
7338

7339
.pace-loading-bar-pink .pace .pace-activity {
7340
  box-shadow: inset 0 0 0 2px #e83e8c, inset 0 0 0 7px #fff;
7341
}
7342

7343
.pace-mac-osx-pink .pace .pace-progress {
7344
  background-color: #e83e8c;
7345
  box-shadow: inset -1px 0 #e83e8c, inset 0 -1px #e83e8c, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
7346
}
7347

7348
.pace-mac-osx-pink .pace .pace-activity {
7349
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
7350
  height: 12px;
7351
}
7352

7353
.pace-progress-color-pink .pace-progress {
7354
  color: #e83e8c;
7355
}
7356

7357
.pace-red .pace .pace-progress {
7358
  background: #dc3545;
7359
}
7360

7361
.pace-barber-shop-red .pace {
7362
  background: #fff;
7363
}
7364

7365
.pace-barber-shop-red .pace .pace-progress {
7366
  background: #dc3545;
7367
}
7368

7369
.pace-barber-shop-red .pace .pace-activity {
7370
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
7371
}
7372

7373
.pace-big-counter-red .pace .pace-progress::after {
7374
  color: rgba(220, 53, 69, 0.2);
7375
}
7376

7377
.pace-bounce-red .pace .pace-activity {
7378
  background: #dc3545;
7379
}
7380

7381
.pace-center-atom-red .pace-progress {
7382
  height: 100px;
7383
  width: 80px;
7384
}
7385

7386
.pace-center-atom-red .pace-progress::before {
7387
  background: #dc3545;
7388
  color: #fff;
7389
  font-size: .8rem;
7390
  line-height: .7rem;
7391
  padding-top: 17%;
7392
}
7393

7394
.pace-center-atom-red .pace-activity {
7395
  border-color: #dc3545;
7396
}
7397

7398
.pace-center-atom-red .pace-activity::after, .pace-center-atom-red .pace-activity::before {
7399
  border-color: #dc3545;
7400
}
7401

7402
.pace-center-circle-red .pace .pace-progress {
7403
  background: rgba(220, 53, 69, 0.8);
7404
  color: #fff;
7405
}
7406

7407
.pace-center-radar-red .pace .pace-activity {
7408
  border-color: #dc3545 transparent transparent;
7409
}
7410

7411
.pace-center-radar-red .pace .pace-activity::before {
7412
  border-color: #dc3545 transparent transparent;
7413
}
7414

7415
.pace-center-simple-red .pace {
7416
  background: #fff;
7417
  border-color: #dc3545;
7418
}
7419

7420
.pace-center-simple-red .pace .pace-progress {
7421
  background: #dc3545;
7422
}
7423

7424
.pace-material-red .pace {
7425
  color: #dc3545;
7426
}
7427

7428
.pace-corner-indicator-red .pace .pace-activity {
7429
  background: #dc3545;
7430
}
7431

7432
.pace-corner-indicator-red .pace .pace-activity::after,
7433
.pace-corner-indicator-red .pace .pace-activity::before {
7434
  border: 5px solid #fff;
7435
}
7436

7437
.pace-corner-indicator-red .pace .pace-activity::before {
7438
  border-right-color: rgba(220, 53, 69, 0.2);
7439
  border-left-color: rgba(220, 53, 69, 0.2);
7440
}
7441

7442
.pace-corner-indicator-red .pace .pace-activity::after {
7443
  border-top-color: rgba(220, 53, 69, 0.2);
7444
  border-bottom-color: rgba(220, 53, 69, 0.2);
7445
}
7446

7447
.pace-fill-left-red .pace .pace-progress {
7448
  background-color: rgba(220, 53, 69, 0.2);
7449
}
7450

7451
.pace-flash-red .pace .pace-progress {
7452
  background: #dc3545;
7453
}
7454

7455
.pace-flash-red .pace .pace-progress-inner {
7456
  box-shadow: 0 0 10px #dc3545, 0 0 5px #dc3545;
7457
}
7458

7459
.pace-flash-red .pace .pace-activity {
7460
  border-top-color: #dc3545;
7461
  border-left-color: #dc3545;
7462
}
7463

7464
.pace-loading-bar-red .pace .pace-progress {
7465
  background: #dc3545;
7466
  color: #dc3545;
7467
  box-shadow: 120px 0 #fff, 240px 0 #fff;
7468
}
7469

7470
.pace-loading-bar-red .pace .pace-activity {
7471
  box-shadow: inset 0 0 0 2px #dc3545, inset 0 0 0 7px #fff;
7472
}
7473

7474
.pace-mac-osx-red .pace .pace-progress {
7475
  background-color: #dc3545;
7476
  box-shadow: inset -1px 0 #dc3545, inset 0 -1px #dc3545, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
7477
}
7478

7479
.pace-mac-osx-red .pace .pace-activity {
7480
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
7481
  height: 12px;
7482
}
7483

7484
.pace-progress-color-red .pace-progress {
7485
  color: #dc3545;
7486
}
7487

7488
.pace-orange .pace .pace-progress {
7489
  background: #fd7e14;
7490
}
7491

7492
.pace-barber-shop-orange .pace {
7493
  background: #1f2d3d;
7494
}
7495

7496
.pace-barber-shop-orange .pace .pace-progress {
7497
  background: #fd7e14;
7498
}
7499

7500
.pace-barber-shop-orange .pace .pace-activity {
7501
  background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
7502
}
7503

7504
.pace-big-counter-orange .pace .pace-progress::after {
7505
  color: rgba(253, 126, 20, 0.2);
7506
}
7507

7508
.pace-bounce-orange .pace .pace-activity {
7509
  background: #fd7e14;
7510
}
7511

7512
.pace-center-atom-orange .pace-progress {
7513
  height: 100px;
7514
  width: 80px;
7515
}
7516

7517
.pace-center-atom-orange .pace-progress::before {
7518
  background: #fd7e14;
7519
  color: #1f2d3d;
7520
  font-size: .8rem;
7521
  line-height: .7rem;
7522
  padding-top: 17%;
7523
}
7524

7525
.pace-center-atom-orange .pace-activity {
7526
  border-color: #fd7e14;
7527
}
7528

7529
.pace-center-atom-orange .pace-activity::after, .pace-center-atom-orange .pace-activity::before {
7530
  border-color: #fd7e14;
7531
}
7532

7533
.pace-center-circle-orange .pace .pace-progress {
7534
  background: rgba(253, 126, 20, 0.8);
7535
  color: #1f2d3d;
7536
}
7537

7538
.pace-center-radar-orange .pace .pace-activity {
7539
  border-color: #fd7e14 transparent transparent;
7540
}
7541

7542
.pace-center-radar-orange .pace .pace-activity::before {
7543
  border-color: #fd7e14 transparent transparent;
7544
}
7545

7546
.pace-center-simple-orange .pace {
7547
  background: #1f2d3d;
7548
  border-color: #fd7e14;
7549
}
7550

7551
.pace-center-simple-orange .pace .pace-progress {
7552
  background: #fd7e14;
7553
}
7554

7555
.pace-material-orange .pace {
7556
  color: #fd7e14;
7557
}
7558

7559
.pace-corner-indicator-orange .pace .pace-activity {
7560
  background: #fd7e14;
7561
}
7562

7563
.pace-corner-indicator-orange .pace .pace-activity::after,
7564
.pace-corner-indicator-orange .pace .pace-activity::before {
7565
  border: 5px solid #1f2d3d;
7566
}
7567

7568
.pace-corner-indicator-orange .pace .pace-activity::before {
7569
  border-right-color: rgba(253, 126, 20, 0.2);
7570
  border-left-color: rgba(253, 126, 20, 0.2);
7571
}
7572

7573
.pace-corner-indicator-orange .pace .pace-activity::after {
7574
  border-top-color: rgba(253, 126, 20, 0.2);
7575
  border-bottom-color: rgba(253, 126, 20, 0.2);
7576
}
7577

7578
.pace-fill-left-orange .pace .pace-progress {
7579
  background-color: rgba(253, 126, 20, 0.2);
7580
}
7581

7582
.pace-flash-orange .pace .pace-progress {
7583
  background: #fd7e14;
7584
}
7585

7586
.pace-flash-orange .pace .pace-progress-inner {
7587
  box-shadow: 0 0 10px #fd7e14, 0 0 5px #fd7e14;
7588
}
7589

7590
.pace-flash-orange .pace .pace-activity {
7591
  border-top-color: #fd7e14;
7592
  border-left-color: #fd7e14;
7593
}
7594

7595
.pace-loading-bar-orange .pace .pace-progress {
7596
  background: #fd7e14;
7597
  color: #fd7e14;
7598
  box-shadow: 120px 0 #1f2d3d, 240px 0 #1f2d3d;
7599
}
7600

7601
.pace-loading-bar-orange .pace .pace-activity {
7602
  box-shadow: inset 0 0 0 2px #fd7e14, inset 0 0 0 7px #1f2d3d;
7603
}
7604

7605
.pace-mac-osx-orange .pace .pace-progress {
7606
  background-color: #fd7e14;
7607
  box-shadow: inset -1px 0 #fd7e14, inset 0 -1px #fd7e14, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
7608
}
7609

7610
.pace-mac-osx-orange .pace .pace-activity {
7611
  background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
7612
  height: 12px;
7613
}
7614

7615
.pace-progress-color-orange .pace-progress {
7616
  color: #fd7e14;
7617
}
7618

7619
.pace-yellow .pace .pace-progress {
7620
  background: #ffc107;
7621
}
7622

7623
.pace-barber-shop-yellow .pace {
7624
  background: #1f2d3d;
7625
}
7626

7627
.pace-barber-shop-yellow .pace .pace-progress {
7628
  background: #ffc107;
7629
}
7630

7631
.pace-barber-shop-yellow .pace .pace-activity {
7632
  background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
7633
}
7634

7635
.pace-big-counter-yellow .pace .pace-progress::after {
7636
  color: rgba(255, 193, 7, 0.2);
7637
}
7638

7639
.pace-bounce-yellow .pace .pace-activity {
7640
  background: #ffc107;
7641
}
7642

7643
.pace-center-atom-yellow .pace-progress {
7644
  height: 100px;
7645
  width: 80px;
7646
}
7647

7648
.pace-center-atom-yellow .pace-progress::before {
7649
  background: #ffc107;
7650
  color: #1f2d3d;
7651
  font-size: .8rem;
7652
  line-height: .7rem;
7653
  padding-top: 17%;
7654
}
7655

7656
.pace-center-atom-yellow .pace-activity {
7657
  border-color: #ffc107;
7658
}
7659

7660
.pace-center-atom-yellow .pace-activity::after, .pace-center-atom-yellow .pace-activity::before {
7661
  border-color: #ffc107;
7662
}
7663

7664
.pace-center-circle-yellow .pace .pace-progress {
7665
  background: rgba(255, 193, 7, 0.8);
7666
  color: #1f2d3d;
7667
}
7668

7669
.pace-center-radar-yellow .pace .pace-activity {
7670
  border-color: #ffc107 transparent transparent;
7671
}
7672

7673
.pace-center-radar-yellow .pace .pace-activity::before {
7674
  border-color: #ffc107 transparent transparent;
7675
}
7676

7677
.pace-center-simple-yellow .pace {
7678
  background: #1f2d3d;
7679
  border-color: #ffc107;
7680
}
7681

7682
.pace-center-simple-yellow .pace .pace-progress {
7683
  background: #ffc107;
7684
}
7685

7686
.pace-material-yellow .pace {
7687
  color: #ffc107;
7688
}
7689

7690
.pace-corner-indicator-yellow .pace .pace-activity {
7691
  background: #ffc107;
7692
}
7693

7694
.pace-corner-indicator-yellow .pace .pace-activity::after,
7695
.pace-corner-indicator-yellow .pace .pace-activity::before {
7696
  border: 5px solid #1f2d3d;
7697
}
7698

7699
.pace-corner-indicator-yellow .pace .pace-activity::before {
7700
  border-right-color: rgba(255, 193, 7, 0.2);
7701
  border-left-color: rgba(255, 193, 7, 0.2);
7702
}
7703

7704
.pace-corner-indicator-yellow .pace .pace-activity::after {
7705
  border-top-color: rgba(255, 193, 7, 0.2);
7706
  border-bottom-color: rgba(255, 193, 7, 0.2);
7707
}
7708

7709
.pace-fill-left-yellow .pace .pace-progress {
7710
  background-color: rgba(255, 193, 7, 0.2);
7711
}
7712

7713
.pace-flash-yellow .pace .pace-progress {
7714
  background: #ffc107;
7715
}
7716

7717
.pace-flash-yellow .pace .pace-progress-inner {
7718
  box-shadow: 0 0 10px #ffc107, 0 0 5px #ffc107;
7719
}
7720

7721
.pace-flash-yellow .pace .pace-activity {
7722
  border-top-color: #ffc107;
7723
  border-left-color: #ffc107;
7724
}
7725

7726
.pace-loading-bar-yellow .pace .pace-progress {
7727
  background: #ffc107;
7728
  color: #ffc107;
7729
  box-shadow: 120px 0 #1f2d3d, 240px 0 #1f2d3d;
7730
}
7731

7732
.pace-loading-bar-yellow .pace .pace-activity {
7733
  box-shadow: inset 0 0 0 2px #ffc107, inset 0 0 0 7px #1f2d3d;
7734
}
7735

7736
.pace-mac-osx-yellow .pace .pace-progress {
7737
  background-color: #ffc107;
7738
  box-shadow: inset -1px 0 #ffc107, inset 0 -1px #ffc107, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
7739
}
7740

7741
.pace-mac-osx-yellow .pace .pace-activity {
7742
  background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
7743
  height: 12px;
7744
}
7745

7746
.pace-progress-color-yellow .pace-progress {
7747
  color: #ffc107;
7748
}
7749

7750
.pace-green .pace .pace-progress {
7751
  background: #28a745;
7752
}
7753

7754
.pace-barber-shop-green .pace {
7755
  background: #fff;
7756
}
7757

7758
.pace-barber-shop-green .pace .pace-progress {
7759
  background: #28a745;
7760
}
7761

7762
.pace-barber-shop-green .pace .pace-activity {
7763
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
7764
}
7765

7766
.pace-big-counter-green .pace .pace-progress::after {
7767
  color: rgba(40, 167, 69, 0.2);
7768
}
7769

7770
.pace-bounce-green .pace .pace-activity {
7771
  background: #28a745;
7772
}
7773

7774
.pace-center-atom-green .pace-progress {
7775
  height: 100px;
7776
  width: 80px;
7777
}
7778

7779
.pace-center-atom-green .pace-progress::before {
7780
  background: #28a745;
7781
  color: #fff;
7782
  font-size: .8rem;
7783
  line-height: .7rem;
7784
  padding-top: 17%;
7785
}
7786

7787
.pace-center-atom-green .pace-activity {
7788
  border-color: #28a745;
7789
}
7790

7791
.pace-center-atom-green .pace-activity::after, .pace-center-atom-green .pace-activity::before {
7792
  border-color: #28a745;
7793
}
7794

7795
.pace-center-circle-green .pace .pace-progress {
7796
  background: rgba(40, 167, 69, 0.8);
7797
  color: #fff;
7798
}
7799

7800
.pace-center-radar-green .pace .pace-activity {
7801
  border-color: #28a745 transparent transparent;
7802
}
7803

7804
.pace-center-radar-green .pace .pace-activity::before {
7805
  border-color: #28a745 transparent transparent;
7806
}
7807

7808
.pace-center-simple-green .pace {
7809
  background: #fff;
7810
  border-color: #28a745;
7811
}
7812

7813
.pace-center-simple-green .pace .pace-progress {
7814
  background: #28a745;
7815
}
7816

7817
.pace-material-green .pace {
7818
  color: #28a745;
7819
}
7820

7821
.pace-corner-indicator-green .pace .pace-activity {
7822
  background: #28a745;
7823
}
7824

7825
.pace-corner-indicator-green .pace .pace-activity::after,
7826
.pace-corner-indicator-green .pace .pace-activity::before {
7827
  border: 5px solid #fff;
7828
}
7829

7830
.pace-corner-indicator-green .pace .pace-activity::before {
7831
  border-right-color: rgba(40, 167, 69, 0.2);
7832
  border-left-color: rgba(40, 167, 69, 0.2);
7833
}
7834

7835
.pace-corner-indicator-green .pace .pace-activity::after {
7836
  border-top-color: rgba(40, 167, 69, 0.2);
7837
  border-bottom-color: rgba(40, 167, 69, 0.2);
7838
}
7839

7840
.pace-fill-left-green .pace .pace-progress {
7841
  background-color: rgba(40, 167, 69, 0.2);
7842
}
7843

7844
.pace-flash-green .pace .pace-progress {
7845
  background: #28a745;
7846
}
7847

7848
.pace-flash-green .pace .pace-progress-inner {
7849
  box-shadow: 0 0 10px #28a745, 0 0 5px #28a745;
7850
}
7851

7852
.pace-flash-green .pace .pace-activity {
7853
  border-top-color: #28a745;
7854
  border-left-color: #28a745;
7855
}
7856

7857
.pace-loading-bar-green .pace .pace-progress {
7858
  background: #28a745;
7859
  color: #28a745;
7860
  box-shadow: 120px 0 #fff, 240px 0 #fff;
7861
}
7862

7863
.pace-loading-bar-green .pace .pace-activity {
7864
  box-shadow: inset 0 0 0 2px #28a745, inset 0 0 0 7px #fff;
7865
}
7866

7867
.pace-mac-osx-green .pace .pace-progress {
7868
  background-color: #28a745;
7869
  box-shadow: inset -1px 0 #28a745, inset 0 -1px #28a745, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
7870
}
7871

7872
.pace-mac-osx-green .pace .pace-activity {
7873
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
7874
  height: 12px;
7875
}
7876

7877
.pace-progress-color-green .pace-progress {
7878
  color: #28a745;
7879
}
7880

7881
.pace-teal .pace .pace-progress {
7882
  background: #20c997;
7883
}
7884

7885
.pace-barber-shop-teal .pace {
7886
  background: #fff;
7887
}
7888

7889
.pace-barber-shop-teal .pace .pace-progress {
7890
  background: #20c997;
7891
}
7892

7893
.pace-barber-shop-teal .pace .pace-activity {
7894
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
7895
}
7896

7897
.pace-big-counter-teal .pace .pace-progress::after {
7898
  color: rgba(32, 201, 151, 0.2);
7899
}
7900

7901
.pace-bounce-teal .pace .pace-activity {
7902
  background: #20c997;
7903
}
7904

7905
.pace-center-atom-teal .pace-progress {
7906
  height: 100px;
7907
  width: 80px;
7908
}
7909

7910
.pace-center-atom-teal .pace-progress::before {
7911
  background: #20c997;
7912
  color: #fff;
7913
  font-size: .8rem;
7914
  line-height: .7rem;
7915
  padding-top: 17%;
7916
}
7917

7918
.pace-center-atom-teal .pace-activity {
7919
  border-color: #20c997;
7920
}
7921

7922
.pace-center-atom-teal .pace-activity::after, .pace-center-atom-teal .pace-activity::before {
7923
  border-color: #20c997;
7924
}
7925

7926
.pace-center-circle-teal .pace .pace-progress {
7927
  background: rgba(32, 201, 151, 0.8);
7928
  color: #fff;
7929
}
7930

7931
.pace-center-radar-teal .pace .pace-activity {
7932
  border-color: #20c997 transparent transparent;
7933
}
7934

7935
.pace-center-radar-teal .pace .pace-activity::before {
7936
  border-color: #20c997 transparent transparent;
7937
}
7938

7939
.pace-center-simple-teal .pace {
7940
  background: #fff;
7941
  border-color: #20c997;
7942
}
7943

7944
.pace-center-simple-teal .pace .pace-progress {
7945
  background: #20c997;
7946
}
7947

7948
.pace-material-teal .pace {
7949
  color: #20c997;
7950
}
7951

7952
.pace-corner-indicator-teal .pace .pace-activity {
7953
  background: #20c997;
7954
}
7955

7956
.pace-corner-indicator-teal .pace .pace-activity::after,
7957
.pace-corner-indicator-teal .pace .pace-activity::before {
7958
  border: 5px solid #fff;
7959
}
7960

7961
.pace-corner-indicator-teal .pace .pace-activity::before {
7962
  border-right-color: rgba(32, 201, 151, 0.2);
7963
  border-left-color: rgba(32, 201, 151, 0.2);
7964
}
7965

7966
.pace-corner-indicator-teal .pace .pace-activity::after {
7967
  border-top-color: rgba(32, 201, 151, 0.2);
7968
  border-bottom-color: rgba(32, 201, 151, 0.2);
7969
}
7970

7971
.pace-fill-left-teal .pace .pace-progress {
7972
  background-color: rgba(32, 201, 151, 0.2);
7973
}
7974

7975
.pace-flash-teal .pace .pace-progress {
7976
  background: #20c997;
7977
}
7978

7979
.pace-flash-teal .pace .pace-progress-inner {
7980
  box-shadow: 0 0 10px #20c997, 0 0 5px #20c997;
7981
}
7982

7983
.pace-flash-teal .pace .pace-activity {
7984
  border-top-color: #20c997;
7985
  border-left-color: #20c997;
7986
}
7987

7988
.pace-loading-bar-teal .pace .pace-progress {
7989
  background: #20c997;
7990
  color: #20c997;
7991
  box-shadow: 120px 0 #fff, 240px 0 #fff;
7992
}
7993

7994
.pace-loading-bar-teal .pace .pace-activity {
7995
  box-shadow: inset 0 0 0 2px #20c997, inset 0 0 0 7px #fff;
7996
}
7997

7998
.pace-mac-osx-teal .pace .pace-progress {
7999
  background-color: #20c997;
8000
  box-shadow: inset -1px 0 #20c997, inset 0 -1px #20c997, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
8001
}
8002

8003
.pace-mac-osx-teal .pace .pace-activity {
8004
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
8005
  height: 12px;
8006
}
8007

8008
.pace-progress-color-teal .pace-progress {
8009
  color: #20c997;
8010
}
8011

8012
.pace-cyan .pace .pace-progress {
8013
  background: #17a2b8;
8014
}
8015

8016
.pace-barber-shop-cyan .pace {
8017
  background: #fff;
8018
}
8019

8020
.pace-barber-shop-cyan .pace .pace-progress {
8021
  background: #17a2b8;
8022
}
8023

8024
.pace-barber-shop-cyan .pace .pace-activity {
8025
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
8026
}
8027

8028
.pace-big-counter-cyan .pace .pace-progress::after {
8029
  color: rgba(23, 162, 184, 0.2);
8030
}
8031

8032
.pace-bounce-cyan .pace .pace-activity {
8033
  background: #17a2b8;
8034
}
8035

8036
.pace-center-atom-cyan .pace-progress {
8037
  height: 100px;
8038
  width: 80px;
8039
}
8040

8041
.pace-center-atom-cyan .pace-progress::before {
8042
  background: #17a2b8;
8043
  color: #fff;
8044
  font-size: .8rem;
8045
  line-height: .7rem;
8046
  padding-top: 17%;
8047
}
8048

8049
.pace-center-atom-cyan .pace-activity {
8050
  border-color: #17a2b8;
8051
}
8052

8053
.pace-center-atom-cyan .pace-activity::after, .pace-center-atom-cyan .pace-activity::before {
8054
  border-color: #17a2b8;
8055
}
8056

8057
.pace-center-circle-cyan .pace .pace-progress {
8058
  background: rgba(23, 162, 184, 0.8);
8059
  color: #fff;
8060
}
8061

8062
.pace-center-radar-cyan .pace .pace-activity {
8063
  border-color: #17a2b8 transparent transparent;
8064
}
8065

8066
.pace-center-radar-cyan .pace .pace-activity::before {
8067
  border-color: #17a2b8 transparent transparent;
8068
}
8069

8070
.pace-center-simple-cyan .pace {
8071
  background: #fff;
8072
  border-color: #17a2b8;
8073
}
8074

8075
.pace-center-simple-cyan .pace .pace-progress {
8076
  background: #17a2b8;
8077
}
8078

8079
.pace-material-cyan .pace {
8080
  color: #17a2b8;
8081
}
8082

8083
.pace-corner-indicator-cyan .pace .pace-activity {
8084
  background: #17a2b8;
8085
}
8086

8087
.pace-corner-indicator-cyan .pace .pace-activity::after,
8088
.pace-corner-indicator-cyan .pace .pace-activity::before {
8089
  border: 5px solid #fff;
8090
}
8091

8092
.pace-corner-indicator-cyan .pace .pace-activity::before {
8093
  border-right-color: rgba(23, 162, 184, 0.2);
8094
  border-left-color: rgba(23, 162, 184, 0.2);
8095
}
8096

8097
.pace-corner-indicator-cyan .pace .pace-activity::after {
8098
  border-top-color: rgba(23, 162, 184, 0.2);
8099
  border-bottom-color: rgba(23, 162, 184, 0.2);
8100
}
8101

8102
.pace-fill-left-cyan .pace .pace-progress {
8103
  background-color: rgba(23, 162, 184, 0.2);
8104
}
8105

8106
.pace-flash-cyan .pace .pace-progress {
8107
  background: #17a2b8;
8108
}
8109

8110
.pace-flash-cyan .pace .pace-progress-inner {
8111
  box-shadow: 0 0 10px #17a2b8, 0 0 5px #17a2b8;
8112
}
8113

8114
.pace-flash-cyan .pace .pace-activity {
8115
  border-top-color: #17a2b8;
8116
  border-left-color: #17a2b8;
8117
}
8118

8119
.pace-loading-bar-cyan .pace .pace-progress {
8120
  background: #17a2b8;
8121
  color: #17a2b8;
8122
  box-shadow: 120px 0 #fff, 240px 0 #fff;
8123
}
8124

8125
.pace-loading-bar-cyan .pace .pace-activity {
8126
  box-shadow: inset 0 0 0 2px #17a2b8, inset 0 0 0 7px #fff;
8127
}
8128

8129
.pace-mac-osx-cyan .pace .pace-progress {
8130
  background-color: #17a2b8;
8131
  box-shadow: inset -1px 0 #17a2b8, inset 0 -1px #17a2b8, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
8132
}
8133

8134
.pace-mac-osx-cyan .pace .pace-activity {
8135
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
8136
  height: 12px;
8137
}
8138

8139
.pace-progress-color-cyan .pace-progress {
8140
  color: #17a2b8;
8141
}
8142

8143
.pace-white .pace .pace-progress {
8144
  background: #fff;
8145
}
8146

8147
.pace-barber-shop-white .pace {
8148
  background: #1f2d3d;
8149
}
8150

8151
.pace-barber-shop-white .pace .pace-progress {
8152
  background: #fff;
8153
}
8154

8155
.pace-barber-shop-white .pace .pace-activity {
8156
  background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
8157
}
8158

8159
.pace-big-counter-white .pace .pace-progress::after {
8160
  color: rgba(255, 255, 255, 0.2);
8161
}
8162

8163
.pace-bounce-white .pace .pace-activity {
8164
  background: #fff;
8165
}
8166

8167
.pace-center-atom-white .pace-progress {
8168
  height: 100px;
8169
  width: 80px;
8170
}
8171

8172
.pace-center-atom-white .pace-progress::before {
8173
  background: #fff;
8174
  color: #1f2d3d;
8175
  font-size: .8rem;
8176
  line-height: .7rem;
8177
  padding-top: 17%;
8178
}
8179

8180
.pace-center-atom-white .pace-activity {
8181
  border-color: #fff;
8182
}
8183

8184
.pace-center-atom-white .pace-activity::after, .pace-center-atom-white .pace-activity::before {
8185
  border-color: #fff;
8186
}
8187

8188
.pace-center-circle-white .pace .pace-progress {
8189
  background: rgba(255, 255, 255, 0.8);
8190
  color: #1f2d3d;
8191
}
8192

8193
.pace-center-radar-white .pace .pace-activity {
8194
  border-color: #fff transparent transparent;
8195
}
8196

8197
.pace-center-radar-white .pace .pace-activity::before {
8198
  border-color: #fff transparent transparent;
8199
}
8200

8201
.pace-center-simple-white .pace {
8202
  background: #1f2d3d;
8203
  border-color: #fff;
8204
}
8205

8206
.pace-center-simple-white .pace .pace-progress {
8207
  background: #fff;
8208
}
8209

8210
.pace-material-white .pace {
8211
  color: #fff;
8212
}
8213

8214
.pace-corner-indicator-white .pace .pace-activity {
8215
  background: #fff;
8216
}
8217

8218
.pace-corner-indicator-white .pace .pace-activity::after,
8219
.pace-corner-indicator-white .pace .pace-activity::before {
8220
  border: 5px solid #1f2d3d;
8221
}
8222

8223
.pace-corner-indicator-white .pace .pace-activity::before {
8224
  border-right-color: rgba(255, 255, 255, 0.2);
8225
  border-left-color: rgba(255, 255, 255, 0.2);
8226
}
8227

8228
.pace-corner-indicator-white .pace .pace-activity::after {
8229
  border-top-color: rgba(255, 255, 255, 0.2);
8230
  border-bottom-color: rgba(255, 255, 255, 0.2);
8231
}
8232

8233
.pace-fill-left-white .pace .pace-progress {
8234
  background-color: rgba(255, 255, 255, 0.2);
8235
}
8236

8237
.pace-flash-white .pace .pace-progress {
8238
  background: #fff;
8239
}
8240

8241
.pace-flash-white .pace .pace-progress-inner {
8242
  box-shadow: 0 0 10px #fff, 0 0 5px #fff;
8243
}
8244

8245
.pace-flash-white .pace .pace-activity {
8246
  border-top-color: #fff;
8247
  border-left-color: #fff;
8248
}
8249

8250
.pace-loading-bar-white .pace .pace-progress {
8251
  background: #fff;
8252
  color: #fff;
8253
  box-shadow: 120px 0 #1f2d3d, 240px 0 #1f2d3d;
8254
}
8255

8256
.pace-loading-bar-white .pace .pace-activity {
8257
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 7px #1f2d3d;
8258
}
8259

8260
.pace-mac-osx-white .pace .pace-progress {
8261
  background-color: #fff;
8262
  box-shadow: inset -1px 0 #fff, inset 0 -1px #fff, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
8263
}
8264

8265
.pace-mac-osx-white .pace .pace-activity {
8266
  background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
8267
  height: 12px;
8268
}
8269

8270
.pace-progress-color-white .pace-progress {
8271
  color: #fff;
8272
}
8273

8274
.pace-gray .pace .pace-progress {
8275
  background: #6c757d;
8276
}
8277

8278
.pace-barber-shop-gray .pace {
8279
  background: #fff;
8280
}
8281

8282
.pace-barber-shop-gray .pace .pace-progress {
8283
  background: #6c757d;
8284
}
8285

8286
.pace-barber-shop-gray .pace .pace-activity {
8287
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
8288
}
8289

8290
.pace-big-counter-gray .pace .pace-progress::after {
8291
  color: rgba(108, 117, 125, 0.2);
8292
}
8293

8294
.pace-bounce-gray .pace .pace-activity {
8295
  background: #6c757d;
8296
}
8297

8298
.pace-center-atom-gray .pace-progress {
8299
  height: 100px;
8300
  width: 80px;
8301
}
8302

8303
.pace-center-atom-gray .pace-progress::before {
8304
  background: #6c757d;
8305
  color: #fff;
8306
  font-size: .8rem;
8307
  line-height: .7rem;
8308
  padding-top: 17%;
8309
}
8310

8311
.pace-center-atom-gray .pace-activity {
8312
  border-color: #6c757d;
8313
}
8314

8315
.pace-center-atom-gray .pace-activity::after, .pace-center-atom-gray .pace-activity::before {
8316
  border-color: #6c757d;
8317
}
8318

8319
.pace-center-circle-gray .pace .pace-progress {
8320
  background: rgba(108, 117, 125, 0.8);
8321
  color: #fff;
8322
}
8323

8324
.pace-center-radar-gray .pace .pace-activity {
8325
  border-color: #6c757d transparent transparent;
8326
}
8327

8328
.pace-center-radar-gray .pace .pace-activity::before {
8329
  border-color: #6c757d transparent transparent;
8330
}
8331

8332
.pace-center-simple-gray .pace {
8333
  background: #fff;
8334
  border-color: #6c757d;
8335
}
8336

8337
.pace-center-simple-gray .pace .pace-progress {
8338
  background: #6c757d;
8339
}
8340

8341
.pace-material-gray .pace {
8342
  color: #6c757d;
8343
}
8344

8345
.pace-corner-indicator-gray .pace .pace-activity {
8346
  background: #6c757d;
8347
}
8348

8349
.pace-corner-indicator-gray .pace .pace-activity::after,
8350
.pace-corner-indicator-gray .pace .pace-activity::before {
8351
  border: 5px solid #fff;
8352
}
8353

8354
.pace-corner-indicator-gray .pace .pace-activity::before {
8355
  border-right-color: rgba(108, 117, 125, 0.2);
8356
  border-left-color: rgba(108, 117, 125, 0.2);
8357
}
8358

8359
.pace-corner-indicator-gray .pace .pace-activity::after {
8360
  border-top-color: rgba(108, 117, 125, 0.2);
8361
  border-bottom-color: rgba(108, 117, 125, 0.2);
8362
}
8363

8364
.pace-fill-left-gray .pace .pace-progress {
8365
  background-color: rgba(108, 117, 125, 0.2);
8366
}
8367

8368
.pace-flash-gray .pace .pace-progress {
8369
  background: #6c757d;
8370
}
8371

8372
.pace-flash-gray .pace .pace-progress-inner {
8373
  box-shadow: 0 0 10px #6c757d, 0 0 5px #6c757d;
8374
}
8375

8376
.pace-flash-gray .pace .pace-activity {
8377
  border-top-color: #6c757d;
8378
  border-left-color: #6c757d;
8379
}
8380

8381
.pace-loading-bar-gray .pace .pace-progress {
8382
  background: #6c757d;
8383
  color: #6c757d;
8384
  box-shadow: 120px 0 #fff, 240px 0 #fff;
8385
}
8386

8387
.pace-loading-bar-gray .pace .pace-activity {
8388
  box-shadow: inset 0 0 0 2px #6c757d, inset 0 0 0 7px #fff;
8389
}
8390

8391
.pace-mac-osx-gray .pace .pace-progress {
8392
  background-color: #6c757d;
8393
  box-shadow: inset -1px 0 #6c757d, inset 0 -1px #6c757d, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
8394
}
8395

8396
.pace-mac-osx-gray .pace .pace-activity {
8397
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
8398
  height: 12px;
8399
}
8400

8401
.pace-progress-color-gray .pace-progress {
8402
  color: #6c757d;
8403
}
8404

8405
.pace-gray-dark .pace .pace-progress {
8406
  background: #343a40;
8407
}
8408

8409
.pace-barber-shop-gray-dark .pace {
8410
  background: #fff;
8411
}
8412

8413
.pace-barber-shop-gray-dark .pace .pace-progress {
8414
  background: #343a40;
8415
}
8416

8417
.pace-barber-shop-gray-dark .pace .pace-activity {
8418
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
8419
}
8420

8421
.pace-big-counter-gray-dark .pace .pace-progress::after {
8422
  color: rgba(52, 58, 64, 0.2);
8423
}
8424

8425
.pace-bounce-gray-dark .pace .pace-activity {
8426
  background: #343a40;
8427
}
8428

8429
.pace-center-atom-gray-dark .pace-progress {
8430
  height: 100px;
8431
  width: 80px;
8432
}
8433

8434
.pace-center-atom-gray-dark .pace-progress::before {
8435
  background: #343a40;
8436
  color: #fff;
8437
  font-size: .8rem;
8438
  line-height: .7rem;
8439
  padding-top: 17%;
8440
}
8441

8442
.pace-center-atom-gray-dark .pace-activity {
8443
  border-color: #343a40;
8444
}
8445

8446
.pace-center-atom-gray-dark .pace-activity::after, .pace-center-atom-gray-dark .pace-activity::before {
8447
  border-color: #343a40;
8448
}
8449

8450
.pace-center-circle-gray-dark .pace .pace-progress {
8451
  background: rgba(52, 58, 64, 0.8);
8452
  color: #fff;
8453
}
8454

8455
.pace-center-radar-gray-dark .pace .pace-activity {
8456
  border-color: #343a40 transparent transparent;
8457
}
8458

8459
.pace-center-radar-gray-dark .pace .pace-activity::before {
8460
  border-color: #343a40 transparent transparent;
8461
}
8462

8463
.pace-center-simple-gray-dark .pace {
8464
  background: #fff;
8465
  border-color: #343a40;
8466
}
8467

8468
.pace-center-simple-gray-dark .pace .pace-progress {
8469
  background: #343a40;
8470
}
8471

8472
.pace-material-gray-dark .pace {
8473
  color: #343a40;
8474
}
8475

8476
.pace-corner-indicator-gray-dark .pace .pace-activity {
8477
  background: #343a40;
8478
}
8479

8480
.pace-corner-indicator-gray-dark .pace .pace-activity::after,
8481
.pace-corner-indicator-gray-dark .pace .pace-activity::before {
8482
  border: 5px solid #fff;
8483
}
8484

8485
.pace-corner-indicator-gray-dark .pace .pace-activity::before {
8486
  border-right-color: rgba(52, 58, 64, 0.2);
8487
  border-left-color: rgba(52, 58, 64, 0.2);
8488
}
8489

8490
.pace-corner-indicator-gray-dark .pace .pace-activity::after {
8491
  border-top-color: rgba(52, 58, 64, 0.2);
8492
  border-bottom-color: rgba(52, 58, 64, 0.2);
8493
}
8494

8495
.pace-fill-left-gray-dark .pace .pace-progress {
8496
  background-color: rgba(52, 58, 64, 0.2);
8497
}
8498

8499
.pace-flash-gray-dark .pace .pace-progress {
8500
  background: #343a40;
8501
}
8502

8503
.pace-flash-gray-dark .pace .pace-progress-inner {
8504
  box-shadow: 0 0 10px #343a40, 0 0 5px #343a40;
8505
}
8506

8507
.pace-flash-gray-dark .pace .pace-activity {
8508
  border-top-color: #343a40;
8509
  border-left-color: #343a40;
8510
}
8511

8512
.pace-loading-bar-gray-dark .pace .pace-progress {
8513
  background: #343a40;
8514
  color: #343a40;
8515
  box-shadow: 120px 0 #fff, 240px 0 #fff;
8516
}
8517

8518
.pace-loading-bar-gray-dark .pace .pace-activity {
8519
  box-shadow: inset 0 0 0 2px #343a40, inset 0 0 0 7px #fff;
8520
}
8521

8522
.pace-mac-osx-gray-dark .pace .pace-progress {
8523
  background-color: #343a40;
8524
  box-shadow: inset -1px 0 #343a40, inset 0 -1px #343a40, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
8525
}
8526

8527
.pace-mac-osx-gray-dark .pace .pace-activity {
8528
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
8529
  height: 12px;
8530
}
8531

8532
.pace-progress-color-gray-dark .pace-progress {
8533
  color: #343a40;
8534
}
8535

8536
/**
8537
  * bootstrap-switch - Turn checkboxes and radio buttons into toggle switches.
8538
  *
8539
  * @version v3.4 (MODDED)
8540
  * @homepage https://bttstrp.github.io/bootstrap-switch
8541
  * @author Mattia Larentis <mattia@larentis.eu> (http://larentis.eu)
8542
  * @license MIT
8543
  */
8544
.bootstrap-switch {
8545
  border: 1px solid #ced4da;
8546
  border-radius: 0.25rem;
8547
  cursor: pointer;
8548
  direction: ltr;
8549
  display: inline-block;
8550
  line-height: .5rem;
8551
  overflow: hidden;
8552
  position: relative;
8553
  text-align: left;
8554
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
8555
  -webkit-user-select: none;
8556
  -moz-user-select: none;
8557
  -ms-user-select: none;
8558
  user-select: none;
8559
  vertical-align: middle;
8560
  z-index: 0;
8561
}
8562

8563
.bootstrap-switch .bootstrap-switch-container {
8564
  border-radius: 0.25rem;
8565
  display: inline-block;
8566
  top: 0;
8567
  -webkit-transform: translate3d(0, 0, 0);
8568
  transform: translate3d(0, 0, 0);
8569
}
8570

8571
.bootstrap-switch:focus-within {
8572
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8573
}
8574

8575
.bootstrap-switch .bootstrap-switch-handle-on,
8576
.bootstrap-switch .bootstrap-switch-handle-off,
8577
.bootstrap-switch .bootstrap-switch-label {
8578
  box-sizing: border-box;
8579
  cursor: pointer;
8580
  display: table-cell;
8581
  font-size: 1rem;
8582
  font-weight: 500;
8583
  line-height: 1.2rem;
8584
  padding: .25rem .5rem;
8585
  vertical-align: middle;
8586
}
8587

8588
.bootstrap-switch .bootstrap-switch-handle-on,
8589
.bootstrap-switch .bootstrap-switch-handle-off {
8590
  text-align: center;
8591
  z-index: 1;
8592
}
8593

8594
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
8595
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
8596
  background: #e9ecef;
8597
  color: #1f2d3d;
8598
}
8599

8600
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
8601
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
8602
  background: #007bff;
8603
  color: #fff;
8604
}
8605

8606
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary,
8607
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-secondary {
8608
  background: #6c757d;
8609
  color: #fff;
8610
}
8611

8612
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
8613
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
8614
  background: #28a745;
8615
  color: #fff;
8616
}
8617

8618
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
8619
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
8620
  background: #17a2b8;
8621
  color: #fff;
8622
}
8623

8624
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
8625
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
8626
  background: #ffc107;
8627
  color: #1f2d3d;
8628
}
8629

8630
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
8631
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
8632
  background: #dc3545;
8633
  color: #fff;
8634
}
8635

8636
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-light,
8637
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-light {
8638
  background: #f8f9fa;
8639
  color: #1f2d3d;
8640
}
8641

8642
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-dark,
8643
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-dark {
8644
  background: #343a40;
8645
  color: #fff;
8646
}
8647

8648
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-lightblue,
8649
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-lightblue {
8650
  background: #3c8dbc;
8651
  color: #fff;
8652
}
8653

8654
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-navy,
8655
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-navy {
8656
  background: #001f3f;
8657
  color: #fff;
8658
}
8659

8660
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-olive,
8661
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-olive {
8662
  background: #3d9970;
8663
  color: #fff;
8664
}
8665

8666
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-lime,
8667
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-lime {
8668
  background: #01ff70;
8669
  color: #1f2d3d;
8670
}
8671

8672
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-fuchsia,
8673
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-fuchsia {
8674
  background: #f012be;
8675
  color: #fff;
8676
}
8677

8678
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-maroon,
8679
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-maroon {
8680
  background: #d81b60;
8681
  color: #fff;
8682
}
8683

8684
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-blue,
8685
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-blue {
8686
  background: #007bff;
8687
  color: #fff;
8688
}
8689

8690
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-indigo,
8691
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-indigo {
8692
  background: #6610f2;
8693
  color: #fff;
8694
}
8695

8696
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-purple,
8697
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-purple {
8698
  background: #6f42c1;
8699
  color: #fff;
8700
}
8701

8702
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-pink,
8703
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-pink {
8704
  background: #e83e8c;
8705
  color: #fff;
8706
}
8707

8708
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-red,
8709
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-red {
8710
  background: #dc3545;
8711
  color: #fff;
8712
}
8713

8714
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-orange,
8715
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-orange {
8716
  background: #fd7e14;
8717
  color: #1f2d3d;
8718
}
8719

8720
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-yellow,
8721
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-yellow {
8722
  background: #ffc107;
8723
  color: #1f2d3d;
8724
}
8725

8726
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-green,
8727
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-green {
8728
  background: #28a745;
8729
  color: #fff;
8730
}
8731

8732
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-teal,
8733
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-teal {
8734
  background: #20c997;
8735
  color: #fff;
8736
}
8737

8738
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-cyan,
8739
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-cyan {
8740
  background: #17a2b8;
8741
  color: #fff;
8742
}
8743

8744
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-white,
8745
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-white {
8746
  background: #fff;
8747
  color: #1f2d3d;
8748
}
8749

8750
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-gray,
8751
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-gray {
8752
  background: #6c757d;
8753
  color: #fff;
8754
}
8755

8756
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-gray-dark,
8757
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-gray-dark {
8758
  background: #343a40;
8759
  color: #fff;
8760
}
8761

8762
.bootstrap-switch .bootstrap-switch-handle-on {
8763
  border-bottom-left-radius: 0.1rem;
8764
  border-top-left-radius: 0.1rem;
8765
}
8766

8767
.bootstrap-switch .bootstrap-switch-handle-off {
8768
  border-bottom-right-radius: 0.1rem;
8769
  border-top-right-radius: 0.1rem;
8770
}
8771

8772
.bootstrap-switch input[type='radio'],
8773
.bootstrap-switch input[type='checkbox'] {
8774
  filter: alpha(opacity=0);
8775
  left: 0;
8776
  margin: 0;
8777
  opacity: 0;
8778
  position: absolute;
8779
  top: 0;
8780
  visibility: hidden;
8781
  z-index: -1;
8782
}
8783

8784
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
8785
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
8786
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
8787
  font-size: .875rem;
8788
  line-height: 1.5;
8789
  padding: .1rem .3rem;
8790
}
8791

8792
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
8793
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
8794
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
8795
  font-size: .875rem;
8796
  line-height: 1.5;
8797
  padding: .2rem .4rem;
8798
}
8799

8800
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
8801
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
8802
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
8803
  font-size: 1.25rem;
8804
  line-height: 1.3333333rem;
8805
  padding: .3rem .5rem;
8806
}
8807

8808
.bootstrap-switch.bootstrap-switch-disabled, .bootstrap-switch.bootstrap-switch-readonly, .bootstrap-switch.bootstrap-switch-indeterminate {
8809
  cursor: default;
8810
}
8811

8812
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
8813
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
8814
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label, .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
8815
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
8816
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label, .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
8817
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
8818
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
8819
  cursor: default;
8820
  filter: alpha(opacity=50);
8821
  opacity: .5;
8822
}
8823

8824
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
8825
  transition: margin-left .5s;
8826
}
8827

8828
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
8829
  border-radius: 0 0.1rem 0.1rem 0;
8830
}
8831

8832
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
8833
  border-radius: 0.1rem 0 0 0.1rem;
8834
}
8835

8836
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
8837
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
8838
  border-bottom-right-radius: 0.1rem;
8839
  border-top-right-radius: 0.1rem;
8840
}
8841

8842
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
8843
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
8844
  border-bottom-left-radius: 0.1rem;
8845
  border-top-left-radius: 0.1rem;
8846
}
8847

8848
.dark-mode .bootstrap-switch {
8849
  border-color: #6c757d;
8850
}
8851

8852
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,
8853
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {
8854
  background-color: #3a4047;
8855
  color: #fff;
8856
  border-color: #454d55;
8857
}
8858

8859
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
8860
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
8861
  background: #3f6791;
8862
  color: #fff;
8863
}
8864

8865
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary,
8866
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-secondary {
8867
  background: #6c757d;
8868
  color: #fff;
8869
}
8870

8871
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
8872
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
8873
  background: #00bc8c;
8874
  color: #fff;
8875
}
8876

8877
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
8878
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
8879
  background: #3498db;
8880
  color: #fff;
8881
}
8882

8883
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
8884
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
8885
  background: #f39c12;
8886
  color: #1f2d3d;
8887
}
8888

8889
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
8890
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
8891
  background: #e74c3c;
8892
  color: #fff;
8893
}
8894

8895
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-light,
8896
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-light {
8897
  background: #f8f9fa;
8898
  color: #1f2d3d;
8899
}
8900

8901
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-dark,
8902
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-dark {
8903
  background: #343a40;
8904
  color: #fff;
8905
}
8906

8907
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-lightblue,
8908
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-lightblue {
8909
  background: #86bad8;
8910
  color: #1f2d3d;
8911
}
8912

8913
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-navy,
8914
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-navy {
8915
  background: #002c59;
8916
  color: #fff;
8917
}
8918

8919
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-olive,
8920
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-olive {
8921
  background: #74c8a3;
8922
  color: #1f2d3d;
8923
}
8924

8925
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-lime,
8926
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-lime {
8927
  background: #67ffa9;
8928
  color: #1f2d3d;
8929
}
8930

8931
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-fuchsia,
8932
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-fuchsia {
8933
  background: #f672d8;
8934
  color: #1f2d3d;
8935
}
8936

8937
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-maroon,
8938
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-maroon {
8939
  background: #ed6c9b;
8940
  color: #1f2d3d;
8941
}
8942

8943
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-blue,
8944
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-blue {
8945
  background: #3f6791;
8946
  color: #fff;
8947
}
8948

8949
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-indigo,
8950
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-indigo {
8951
  background: #6610f2;
8952
  color: #fff;
8953
}
8954

8955
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-purple,
8956
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-purple {
8957
  background: #6f42c1;
8958
  color: #fff;
8959
}
8960

8961
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-pink,
8962
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-pink {
8963
  background: #e83e8c;
8964
  color: #fff;
8965
}
8966

8967
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-red,
8968
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-red {
8969
  background: #e74c3c;
8970
  color: #fff;
8971
}
8972

8973
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-orange,
8974
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-orange {
8975
  background: #fd7e14;
8976
  color: #1f2d3d;
8977
}
8978

8979
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-yellow,
8980
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-yellow {
8981
  background: #f39c12;
8982
  color: #1f2d3d;
8983
}
8984

8985
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-green,
8986
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-green {
8987
  background: #00bc8c;
8988
  color: #fff;
8989
}
8990

8991
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-teal,
8992
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-teal {
8993
  background: #20c997;
8994
  color: #fff;
8995
}
8996

8997
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-cyan,
8998
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-cyan {
8999
  background: #3498db;
9000
  color: #fff;
9001
}
9002

9003
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-white,
9004
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-white {
9005
  background: #fff;
9006
  color: #1f2d3d;
9007
}
9008

9009
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-gray,
9010
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-gray {
9011
  background: #6c757d;
9012
  color: #fff;
9013
}
9014

9015
.dark-mode .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-gray-dark,
9016
.dark-mode .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-gray-dark {
9017
  background: #343a40;
9018
  color: #fff;
9019
}
9020

9021
.dark-mode .daterangepicker {
9022
  background-color: #3f474e;
9023
  border: inherit;
9024
}
9025

9026
.dark-mode .daterangepicker::before, .dark-mode .daterangepicker::after {
9027
  border-bottom-color: #3f474e;
9028
}
9029

9030
.dark-mode .daterangepicker td.available:hover,
9031
.dark-mode .daterangepicker th.available:hover {
9032
  background-color: #3f474e;
9033
}
9034

9035
.dark-mode .daterangepicker td.in-range {
9036
  background-color: #4b545c;
9037
  color: #fff;
9038
}
9039

9040
.dark-mode .daterangepicker td.off,
9041
.dark-mode .daterangepicker td.off.in-range,
9042
.dark-mode .daterangepicker td.off.start-date,
9043
.dark-mode .daterangepicker td.off.end-date {
9044
  background-color: #292d32;
9045
  color: #fff;
9046
}
9047

9048
.dark-mode .daterangepicker .ranges li:hover {
9049
  background-color: #343a40;
9050
}
9051

9052
.dark-mode .daterangepicker.show-ranges.ltr .drp-calendar {
9053
  border-color: #4b545c;
9054
}
9055

9056
.dark-mode .daterangepicker.show-ranges.ltr .drp-calendar.left, .dark-mode .daterangepicker.show-ranges.ltr .drp-calendar.right {
9057
  border-color: #4b545c;
9058
  padding-top: 0;
9059
}
9060

9061
.dark-mode .daterangepicker .drp-buttons {
9062
  border-color: #4b545c;
9063
}
9064

9065
.dark-mode .daterangepicker .calendar-table {
9066
  background-color: #343a40;
9067
  border-color: #4b545c;
9068
}
9069

9070
.dark-mode .daterangepicker .calendar-table th,
9071
.dark-mode .daterangepicker .calendar-table td {
9072
  color: #fff;
9073
}
9074

9075
.dark-mode .daterangepicker .calendar-table .next span,
9076
.dark-mode .daterangepicker .calendar-table .prev span {
9077
  border-color: #fff;
9078
}
9079

9080
.dark-mode .daterangepicker select.hourselect,
9081
.dark-mode .daterangepicker select.minuteselect,
9082
.dark-mode .daterangepicker select.secondselect,
9083
.dark-mode .daterangepicker select.ampmselect {
9084
  background-color: #343a40;
9085
  border-color: #4b545c;
9086
}
9087

9088
.jqstooltip {
9089
  height: auto !important;
9090
  padding: 5px !important;
9091
  width: auto !important;
9092
}
9093

9094
.connectedSortable {
9095
  min-height: 100px;
9096
}
9097

9098
.ui-helper-hidden-accessible {
9099
  border: 0;
9100
  clip: rect(0 0 0 0);
9101
  height: 1px;
9102
  margin: -1px;
9103
  overflow: hidden;
9104
  padding: 0;
9105
  position: absolute;
9106
  width: 1px;
9107
}
9108

9109
.sort-highlight {
9110
  background: #f8f9fa;
9111
  border: 1px dashed #dee2e6;
9112
  margin-bottom: 10px;
9113
}
9114

9115
.chart {
9116
  overflow: hidden;
9117
  position: relative;
9118
}
9119

9120
.dark-mode .irs--flat .irs-line {
9121
  background-color: #4b545c;
9122
}
9123

9124
.dark-mode .jsgrid-edit-row > .jsgrid-cell,
9125
.dark-mode .jsgrid-filter-row > .jsgrid-cell,
9126
.dark-mode .jsgrid-grid-body, .dark-mode .jsgrid-grid-header,
9127
.dark-mode .jsgrid-header-row > .jsgrid-header-cell,
9128
.dark-mode .jsgrid-insert-row > .jsgrid-cell,
9129
.dark-mode .jsgrid-row > .jsgrid-cell,
9130
.dark-mode .jsgrid-alt-row > .jsgrid-cell {
9131
  border-color: #6c757d;
9132
}
9133

9134
.dark-mode .jsgrid-header-row > .jsgrid-header-cell,
9135
.dark-mode .jsgrid-row > .jsgrid-cell {
9136
  background-color: #343a40;
9137
}
9138

9139
.dark-mode .jsgrid-alt-row > .jsgrid-cell {
9140
  background-color: #3a4047;
9141
}
9142

9143
.dark-mode .jsgrid-selected-row > .jsgrid-cell {
9144
  background-color: #3f474e;
9145
}
9146
/*# sourceMappingURL=adminlte.plugins.css.map */

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.