OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-01-13 4545664bbece1b1b185945376b344b1660669a53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }
 
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }
 
/*********************************************/
@-webkit-keyframes revolve-in-forward {
  0% {
    opacity: 0;
    -webkit-transform: scale(0, 0) translateX(0px);
            transform: scale(0, 0) translateX(0px); }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(0.5, 0.5) translateX(100%);
            transform: scale(0.5, 0.5) translateX(100%); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0px);
            transform: scale(1, 1) translateX(0px); } }
@keyframes revolve-in-forward {
  0% {
    opacity: 0;
    -webkit-transform: scale(0, 0) translateX(0px);
            transform: scale(0, 0) translateX(0px); }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(0.5, 0.5) translateX(100%);
            transform: scale(0.5, 0.5) translateX(100%); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0px);
            transform: scale(1, 1) translateX(0px); } }
 
@-webkit-keyframes revolve-out-forward {
  50% {
    opacity: 0.5;
    -webkit-transform: scale(0.5, 0.5) translateX(-100%);
            transform: scale(0.5, 0.5) translateX(-100%); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0, 0) translateX(0px);
            transform: scale(0, 0) translateX(0px); } }
 
@keyframes revolve-out-forward {
  50% {
    opacity: 0.5;
    -webkit-transform: scale(0.5, 0.5) translateX(-100%);
            transform: scale(0.5, 0.5) translateX(-100%); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0, 0) translateX(0px);
            transform: scale(0, 0) translateX(0px); } }
 
@-webkit-keyframes revolve-in-backward {
  0% {
    opacity: 0;
    -webkit-transform: scale(0, 0) translateX(0px);
            transform: scale(0, 0) translateX(0px); }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(0.5, 0.5) translateX(-100%);
            transform: scale(0.5, 0.5) translateX(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0px);
            transform: scale(1, 1) translateX(0px); } }
 
@keyframes revolve-in-backward {
  0% {
    opacity: 0;
    -webkit-transform: scale(0, 0) translateX(0px);
            transform: scale(0, 0) translateX(0px); }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(0.5, 0.5) translateX(-100%);
            transform: scale(0.5, 0.5) translateX(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0px);
            transform: scale(1, 1) translateX(0px); } }
 
@-webkit-keyframes revolve-out-backward {
  50% {
    opacity: 0.5;
    -webkit-transform: scale(0.5, 0.5) translateX(100%);
            transform: scale(0.5, 0.5) translateX(100%); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0, 0) translateX(0px);
            transform: scale(0, 0) translateX(0px); } }
 
@keyframes revolve-out-backward {
  50% {
    opacity: 0.5;
    -webkit-transform: scale(0.5, 0.5) translateX(100%);
            transform: scale(0.5, 0.5) translateX(100%); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0, 0) translateX(0px);
            transform: scale(0, 0) translateX(0px); } }
 
.body-overflow-hidden {
  overflow: hidden !important; }
 
.ng-image-gallery {
  outline: none;
  /*****************************************************************
                                INLINE GALLERY
    /*****************************************************************/ }
  .ng-image-gallery * {
    outline: none; }
  .ng-image-gallery .ng-image-gallery-thumbnails:after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    visibility: hidden;
    clear: both; }
  .ng-image-gallery .ng-image-gallery-thumbnails .thumb {
    float: left;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    background-color: #eee;
    position: relative; }
    .ng-image-gallery .ng-image-gallery-thumbnails .thumb:not(:last-child) {
      margin-right: 5px;
      margin-bottom: 5px; }
    .ng-image-gallery .ng-image-gallery-thumbnails .thumb > .loader {
      position: absolute;
      left: 10%;
      top: 10%;
      right: 10%;
      bottom: 10%;
      -webkit-animation: thumb-load 1.4s infinite linear;
              animation: thumb-load 1.4s infinite linear;
      -webkit-transform: translateZ(0);
              transform: translateZ(0); }
 
@-webkit-keyframes thumb-load {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
 
@keyframes thumb-load {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
      .ng-image-gallery .ng-image-gallery-thumbnails .thumb > .loader:before {
        width: 50%;
        height: 50%;
        background: #ccc;
        border-radius: 100% 0 0 0;
        position: absolute;
        top: 0;
        left: 0;
        content: ''; }
      .ng-image-gallery .ng-image-gallery-thumbnails .thumb > .loader:after {
        background: #eee;
        width: 75%;
        height: 75%;
        border-radius: 50%;
        content: '';
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0; }
  .ng-image-gallery .ng-image-gallery-modal {
    position: fixed;
    z-index: 5000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; }
    .ng-image-gallery .ng-image-gallery-modal.ng-hide-add {
      opacity: 1; }
    .ng-image-gallery .ng-image-gallery-modal.ng-hide-add-active {
      opacity: 0; }
    .ng-image-gallery .ng-image-gallery-modal.ng-hide-remove {
      opacity: 0; }
    .ng-image-gallery .ng-image-gallery-modal.ng-hide-remove-active {
      opacity: 1; }
    .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-backdrop {
      background-color: rgba(0, 0, 0, 0.85);
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1; }
    .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 2; }
      .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .actions-icons-container {
        position: absolute;
        left: 10px;
        top: 20px; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .actions-icons-container .delete-img {
          -webkit-transition: background-color 0.3s ease-in-out;
          transition: background-color 0.3s ease-in-out;
          position: relative;
          display: inline-block;
          width: 30px;
          height: 30px;
          overflow: hidden;
          cursor: pointer;
          text-decoration: none;
          color: #fff;
          vertical-align: bottom; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .actions-icons-container .delete-img.ng-leave-active {
            display: none; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .actions-icons-container .delete-img:hover {
            background-color: rgba(255, 255, 255, 0.1); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .actions-icons-container .delete-img:before {
            content: "";
            display: block;
            position: absolute;
            top: 5px;
            right: 5px;
            bottom: 5px;
            left: 5px;
            background-size: 100% 100%;
            background-repeat: no-repeat; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .actions-icons-container .delete-img:before {
          background-image: url(../res/icons/delete.svg); }
      .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container {
        position: absolute;
        right: 10px;
        top: 20px; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .ext-url,
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .close {
          -webkit-transition: background-color 0.3s ease-in-out;
          transition: background-color 0.3s ease-in-out;
          position: relative;
          display: inline-block;
          width: 30px;
          height: 30px;
          overflow: hidden;
          cursor: pointer;
          text-decoration: none;
          color: #fff;
          vertical-align: bottom; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .ext-url.ng-leave-active,
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .close.ng-leave-active {
            display: none; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .ext-url:hover,
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .close:hover {
            background-color: rgba(255, 255, 255, 0.1); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .ext-url:before,
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .close:before {
            content: "";
            display: block;
            position: absolute;
            top: 5px;
            right: 5px;
            bottom: 5px;
            left: 5px;
            background-size: 100% 100%;
            background-repeat: no-repeat; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .ext-url:before {
          background-image: url(../res/icons/external-link.svg); }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .close:before {
          background-image: url(../res/icons/close.svg); }
      .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .prev,
      .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .next {
        position: absolute;
        top: 50%;
        margin-top: -25px;
        width: 50px;
        height: 50px;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        overflow: hidden;
        cursor: pointer; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .prev.bubbles-on,
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .next.bubbles-on {
          top: calc((100% - 50px) / 2); }
        @media screen and (max-width: 600px) {
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .prev,
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .next {
            margin-top: -15px;
            width: 30px;
            height: 30px; } }
      .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .prev {
        left: 0px;
        background-image: url(../res/icons/prev.svg); }
      .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .next {
        right: 0px;
        background-image: url(../res/icons/next.svg); }
      .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 80px;
        right: 80px;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images {
          position: relative;
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          width: 100%;
          /*****************************************************/ }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images .galleria-image {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            max-width: 100%;
            max-height: 100%;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-fade .galleria-image.ng-enter {
            -webkit-transition: opacity 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out;
            opacity: 0; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-fade .galleria-image.ng-enter-active {
            opacity: 1; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-fade .galleria-image.ng-leave-active {
            opacity: 0; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-fadeup .galleria-image.ng-enter {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            opacity: 0;
            -webkit-transform: scale(0.98);
                    transform: scale(0.98); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-fadeup .galleria-image.ng-enter-active {
            opacity: 1;
            -webkit-transform: scale(1);
                    transform: scale(1); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-fadeup .galleria-image.ng-leave-active {
            opacity: 0; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-zoom .galleria-image.ng-enter {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            opacity: 0;
            -webkit-transform: scale(0);
                    transform: scale(0); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-zoom .galleria-image.ng-enter-active {
            opacity: 1;
            -webkit-transform: scale(1);
                    transform: scale(1); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-zoom .galleria-image.ng-leave {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-zoom .galleria-image.ng-leave-active {
            opacity: 0;
            -webkit-transform: scale(0);
                    transform: scale(0); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-slide.img-move-dir-backward .galleria-image.ng-enter {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            -webkit-transform: translateX(-100%);
                    transform: translateX(-100%);
            opacity: 0; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-slide.img-move-dir-backward .galleria-image.ng-enter-active {
            -webkit-transform: translateX(0px);
                    transform: translateX(0px);
            opacity: 1; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-slide.img-move-dir-backward .galleria-image.ng-leave {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-slide.img-move-dir-backward .galleria-image.ng-leave-active {
            opacity: 0;
            -webkit-transform: translateX(100%);
                    transform: translateX(100%); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-slide.img-move-dir-forward .galleria-image.ng-enter {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            -webkit-transform: translateX(100%);
                    transform: translateX(100%);
            opacity: 0; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-slide.img-move-dir-forward .galleria-image.ng-enter-active {
            -webkit-transform: translateX(0px);
                    transform: translateX(0px);
            opacity: 1; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-slide.img-move-dir-forward .galleria-image.ng-leave {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-slide.img-move-dir-forward .galleria-image.ng-leave-active {
            opacity: 0;
            -webkit-transform: translateX(-100%);
                    transform: translateX(-100%); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-pop.img-move-dir-backward .galleria-image.ng-enter {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            -webkit-transform: translateX(-100%) scale(0, 0);
                    transform: translateX(-100%) scale(0, 0);
            opacity: 0; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-pop.img-move-dir-backward .galleria-image.ng-enter-active {
            -webkit-transform: translateX(0px) scale(1, 1);
                    transform: translateX(0px) scale(1, 1);
            opacity: 1; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-pop.img-move-dir-backward .galleria-image.ng-leave {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-pop.img-move-dir-backward .galleria-image.ng-leave-active {
            opacity: 0;
            -webkit-transform: translateX(100%) scale(0, 0);
                    transform: translateX(100%) scale(0, 0); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-pop.img-move-dir-forward .galleria-image.ng-enter {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            -webkit-transform: translateX(100%) scale(0, 0);
                    transform: translateX(100%) scale(0, 0);
            opacity: 0; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-pop.img-move-dir-forward .galleria-image.ng-enter-active {
            -webkit-transform: translateX(0px) scale(1, 1);
                    transform: translateX(0px) scale(1, 1);
            opacity: 1; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-pop.img-move-dir-forward .galleria-image.ng-leave {
            -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-pop.img-move-dir-forward .galleria-image.ng-leave-active {
            opacity: 0;
            -webkit-transform: translateX(-100%) scale(0, 0);
                    transform: translateX(-100%) scale(0, 0); }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-revolve.img-move-dir-forward .galleria-image.ng-enter {
            -webkit-animation: revolve-in-forward;
                    animation: revolve-in-forward;
            -webkit-animation-duration: 0.3s;
                    animation-duration: 0.3s; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-revolve.img-move-dir-forward .galleria-image.ng-leave {
            -webkit-animation: revolve-out-forward;
                    animation: revolve-out-forward;
            -webkit-animation-duration: 0.3s;
                    animation-duration: 0.3s; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-revolve.img-move-dir-backward .galleria-image.ng-enter {
            -webkit-animation: revolve-in-backward;
                    animation: revolve-in-backward;
            -webkit-animation-duration: 0.3s;
                    animation-duration: 0.3s; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-images.img-anim-revolve.img-move-dir-backward .galleria-image.ng-leave {
            -webkit-animation: revolve-out-backward;
                    animation: revolve-out-backward;
            -webkit-animation-duration: 0.3s;
                    animation-duration: 0.3s; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-title-description-wrapper {
          -webkit-box-flex: 0;
              -ms-flex: none;
                  flex: none; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-title-description-wrapper > div {
            padding: 20px 0;
            text-align: center;
            color: #fff; }
            .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-title-description-wrapper > div .title {
              font-size: 18px;
              margin-bottom: 10px; }
            .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-title-description-wrapper > div .desc {
              font-size: 12px;
              line-height: 1.3; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles-wrapper {
          -webkit-box-flex: 0;
              -ms-flex: none;
                  flex: none;
          margin: 20px 0;
          overflow: hidden;
          width: 100%;
          font-size: 0; }
          .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles-wrapper > .galleria-bubbles {
            display: block;
            text-align: center;
            white-space: nowrap;
            -webkit-transition: margin-left 0.3s;
            transition: margin-left 0.3s; }
            .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles-wrapper > .galleria-bubbles span {
              -webkit-box-flex: 0;
                  -ms-flex: none;
                      flex: none;
              position: relative;
              display: inline-block;
              margin: 0 5px;
              cursor: pointer;
              overflow: hidden;
              border-radius: 100%;
              background-size: cover;
              background-position: center center;
              vertical-align: middle;
              background-color: #999; }
              .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles-wrapper > .galleria-bubbles span.ng-leave-active {
                display: none; }
              .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles-wrapper > .galleria-bubbles span:not(.img-bubble) {
                background-color: rgba(255, 255, 255, 0.5);
                border-radius: 100%;
                overflow: hidden;
                -webkit-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out; }
                .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles-wrapper > .galleria-bubbles span:not(.img-bubble).active {
                  background-color: #fff; }
              .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles-wrapper > .galleria-bubbles span.img-bubble {
                box-sizing: border-box;
                border: 1px solid transparent;
                -webkit-transition: border 0.3s ease-in-out, margin 0.3s ease-in-out;
                transition: border 0.3s ease-in-out, margin 0.3s ease-in-out; }
                .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles-wrapper > .galleria-bubbles span.img-bubble.active {
                  border: 1px solid #fff; }
    .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-errorplaceholder {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 80px;
      right: 80px;
      z-index: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-loader {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 3;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-loader .spinner {
        -webkit-box-flex: 0;
            -ms-flex: none;
                flex: none;
        width: 50px;
        height: 50px;
        text-align: center;
        font-size: 10px; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-loader .spinner > div {
          background-color: #fff;
          height: 100%;
          width: 7px;
          margin: 0 3px 0 0;
          display: inline-block;
          -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
          animation: sk-stretchdelay 1.2s infinite ease-in-out; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-loader .spinner .rect2 {
          -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-loader .spinner .rect3 {
          -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-loader .spinner .rect4 {
          -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
        .ng-image-gallery .ng-image-gallery-modal .ng-image-gallery-loader .spinner .rect5 {
          -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
  .ng-image-gallery.inline .ng-image-gallery-modal {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 300px; }
    .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .actions-icons-container {
      top: 0; }
      .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .actions-icons-container .delete-img {
        margin: 0; }
        .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .actions-icons-container .delete-img:before {
          background-image: url(../res/icons/delete-inline.svg); }
    .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container {
      top: 0; }
      .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .ext-url {
        margin: 0; }
        .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .control-icons-container .ext-url:before {
          background-image: url(../res/icons/external-link-inline.svg); }
    .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .prev {
      background-image: url(../res/icons/prev-inline.svg); }
    .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .next {
      background-image: url(../res/icons/next-inline.svg); }
    .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .prev, .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .next {
      margin-top: -15px;
      width: 30px;
      height: 30px; }
    .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles span:not(.img-bubble) {
      background-color: rgba(0, 0, 0, 0.5); }
      .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles span:not(.img-bubble).active {
        background-color: #333; }
    .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-content .galleria .galleria-bubbles span.img-bubble.active {
      border: 1px solid #000; }
    .ng-image-gallery.inline .ng-image-gallery-modal .ng-image-gallery-loader .spinner > div {
      background-color: #999; }