@movvjs/svelte-schedule-view 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/README.md +26 -0
  2. package/dist/alert/component.svelte +23 -0
  3. package/dist/alert/component.svelte.d.ts +14 -0
  4. package/dist/alert/index.d.ts +7 -0
  5. package/dist/alert/index.js +20 -0
  6. package/dist/alert/types.d.ts +9 -0
  7. package/dist/alert/types.js +1 -0
  8. package/dist/api/booking/dto.d.ts +60 -0
  9. package/dist/api/booking/dto.js +1 -0
  10. package/dist/api/booking/index.d.ts +28 -0
  11. package/dist/api/booking/index.js +159 -0
  12. package/dist/api/common/dto.d.ts +11 -0
  13. package/dist/api/common/dto.js +1 -0
  14. package/dist/api/common/index.d.ts +18 -0
  15. package/dist/api/common/index.js +117 -0
  16. package/dist/assets/icon/dest.png +0 -0
  17. package/dist/assets/icon/place.png +0 -0
  18. package/dist/assets/icon/start.png +0 -0
  19. package/dist/assets/icon/transparent.png +0 -0
  20. package/dist/assets/scss/indie_booking.scss +4464 -0
  21. package/dist/axios/index.d.ts +1 -0
  22. package/dist/axios/index.js +71 -0
  23. package/dist/components/BaseSearchInput.svelte +115 -0
  24. package/dist/components/BaseSearchInput.svelte.d.ts +31 -0
  25. package/dist/components/Layout.svelte +33 -0
  26. package/dist/components/Layout.svelte.d.ts +17 -0
  27. package/dist/confirm/component.svelte +35 -0
  28. package/dist/confirm/component.svelte.d.ts +14 -0
  29. package/dist/confirm/index.d.ts +8 -0
  30. package/dist/confirm/index.js +32 -0
  31. package/dist/confirm/types.d.ts +14 -0
  32. package/dist/confirm/types.js +1 -0
  33. package/dist/constant/index.d.ts +58 -0
  34. package/dist/constant/index.js +58 -0
  35. package/dist/contents/telCodes.json +235 -0
  36. package/dist/dayjs/index.d.ts +11 -0
  37. package/dist/dayjs/index.js +30 -0
  38. package/dist/i18n/index.js +8 -0
  39. package/dist/i18n/locales/en.json +116 -0
  40. package/dist/i18n/locales/ko.json +92 -0
  41. package/dist/i18n/locales/vi.json +92 -0
  42. package/dist/i18n/locales/zh-cn.json +92 -0
  43. package/dist/i18n/locales/zh-tw.json +92 -0
  44. package/dist/index.d.ts +3 -0
  45. package/dist/index.js +3 -0
  46. package/dist/init.d.ts +11 -0
  47. package/dist/init.js +14 -0
  48. package/dist/loaders/component.svelte +7 -0
  49. package/dist/loaders/component.svelte.d.ts +16 -0
  50. package/dist/loaders/index.d.ts +6 -0
  51. package/dist/loaders/index.js +16 -0
  52. package/dist/schedule/BookingInfo.svelte +547 -0
  53. package/dist/schedule/BookingInfo.svelte.d.ts +14 -0
  54. package/dist/schedule/CarSearch.svelte +22 -0
  55. package/dist/schedule/CarSearch.svelte.d.ts +23 -0
  56. package/dist/schedule/FileUploader.svelte +76 -0
  57. package/dist/schedule/FileUploader.svelte.d.ts +23 -0
  58. package/dist/schedule/FlightSearch.svelte +261 -0
  59. package/dist/schedule/FlightSearch.svelte.d.ts +24 -0
  60. package/dist/schedule/Map.svelte +132 -0
  61. package/dist/schedule/Map.svelte.d.ts +14 -0
  62. package/dist/schedule/PhoneNumberInput.svelte +82 -0
  63. package/dist/schedule/PhoneNumberInput.svelte.d.ts +19 -0
  64. package/dist/schedule/PickupPointView.svelte +88 -0
  65. package/dist/schedule/PickupPointView.svelte.d.ts +17 -0
  66. package/dist/schedule/PlaceSearch.svelte +27 -0
  67. package/dist/schedule/PlaceSearch.svelte.d.ts +21 -0
  68. package/dist/schedule/Plan.svelte +175 -0
  69. package/dist/schedule/Plan.svelte.d.ts +14 -0
  70. package/dist/schedule/PlanItem.svelte +174 -0
  71. package/dist/schedule/PlanItem.svelte.d.ts +34 -0
  72. package/dist/schedule/Schedule.svelte +183 -0
  73. package/dist/schedule/Schedule.svelte.d.ts +45 -0
  74. package/dist/schedule/ServiceZone.svelte +76 -0
  75. package/dist/schedule/ServiceZone.svelte.d.ts +14 -0
  76. package/dist/schedule/ServiceZoneItem.svelte +73 -0
  77. package/dist/schedule/ServiceZoneItem.svelte.d.ts +33 -0
  78. package/dist/schedule/Translation.svelte +136 -0
  79. package/dist/schedule/Translation.svelte.d.ts +17 -0
  80. package/dist/schedule/booking.d.ts +114 -0
  81. package/dist/schedule/booking.js +150 -0
  82. package/dist/store/env.d.ts +16 -0
  83. package/dist/store/env.js +33 -0
  84. package/dist/types/booking.d.ts +88 -0
  85. package/dist/types/booking.js +40 -0
  86. package/dist/types/common.d.ts +28 -0
  87. package/dist/types/common.js +14 -0
  88. package/dist/types/file.d.ts +13 -0
  89. package/dist/types/file.js +5 -0
  90. package/dist/types/flight.d.ts +25 -0
  91. package/dist/types/flight.js +1 -0
  92. package/dist/types/index.d.ts +5 -0
  93. package/dist/types/index.js +5 -0
  94. package/dist/types/price.d.ts +18 -0
  95. package/dist/types/price.js +1 -0
  96. package/dist/utils/index.d.ts +14 -0
  97. package/dist/utils/index.js +48 -0
  98. package/package.json +62 -0
@@ -0,0 +1,4464 @@
1
+ // 폰트
2
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
3
+ @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
4
+ @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");
5
+
6
+ // 리셋
7
+ @import 'https://cdn.jsdelivr.net/npm/reset-css@5.0.2/reset.min.css';
8
+ @import 'https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css';
9
+
10
+ html,body{
11
+ width: 100%;
12
+ height: 100%;
13
+ overflow: auto;
14
+ }
15
+
16
+
17
+ #indie_booking_wrapper{
18
+ width: 100%;
19
+ height: 100%;
20
+ overflow-x: hidden;
21
+ overflow-y: auto;
22
+ position: relative;
23
+ min-width: 1024px;
24
+
25
+ *{box-sizing: border-box; font-family: "Roboto", "Noto Sans KR", "애플 SD 산돌고딕 Neo", "Apple SD Gothic Neo", "맑은 고딕", "Malgun Gothic", "Helvetica", "Verdana", sans-serif;}
26
+
27
+ :where(a, button, input):active,
28
+ :where(a, button, input):hover {
29
+ outline: none;
30
+ }
31
+ input{
32
+ outline: none;
33
+ }
34
+ }
35
+
36
+ a{text-decoration: none; color: #111; cursor: pointer;}
37
+ button{border: none; background-color: transparent; cursor: pointer;}
38
+ select {
39
+ border-radius: 0;
40
+ -webkit-appearance: none;
41
+ -moz-appearance: none;
42
+ appearance: none;
43
+ padding-right: 35px;
44
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.133' height='7.41' viewBox='0 0 13.133 7.41'%3E%3Cpath d='M17.59,8.59l-5.023,4.58L7.543,8.59,6,10l6.566,6,6.566-6Z' transform='translate(-6 -8.59)'/%3E%3C/svg%3E");
45
+ background-repeat: no-repeat;
46
+ background-position: right 6px center;
47
+ border: none;
48
+ }
49
+
50
+
51
+
52
+
53
+ // ****************************************************************************
54
+
55
+ // 팝업 - 기본
56
+ .indie_pop_wrap{
57
+ position: fixed;
58
+ left: 0;
59
+ top: 0;
60
+ width: 100%;
61
+ height: 100%;
62
+ z-index: 800;
63
+ background-color: rgba(0, 0 ,0, .6);
64
+ display: none;
65
+ justify-content: center;
66
+ align-items: center;
67
+ &.on{
68
+ display: flex;
69
+ }
70
+
71
+ .pop_base{
72
+ background-color: white;
73
+ border-radius: 20px;
74
+ overflow: hidden;
75
+ overflow-y: auto;
76
+ height: 95%;
77
+ width: 95%;
78
+ display: flex;
79
+ flex-direction: column;
80
+
81
+ @media (max-width: 1000px){
82
+ &.scroll.on{
83
+ overflow: auto;
84
+ padding: 20px;
85
+ justify-content: start;
86
+ .pop_base{
87
+ min-width: 1000px;
88
+ }
89
+ }
90
+ }
91
+
92
+ .heightAuto{
93
+ height: auto;
94
+ }
95
+
96
+ .overflowHidden{
97
+ overflow: hidden;
98
+ }
99
+ &.xs_1{
100
+ max-width: 370px;
101
+ }
102
+
103
+ &.full_2{
104
+ width: 98%;
105
+ height: 98%;
106
+ }
107
+ &.translate{
108
+ max-width: 800px;
109
+ height: auto;
110
+ .top_box{
111
+ padding-left: 30px;
112
+ }
113
+ .contents{
114
+ overflow: hidden;
115
+ }
116
+ }
117
+
118
+
119
+ .top_box{
120
+ flex-shrink: 0;
121
+ border-bottom: 1px solid #E5E5E5;
122
+ margin-bottom: -1px;
123
+ display: flex;
124
+ align-items: center;
125
+ flex-wrap: wrap;
126
+ padding: 23px 30px 17px 40px;
127
+ position: relative;
128
+ z-index: 10;
129
+ .btn_close{
130
+ margin-left: auto;
131
+ flex-shrink: 0;
132
+ }
133
+ h3{
134
+ font-size: 15px;
135
+ font-weight: 600;
136
+ color: #383E96;
137
+ padding-right: 10px;
138
+ &.big{
139
+ font-size: 22px;
140
+ }
141
+ &.black{
142
+ color: black;
143
+ }
144
+ }
145
+ }
146
+
147
+ .btn_close{
148
+ width: 15px;
149
+ height: 15px;
150
+ text-indent: -9999px;
151
+ overflow: hidden;
152
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M19,6.41,17.59,5,12,10.59,6.41,5,5,6.41,10.59,12,5,17.59,6.41,19,12,13.41,17.59,19,19,17.59,13.41,12Z' transform='translate(-5 -5)' fill='%23111'/%3E%3C/svg%3E%0A");
153
+ background-repeat: no-repeat;
154
+ background-position: center center;
155
+ z-index: 100;
156
+ }
157
+
158
+ .contents{
159
+ flex: 1;
160
+ overflow-x: hidden;
161
+ overflow-y: auto;
162
+ display: flex;
163
+ flex-direction: column;
164
+ background-color: white;
165
+ &.pdMg{
166
+ padding: 30px 35px;
167
+ }
168
+ &.pdLg{
169
+ padding: 35px 35px;
170
+ }
171
+ }
172
+
173
+ .bottom_box{
174
+ margin-top: -1px;
175
+ border-top: 1px solid #B6B9CC;
176
+ flex-shrink: 0;
177
+ text-align: right;
178
+ padding: 15px 30px;
179
+ z-index: 10;
180
+ background-color: white;
181
+
182
+ &.flex{
183
+ flex-wrap: wrap;
184
+ display: flex;
185
+ align-items: center;
186
+ }
187
+ .left_b{
188
+ flex: 1 0 100px;
189
+ margin-right: auto;
190
+ text-align: left;
191
+ }
192
+ .mid_box{
193
+ flex: 0 1 auto;
194
+ }
195
+ .right_b{
196
+ flex: 1 0 100px;
197
+ margin-left: auto;
198
+ text-align: right;
199
+ }
200
+ }
201
+ &.heightAuto{
202
+ height: auto;
203
+ max-height: 95%;
204
+ }
205
+ }
206
+
207
+
208
+ // 슬라이드 - 옆 사이드 팝업
209
+ &.slide{
210
+ display: flex;
211
+ justify-content: flex-end;
212
+ background-color: transparent;
213
+ overflow: hidden;
214
+ z-index: -1;
215
+ transition: z-index 0s .7s;
216
+
217
+ &::after{
218
+ content: "";
219
+ position: absolute;
220
+ left: 0;
221
+ top: 0;
222
+ display: block;
223
+ width: 100%;
224
+ height: 100%;
225
+ background-color: rgba(0, 0 ,0, .6);
226
+ z-index: 1;
227
+ transition: .4s;
228
+ opacity: 0;
229
+ }
230
+
231
+ .pop_base{
232
+ position: relative;
233
+ z-index: 10;
234
+ height: 100%;
235
+ border-top-right-radius: 0;
236
+ border-bottom-right-radius: 0;
237
+ transition: transform .5s;
238
+ transform: translateX(100%);
239
+ }
240
+
241
+ &.on{
242
+ z-index: 800;
243
+ transition-delay: 0s;
244
+ &::after{
245
+ opacity: 1;
246
+ }
247
+
248
+ .pop_base{
249
+ transform: translateX(0);
250
+ }
251
+ }
252
+ }
253
+ }
254
+
255
+
256
+ //alert 창
257
+ .indie_pop_alert{
258
+ display: none;
259
+ justify-content: center;
260
+ align-items: center;
261
+ position: fixed;
262
+ left: 0;
263
+ top: 0;
264
+ width: 100%;
265
+ height: 100%;
266
+ z-index: 1500;
267
+ background-color: rgba(0,0,0,.5);
268
+ overflow: auto;
269
+ padding: 50px 20px;
270
+ transition: transform .2s .2s;
271
+
272
+ .pop_base{
273
+ width: 100%;
274
+ margin: auto;
275
+ flex-shrink: 0;
276
+ background-color: white;
277
+ max-width: 360px;
278
+ border-radius: 12px;
279
+ overflow: hidden;
280
+ box-shadow: 0 2px 15px rgba(0,0,0,.3);
281
+ transform: translateY(15px);
282
+
283
+ .btn_close{
284
+ position: absolute;
285
+ right: 15px;
286
+ top: 15px;
287
+ width: 15px;
288
+ height: 15px;
289
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M19,6.41,17.59,5,12,10.59,6.41,5,5,6.41,10.59,12,5,17.59,6.41,19,12,13.41,17.59,19,19,17.59,13.41,12Z' transform='translate(-5 -5)'/%3E%3C/svg%3E");
290
+ background-repeat: no-repeat;
291
+ background-position: center center;
292
+ background-size: 14px;
293
+ text-indent: -9999px;
294
+ overflow: hidden;
295
+ }
296
+ .contents{
297
+ display: flex;
298
+ flex-direction: column;
299
+ justify-content: center;
300
+ align-items: center;
301
+ text-align: center;
302
+ min-height: 145px;
303
+ padding: 37px 25px 35px;
304
+ font-size: 12px;
305
+ color: #677386;
306
+ p{
307
+ font-size: 14px;
308
+ color: #677386;
309
+ word-break: keep-all;
310
+ line-height: 1.5;
311
+ &:only-of-type{
312
+ margin-bottom: 0;
313
+ }
314
+ }
315
+ .bold{
316
+ font-size: 13px;
317
+ font-weight: 500;
318
+ margin: 0 0 20px;
319
+ }
320
+ .sbj{
321
+ font-size: 16px;
322
+ font-weight: 500;
323
+ color: black;
324
+ margin-bottom: 10px;
325
+ line-height: 1.3;
326
+ &:only-of-type{
327
+ margin-bottom: 0;
328
+ }
329
+ &.lg{
330
+ font-size: 20px;
331
+ }
332
+ }
333
+ }
334
+ .btns{
335
+ height: 42px;
336
+ width: 100%;
337
+ display: flex;
338
+ button{
339
+ flex: 1;
340
+ text-align: center;
341
+ background-color: #F5F5FC;
342
+ font-size: 13px;
343
+ font-weight: 500;
344
+ letter-spacing: -0.04em;
345
+ transition: background-color .25s, box-shadow .25s, border-color .25s;
346
+ &.gray{
347
+ background-color: #EFF0F8;
348
+ color: #677386;
349
+ &:hover{
350
+ background-color: darken(#EFF0F8, 5%);
351
+ }
352
+ }
353
+ &.primary{
354
+ background-color: #383E96;
355
+ color: white;
356
+ &:hover{
357
+ background-color: darken(#383E96, 8%);
358
+ }
359
+ }
360
+ &.blue{
361
+ background-color: #038EE3;
362
+ color: white;
363
+ &:hover{
364
+ background-color: darken(#038EE3, 8%);
365
+ }
366
+ }
367
+ }
368
+ }
369
+ }
370
+
371
+ &.on{
372
+ display: flex;
373
+ }
374
+ }
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+
387
+ // 탭
388
+ .indie_tab_square_01{
389
+ &_wrapper{
390
+ margin-bottom: 10px;
391
+ }
392
+
393
+ display: flex;
394
+ flex-wrap: wrap;
395
+
396
+ > li{
397
+ flex: 1;
398
+ margin-left: -1px;
399
+ z-index: 1;
400
+ > a{
401
+ display: block;
402
+ width: 100%;
403
+ height: 100%;
404
+ text-align: center;
405
+ padding: 12px 12px 10px;
406
+ background-color: white;
407
+ border: 1px solid #D5D5D5;
408
+ font-weight: 700;
409
+ font-size: 12px;
410
+ color: #9093AD;
411
+ }
412
+
413
+ &.on{
414
+ z-index: 2;
415
+ > a{
416
+ border-color: black;
417
+ color: black;
418
+ }
419
+ }
420
+ }
421
+ }
422
+
423
+
424
+
425
+
426
+
427
+ // 로딩
428
+ .indie_loading_common_box{
429
+ display: flex;
430
+ justify-content: center;
431
+ align-items: center;
432
+ flex: 1;
433
+ }
434
+
435
+ .indie_loader-wrapper {
436
+ display: none;
437
+ justify-content: center;
438
+ align-items: center;
439
+ position: fixed;
440
+ left: 0;
441
+ top: 0;
442
+ z-index: 1000;
443
+ width: 100vw;
444
+ height: 100vh;
445
+ background: white;
446
+ &.transparent{
447
+ background: transparent;
448
+ }
449
+ &.on{
450
+ display: flex;
451
+ }
452
+ }
453
+
454
+ .indie_loader {
455
+ width: 30px;
456
+ height: 30px;
457
+ border: 5px solid #444;
458
+ border-color: #444 transparent transparent;
459
+ border-radius: 50%;
460
+ animation: indie-loader-ani 1s infinite linear;
461
+ &.white{
462
+ border-color: white transparent transparent;
463
+ }
464
+ &.sm{
465
+ width: 13px;
466
+ height: 13px;
467
+ border-width: 2px 2px 1px 1px;
468
+ border-color: rgba(255, 255, 255, .35) rgba(255, 255, 255, .35) rgba(255, 255, 255, .05);
469
+ }
470
+ }
471
+
472
+ @keyframes indie-loader-ani {
473
+ 0% { transform: rotate(0); }
474
+ 100% { transform: rotate(360deg); }
475
+ }
476
+
477
+
478
+ // 로딩 dot 점
479
+ .indie_loading_dots{
480
+ margin: 0 20px 0 22px;
481
+ position: relative;
482
+ width: 9px;
483
+ height: 9px;
484
+ border-radius: 9px;
485
+ animation: indie_loader10m 1.7s ease-in-out infinite;
486
+ background-color: white;
487
+ border: 1px solid #cecece;
488
+ &::before,
489
+ &::after{
490
+ content: "";
491
+ position: absolute;
492
+ background-color: white;
493
+ top: -1px;
494
+ height: 9px;
495
+ width: 9px;
496
+ border-radius: 9px;
497
+ border: 1px solid #cecece;
498
+ }
499
+ &::before{
500
+ left: -15px;
501
+ animation: indie_loader10g 1.7s ease-in-out infinite;
502
+ }
503
+ &::after{
504
+ left: 14px;
505
+ animation: indie_loader10d 1.7s ease-in-out infinite;
506
+ }
507
+
508
+ &.gray{
509
+ width: 7px;
510
+ height: 7px;
511
+ animation: indie_loaderGray10m 1.7s ease-in-out infinite;
512
+ &::before,
513
+ &::after{
514
+ top: 0;
515
+ height: 7px;
516
+ width: 7px;
517
+ border-radius: 50%;
518
+ }
519
+ &::before{
520
+ left: -12px;
521
+ animation: indie_loaderGray10g 1.7s ease-in-out infinite;
522
+ }
523
+ &::after{
524
+ left: 12px;
525
+ animation: indie_loaderGray10d 1.7s ease-in-out infinite;
526
+ }
527
+ }
528
+ }
529
+
530
+
531
+ @keyframes indie_loader10g{
532
+ 0%{background-color: white; border-color: #cecece;}
533
+ 25%{background-color: #374193; border-color: #374193;}
534
+ 50%{background-color: white; border-color: #cecece;}
535
+ 75%{background-color: white; border-color: #cecece;}
536
+ 100%{background-color: white; border-color: #cecece;}
537
+ }
538
+
539
+ @keyframes indie_loader10m{
540
+ 0%{background-color: white; border-color: #cecece;}
541
+ 25%{background-color: white; border-color: #cecece;}
542
+ 50%{background-color: #374193; border-color: #374193;}
543
+ 75%{background-color: white; border-color: #cecece;}
544
+ 100%{background-color: white; border-color: #cecece;}
545
+ }
546
+
547
+ @keyframes indie_loader10d{
548
+ 0%{background-color: white; border-color: #cecece;}
549
+ 25%{background-color: white; border-color: #cecece;}
550
+ 50%{background-color: white; border-color: #cecece;}
551
+ 75%{background-color: #374193; border-color: #374193;}
552
+ 100%{background-color: white; border-color: #cecece;}
553
+ }
554
+
555
+ @keyframes indie_loaderGray10g{
556
+ 0%{background-color: transparent; border: none;}
557
+ 25%{background-color: #9f9f9f; border: none;}
558
+ 50%{background-color: transparent; border: none;}
559
+ 75%{background-color: transparent; border: none;}
560
+ 100%{background-color: transparent; border: none;}
561
+ }
562
+
563
+ @keyframes indie_loaderGray10m{
564
+ 0%{background-color: transparent; border: none;}
565
+ 25%{background-color: transparent; border: none;}
566
+ 50%{background-color: #9f9f9f; border: none;}
567
+ 75%{background-color: transparent; border: none;}
568
+ 100%{background-color: transparent; border: none;}
569
+ }
570
+
571
+ @keyframes indie_loaderGray10d{
572
+ 0%{background-color: transparent; border: none;}
573
+ 25%{background-color: transparent; border: none;}
574
+ 50%{background-color: transparent; border: none;}
575
+ 75%{background-color: #9f9f9f; border: none;}
576
+ 100%{background-color: transparent; border: none;}
577
+ }
578
+
579
+
580
+
581
+
582
+
583
+
584
+
585
+
586
+
587
+
588
+
589
+ // 페이징
590
+ .indie_paging_b{
591
+ display: inline-flex;
592
+ vertical-align: middle;
593
+ align-items: center;
594
+ font-size: 13px;
595
+ margin-left: 10px;
596
+
597
+ > button{
598
+ width: 8px;
599
+ height: 12px;
600
+ text-indent: -9999px;
601
+ overflow: hidden;
602
+ background-repeat: no-repeat;
603
+ background-position: center center;
604
+ margin: 0 10px;
605
+ &:first-of-type{
606
+ margin-left: 0;
607
+ }
608
+ &:last-of-type{
609
+ margin-right: 0;
610
+ }
611
+ }
612
+ .pg_left{
613
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.41' height='12' viewBox='0 0 7.41 12'%3E%3Cpath d='M16,16.34l-4.58-4.59L16,7.16,14.59,5.75l-6,6,6,6Z' transform='translate(-8.59 -5.75)'/%3E%3C/svg%3E");
614
+ }
615
+ .pg_right{
616
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.41' height='12' viewBox='0 0 7.41 12'%3E%3Cpath d='M8.59,16.34l4.58-4.59L8.59,7.16,10,5.75l6,6-6,6Z' transform='translate(-8.59 -5.75)'/%3E%3C/svg%3E%0A");
617
+ }
618
+ .txt_paging{
619
+ width: 60px;
620
+ height: 30px;
621
+ background-color: #fff;
622
+ border: 1px solid #DBDBDB;
623
+ text-align: center;
624
+ font-weight: 600;
625
+ color: #FF5977;
626
+ margin: 0 5px;
627
+ font-size: inherit;
628
+ }
629
+ span{
630
+ margin: 0 5px;
631
+ font-size: inherit;
632
+ font-weight: 600;
633
+ }
634
+ }
635
+
636
+
637
+
638
+
639
+ // 검색어가 없을때
640
+ .indie_search_none_common_box{
641
+ display: flex;
642
+ justify-content: center;
643
+ align-items: center;
644
+ flex: 1;
645
+ p{
646
+ font-size: 18px;
647
+ font-weight: 600;
648
+ color: #B8BAD0;
649
+ }
650
+ }
651
+
652
+
653
+
654
+
655
+
656
+
657
+ // 폼 - Input
658
+ .indie_text_nor{
659
+ // height: 42px;
660
+ height: 30px;
661
+ border: 1px solid #D3D3D3;
662
+ background-color: #F5F5FC;
663
+ border-radius: 25px;
664
+ padding: 0 20px;
665
+ font-weight: 500;
666
+ transition: background-color .25s, box-shadow .25s, border-color .25s;
667
+ background-repeat: no-repeat;
668
+ background-position: left 14px center;
669
+ max-width: 100%;
670
+ font-size: 12px;
671
+ &:hover,
672
+ &:focus{
673
+ background-color: white;
674
+ border-color: #1B206A;
675
+ box-shadow: 0 0 8px rgba(0, 0, 0, .16);
676
+ }
677
+
678
+ &.white{
679
+ background-color: white;
680
+ }
681
+
682
+ &.xs{
683
+ height: 24px;
684
+ font-size: 12px;
685
+ }
686
+
687
+ &.xs3{
688
+ height: 28px;
689
+ font-size: 12px;
690
+ }
691
+
692
+ &.sm{
693
+ height: 30px;
694
+ font-size: 12px;
695
+ }
696
+
697
+ &.sm2{
698
+ height: 30px;
699
+ font-size: 12px;
700
+ }
701
+
702
+ &.sm3{
703
+ height: 30px;
704
+ font-size: 12px;
705
+ }
706
+
707
+ &.lg{
708
+ height: 40px;
709
+ font-size: 13px;
710
+ }
711
+
712
+ &.squre{
713
+ border-radius: 8px;
714
+ }
715
+
716
+ &.squre2{
717
+ border-radius: 4px;
718
+ }
719
+
720
+ &.ic_search{
721
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.141' height='17.49' viewBox='0 0 19.141 17.49'%3E%3Cpath d='M16.68,14h-.865l-.306-.27A6.155,6.155,0,0,0,17.227,9.5c0-3.59-3.185-6.5-7.114-6.5S3,5.91,3,9.5,6.185,16,10.114,16a7.486,7.486,0,0,0,4.629-1.57l.3.28v.79l5.472,4.99L22.141,19Zm-6.566,0A4.72,4.72,0,0,1,5.189,9.5,4.72,4.72,0,0,1,10.114,5a4.72,4.72,0,0,1,4.925,4.5A4.72,4.72,0,0,1,10.114,14Z' transform='translate(-3 -3)'/%3E%3C/svg%3E");
722
+ padding-left: 42px;
723
+ &::placeholder{
724
+ font-size: 13px;
725
+ }
726
+ }
727
+
728
+ &.ic_search_gray{
729
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.141' height='17.49' viewBox='0 0 19.141 17.49'%3E%3Cpath d='M16.68,14h-.865l-.306-.27A6.155,6.155,0,0,0,17.227,9.5c0-3.59-3.185-6.5-7.114-6.5S3,5.91,3,9.5,6.185,16,10.114,16a7.486,7.486,0,0,0,4.629-1.57l.3.28v.79l5.472,4.99L22.141,19Zm-6.566,0A4.72,4.72,0,0,1,5.189,9.5,4.72,4.72,0,0,1,10.114,5a4.72,4.72,0,0,1,4.925,4.5A4.72,4.72,0,0,1,10.114,14Z' transform='translate(-3 -3)' fill='%23cecece'/%3E%3C/svg%3E");
730
+ background-position: right 20px center;
731
+ padding-right: 42px;
732
+ background-size: 16px;
733
+ &::placeholder{
734
+ font-size: 13px;
735
+ }
736
+ }
737
+
738
+ &.w100{
739
+ width: 100%;
740
+ }
741
+
742
+ &:read-only{
743
+ color: #A3A4BE;
744
+ }
745
+ &.value:not(:placeholder-shown){
746
+ background-color: white;
747
+ }
748
+ &::placeholder{
749
+ color: #A3A4BE;
750
+ }
751
+
752
+ &:disabled{
753
+ background-color: #F4F4F7;
754
+ border-color: #F4F4F7;
755
+ opacity: 1;
756
+ color: #D5D5E5;
757
+ &::placeholder{
758
+ color: #D5D5E5;
759
+ }
760
+ }
761
+
762
+ &.disaNone{
763
+ border: 1px solid #D3D3D3 !important;
764
+ background-color: #F5F5FC !important;
765
+ color: black !important;
766
+ }
767
+ }
768
+
769
+ .indie_textarea_nor{
770
+ min-height: 100px;
771
+ border: 1px solid #D3D3D3;
772
+ background-color: #F5F5FC;
773
+ border-radius: 20px;
774
+ padding: 18px 20px;
775
+ font-weight: 500;
776
+ transition: background-color .25s, box-shadow .25s, border-color .25s;
777
+ line-height: 1.2;
778
+ -ms-overflow-style: none;
779
+ scrollbar-width: none;
780
+ font-size: 12px;
781
+
782
+ &::-webkit-scrollbar{
783
+ display: none;
784
+ }
785
+ &:hover,
786
+ &:focus{
787
+ background-color: white;
788
+ border-color: #1B206A;
789
+ box-shadow: 0 0 8px rgba(0, 0, 0, .16);
790
+ }
791
+ &::placeholder{
792
+ color: #A3A4BE;
793
+ }
794
+ &.value:not(:placeholder-shown){
795
+ background-color: white;
796
+ }
797
+ &.sm{
798
+ min-height: auto;
799
+ font-size: 12px;
800
+ padding: 15px 20px;
801
+ }
802
+ &.squre{
803
+ border-radius: 8px;
804
+ }
805
+ &.minHN{
806
+ min-height: auto;
807
+ }
808
+ }
809
+
810
+
811
+
812
+ // 셀렉트 - Select
813
+ .indie_select_nor{
814
+ // height: 42px;
815
+ height: 30px;
816
+ border-radius: 25px;
817
+ border: 1px solid #D3D3D3;
818
+ padding: 0 35px 0 20px;
819
+ font-size: 12px;
820
+ font-weight: 600;
821
+ color: #383E96;
822
+ transition: background-color .25s, box-shadow .25s, border-color .25s;
823
+ background-color: white;
824
+ background-position: right 15px center;
825
+ background-size: 12px;
826
+ max-width: 100%;
827
+
828
+ &.sm{
829
+ height: 30px;
830
+ font-size: 12px;
831
+ }
832
+
833
+ &.sm2{
834
+ height: 30px;
835
+ font-size: 12px;
836
+ }
837
+
838
+ &.sm3{
839
+ height: 30px;
840
+ font-size: 12px;
841
+ padding-left: 15px;
842
+ padding-right: 30px;
843
+ background-position: center right 10px;
844
+ background-size: 10px;
845
+ }
846
+
847
+ &.xs{
848
+ height: 22px;
849
+ font-size: 12px;
850
+ color: black;
851
+ }
852
+
853
+ &.xs2{
854
+ height: 26px;
855
+ font-size: 13px;
856
+ color: black;
857
+ }
858
+
859
+ &.xs3{
860
+ height: 28px;
861
+ font-size: 12px;
862
+ color: black;
863
+ padding-left: 15px;
864
+ }
865
+
866
+ &.md{
867
+ height: 36px;
868
+ }
869
+
870
+ &.transparent{
871
+ border: none;
872
+ color: black;
873
+ font-size: 12px;
874
+ }
875
+
876
+ &.squre{
877
+ border-radius: 8px;
878
+ }
879
+
880
+ &.tri{
881
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='6' viewBox='0 0 7 6'%3E%3Cpath d='M2.636,1.481a1,1,0,0,1,1.728,0L6.123,4.5A1,1,0,0,1,5.259,6H1.741A1,1,0,0,1,.877,4.5Z' transform='translate(7 6) rotate(180)' fill='%233f55c4'/%3E%3C/svg%3E");
882
+ }
883
+
884
+ &:focus,
885
+ &:hover{
886
+ border-color: #1B206A;
887
+ box-shadow: 0 0 8px rgba(0, 0, 0, .16);
888
+ }
889
+
890
+ &:invalid{
891
+ color: #A3A4BE;
892
+ }
893
+
894
+ &:disabled{
895
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.133' height='7.41' viewBox='0 0 13.133 7.41'%3E%3Cpath d='M17.59,8.59l-5.023,4.58L7.543,8.59,6,10l6.566,6,6.566-6Z' transform='translate(-6 -8.59)' fill='%23d5d5e4'/%3E%3C/svg%3E");
896
+ background-color: #F4F4F7;
897
+ border-color: #F4F4F7;
898
+ opacity: 1;
899
+ color: #D5D5E5;
900
+ }
901
+
902
+ &.black-color{
903
+ border-color: black;
904
+ }
905
+
906
+ &.w100{
907
+ width: 100%;
908
+ }
909
+ }
910
+
911
+
912
+ // 버튼 - Button
913
+ .indie_btn_nor{
914
+ height: 30px;
915
+ border-radius: 30px;
916
+ padding: 5px 20px;
917
+ text-align: center;
918
+ background-color: #fff;
919
+ font-size: 12px;
920
+ font-weight: 600;
921
+ border: 1px solid transparent;
922
+ background-repeat: no-repeat;
923
+ background-position: 22px 50%;
924
+ transition: background-color .25s, color .25s, border .25s;
925
+ vertical-align: middle;
926
+ align-items: center;
927
+ justify-content: center;
928
+
929
+ &:hover{
930
+ background-color: darken(white, 5%);
931
+ }
932
+
933
+ &.line{
934
+ border-color: #383E96;
935
+ }
936
+
937
+ &.line-black{
938
+ border-color: black;
939
+ }
940
+
941
+ &.line2{
942
+ border-color: #BDC0D3;
943
+ }
944
+
945
+ &.line3{
946
+ border-color: #BDC0D3;
947
+ color: #383E96;
948
+ font-weight: 500;
949
+ }
950
+
951
+ &.line4{
952
+ border-color: #BDC0D3;
953
+ font-weight: 400;
954
+ border-radius: 6px;
955
+ font-size: 12px;
956
+ height: 30px;
957
+ padding: 0 15px;
958
+ }
959
+
960
+ &.blue{
961
+ background-color: #383E96;
962
+ color: white;
963
+ &:hover{
964
+ background-color: darken(#383E96, 10%);
965
+ }
966
+ }
967
+
968
+ &.xss{
969
+ height: 24px;
970
+ padding: 0 15px;
971
+ font-size: 12px;
972
+ font-weight: 400;
973
+ &-min{
974
+ min-width: 100px;
975
+ }
976
+ }
977
+
978
+ &.xs{
979
+ height: 26px;
980
+ padding: 0 15px;
981
+ &-min{
982
+ min-width: 100px;
983
+ }
984
+ }
985
+
986
+ &.xs3{
987
+ height: 28px;
988
+ padding: 0 15px;
989
+ &-min{
990
+ min-width: 100px;
991
+ }
992
+ }
993
+
994
+ &.sm{
995
+ height: 30px;
996
+ padding: 0 14px;
997
+ &-min{
998
+ min-width: 100px;
999
+ }
1000
+ &-min2{
1001
+ min-width: 108px;
1002
+ }
1003
+ &.fzsm{
1004
+ font-size: 12px;
1005
+ }
1006
+ }
1007
+
1008
+ &.sm2{
1009
+ height: 30px;
1010
+ padding: 0 14px;
1011
+ &-min{
1012
+ min-width: 120px;
1013
+ }
1014
+ }
1015
+
1016
+ &.sm3{
1017
+ height: 30px;
1018
+ padding: 0 15px;
1019
+ font-size: 12px;
1020
+ &-min{
1021
+ min-width: 120px;
1022
+ }
1023
+ }
1024
+
1025
+ &.md{
1026
+ height: 30px;
1027
+ min-width: 140px;
1028
+ font-size: 12px;
1029
+ }
1030
+
1031
+ &.lg{
1032
+ height: 40px;
1033
+ min-width: 140px;
1034
+ font-size: 13px;
1035
+ }
1036
+
1037
+ &.squre{
1038
+ border-radius: 8px;
1039
+ }
1040
+
1041
+ &:disabled{
1042
+ background-color: #DDDDDD;
1043
+ border-color: #DDDDDD;
1044
+ color: #fff;
1045
+ }
1046
+ }
1047
+
1048
+
1049
+ // 버튼 - squre - 사각형
1050
+ .indie_btn_squre{
1051
+ height: 30px;
1052
+ min-width: 100px;
1053
+ border-radius: 3px;
1054
+ border: 1px solid #C2C7D7;
1055
+ font-size: 12px;
1056
+ background-repeat: no-repeat;
1057
+ padding: 0 18px;
1058
+ transition: .25s;
1059
+ text-align: center;
1060
+ &:hover{
1061
+ background-color: darken(white, 5%);
1062
+ }
1063
+ &.refresh{
1064
+ padding-left: 40px;
1065
+ text-align: right;
1066
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M17.659,6.35A8,8,0,1,0,19.74,14H17.659A6,6,0,1,1,12,6a5.92,5.92,0,0,1,4.223,1.78L13.006,11h7V4Z' transform='translate(-4.01 -4)' fill='%23c2c7d7'/%3E%3C/svg%3E");
1067
+ background-position: left 10px center;
1068
+ &.min{
1069
+ font-size: 12px;
1070
+ padding: 0 10px 0 35px;
1071
+ }
1072
+ }
1073
+
1074
+ &.search{
1075
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.141' height='17.49' viewBox='0 0 19.141 17.49'%3E%3Cpath d='M16.68,14h-.865l-.306-.27A6.155,6.155,0,0,0,17.227,9.5c0-3.59-3.185-6.5-7.114-6.5S3,5.91,3,9.5,6.185,16,10.114,16a7.486,7.486,0,0,0,4.629-1.57l.3.28v.79l5.472,4.99L22.141,19Zm-6.566,0A4.72,4.72,0,0,1,5.189,9.5,4.72,4.72,0,0,1,10.114,5a4.72,4.72,0,0,1,4.925,4.5A4.72,4.72,0,0,1,10.114,14Z' transform='translate(-3 -3)'/%3E%3C/svg%3E");
1076
+ background-repeat: no-repeat;
1077
+ background-position: center center;
1078
+ background-size: 15px;
1079
+ }
1080
+
1081
+ &.search2{
1082
+ border-radius: 6px;
1083
+ min-width: 90px;
1084
+ text-align: left;
1085
+ padding: 0 28px 0 15px;
1086
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.141' height='17.49' viewBox='0 0 19.141 17.49'%3E%3Cpath d='M16.68,14h-.865l-.306-.27A6.155,6.155,0,0,0,17.227,9.5c0-3.59-3.185-6.5-7.114-6.5S3,5.91,3,9.5,6.185,16,10.114,16a7.486,7.486,0,0,0,4.629-1.57l.3.28v.79l5.472,4.99L22.141,19Zm-6.566,0A4.72,4.72,0,0,1,5.189,9.5,4.72,4.72,0,0,1,10.114,5a4.72,4.72,0,0,1,4.925,4.5A4.72,4.72,0,0,1,10.114,14Z' transform='translate(-3 -3)'/%3E%3C/svg%3E");
1087
+ background-repeat: no-repeat;
1088
+ background-position: center right 8px;
1089
+ background-size: 15px;
1090
+ }
1091
+
1092
+ &.bgPrimary{
1093
+ border-color: #383E96;
1094
+ background-color: #383E96;
1095
+ color: white;
1096
+ &:hover{
1097
+ background-color: darken(#383E96, 10%);
1098
+ }
1099
+ }
1100
+
1101
+ &_icon{
1102
+ padding: 0 34px 0 10px;
1103
+ height: 30px;
1104
+ border-radius: 6px;
1105
+ border: 1px solid #C2C7D7;
1106
+ font-size: 12px;
1107
+ color: #383E96;
1108
+ background-repeat: no-repeat;
1109
+ transition: .25s;
1110
+ text-align: center;
1111
+ background-repeat: no-repeat;
1112
+ background-position: center right 10px;
1113
+ background-size: 13px;
1114
+
1115
+ &.reset{
1116
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.874' height='16.327' viewBox='0 0 11.874 16.327'%3E%3Cpath d='M9.937,3.226V1L6.969,3.969,9.937,6.937V4.711A4.456,4.456,0,0,1,14.39,9.163a4.357,4.357,0,0,1-.519,2.078l1.084,1.084a5.927,5.927,0,0,0-5.017-9.1Zm0,10.39A4.456,4.456,0,0,1,5.484,9.163,4.357,4.357,0,0,1,6,7.085L4.92,6a5.927,5.927,0,0,0,5.017,9.1v2.226l2.969-2.969L9.937,11.39Z' transform='translate(-4 -1)' fill='%23383e96'/%3E%3C/svg%3E");
1117
+ background-size: 11px;
1118
+ }
1119
+ &.delete{
1120
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='14' viewBox='0 0 11 14'%3E%3Cpath d='M5.786,15.444A1.568,1.568,0,0,0,7.357,17h6.286a1.568,1.568,0,0,0,1.571-1.556V6.111H5.786ZM16,3.778H13.25L12.464,3H8.536l-.786.778H5V5.333H16Z' transform='translate(-5 -3)' fill='%23383e96'/%3E%3C/svg%3E");
1121
+ background-size: 11px;
1122
+ }
1123
+ &.enable{
1124
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='9' viewBox='0 0 18 9'%3E%3Cpath d='M15.5,7h-9a4.5,4.5,0,0,0,0,9h9a4.5,4.5,0,0,0,0-9Zm0,7.2a2.7,2.7,0,1,1,2.7-2.7A2.7,2.7,0,0,1,15.5,14.2Z' transform='translate(-2 -7)' fill='%23383e96'/%3E%3C/svg%3E");
1125
+ background-size: 18px;
1126
+ background-color: white;
1127
+ &:hover{
1128
+ background-color: black;
1129
+ border-color: black;
1130
+ color: white;
1131
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='9' viewBox='0 0 18 9'%3E%3Cpath d='M15.5,7h-9a4.5,4.5,0,0,0,0,9h9a4.5,4.5,0,0,0,0-9Zm0,7.2a2.7,2.7,0,1,1,2.7-2.7A2.7,2.7,0,0,1,15.5,14.2Z' transform='translate(-2 -7)' fill='%23fff'/%3E%3C/svg%3E");
1132
+ }
1133
+ }
1134
+ &.save{
1135
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.281' height='13.281' viewBox='0 0 13.281 13.281'%3E%3Cpath d='M13.33,3H4.476A1.475,1.475,0,0,0,3,4.476v10.33a1.475,1.475,0,0,0,1.476,1.476h10.33a1.48,1.48,0,0,0,1.476-1.476V5.951ZM9.641,14.805a2.214,2.214,0,1,1,2.214-2.214A2.211,2.211,0,0,1,9.641,14.805Zm2.214-7.378H4.476V4.476h7.378Z' transform='translate(-3 -3)' fill='%23fff'/%3E%3C/svg%3E");
1136
+ }
1137
+ &.modify{
1138
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.362' height='13.281' viewBox='0 0 13.362 13.281'%3E%3Cpath d='M14.142,11.955,8.624,6.437a3.892,3.892,0,0,0-.91-4.184,4.009,4.009,0,0,0-4.488-.788L5.834,4.071,4.015,5.891,1.346,3.283a3.908,3.908,0,0,0,.788,4.488,3.892,3.892,0,0,0,4.184.91L11.838,14.2a.586.586,0,0,0,.849,0L14.082,12.8a.546.546,0,0,0,.061-.849Z' transform='translate(-0.956 -1.1)' fill='%23fff'/%3E%3C/svg%3E");
1139
+ }
1140
+ &.modify2{
1141
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.362' height='13.281' viewBox='0 0 13.362 13.281'%3E%3Cpath id='ic_build_24px' d='M14.142,11.955,8.624,6.437a3.892,3.892,0,0,0-.91-4.184,4.009,4.009,0,0,0-4.488-.788L5.834,4.071,4.015,5.891,1.346,3.283a3.908,3.908,0,0,0,.788,4.488,3.892,3.892,0,0,0,4.184.91L11.838,14.2a.586.586,0,0,0,.849,0L14.082,12.8a.546.546,0,0,0,.061-.849Z' transform='translate(-0.956 -1.1)' fill='%23393e97'/%3E%3C/svg%3E");
1142
+ }
1143
+ &.dispatch{
1144
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17'%3E%3Cpath d='M0,0H17V17H0Z' fill='none'/%3E%3Cpath d='M14.262,4.714a1.057,1.057,0,0,0-1-.714H5.476a1.064,1.064,0,0,0-1,.714L3,8.949V14.6a.709.709,0,0,0,.707.707h.707a.709.709,0,0,0,.707-.707V13.9h8.489V14.6a.709.709,0,0,0,.707.707h.707a.709.709,0,0,0,.707-.707V8.949ZM5.476,11.776a1.06,1.06,0,1,1,1.061-1.06A1.059,1.059,0,0,1,5.476,11.776Zm7.781,0a1.06,1.06,0,1,1,1.061-1.06A1.059,1.059,0,0,1,13.257,11.776ZM4.415,8.242,5.476,5.06h7.781l1.061,3.181Z' transform='translate(-0.867 -1.156)' fill='%23393e98'/%3E%3C/svg%3E%0A");
1145
+ background-size: 17px;
1146
+ }
1147
+
1148
+ &.pdN{
1149
+ padding-right: 10px;
1150
+ }
1151
+
1152
+ &.primary{
1153
+ background-color: #383E96;
1154
+ border-color: #383E96;
1155
+ color: white;
1156
+ &:hover,
1157
+ &:focus{
1158
+ background-color: darken(#383E96, 10%);
1159
+ }
1160
+ }
1161
+ &.min{
1162
+ font-size: 12px;
1163
+ padding: 0 10px 0 35px;
1164
+ }
1165
+ &.fz12{
1166
+ font-size: 12px;
1167
+ }
1168
+
1169
+ &:hover{
1170
+ background-color: darken(white, 3%);
1171
+ }
1172
+ }
1173
+ &.copy{
1174
+ padding-left: 40px;
1175
+ text-align: right;
1176
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.982' height='14.982' viewBox='0 0 14.982 14.982'%3E%3Cpath d='M83.371-867.265a1.078,1.078,0,0,1-.787-.337,1.078,1.078,0,0,1-.337-.786v-10.487a1.078,1.078,0,0,1,.337-.786,1.078,1.078,0,0,1,.787-.337H93.858a1.078,1.078,0,0,1,.787.337,1.078,1.078,0,0,1,.337.786v10.487a1.078,1.078,0,0,1-.337.786,1.078,1.078,0,0,1-.787.337Zm0-1.124H93.858v-7.116H88.24v-3.371H83.371Zm-2.247,3.371a1.078,1.078,0,0,1-.787-.337,1.078,1.078,0,0,1-.337-.787v-11.611h1.124v11.611H92.735v1.124Zm2.247-13.858v0Z' transform='translate(-80 880)' fill='%23444446'/%3E%3C/svg%3E");
1177
+ background-position: left 10px center;
1178
+ &.min{
1179
+ font-size: 12px;
1180
+ padding: 0 10px 0 35px;
1181
+ }
1182
+ }
1183
+
1184
+ &.only{
1185
+ width: 30px;
1186
+ height: 30px;
1187
+ min-width: 0;
1188
+ overflow: hidden;
1189
+ text-indent: -9999px;
1190
+ text-align: left;
1191
+ padding: 0;
1192
+ background-repeat: no-repeat;
1193
+ background-position: center center;
1194
+ &.refresh{
1195
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.874' height='16.327' viewBox='0 0 11.874 16.327'%3E%3Cpath d='M9.937,3.226V1L6.969,3.969,9.937,6.937V4.711A4.456,4.456,0,0,1,14.39,9.163a4.357,4.357,0,0,1-.519,2.078l1.084,1.084a5.927,5.927,0,0,0-5.017-9.1Zm0,10.39A4.456,4.456,0,0,1,5.484,9.163,4.357,4.357,0,0,1,6,7.085L4.92,6a5.927,5.927,0,0,0,5.017,9.1v2.226l2.969-2.969L9.937,11.39Z' transform='translate(-4 -1)' fill='%23111426'/%3E%3C/svg%3E%0A");
1196
+ }
1197
+ &.refresh_black{
1198
+ border-radius: 6px;
1199
+ background-color: black;
1200
+ border-color: transparent;
1201
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.874' height='16.327' viewBox='0 0 11.874 16.327'%3E%3Cpath d='M9.937,3.226V1L6.969,3.969,9.937,6.937V4.711A4.456,4.456,0,0,1,14.39,9.163a4.357,4.357,0,0,1-.519,2.078l1.084,1.084a5.927,5.927,0,0,0-5.017-9.1Zm0,10.39A4.456,4.456,0,0,1,5.484,9.163,4.357,4.357,0,0,1,6,7.085L4.92,6a5.927,5.927,0,0,0,5.017,9.1v2.226l2.969-2.969L9.937,11.39Z' transform='translate(-4 -1)' fill='%23fff'/%3E%3C/svg%3E%0A");
1202
+ }
1203
+ &.restore{
1204
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M0,0H20V20H0Z' fill='none'/%3E%3Cpath d='M11.333,10a1.62,1.62,0,1,0-1.619,1.556A1.593,1.593,0,0,0,11.333,10ZM9.714,3a7.148,7.148,0,0,0-7.286,7H0l3.238,3.111L6.476,10H4.048A5.555,5.555,0,0,1,9.714,4.556,5.555,5.555,0,0,1,15.381,10a5.555,5.555,0,0,1-5.667,5.444,5.857,5.857,0,0,1-3.287-1.011l-1.15,1.12A7.489,7.489,0,0,0,9.714,17,7.148,7.148,0,0,0,17,10,7.148,7.148,0,0,0,9.714,3Z' transform='translate(1 -0.382)'/%3E%3C/svg%3E");
1205
+ }
1206
+ }
1207
+
1208
+ &.prev{
1209
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.41' height='12' viewBox='0 0 7.41 12'%3E%3Cpath d='M16,16.34l-4.58-4.59L16,7.16,14.59,5.75l-6,6,6,6Z' transform='translate(-8.59 -5.75)'/%3E%3C/svg%3E");
1210
+ }
1211
+ &.next{
1212
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.41' height='12' viewBox='0 0 7.41 12'%3E%3Cpath d='M8.59,16.34l4.58-4.59L8.59,7.16,10,5.75l6,6-6,6Z' transform='translate(-8.59 -5.75)'/%3E%3C/svg%3E");
1213
+ }
1214
+
1215
+ &.black{
1216
+ background-color: black;
1217
+ border-color: black;
1218
+ &.refresh{
1219
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.874' height='16.327' viewBox='0 0 11.874 16.327'%3E%3Cpath d='M9.937,3.226V1L6.969,3.969,9.937,6.937V4.711A4.456,4.456,0,0,1,14.39,9.163a4.357,4.357,0,0,1-.519,2.078l1.084,1.084a5.927,5.927,0,0,0-5.017-9.1Zm0,10.39A4.456,4.456,0,0,1,5.484,9.163,4.357,4.357,0,0,1,6,7.085L4.92,6a5.927,5.927,0,0,0,5.017,9.1v2.226l2.969-2.969L9.937,11.39Z' transform='translate(-4 -1)' fill='%23fff'/%3E%3C/svg%3E%0A");
1220
+ }
1221
+ }
1222
+ }
1223
+
1224
+
1225
+ // 느낌표 text
1226
+ .indie_exclamation_mark_box{
1227
+ text-align: left;
1228
+ padding-left: 23px;
1229
+ position: relative;
1230
+ &.one{
1231
+ padding-top: 2px;
1232
+ &::before{
1233
+ top: 0;
1234
+ }
1235
+ .text{
1236
+ font-size: 12px;
1237
+ color: #707070;
1238
+ }
1239
+ }
1240
+ &::before{
1241
+ content: "!";
1242
+ display: block;
1243
+ position: absolute;
1244
+ left: 0;
1245
+ top: 3px;
1246
+ width: 16px;
1247
+ height: 16px;
1248
+ border-radius: 50%;
1249
+ background-color: #EBD977;
1250
+ text-align: center;
1251
+ color: white;
1252
+ line-height: 16px;
1253
+ font-weight: 600;
1254
+ text-align: center;
1255
+ padding: 0;
1256
+ }
1257
+ .sbj{
1258
+ font-weight: 500;
1259
+ color: #383E96;
1260
+ font-size: 12px;
1261
+ }
1262
+ .txt{
1263
+ font-size: 12px;
1264
+ color: black;
1265
+ line-height: 1.3;
1266
+ word-break: keep-all;
1267
+ b{
1268
+ font-weight: 600;
1269
+ }
1270
+ }
1271
+ .normal{
1272
+ font-size: 12px;
1273
+ color: #383E96;
1274
+ padding-top: 3px;
1275
+ line-height: 1.5;
1276
+ &.gray{
1277
+ color: #707070;
1278
+ }
1279
+ &.gray2{
1280
+ color: #383940;
1281
+ }
1282
+ }
1283
+ p{
1284
+ word-break: break-all;
1285
+ }
1286
+
1287
+ &.sm{
1288
+ padding-left: 20px;
1289
+ &::before{
1290
+ width: 13px;
1291
+ height: 13px;
1292
+ font-size: 10px;
1293
+ line-height: 14px;
1294
+ }
1295
+ p{
1296
+ padding-top: 1px;
1297
+ }
1298
+ }
1299
+
1300
+ &.gray{
1301
+ &::before{
1302
+ background-color: #697385;
1303
+ font-size: 12px;
1304
+ }
1305
+ .normal{
1306
+ color: #697385;
1307
+ }
1308
+ }
1309
+
1310
+ &.black{
1311
+ &::before{
1312
+ background-color: black;
1313
+ }
1314
+ .normal{
1315
+ color: #898989;
1316
+ }
1317
+ }
1318
+
1319
+ &.grayLight{
1320
+ &::before{
1321
+ background-color: #8E92C4;
1322
+ }
1323
+ .normal{
1324
+ color: #8E92C4;
1325
+ }
1326
+ }
1327
+ }
1328
+
1329
+
1330
+ // file form 영역
1331
+ .indie_file-upload-select-form{
1332
+ display: inline-flex;
1333
+ align-items: center;
1334
+ margin: 3px;
1335
+ flex-wrap: wrap;
1336
+ vertical-align: middle;
1337
+ gap: 5px 20px;
1338
+ padding: 5px 15px;
1339
+ // min-height: 42px;
1340
+ min-height: 30px;
1341
+ width: 300px;
1342
+ border-radius: 6px;
1343
+ border: 1px dashed #707070;
1344
+ background-color: #F5F5FC;
1345
+ padding-left: 40px;
1346
+ background-image: url("data:image/svg+xml,%3Csvg id='attach_file_black_24dp' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0,0H24V24H0Z' fill='none'/%3E%3Cpath d='M16.5,6V17.5a4,4,0,0,1-8,0V5a2.5,2.5,0,0,1,5,0V15.5a1,1,0,0,1-2,0V6H10v9.5a2.5,2.5,0,0,0,5,0V5A4,4,0,0,0,7,5V17.5a5.5,5.5,0,0,0,11,0V6Z' fill='%239595b8'/%3E%3C/svg%3E");
1347
+ background-repeat: no-repeat;
1348
+ background-position: left 10px center;
1349
+ transition: .25s;
1350
+
1351
+ &.w100{
1352
+ width: 100%;
1353
+ }
1354
+
1355
+ &:hover{
1356
+ background-color: #ededfa;
1357
+ }
1358
+ span{
1359
+ font-size: 12px;
1360
+ font-weight: 600;
1361
+ }
1362
+ .gray{
1363
+ color: #9595B8;
1364
+ }
1365
+ .black{
1366
+ margin-left: auto;
1367
+ &::after{
1368
+ content: "";
1369
+ width: 10px;
1370
+ height: 10px;
1371
+ display: inline-block;
1372
+ margin-left: 5px;
1373
+ vertical-align: middle;
1374
+ background-color: red;
1375
+ background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.061' height='10.707' viewBox='0 0 6.061 10.707'%3E%3Cpath d='M424.627,26.044l5-5-5-5' transform='translate(-424.274 -15.691)' fill='none' stroke='%23232323' stroke-width='1'/%3E%3C/svg%3E") no-repeat center center / 5px;
1376
+ }
1377
+ }
1378
+
1379
+ &.sm{
1380
+ // height: 28px;
1381
+ min-height: 28px;
1382
+ background-size: 18px;
1383
+ span{
1384
+ font-size: 12px;
1385
+ }
1386
+ }
1387
+ }
1388
+
1389
+ .indie_file-upload-view-form{
1390
+ display: inline-flex;
1391
+ align-items: center;
1392
+ margin: 3px;
1393
+ flex-wrap: wrap;
1394
+ vertical-align: middle;
1395
+ gap: 5px 10px;
1396
+ padding: 5px 15px;
1397
+ min-height: 30px;
1398
+ width: 300px;
1399
+ border-radius: 6px;
1400
+ border: 1px dashed #707070;
1401
+ background-color: white;
1402
+ padding-left: 40px;
1403
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0,0H24V24H0Z' fill='none'/%3E%3Cpath d='M16.5,6V17.5a4,4,0,0,1-8,0V5a2.5,2.5,0,0,1,5,0V15.5a1,1,0,0,1-2,0V6H10v9.5a2.5,2.5,0,0,0,5,0V5A4,4,0,0,0,7,5V17.5a5.5,5.5,0,0,0,11,0V6Z' fill='%23232323'/%3E%3C/svg%3E");
1404
+ background-repeat: no-repeat;
1405
+ background-position: left 10px center;
1406
+ font-size: 12px;
1407
+
1408
+ &.w100{
1409
+ width: 100%;
1410
+ }
1411
+
1412
+ .name{
1413
+ flex: 1;
1414
+ min-width: 0;
1415
+ font-size: 12px;
1416
+ font-weight: 600;
1417
+ overflow: hidden;
1418
+ text-overflow: ellipsis;
1419
+ white-space: nowrap;
1420
+ }
1421
+
1422
+ .indie_btn_close_sm{
1423
+ margin-left: auto;
1424
+ }
1425
+
1426
+ &.sm{
1427
+ // height: 28px;
1428
+ min-height: 28px;
1429
+ background-size: 18px;
1430
+ .name{
1431
+ font-size: 12px;
1432
+ }
1433
+ }
1434
+ }
1435
+
1436
+ .indie_file-upload-download-form{
1437
+ display: inline-flex;
1438
+ align-items: center;
1439
+ position: relative;
1440
+ margin: 3px;
1441
+ flex-wrap: wrap;
1442
+ vertical-align: middle;
1443
+ gap: 5px 10px;
1444
+ padding: 5px 15px;
1445
+ // min-height: 42px;
1446
+ min-height: 30px;
1447
+ width: 300px;
1448
+ border-radius: 6px;
1449
+ border: 1px solid #B8BAD0;
1450
+ background-color: white;
1451
+ padding-left: 40px;
1452
+ padding-right: 40px;
1453
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M0,0H24V24H0Z' fill='none'/%3E%3Cpath d='M16.5,6V17.5a4,4,0,0,1-8,0V5a2.5,2.5,0,0,1,5,0V15.5a1,1,0,0,1-2,0V6H10v9.5a2.5,2.5,0,0,0,5,0V5A4,4,0,0,0,7,5V17.5a5.5,5.5,0,0,0,11,0V6Z' fill='%23232323'/%3E%3C/svg%3E");
1454
+ background-repeat: no-repeat;
1455
+ background-position: left 10px center;
1456
+ transition: .25s;
1457
+ font-size: 12px;
1458
+
1459
+ &:hover{
1460
+ border-color: black;
1461
+ }
1462
+
1463
+ &::after{
1464
+ content: "";
1465
+ width: 16px;
1466
+ height: 16px;
1467
+ background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.505' height='11.542' viewBox='0 0 9.505 11.542'%3E%3Cpath d='M14.5,7.074H11.789V3H7.716V7.074H5l4.752,4.752ZM5,13.184v1.358h9.5V13.184Z' transform='translate(-5 -3)'/%3E%3C/svg%3E") no-repeat center center;
1468
+ position: absolute;
1469
+ right: 10px;
1470
+ top: calc(50% - 8px);
1471
+ }
1472
+
1473
+ &.w100{
1474
+ width: 100%;
1475
+ }
1476
+
1477
+ .name{
1478
+ flex: 1;
1479
+ min-width: 0;
1480
+ font-size: 12px;
1481
+ font-weight: 500;
1482
+ overflow: hidden;
1483
+ text-overflow: ellipsis;
1484
+ white-space: nowrap;
1485
+ }
1486
+
1487
+ .indie_btn_close_sm{
1488
+ margin-left: auto;
1489
+ }
1490
+
1491
+ &.sm{
1492
+ // height: 28px;
1493
+ min-height: 28px;
1494
+ background-size: 18px;
1495
+ .name{
1496
+ font-size: 12px;
1497
+ }
1498
+ }
1499
+ }
1500
+
1501
+
1502
+ // 전화번호
1503
+ .indie_phone_form_wrap{
1504
+ position: relative;
1505
+ .indie_phone_form{
1506
+ width: 100%;
1507
+ }
1508
+ .indie_search-normal-comp{
1509
+ width: 100%;
1510
+ position: absolute;
1511
+ left: 0;
1512
+ top: 0;
1513
+ z-index: -1;
1514
+ transition: .3s;
1515
+ opacity: 0;
1516
+ &.show{
1517
+ opacity: 1;
1518
+ z-index: 5;
1519
+ }
1520
+ }
1521
+ }
1522
+
1523
+ .indie_phone_form{
1524
+ // height: 42px;
1525
+ height: 30px;
1526
+ border: 1px solid #D3D3D3;
1527
+ background-color: white;
1528
+ border-radius: 25px;
1529
+ overflow: hidden;
1530
+ display: inline-flex;
1531
+ width: 100%;
1532
+ padding: 0 10px 0 15px;
1533
+ transition: background-color .25s, box-shadow .25s, border-color .25s;
1534
+
1535
+ > select{
1536
+ flex-shrink: 0;
1537
+ font-weight: 600;
1538
+ color: #383E96;
1539
+ font-size: 12px;
1540
+ }
1541
+ .select_btn{
1542
+ flex-shrink: 0;
1543
+ font-weight: 600;
1544
+ color: #383E96;
1545
+ font-size: 12px;
1546
+ padding-right: 25px;
1547
+ min-width: 60px;
1548
+ text-align: left;
1549
+ }
1550
+ > input{
1551
+ flex: 1;
1552
+ font-weight: 500;
1553
+ font-size: 12px;
1554
+ padding-left: 5px;
1555
+ min-width: 0;
1556
+ border: none;
1557
+ }
1558
+
1559
+ &.sm{
1560
+ height: 30px;
1561
+ font-size: 12px;
1562
+ }
1563
+
1564
+ &:focus,
1565
+ &:hover{
1566
+ border-color: #1B206A;
1567
+ box-shadow: 0 0 8px rgba(0, 0, 0, .16);
1568
+ }
1569
+
1570
+ &.sm{
1571
+ height: 28px;
1572
+ }
1573
+ }
1574
+
1575
+
1576
+
1577
+
1578
+
1579
+ // 라디오 박스 - radio_box
1580
+ .indie_radio_box{
1581
+ display: none;
1582
+
1583
+ + label{
1584
+ display: flex;
1585
+ flex-direction: column;
1586
+ justify-content: center;
1587
+ width: 100%;
1588
+ text-align: left;
1589
+ padding: 15px 15px;
1590
+ padding-left: 60px;
1591
+ position: relative;
1592
+ transition: background-color .25s;
1593
+ min-height: 54px;
1594
+ cursor: pointer;
1595
+
1596
+ &::before{
1597
+ position: absolute;
1598
+ left: 15px;
1599
+ top: 12px;
1600
+ content: "";
1601
+ display: inline-block;
1602
+ width: 26px;
1603
+ height: 26px;
1604
+ border-radius: 50%;
1605
+ background-color: white;
1606
+ border: 1px solid #BCBDCB;
1607
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23bcbdcb'/%3E%3C/svg%3E");
1608
+ background-repeat: no-repeat;
1609
+ background-position: center center;
1610
+ margin: 0 15px 0 0;
1611
+ transition: background-color .25s;
1612
+ }
1613
+
1614
+ p{
1615
+ color: #697385;
1616
+ }
1617
+
1618
+ .bolder{
1619
+ font-size: 12px;
1620
+ font-weight: 600;
1621
+ }
1622
+ .nor{
1623
+ font-size: 12px;
1624
+ }
1625
+
1626
+ span,
1627
+ b{
1628
+ color: inherit;
1629
+ font-size: inherit;
1630
+ }
1631
+
1632
+ //강조
1633
+ em{
1634
+ color: #3F9CED !important;
1635
+ text-decoration: underline !important;
1636
+ font-style: normal;
1637
+ }
1638
+ }
1639
+
1640
+ &.xs + label{
1641
+ padding: 15px 15px;
1642
+ padding-left: 45px;
1643
+ min-height: auto;
1644
+
1645
+ &::before{
1646
+ left: 10px;
1647
+ top: 50%;
1648
+ width: 17px;
1649
+ height: 17px;
1650
+ background-size: 6px;
1651
+ transform: translateY(-50%);
1652
+ }
1653
+
1654
+ }
1655
+
1656
+ &:checked{
1657
+ + label{
1658
+ &::before{
1659
+ background-color: #383E96;
1660
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23ffffff'/%3E%3C/svg%3E");
1661
+ }
1662
+ p{
1663
+ color: black;
1664
+ }
1665
+ }
1666
+ }
1667
+
1668
+ &:disabled{
1669
+ + label{
1670
+ background-color: #F4F4F4;
1671
+ &::before{
1672
+ background-color: #E5E5E5;
1673
+ border-color: #D0D0EA;
1674
+ }
1675
+ * {
1676
+ color: #B6BCC7;
1677
+ }
1678
+ }
1679
+ }
1680
+ }
1681
+
1682
+
1683
+
1684
+ .indie_radio_flex{
1685
+ display: none;
1686
+
1687
+ &.back{
1688
+ + label{
1689
+ display: grid;
1690
+ grid-template-columns: 1fr auto;
1691
+ &::before{
1692
+ grid-column: 2/3;
1693
+ grid-row: 1 / span 50;
1694
+ flex-shrink: 0;
1695
+ margin: 0 0 0 15px;
1696
+ align-self: center;
1697
+ }
1698
+ &:has(.addr){
1699
+ &::before{
1700
+ align-self: flex-start;
1701
+ }
1702
+ }
1703
+ }
1704
+ }
1705
+
1706
+ &.sm{
1707
+ + label{
1708
+ &::before{
1709
+ width: 20px;
1710
+ height: 20px;
1711
+ margin: 0 10px 0 0;
1712
+ background-size: 10px;
1713
+ }
1714
+ }
1715
+ }
1716
+
1717
+
1718
+ + label{
1719
+ display: flex;
1720
+ align-items: center;
1721
+ flex-wrap: wrap;
1722
+ padding: 12px 15px;
1723
+ transition: background-color .25s;
1724
+ cursor: pointer;
1725
+
1726
+ &::before{
1727
+ flex-shrink: 0;
1728
+ content: "";
1729
+ display: inline-block;
1730
+ width: 26px;
1731
+ height: 26px;
1732
+ border-radius: 50%;
1733
+ background-color: white;
1734
+ border: 1px solid #BCBDCB;
1735
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23bcbdcb'/%3E%3C/svg%3E");
1736
+ background-repeat: no-repeat;
1737
+ background-position: center center;
1738
+ margin: 0 15px 0 0;
1739
+ transition: background-color .25s;
1740
+ }
1741
+
1742
+ .txt{
1743
+ font-size: 12px;
1744
+ font-weight: 600;
1745
+ color: #697385;
1746
+ flex: 1;
1747
+ word-break: break-all;
1748
+ display: block;
1749
+ b{
1750
+ text-decoration: underline;
1751
+ font-weight: 800;
1752
+ color: #383E96;
1753
+ }
1754
+ }
1755
+
1756
+ .addr{
1757
+ display: block;
1758
+ width: 100%;
1759
+ font-size: 12px;
1760
+ font-weight: 500;
1761
+ color: #A3A5BD;
1762
+ margin-top: 5px;
1763
+ flex: 1;
1764
+ word-break: break-all;
1765
+ b{
1766
+ text-decoration: underline;
1767
+ font-weight: 700;
1768
+ color: #383E96;
1769
+ }
1770
+ }
1771
+ }
1772
+
1773
+ &:checked{
1774
+ + label{
1775
+ background-color: #FAFAFD;
1776
+ &::before{
1777
+ background-color: #383E96;
1778
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23fff'/%3E%3C/svg%3E");
1779
+ }
1780
+ .txt{
1781
+ color: #000;
1782
+ }
1783
+ .addr{
1784
+ color: #505162;
1785
+ }
1786
+ }
1787
+ }
1788
+ }
1789
+
1790
+
1791
+ .indie_radio_base{
1792
+ &.xs{
1793
+ + label{
1794
+ font-size: 12px;
1795
+ color: #0B205F;
1796
+ &::before{
1797
+ width: 16px;
1798
+ height: 16px;
1799
+ background-size: 6px;
1800
+ }
1801
+ }
1802
+ }
1803
+ &.sm{
1804
+ + label{
1805
+ font-size: 12px;
1806
+ &::before{
1807
+ width: 20px;
1808
+ height: 20px;
1809
+ background-size: 9px;
1810
+ }
1811
+ }
1812
+ }
1813
+ &.sm2{
1814
+ + label{
1815
+ font-size: 12px;
1816
+ &::before{
1817
+ width: 24px;
1818
+ height: 24px;
1819
+ background-size: 12px;
1820
+ }
1821
+ }
1822
+ }
1823
+ &.black{
1824
+ + label{
1825
+ color: #000;
1826
+ font-weight: 500;
1827
+ font-size: 12px;
1828
+ }
1829
+ }
1830
+
1831
+ &.color{
1832
+ + label{
1833
+ color: #B6B9CB;
1834
+ }
1835
+ &:checked + label{
1836
+ color: #383E96;
1837
+ }
1838
+ }
1839
+
1840
+ &.block{
1841
+ + label{
1842
+ display: block;
1843
+ padding-left: 25px;
1844
+ position: relative;
1845
+ .tit{
1846
+ font-weight: 700;
1847
+ font-size: 12px;
1848
+ }
1849
+ .txt{
1850
+ font-size: 12px;
1851
+ font-weight: 400;
1852
+ margin: 2px 0;
1853
+ }
1854
+ &::before{
1855
+ position: absolute;
1856
+ left: 0;
1857
+ top: 0px;
1858
+ }
1859
+ }
1860
+ }
1861
+
1862
+ &.white{
1863
+ + label{
1864
+ color: rgba(255, 255, 255, .28);
1865
+ &::before{
1866
+ opacity: .28;
1867
+ background-color: transparent;
1868
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23fff'/%3E%3C/svg%3E");
1869
+ }
1870
+ }
1871
+ &:checked + label{
1872
+ color: white;
1873
+ &::before{
1874
+ opacity: 1;
1875
+ background-color: white;
1876
+ border-color: white;
1877
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23383E96'/%3E%3C/svg%3E");
1878
+ }
1879
+ }
1880
+ }
1881
+
1882
+ &.mgN{
1883
+ + label::before{margin: 0;}
1884
+ }
1885
+
1886
+ display: none;
1887
+ + label{
1888
+ cursor: pointer;
1889
+ display: inline-flex;
1890
+ align-items: center;
1891
+ &::before{
1892
+ flex-shrink: 0;
1893
+ content: "";
1894
+ display: inline-block;
1895
+ width: 26px;
1896
+ height: 26px;
1897
+ border-radius: 50%;
1898
+ background-color: white;
1899
+ border: 1px solid #BCBDCB;
1900
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23BCBDCB'/%3E%3C/svg%3E");
1901
+ background-repeat: no-repeat;
1902
+ background-position: center center;
1903
+ margin: 0 8px 0 0;
1904
+ transition: background-color .25s;
1905
+ }
1906
+ &.lg{
1907
+ font-size: 12px;
1908
+ font-weight: 600;
1909
+ }
1910
+ &.gray{
1911
+ color: #677386;
1912
+ }
1913
+ &.blue{
1914
+ color: #109CF1;
1915
+ }
1916
+ &.red{
1917
+ color: #DE7171;
1918
+ }
1919
+ &.td{
1920
+ color: #696C89;
1921
+ }
1922
+ }
1923
+ &:checked{
1924
+ + label{
1925
+ &::before{
1926
+ background-color: #383E96;
1927
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23fff'/%3E%3C/svg%3E");
1928
+ border-color: transparent;
1929
+ }
1930
+ }
1931
+ }
1932
+
1933
+ @media (max-width: 1450px){
1934
+ + label{
1935
+ &::before{
1936
+ width: 25px;
1937
+ height: 25px;
1938
+ background-size: 10px;
1939
+ }
1940
+ }
1941
+ }
1942
+ }
1943
+
1944
+
1945
+
1946
+
1947
+
1948
+ // 검색어 컴포넌트
1949
+ .indie_search-normal-comp{
1950
+ position: relative;
1951
+ .input_box{
1952
+ position: relative;
1953
+ .indie_text_nor{
1954
+ width: 100%;
1955
+ padding-right: 40px;
1956
+ &:not(:placeholder-shown){
1957
+ background-color: white;
1958
+ & ~ .ic_search{
1959
+ display: none;
1960
+ }
1961
+ & ~ .indie_btn_close_sm{
1962
+ display: block;
1963
+ }
1964
+ }
1965
+ }
1966
+ .ic_search{
1967
+ width: 25px;
1968
+ height: 25px;
1969
+ overflow: hidden;
1970
+ text-indent: -9999px;
1971
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.141' height='17.49' viewBox='0 0 19.141 17.49'%3E%3Cpath d='M16.68,14h-.865l-.306-.27A6.155,6.155,0,0,0,17.227,9.5c0-3.59-3.185-6.5-7.114-6.5S3,5.91,3,9.5,6.185,16,10.114,16a7.486,7.486,0,0,0,4.629-1.57l.3.28v.79l5.472,4.99L22.141,19Zm-6.566,0A4.72,4.72,0,0,1,5.189,9.5,4.72,4.72,0,0,1,10.114,5a4.72,4.72,0,0,1,4.925,4.5A4.72,4.72,0,0,1,10.114,14Z' transform='translate(-3 -3)'/%3E%3C/svg%3E");
1972
+ background-repeat: no-repeat;
1973
+ background-position: center center;
1974
+ background-size: 15px;
1975
+ position: absolute;
1976
+ right: 7px;
1977
+ top: 50%;
1978
+ transform: translateY(-50%);
1979
+ }
1980
+ .indie_btn_close_sm{
1981
+ display: none;
1982
+ position: absolute;
1983
+ right: 15px;
1984
+ top: 50%;
1985
+ transform: translateY(-50%);
1986
+ }
1987
+ }
1988
+
1989
+ &.w100{
1990
+ width: 100%;
1991
+ }
1992
+
1993
+ &.sm{
1994
+ .input_box{
1995
+ .text_nor{
1996
+ height: 28px;
1997
+ font-size: 12px;
1998
+ }
1999
+ }
2000
+
2001
+ .indie_radio_flex + label::before{
2002
+ width: 25px;
2003
+ height: 25px;
2004
+ }
2005
+ .indie_radio_flex.back + label{
2006
+ .txt{
2007
+ padding-top: 3px;
2008
+ }
2009
+ }
2010
+ }
2011
+ }
2012
+
2013
+ // 검색어 리스트 - 팝업
2014
+ .indie_position_search{
2015
+ position: absolute;
2016
+ top: calc(100% - 1px);
2017
+ left: 20px;
2018
+ width: calc(100% - 40px);
2019
+ background-color: #fff;
2020
+ border: 1px solid black;
2021
+ border-radius: 0 0 6px 6px;
2022
+ overflow: auto;
2023
+ max-height: 310px;
2024
+ z-index: 50;
2025
+ box-shadow: 0 10px 10px rgba(0, 0, 0, .16);
2026
+ display: none;
2027
+ &.transparent{
2028
+ border: none;
2029
+ border-radius: 0 0 20px 20px;
2030
+ }
2031
+ &.gray{
2032
+ border-color: #E8E8E8;
2033
+ max-height: 150px;
2034
+ }
2035
+ &.wide{
2036
+ border-color: #E8E8E8;
2037
+ width: 100%;
2038
+ left: 0;
2039
+ border-radius: 10px;
2040
+ }
2041
+ &.on{
2042
+ display: block;
2043
+ }
2044
+
2045
+ .a_link_box{
2046
+ display: block;
2047
+ width: 100%;
2048
+ padding: 12px 15px;
2049
+ font-size: 12px;
2050
+ font-weight: 700;
2051
+ .txt{
2052
+ color: #697385;
2053
+ b{
2054
+ color: #383E96;
2055
+ text-decoration: underline;
2056
+ }
2057
+ }
2058
+ transition: .25s;
2059
+ &:focus,
2060
+ &:hover{
2061
+ background-color: #FAFAFD;
2062
+ }
2063
+ }
2064
+
2065
+ .choice_ul{
2066
+ > li{
2067
+ border-bottom: 1px solid #E8E8E8;
2068
+ position: relative;
2069
+
2070
+ }
2071
+ }
2072
+
2073
+ // 호버
2074
+ .choice_ul{
2075
+ > li:hover{
2076
+ .indie_radio_flex{
2077
+ + label{
2078
+ background-color: #FAFAFD;
2079
+
2080
+ &::before{
2081
+ background-color: #383E96;
2082
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23fff'/%3E%3C/svg%3E%0A");
2083
+ }
2084
+ .txt{
2085
+ color: black;
2086
+ }
2087
+ .addr{
2088
+ color: #505162;
2089
+ }
2090
+ }
2091
+ }
2092
+ }
2093
+ }
2094
+ }
2095
+
2096
+
2097
+ // 검색 - 텍스트
2098
+ .indie_value-text{
2099
+ font-size: 12px;
2100
+ color: black;
2101
+ font-weight: 600;
2102
+ // min-height: 35px;
2103
+ min-height: 30px;
2104
+ display: flex;
2105
+ flex-direction: column;
2106
+ justify-content: center;
2107
+ align-items: flex-start;
2108
+ line-height: 1.3;
2109
+ word-break: break-all;
2110
+
2111
+ &.black{
2112
+ color: black;
2113
+ }
2114
+ &.primary{
2115
+ color: #383E96;
2116
+ }
2117
+ &.gray{
2118
+ color: #697385;
2119
+ }
2120
+
2121
+ &.flight{
2122
+ display: inline-flex;
2123
+ min-height: auto;
2124
+ flex-direction: row;
2125
+ font-weight: 400;
2126
+ b{
2127
+ font-weight: 700;
2128
+ }
2129
+ }
2130
+
2131
+ &.textL{
2132
+ justify-content: flex-start;
2133
+ }
2134
+ &.alignC{
2135
+ align-items: center;
2136
+ }
2137
+
2138
+ &.normal{
2139
+ display: block;
2140
+ text-align: left;
2141
+ }
2142
+ }
2143
+
2144
+
2145
+
2146
+
2147
+
2148
+ // 버튼 - 포인트 뷰
2149
+ .indie_btn_pointView{
2150
+ height: 25px;
2151
+ border-radius: 20px;
2152
+ background-color: white;
2153
+ border: 1px solid #D5D5D5;
2154
+ color: black;
2155
+ font-size: 11px;
2156
+ font-weight: 500;
2157
+ padding: 0 25px 0 11px;
2158
+ background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.642' height='13.642' viewBox='0 0 13.642 13.642'%3E%3Cpath d='M0,0H13.642V13.642H0Z' fill='none'/%3E%3Cpath d='M8.979,2A3.976,3.976,0,0,0,5,5.979c0,2.984,3.979,7.389,3.979,7.389s3.979-4.405,3.979-7.389A3.976,3.976,0,0,0,8.979,2Zm0,5.4A1.421,1.421,0,1,1,10.4,5.979,1.422,1.422,0,0,1,8.979,7.4Z' transform='translate(-2.158 -0.863)'/%3E%3C/svg%3E%0A") no-repeat right 7px center;
2159
+ transition: .25s;
2160
+ &:hover{
2161
+ background-color: darken(white, 5%);
2162
+ }
2163
+ }
2164
+
2165
+ // 번역 버튼
2166
+ .indie_btn_translation_nor{
2167
+ height: 28px;
2168
+ padding: 0 35px 0 15px;
2169
+ border-radius: 8px;
2170
+ border: 1px solid #696C89;
2171
+ font-size: 12px;
2172
+ color: #383E96;
2173
+ font-weight: 500;
2174
+ background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M0,0H18V18H0Z' fill='none'/%3E%3Cpath d='M9.873,11.732l-1.9-1.869L8,9.841A13.031,13.031,0,0,0,10.77,4.978h2.19V3.489H7.728V2h-1.5V3.489H1V4.971H9.35A11.69,11.69,0,0,1,6.98,8.962,11.648,11.648,0,0,1,5.254,6.468h-1.5a13.071,13.071,0,0,0,2.228,3.4L2.181,13.6l1.062,1.057L6.98,10.935l2.325,2.316.568-1.519Zm4.209-3.775h-1.5L9.223,16.892h1.5l.837-2.234h3.551l.845,2.234h1.5Zm-1.959,5.212,1.211-3.224,1.211,3.224Z' transform='translate(-0.223 -0.446)' fill='%23383e96'/%3E%3C/svg%3E") no-repeat right 5px center;
2175
+ transition: .25s;
2176
+ &:hover{
2177
+ background-color: darken(white, 5%);
2178
+ }
2179
+ }
2180
+
2181
+ // change 버튼
2182
+ .indie_btn_AreaChange{
2183
+ height: 25px;
2184
+ border-radius: 20px;
2185
+ background-color: white;
2186
+ border: 1px solid #D5D5D5;
2187
+ color: #569AFF;
2188
+ font-size: 11px;
2189
+ font-weight: 500;
2190
+ padding: 0 25px 0 11px;
2191
+ background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11'%3E%3Cpath d='M11.973,8.039a3.69,3.69,0,0,0,0-1.078l1.193-.908a.272.272,0,0,0,.068-.352L12.1,3.8a.288.288,0,0,0-.345-.121l-1.408.55a4.161,4.161,0,0,0-.956-.539L9.18,2.231A.273.273,0,0,0,8.9,2H6.641a.273.273,0,0,0-.277.231L6.149,3.689a4.375,4.375,0,0,0-.956.539l-1.408-.55a.279.279,0,0,0-.345.121L2.31,5.7a.266.266,0,0,0,.068.352l1.193.908a4.245,4.245,0,0,0-.04.539,4.245,4.245,0,0,0,.04.539l-1.193.907A.272.272,0,0,0,2.31,9.3l1.131,1.9a.288.288,0,0,0,.345.121l1.408-.55a4.161,4.161,0,0,0,.956.539l.215,1.457A.273.273,0,0,0,6.641,13H8.9a.273.273,0,0,0,.277-.231l.215-1.457a4.375,4.375,0,0,0,.956-.539l1.408.55A.279.279,0,0,0,12.1,11.2l1.131-1.9a.272.272,0,0,0-.068-.352Zm-4.2,1.386A1.926,1.926,0,1,1,9.751,7.5,1.955,1.955,0,0,1,7.772,9.425Z' transform='translate(-2.271 -2)' fill='%23569aff'/%3E%3C/svg%3E") no-repeat right 7px center;
2192
+ transition: .25s;
2193
+ &:hover{
2194
+ background-color: darken(white, 5%);
2195
+ }
2196
+ }
2197
+
2198
+ // 버튼
2199
+ .indie_btn_addPoi{
2200
+ height: 42px;
2201
+ padding: 0 20px 0 40px;
2202
+ min-width: 135px;
2203
+ border-radius: 30px;
2204
+ background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M14.5,8.5h-3v-3a1.5,1.5,0,1,0-3,0l.053,3H5.5a1.5,1.5,0,1,0,0,3l3.053-.053L8.5,14.5a1.5,1.5,0,0,0,3,0V11.447l3,.053a1.5,1.5,0,0,0,0-3Z' transform='translate(-4 -4)' fill='%23569aff'/%3E%3C/svg%3E") no-repeat left 15px center;
2205
+ border: 1px dashed #569AFF;
2206
+ color: #569AFF;
2207
+ font-size: 12px;
2208
+ font-weight: 600;
2209
+ text-align: right;
2210
+ box-shadow: 0 2px 5px rgba(0, 0, 0, .16);
2211
+ transition: .25s;
2212
+ &:hover{
2213
+ background-color: darken(white, 5%);
2214
+ }
2215
+ }
2216
+
2217
+
2218
+ // 작은 닫기 버튼
2219
+ .indie_btn_close_sm{
2220
+ display: inline-block;
2221
+ vertical-align: middle;
2222
+ width: 15px;
2223
+ height: 15px;
2224
+ border-radius: 50%;
2225
+ overflow: hidden;
2226
+ text-indent: -9999px;
2227
+ background-color: rgba(0, 0 ,0, .7);
2228
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M19,6.41,17.59,5,12,10.59,6.41,5,5,6.41,10.59,12,5,17.59,6.41,19,12,13.41,17.59,19,19,17.59,13.41,12Z' transform='translate(-5 -5)' fill='%23fff'/%3E%3C/svg%3E%0A");
2229
+ background-repeat: no-repeat;
2230
+ background-size: 6px;
2231
+ background-position: center center;
2232
+ transition: background-color .2s;
2233
+ &:hover,
2234
+ &:focus{
2235
+ background-color: rgba(0, 0 ,0, .9);
2236
+ }
2237
+
2238
+ &.lg{
2239
+ width: 27px;
2240
+ height: 27px;
2241
+ background-size: 13px;
2242
+ }
2243
+ }
2244
+
2245
+
2246
+ // 태그 - 텍스트
2247
+ .indie_tag_close{
2248
+ display: inline-flex;
2249
+ align-items: center;
2250
+ margin: 3px;
2251
+ background-color: white;
2252
+ width: 100%;
2253
+ span{
2254
+ font-size: 12px;
2255
+ word-break: break-all;
2256
+ flex-grow: 1;
2257
+ }
2258
+ .btn_close_sm{
2259
+ flex-shrink: 0;
2260
+ margin-left: 10px;
2261
+ }
2262
+ &.sm{
2263
+ margin: 0 5px;
2264
+ span{
2265
+ font-size: 12px;
2266
+ color: #697385;
2267
+ }
2268
+ }
2269
+ &.full{
2270
+ gap: 5px;
2271
+ flex-wrap: wrap;
2272
+ .btn_close_sm{
2273
+ margin-left: 0;
2274
+ }
2275
+ }
2276
+ &.gap{
2277
+ flex-wrap: wrap;
2278
+ gap: 3px 8px;
2279
+ padding-right: 25px;
2280
+ position: relative;
2281
+
2282
+ .btn_close_sm{
2283
+ position: absolute;
2284
+ right: 0;
2285
+ top: 0;
2286
+ margin-left: 0;
2287
+ }
2288
+ }
2289
+ .rb{
2290
+ margin-left: auto;
2291
+ flex-grow: 0;
2292
+ }
2293
+
2294
+ span.primary-t{
2295
+ color: #383E96;
2296
+ }
2297
+
2298
+ &.round{
2299
+ border: 1px solid #CECECE;
2300
+ border-radius: 30px;
2301
+ padding: 5px 10px 5px 15px;
2302
+ &.space{
2303
+ .btn_close_sm{
2304
+ margin-left: 20px;
2305
+ }
2306
+ }
2307
+ }
2308
+
2309
+ &.pdR{
2310
+ .btn_close_sm{
2311
+ margin-left: 20px;
2312
+ }
2313
+ }
2314
+
2315
+ &.btnNo{
2316
+ padding: 5px 17px;
2317
+ min-width: auto;
2318
+ .btn_close_sm{
2319
+ display: none;
2320
+ }
2321
+ }
2322
+ }
2323
+
2324
+ // 태그 round
2325
+ .indie_tag_round{
2326
+ display: inline-flex;
2327
+ vertical-align: middle;
2328
+ margin: 3px;
2329
+ font-size: 12px;
2330
+ font-weight: 500;
2331
+ color: black;
2332
+ border-radius: 30px;
2333
+ border: 1px solid #E5E5E5;
2334
+ padding: 6px 15px;
2335
+ background-color: white;
2336
+ &.light{
2337
+ font-weight: 400;
2338
+ }
2339
+
2340
+ &.gray{
2341
+ font-weight: 500;
2342
+ color: #697385;
2343
+ }
2344
+ }
2345
+
2346
+
2347
+
2348
+ //폼 체크 라디오 - Check, Radio
2349
+ .indie_check_base{
2350
+ display: none;
2351
+ &.xs{
2352
+ + label{
2353
+ font-size: 12px;
2354
+ color: #0B205F;
2355
+ &::before{
2356
+ width: 16px;
2357
+ height: 16px;
2358
+ background-size: 9px;
2359
+ }
2360
+ }
2361
+ &.fz{
2362
+ + label{
2363
+ font-size: 12px;
2364
+ }
2365
+ }
2366
+ }
2367
+ &.sm{
2368
+ + label{
2369
+ font-size: 12px;
2370
+ &::before{
2371
+ width: 20px;
2372
+ height: 20px;
2373
+ background-size: 9px;
2374
+ }
2375
+ }
2376
+ }
2377
+ &.sm2{
2378
+ + label{
2379
+ font-size: 12px;
2380
+ &::before{
2381
+ width: 24px;
2382
+ height: 24px;
2383
+ background-size: 12px;
2384
+ }
2385
+ }
2386
+ }
2387
+ &.black{
2388
+ + label{
2389
+ color: black;
2390
+ font-weight: 500;
2391
+ font-size: 12px;
2392
+ }
2393
+ }
2394
+
2395
+ &.color{
2396
+ + label{
2397
+ color: #B6B9CB;
2398
+ }
2399
+ &:checked + label{
2400
+ color: #383E96;
2401
+ }
2402
+ &-black{
2403
+ &:checked + label{
2404
+ color: black;
2405
+ }
2406
+ }
2407
+ }
2408
+
2409
+ &.block{
2410
+ + label{
2411
+ display: block;
2412
+ padding-left: 25px;
2413
+ position: relative;
2414
+ .tit{
2415
+ font-weight: 700;
2416
+ font-size: 12px;
2417
+ }
2418
+ .txt{
2419
+ font-size: 12px;
2420
+ font-weight: 400;
2421
+ margin: 2px 0;
2422
+ }
2423
+ &::before{
2424
+ position: absolute;
2425
+ left: 0;
2426
+ top: 0px;
2427
+ }
2428
+ }
2429
+ }
2430
+
2431
+ &.white{
2432
+ + label{
2433
+ color: rgba(255, 255, 255, .28);
2434
+ &::before{
2435
+ opacity: .28;
2436
+ background-color: transparent;
2437
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.59' height='13.41' viewBox='0 0 17.59 13.41'%3E%3Cpath d='M9,16.17,4.83,12,3.41,13.41,9,19,21,7,19.59,5.59Z' transform='translate(-3.41 -5.59)' fill='%23fff'/%3E%3C/svg%3E");
2438
+ }
2439
+ }
2440
+ &:checked + label{
2441
+ color: white;
2442
+ &::before{
2443
+ opacity: 1;
2444
+ background-color: white;
2445
+ border-color: white;
2446
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.59' height='13.41' viewBox='0 0 17.59 13.41'%3E%3Cpath d='M9,16.17,4.83,12,3.41,13.41,9,19,21,7,19.59,5.59Z' transform='translate(-3.41 -5.59)' fill='%23383E96'/%3E%3C/svg%3E");
2447
+ }
2448
+ }
2449
+ }
2450
+
2451
+ &.only{
2452
+ + label{
2453
+ &::before{
2454
+ margin-right: 0;
2455
+ }
2456
+ }
2457
+ }
2458
+ + label{
2459
+ cursor: pointer;
2460
+ display: inline-flex;
2461
+ align-items: center;
2462
+ &::before{
2463
+ flex-shrink: 0;
2464
+ content: "";
2465
+ display: inline-block;
2466
+ // width: 30px;
2467
+ // height: 30px;
2468
+ width: 26px;
2469
+ height: 26px;
2470
+ border-radius: 50%;
2471
+ background-color: white;
2472
+ border: 1px solid #BCBDCB;
2473
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.59' height='13.41' viewBox='0 0 17.59 13.41'%3E%3Cpath d='M9,16.17,4.83,12,3.41,13.41,9,19,21,7,19.59,5.59Z' transform='translate(-3.41 -5.59)' fill='%23BCBDCB'/%3E%3C/svg%3E");
2474
+ background-repeat: no-repeat;
2475
+ background-position: center center;
2476
+ background-size: 13px;
2477
+ margin: 0 8px 0 0;
2478
+ transition: background-color .25s;
2479
+ }
2480
+ &.lg{
2481
+ font-size: 12px;
2482
+ font-weight: 600;
2483
+ }
2484
+ }
2485
+ &:checked{
2486
+ + label{
2487
+ &::before{
2488
+ background-color: #383E96;
2489
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.59' height='13.41' viewBox='0 0 17.59 13.41'%3E%3Cpath d='M9,16.17,4.83,12,3.41,13.41,9,19,21,7,19.59,5.59Z' transform='translate(-3.41 -5.59)' fill='%23fff'/%3E%3C/svg%3E");
2490
+ }
2491
+ }
2492
+ }
2493
+
2494
+ @media (max-width: 1450px){
2495
+ + label{
2496
+ &::before{
2497
+ width: 25px;
2498
+ height: 25px;
2499
+ background-size: 13px;
2500
+ }
2501
+ }
2502
+ }
2503
+ }
2504
+
2505
+
2506
+ .indie_radio_flex{
2507
+ display: none;
2508
+
2509
+ &.back{
2510
+ + label{
2511
+ display: grid;
2512
+ grid-template-columns: 1fr auto;
2513
+ &::before{
2514
+ grid-column: 2/3;
2515
+ grid-row: 1 / span 50;
2516
+ flex-shrink: 0;
2517
+ margin: 0 0 0 15px;
2518
+ align-self: center;
2519
+ }
2520
+ &:has(.addr){
2521
+ &::before{
2522
+ align-self: flex-start;
2523
+ }
2524
+ }
2525
+ }
2526
+ }
2527
+
2528
+ &.sm{
2529
+ + label{
2530
+ &::before{
2531
+ width: 20px;
2532
+ height: 20px;
2533
+ margin: 0 10px 0 0;
2534
+ background-size: 10px;
2535
+ }
2536
+ }
2537
+ }
2538
+
2539
+
2540
+ + label{
2541
+ display: flex;
2542
+ align-items: center;
2543
+ flex-wrap: wrap;
2544
+ padding: 12px 15px;
2545
+ transition: background-color .25s;
2546
+ cursor: pointer;
2547
+
2548
+ &::before{
2549
+ flex-shrink: 0;
2550
+ content: "";
2551
+ display: inline-block;
2552
+ width: 26px;
2553
+ height: 26px;
2554
+ border-radius: 50%;
2555
+ background-color: white;
2556
+ border: 1px solid #BCBDCB;
2557
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23BCBDCB'/%3E%3C/svg%3E%0A");
2558
+ background-repeat: no-repeat;
2559
+ background-position: center center;
2560
+ margin: 0 15px 0 0;
2561
+ transition: background-color .25s;
2562
+ }
2563
+
2564
+ .txt{
2565
+ font-size: 12px;
2566
+ font-weight: 600;
2567
+ color: #697385;
2568
+ flex: 1;
2569
+ word-break: break-all;
2570
+ display: block;
2571
+ b{
2572
+ text-decoration: underline;
2573
+ font-weight: 800;
2574
+ color: #383E96;
2575
+ }
2576
+ }
2577
+
2578
+ .addr{
2579
+ display: block;
2580
+ width: 100%;
2581
+ font-size: 12px;
2582
+ font-weight: 500;
2583
+ color: #A3A5BD;
2584
+ margin-top: 5px;
2585
+ flex: 1;
2586
+ word-break: break-all;
2587
+ b{
2588
+ text-decoration: underline;
2589
+ font-weight: 700;
2590
+ color: #383E96;
2591
+ }
2592
+ }
2593
+ }
2594
+
2595
+ &:checked{
2596
+ + label{
2597
+ background-color: #383E96;
2598
+ &::before{
2599
+ background-color: #383E96;
2600
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23fff'/%3E%3C/svg%3E%0A");
2601
+ }
2602
+ .txt{
2603
+ color: black;
2604
+ }
2605
+ .addr{
2606
+ color: #505162;
2607
+ }
2608
+ }
2609
+ }
2610
+ }
2611
+
2612
+
2613
+ // 스위치
2614
+ .indie_switch_type_5{
2615
+ display: none;
2616
+
2617
+ ~ label{
2618
+ height: 18px;
2619
+ line-height: 18px;
2620
+ background-color: #C2C7D7;
2621
+ padding: 0 11px 0 24px;
2622
+ border-radius: 30px;
2623
+ cursor: pointer;
2624
+ position: relative;
2625
+ width: auto;
2626
+ display: inline-block;
2627
+ vertical-align: middle;
2628
+ font-weight: 600;
2629
+ color: white;
2630
+ font-size: 11px;
2631
+
2632
+ span{
2633
+ font-size: 11px;
2634
+ display: block;
2635
+ position: relative;
2636
+ text-align: center;
2637
+ line-height: inherit;
2638
+ color: #D0D2E1;
2639
+ font-weight: 600;
2640
+ &.confirm{
2641
+ display: none;
2642
+ color: white;
2643
+ }
2644
+ &.none_confirm{
2645
+ color: white;
2646
+ }
2647
+ }
2648
+ &::before{
2649
+ content: '';
2650
+ display: block;
2651
+ width: 14px;
2652
+ height: 14px;
2653
+ background-color: white;
2654
+ position: absolute;
2655
+ top: 2px;
2656
+ left: 3px;
2657
+ border-radius: 50%;
2658
+ transition: all .1s;
2659
+ }
2660
+ }
2661
+
2662
+ &:checked{
2663
+ ~ label{
2664
+ padding: 0 24px 0 11px;
2665
+ background-color: #3F9CED;
2666
+ font-weight: 600;
2667
+
2668
+ .confirm{
2669
+ display: block;
2670
+ }
2671
+ .none_confirm{
2672
+ display: none;
2673
+ }
2674
+
2675
+ &::before{
2676
+ left: calc(100% - 17px);
2677
+ }
2678
+ }
2679
+ }
2680
+ }
2681
+
2682
+
2683
+
2684
+ // 박스
2685
+ .indie_f-row{
2686
+ display: flex;
2687
+ flex-wrap: wrap;
2688
+ gap: 5px;
2689
+ align-items: center;
2690
+
2691
+ &.mgt5{
2692
+ margin-top: 5px;
2693
+ }
2694
+
2695
+ .mg-l-auto{
2696
+ margin-left: auto;
2697
+ }
2698
+
2699
+
2700
+ .flexOne_1{
2701
+ flex: 1;
2702
+ }
2703
+ }
2704
+
2705
+ // 복사 버튼
2706
+ .indie_btn_copy_1{
2707
+ height: 30px;
2708
+ border-radius: 8px;
2709
+ text-align: center;
2710
+ padding-left: 15px;
2711
+ padding-right: 38px;
2712
+ font-size: 12px;
2713
+ background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='16' viewBox='0 0 14 16'%3E%3Cpath d='M12.316,1H3.474A1.469,1.469,0,0,0,2,2.455V12.637H3.474V2.455h8.842Zm2.211,2.909H6.421A1.469,1.469,0,0,0,4.947,5.364V15.546A1.469,1.469,0,0,0,6.421,17h8.105A1.469,1.469,0,0,0,16,15.546V5.364A1.469,1.469,0,0,0,14.526,3.909Zm0,11.637H6.421V5.364h8.105Z' transform='translate(-2 -1)'/%3E%3C/svg%3E%0A") no-repeat right 10px center / 15px;
2714
+ border: 1px solid #D3D3D3;
2715
+ transition: .25s;
2716
+ &:hover{
2717
+ background-color: darken(white, 5%);
2718
+ }
2719
+ }
2720
+
2721
+
2722
+
2723
+
2724
+
2725
+ // ****************************************************************************
2726
+
2727
+
2728
+
2729
+
2730
+
2731
+
2732
+
2733
+
2734
+
2735
+
2736
+
2737
+
2738
+
2739
+
2740
+
2741
+
2742
+ // 예약생성 - 스케쥴 수정
2743
+ //배차 - 탑승자 정보 - 팝업
2744
+ .indie_passengers_info_pop{
2745
+ position: relative;
2746
+ overflow-y: auto !important;
2747
+ flex-shrink: 0;
2748
+ .btn_close{
2749
+ position: absolute;
2750
+ right: 30px;
2751
+ top: 25px;
2752
+ z-index: 10;
2753
+ }
2754
+ .gray_info_normal{
2755
+ min-height: 200px;
2756
+ }
2757
+ }
2758
+
2759
+ .indie_pop_passenger_infos{
2760
+ position: relative;
2761
+ padding: 20px 30px 45px;
2762
+
2763
+ .title{
2764
+ padding-right: 30px;
2765
+ margin-bottom: 25px;
2766
+ .sbj{
2767
+ font-size: 35px;
2768
+ font-weight: 600;
2769
+ color: #0B205F;
2770
+ vertical-align: middle;
2771
+ letter-spacing: 0;
2772
+ padding: 0 5px;
2773
+ margin-bottom: 5px;
2774
+ }
2775
+ .code{
2776
+ display: inline-block;
2777
+ vertical-align: middle;
2778
+ border-radius: 35px;
2779
+ padding: 3px 17px;
2780
+ color: #0B205F;
2781
+ color: white;
2782
+ font-size: 12px;
2783
+ font-weight: 600;
2784
+ }
2785
+ }
2786
+
2787
+ .representive_box{
2788
+ position: relative;
2789
+ padding-right: 45px;
2790
+ .btn_print{
2791
+ position: absolute;
2792
+ right: 0;
2793
+ top: 60%;
2794
+ transform: translateY(-50%);
2795
+ }
2796
+ dl{
2797
+ dt{
2798
+ font-size: 12px;
2799
+ color: #697385;
2800
+ margin-bottom: 5px;
2801
+ }
2802
+ dd{
2803
+ .name{
2804
+ font-size: 24px;
2805
+ font-weight: 600;
2806
+ color: #383E96;
2807
+ margin-bottom: 5px;
2808
+ .gender{
2809
+ font-size: 18px;
2810
+ margin-left: 3px;
2811
+ }
2812
+ }
2813
+ .number{
2814
+ font-size: 15px;
2815
+ font-weight: 600;
2816
+ color: #383E96;
2817
+ letter-spacing: 0;
2818
+ }
2819
+ .place{
2820
+ font-size: 13px;
2821
+ color: #383E96;
2822
+ letter-spacing: 0;
2823
+ }
2824
+ }
2825
+ }
2826
+ }
2827
+
2828
+ .passenger_detail{
2829
+ max-height: 0;
2830
+ overflow: hidden;
2831
+ transition: max-height .7s cubic-bezier(0, 1, 0, 1), z-index .5s ease;
2832
+
2833
+ .tit{
2834
+ margin-top: 25px;
2835
+ display: flex;
2836
+ justify-content: space-between;
2837
+ margin-bottom: 5px;
2838
+ span{
2839
+ font-size: 12px;
2840
+ color: #697385;
2841
+ padding: 0 3px;
2842
+ }
2843
+ // .rb{
2844
+ // flex-basis: 70px;
2845
+ // }
2846
+ .passenger{
2847
+ width: 50%;
2848
+ }
2849
+ .birth{
2850
+ width: 30%;
2851
+ }
2852
+ .gender{
2853
+ width: 20%;
2854
+ }
2855
+ }
2856
+ .list{
2857
+ > li{
2858
+ display: flex;
2859
+ padding: 10px 0;
2860
+ border-top: 1px dashed #DBDBDB;
2861
+ &:first-child{
2862
+ border-top: none;
2863
+ }
2864
+ .passenger{
2865
+ font-size: 13px;
2866
+ color: #383E96;
2867
+ font-weight: 600;
2868
+ flex-grow: 1;
2869
+ padding: 0 3px;
2870
+ word-break: break-all;
2871
+ }
2872
+ .birth{
2873
+ font-size: 13px;
2874
+ color: #383E96;
2875
+ font-weight: 600;
2876
+ letter-spacing: 0;
2877
+ flex-shrink: 0;
2878
+ flex-basis: 30%;
2879
+ padding: 0 3px;
2880
+ word-break: break-all;
2881
+ }
2882
+ .gender{
2883
+ font-size: 13px;
2884
+ color: #383E96;
2885
+ font-weight: 600;
2886
+ flex-shrink: 0;
2887
+ flex-basis: 20%;
2888
+ padding: 0 3px;
2889
+ }
2890
+ }
2891
+ }
2892
+
2893
+ &.on{
2894
+ max-height: 1000px;
2895
+ transition: max-height 1s ease-in-out, z-index 1s ease-in-out;
2896
+ }
2897
+ }
2898
+
2899
+
2900
+ .btn_arrow_wide{
2901
+ position: absolute;
2902
+ left: 0;
2903
+ bottom: 0;
2904
+ height: 36px;
2905
+ width: 100%;
2906
+ overflow: hidden;
2907
+ text-indent: -9999px;
2908
+ background-color: white;
2909
+ transition: background-color .25s;
2910
+ &::before{
2911
+ content: "";
2912
+ width: 42px;
2913
+ height: 8px;
2914
+ background-repeat: no-repeat;
2915
+ background-position: center center;
2916
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44.1' height='8.557' viewBox='0 0 44.1 8.557'%3E%3Cpath d='M161.164,13.748l21.09,7.391,21.738-7.391' transform='translate(-160.527 -13.11)' fill='none' stroke='%23383e96' stroke-linecap='round' stroke-width='1'/%3E%3C/svg%3E");
2917
+ position: absolute;
2918
+ left: 50%;
2919
+ top: 50%;
2920
+ transform: translate(-50%, -50%) rotate(0);
2921
+ transition: transform .25s;
2922
+ }
2923
+ &.on{
2924
+ &::before{
2925
+ transform: translate(-50%, -50%) rotate(180deg);
2926
+ }
2927
+ }
2928
+ &:hover{
2929
+ background-color: darken(white, 2%);
2930
+ }
2931
+ }
2932
+ }
2933
+
2934
+
2935
+ .indie_dispatch_passenger_sche_w{
2936
+ display: flex;
2937
+ width: 100%;
2938
+ height: 100%;
2939
+
2940
+ &.invoice_detail{
2941
+ display: grid;
2942
+ grid-template-rows: 1fr;
2943
+ grid-template-columns: minmax(250px, 1fr) minmax(350px, 460px) minmax(400px, 560px);
2944
+ .passenger_box{
2945
+ width: auto;
2946
+ }
2947
+ .price_inner_pops{
2948
+ position: relative;
2949
+ }
2950
+ .pop_passenger_infos{
2951
+ padding-top: 20px;
2952
+ }
2953
+ }
2954
+
2955
+ &.bill_management{
2956
+ display: grid;
2957
+ grid-template-rows: 1fr;
2958
+ grid-template-columns: minmax(400px, 490px) minmax(450px, 1fr);
2959
+ .passenger_box{
2960
+ width: auto;
2961
+ z-index: 1;
2962
+ }
2963
+ .price_inner_pops{
2964
+ z-index: 2;
2965
+ }
2966
+ }
2967
+
2968
+
2969
+
2970
+ // 예약스케쥴
2971
+ &.booking_schedule{
2972
+ display: grid;
2973
+ grid-template-columns: minmax(300px, 1fr) minmax(1000px, 1250px);
2974
+ grid-template-rows: 1fr;
2975
+ overflow: auto;
2976
+ }
2977
+
2978
+
2979
+ .map_box{
2980
+ flex-grow: 1;
2981
+ background-color: Azure;
2982
+ position: relative;
2983
+
2984
+ .indie_ic_map_loca{
2985
+ position: absolute;
2986
+ z-index: 10;
2987
+ }
2988
+
2989
+ .put_map_box{
2990
+ position: relative;
2991
+ width: 100%;
2992
+ height: 100%;
2993
+ background-color: royalblue;
2994
+ }
2995
+ }
2996
+
2997
+ .passenger_box{
2998
+ flex-shrink: 0;
2999
+ width: 460px;
3000
+ display: flex;
3001
+ flex-direction: column;
3002
+ overflow-y: auto;
3003
+
3004
+ .bottoms_add{
3005
+ height: 90px;
3006
+ flex-shrink: 0;
3007
+ border-top: 1px solid #B6B9CC;
3008
+ display: flex;
3009
+ flex-wrap: wrap;
3010
+ justify-content: center;
3011
+ align-items: center;
3012
+ padding: 10px;
3013
+ gap: 10px 45px;
3014
+ }
3015
+ .total_dl{
3016
+ padding-left: 40px;
3017
+ background-repeat: no-repeat;
3018
+ background-position: left center;
3019
+ &.distance{
3020
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='12' viewBox='0 0 22 12'%3E%3Cpath d='M21,6H3A2.006,2.006,0,0,0,1,8v8a2.006,2.006,0,0,0,2,2H21a2.006,2.006,0,0,0,2-2V8A2.006,2.006,0,0,0,21,6Zm0,10H3V8H5v4H7V8H9v4h2V8h2v4h2V8h2v4h2V8h2Z' transform='translate(-1 -6)'/%3E%3C/svg%3E");
3021
+ }
3022
+ &.period{
3023
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='21' viewBox='0 0 18 21'%3E%3Cpath id='ic_timer_24px' d='M15,1H9V3h6ZM11,14h2V8H11Zm8.03-6.61,1.42-1.42a11.048,11.048,0,0,0-1.41-1.41L17.62,5.98a9,9,0,1,0,1.41,1.41ZM12,20a7,7,0,1,1,7-7A6.995,6.995,0,0,1,12,20Z' transform='translate(-3 -1)'/%3E%3C/svg%3E");
3024
+ }
3025
+ dt{
3026
+ font-size: 12px;
3027
+ color: black;
3028
+ }
3029
+ dd{
3030
+ font-size: 18px;
3031
+ font-weight: 700;
3032
+ color: black;
3033
+ }
3034
+ }
3035
+
3036
+ .place_list_wrap{
3037
+ flex-grow: 1;
3038
+ display: flex;
3039
+ flex-direction: column;
3040
+ overflow-y: auto;
3041
+ border-top: 1px solid #D0D0EA;
3042
+ position: relative;
3043
+
3044
+ .search_white_wrap{
3045
+ border-bottom: none;
3046
+ display: none;
3047
+ transition: .25s;
3048
+ z-index: 15;
3049
+
3050
+ &.focus-in{
3051
+ box-shadow: 0px 10px 10px rgba(0, 0, 0, .15);
3052
+ border: 1px solid #383E96;
3053
+ border-radius: 8px;
3054
+ margin: 10px 15px 0;
3055
+ // background-color: #1B206A;
3056
+ .s_txt{
3057
+ &::placeholder{
3058
+ transition: .25s;
3059
+ font-weight: 700;
3060
+ color: #4D58A5;
3061
+ }
3062
+ }
3063
+ .position_search{
3064
+ top: 100%;
3065
+ left: 8px;
3066
+ width: calc(100% - 16px);
3067
+ }
3068
+ }
3069
+ }
3070
+
3071
+ .search_text_typing{
3072
+ position: absolute;
3073
+ left: 0;
3074
+ top: 73px;
3075
+ width: 100%;
3076
+ height: calc(30% - 73px);
3077
+ z-index: 10;
3078
+ background-color: #EFF0F8;
3079
+ display: flex;
3080
+ justify-content: center;
3081
+ align-items: center;
3082
+ p{
3083
+ font-size: 18px;
3084
+ color: #B1B3C3;
3085
+ font-weight: 700;
3086
+ }
3087
+ }
3088
+
3089
+ .gray_info_normal{
3090
+ border-top: none;
3091
+ overflow-y: inherit;
3092
+ }
3093
+
3094
+ .indie_schedule_drag_list{
3095
+ .data{
3096
+ .b_drag{display: none;}
3097
+ .b_close{display: none;}
3098
+ }
3099
+ }
3100
+
3101
+ &.manual{
3102
+ .search_white_wrap{
3103
+ display: flex;
3104
+ }
3105
+ .indie_schedule_drag_list{
3106
+ > li:not(.start):not(.end){
3107
+ .data{
3108
+ padding-left: 40px;
3109
+ .b_drag{display: block;}
3110
+ .b_close{display: block;}
3111
+ }
3112
+ }
3113
+ .btn_nor.xs{
3114
+ height: 22px;
3115
+ font-size: 11px;
3116
+ font-weight: 400;
3117
+ margin-top: 15px;
3118
+ }
3119
+ }
3120
+ }
3121
+
3122
+
3123
+ }
3124
+ }
3125
+
3126
+
3127
+ .price_inner_pops{
3128
+ overflow: auto;
3129
+ box-shadow: -5px 0 6px rgba(0, 0, 0, .16);
3130
+ display: flex;
3131
+ flex-direction: column;
3132
+
3133
+ .top_box{
3134
+ h4{
3135
+ font-size: 24px;
3136
+ font-weight: 700;
3137
+ color: black;
3138
+ }
3139
+ }
3140
+
3141
+ .basic_price_box{
3142
+ padding: 20px 35px;
3143
+ border-bottom: 1px dashed #E5E5E5;
3144
+ .sbj{
3145
+ font-size: 13px;
3146
+ color: #383E96;
3147
+ }
3148
+ .price{
3149
+ font-size: 18px;
3150
+ color: #383E96;
3151
+ font-weight: 700;
3152
+ }
3153
+ }
3154
+
3155
+ .basic_price_wrapper{
3156
+ padding: 25px 35px;
3157
+ border-bottom: 1px dashed #E5E5E5;
3158
+ display: flex;
3159
+ flex-wrap: wrap;
3160
+ gap: 10px 50px;
3161
+ align-items: flex-start;
3162
+ justify-content: center;
3163
+ dl{
3164
+ dt{
3165
+ font-size: 13px;
3166
+ color: #383E96;
3167
+ }
3168
+ dd{
3169
+ font-size: 18px;
3170
+ color: #383E96;
3171
+ font-weight: 700;
3172
+ }
3173
+ }
3174
+ }
3175
+ .add_item_box{
3176
+ display: flex;
3177
+ flex-wrap: wrap;
3178
+ align-items: center;
3179
+ padding: 17px 20px 17px 35px;
3180
+ gap: 5px;
3181
+ .sbj{
3182
+ font-size: 13px;
3183
+ color: #383E96;
3184
+ }
3185
+ .btn_nor.line-black{
3186
+ margin-left: auto;
3187
+ }
3188
+ }
3189
+
3190
+ .table_box{
3191
+ overflow: auto;
3192
+ min-height: 300px;
3193
+ }
3194
+
3195
+ .total_price{
3196
+ text-align: right;
3197
+ padding: 15px 25px;
3198
+ border-top: 1px solid #B6B9CC;
3199
+ background-color: #EFF0F8;
3200
+ p{
3201
+ font-size: 12px;
3202
+ font-weight: 700;
3203
+ color: black;
3204
+ letter-spacing: 0;
3205
+ b{
3206
+ font-weight: 700;
3207
+ margin-left: 7px;
3208
+ font-size: 18px;
3209
+ }
3210
+ }
3211
+ }
3212
+
3213
+ .bottom_box{
3214
+ display: flex;
3215
+ align-items: center;
3216
+ justify-content: flex-end;
3217
+ gap: 5px;
3218
+ height: 90px;
3219
+ padding: 10px 20px;
3220
+ }
3221
+ }
3222
+
3223
+ .pop_inside_wrap{
3224
+ .botton_box{
3225
+ padding: 25px;
3226
+ text-align: center;
3227
+ border-top: 1px solid #E5E5E5;
3228
+ }
3229
+ }
3230
+
3231
+ }
3232
+
3233
+
3234
+
3235
+
3236
+
3237
+ .indie_booking_schedule_modify_box{
3238
+ height: 100%;
3239
+ overflow: auto;
3240
+ display: flex;
3241
+ flex-direction: column;
3242
+
3243
+ .header_b{
3244
+ display: flex;
3245
+ flex-wrap: wrap;
3246
+ gap: 10px 15px;
3247
+ align-items: center;
3248
+ border-bottom: 1px solid #B6B9CC;
3249
+ flex-shrink: 0;
3250
+ padding: 15px 20px;
3251
+ padding-right: 70px;
3252
+
3253
+ .tags{
3254
+ height: 30px;
3255
+ border-radius: 20px;
3256
+ display: flex;
3257
+ background-color: #0B205F;
3258
+ span{
3259
+ color: white;
3260
+ font-weight: 600;
3261
+ font-size: 14px;
3262
+ display: flex;
3263
+ align-items: center;
3264
+ padding: 0 15px 0 25px;
3265
+ }
3266
+ strong{
3267
+ border-radius: 20px;
3268
+ color: white;
3269
+ font-weight: 600;
3270
+ font-size: 16px;
3271
+ display: flex;
3272
+ align-items: center;
3273
+ padding: 0 20px;
3274
+ background-color: #1B3EA7;
3275
+ }
3276
+ }
3277
+
3278
+ .date_text{
3279
+ line-height: 30px;
3280
+ font-size: 16px;
3281
+ color: black;
3282
+ font-weight: 600;
3283
+ margin-left: 10px;
3284
+ }
3285
+
3286
+ .indie_select_nor{
3287
+ height: 30px;
3288
+ border: none;
3289
+ color: black;
3290
+ font-size: 16px;
3291
+ font-weight: 700;
3292
+ padding-right: 50px;
3293
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M5.143,1.429a1,1,0,0,1,1.715,0l4.234,7.056A1,1,0,0,1,10.234,10H1.766A1,1,0,0,1,.909,8.486Z' transform='translate(12 10) rotate(180)' fill='%23232323'/%3E%3C/svg%3E");
3294
+ background-repeat: no-repeat;
3295
+ background-position: right center;
3296
+ padding-left: 0;
3297
+ &:focus,
3298
+ &:hover{
3299
+ box-shadow: none;
3300
+ }
3301
+ }
3302
+ }
3303
+
3304
+ .contents_b{
3305
+ flex-grow: 1;
3306
+ overflow: auto;
3307
+ display: flex;
3308
+ :where(.serviceZone, .scheduleZone, .bookingInfoZone){
3309
+ border-left: 1px solid #B6B9CC;
3310
+ display: flex;
3311
+ flex-direction: column;
3312
+ overflow: auto;
3313
+ h3{
3314
+ font-size: 16px;
3315
+ font-weight: 800;
3316
+ color: #0B205F;
3317
+ padding: 25px 10px 20px 30px;
3318
+ flex-shrink: 0;
3319
+ }
3320
+ }
3321
+ .serviceZone{
3322
+ border-left: none;
3323
+ }
3324
+ }
3325
+
3326
+ .serviceZone{
3327
+ width: 230px;
3328
+ flex-shrink: 0;
3329
+
3330
+ .list_box{
3331
+ padding: 10px 20px 20px;
3332
+ flex: 1;
3333
+ min-height: 0;
3334
+ overflow: auto;
3335
+ }
3336
+
3337
+ .indie_schedule_drag_list{
3338
+
3339
+ > li:not(.start, .end){
3340
+ .dot_txt{
3341
+ background-color: #919EDE;
3342
+ border: 6px solid #3F55C4;
3343
+ }
3344
+ }
3345
+ .service_data{
3346
+ padding-top: 20px;
3347
+ .sbj{
3348
+ font-size: 11px;
3349
+ color: #8F9CB4;
3350
+ margin-bottom: 5px;
3351
+ font-weight: 500;
3352
+ }
3353
+ .city{
3354
+ font-size: 13px;
3355
+ font-weight: 600;
3356
+ color: black;
3357
+ }
3358
+ .city_gather{
3359
+ display: flex;
3360
+ flex-direction: column;
3361
+ align-items: flex-start;
3362
+ .tag_round{
3363
+ display: inline-flex;
3364
+ }
3365
+ }
3366
+ }
3367
+ }
3368
+ }
3369
+
3370
+ .scheduleZone{
3371
+ flex: 1;
3372
+ background-color: #FAFAFD;
3373
+
3374
+ .schedule_box{
3375
+ flex: 1;
3376
+ min-height: 0;
3377
+ overflow: auto;
3378
+ padding: 10px 25px;
3379
+
3380
+ .indie_schedule_drag_list{
3381
+ > li{
3382
+ &.start,
3383
+ &.end{
3384
+ .data{
3385
+ padding-right: 25px;
3386
+ border-color: transparent;
3387
+ }
3388
+ }
3389
+ .data{
3390
+ margin-left: 0;
3391
+
3392
+ &:has(.b_close){
3393
+ padding-right: 24px;
3394
+ padding-top: 20px;
3395
+ }
3396
+ .indie_btn_pointView,
3397
+ .indie_btn_AreaChange{
3398
+ margin-top: 10px;
3399
+ }
3400
+
3401
+ .top_b{
3402
+ display: flex;
3403
+ align-items: center;
3404
+ gap: 10px;
3405
+ margin-bottom: 5px;
3406
+ .lb{
3407
+ flex: 1;
3408
+ min-width: 0;
3409
+ word-break: break-all;
3410
+ }
3411
+ .case{
3412
+ position: relative;
3413
+ left: 0;
3414
+ top: 0;
3415
+ flex-shrink: 0;
3416
+ }
3417
+ .booking_place{
3418
+ margin-bottom: 0;
3419
+ }
3420
+ }
3421
+ .booking_time{
3422
+ font-size: 11px;
3423
+ font-weight: 700;
3424
+ margin-bottom: 5px;
3425
+ }
3426
+ .booking_place{
3427
+ font-size: 14px;
3428
+ font-weight: 500;
3429
+ color: #5375C4;
3430
+ display: flex;
3431
+ flex-wrap: wrap;
3432
+ gap: 5px 10px;
3433
+ align-items: center;
3434
+ margin-bottom: 5px;
3435
+ }
3436
+ .booking_addr{
3437
+ margin-top: 3px;
3438
+ font-size: 12px;
3439
+ color: #AFB3B9;
3440
+ line-height: 1.5;
3441
+ font-weight: 500;
3442
+ }
3443
+
3444
+ &:not(:has(.b_drag)){
3445
+ padding-left: 20px;
3446
+ }
3447
+
3448
+ .indie_search-normal-comp{
3449
+ margin-top: 12px;
3450
+ }
3451
+ }
3452
+
3453
+ .b_close{
3454
+ display: inline-block;
3455
+ vertical-align: middle;
3456
+ width: 15px;
3457
+ height: 15px;
3458
+ border-radius: 50%;
3459
+ overflow: hidden;
3460
+ text-indent: -9999px;
3461
+ background-color: rgba(0, 0 ,0, .7);
3462
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M19,6.41,17.59,5,12,10.59,6.41,5,5,6.41,10.59,12,5,17.59,6.41,19,12,13.41,17.59,19,19,17.59,13.41,12Z' transform='translate(-5 -5)' fill='%23fff'/%3E%3C/svg%3E");
3463
+ background-repeat: no-repeat;
3464
+ background-size: 6px;
3465
+ background-position: center center;
3466
+ transition: background-color .2s;
3467
+ &:hover,
3468
+ &:focus{
3469
+ background-color: rgba(0, 0 ,0, .9);
3470
+ }
3471
+
3472
+ right: 10px;
3473
+ top: 10px
3474
+ }
3475
+ }
3476
+
3477
+ .indie_btn_addPoi{
3478
+ position: relative;
3479
+ left: -45px;
3480
+ z-index: 10;
3481
+ }
3482
+ }
3483
+ }
3484
+
3485
+ .bottoms_add{
3486
+ flex-shrink: 0;
3487
+ background-color: white;
3488
+ border-top: 1px solid #B6B9CC;
3489
+ display: flex;
3490
+ flex-wrap: wrap;
3491
+ justify-content: center;
3492
+ align-items: center;
3493
+ gap: 2px 45px;
3494
+ padding: 20px 20px;
3495
+ .total_dl{
3496
+ padding-left: 28px;
3497
+ background-repeat: no-repeat;
3498
+ background-position: left center;
3499
+ display: flex;
3500
+ align-items: center;
3501
+ justify-content: center;
3502
+ min-height: 22px;
3503
+ &.distance{
3504
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='12' viewBox='0 0 22 12'%3E%3Cpath d='M21,6H3A2.006,2.006,0,0,0,1,8v8a2.006,2.006,0,0,0,2,2H21a2.006,2.006,0,0,0,2-2V8A2.006,2.006,0,0,0,21,6Zm0,10H3V8H5v4H7V8H9v4h2V8h2v4h2V8h2v4h2V8h2Z' transform='translate(-1 -6)'/%3E%3C/svg%3E");
3505
+ }
3506
+ &.period{
3507
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='21' viewBox='0 0 18 21'%3E%3Cpath d='M15,1H9V3h6ZM11,14h2V8H11Zm8.03-6.61,1.42-1.42a11.048,11.048,0,0,0-1.41-1.41L17.62,5.98a9,9,0,1,0,1.41,1.41ZM12,20a7,7,0,1,1,7-7A6.995,6.995,0,0,1,12,20Z' transform='translate(-3 -1)'/%3E%3C/svg%3E");
3508
+ }
3509
+ dt{
3510
+ font-size: 12px;
3511
+ color: #323341;
3512
+ margin-right: 7px;
3513
+ }
3514
+ dd{
3515
+ font-size: 18px;
3516
+ font-weight: 700;
3517
+ color: #323341;
3518
+ }
3519
+ }
3520
+ }
3521
+ }
3522
+
3523
+ .bookingInfoZone{
3524
+ flex: 1.05;
3525
+
3526
+ h3{
3527
+ display: flex;
3528
+ flex-wrap: wrap;
3529
+ gap: 10px;
3530
+ align-items: center;
3531
+ .indie_btn_copy_1{
3532
+ margin-left: auto;
3533
+ margin-right: 10px;
3534
+ }
3535
+ }
3536
+
3537
+ .table_box{
3538
+ flex: 1;
3539
+ overflow: auto;
3540
+ min-height: 0;
3541
+ border-top: 1px solid #111426;
3542
+ .tbl_bookingInfo{
3543
+ margin-top: -1px;
3544
+ }
3545
+ }
3546
+ .tbl_bookingInfo{
3547
+ width: 100%;
3548
+ border-top: 1px solid #111426;
3549
+ table-layout: fixed;
3550
+ border-collapse: collapse;
3551
+ vertical-align: middle;
3552
+ tr{
3553
+ border-bottom: 1px solid #DEDEDE;
3554
+ vertical-align: middle;
3555
+ }
3556
+ th{
3557
+ text-align: left;
3558
+ padding: 13px 13px 13px 20px;
3559
+ font-size: 12px;
3560
+ color: #697385;
3561
+ font-weight: 500;
3562
+ border-right: 1px solid #DEDEDE;
3563
+ }
3564
+ td{
3565
+ vertical-align: middle;
3566
+ padding: 5px 15px;
3567
+ text-align: left;
3568
+ height: 40px;
3569
+ }
3570
+
3571
+ .value-txt{
3572
+ font-size: 12px;
3573
+ font-weight: 500;
3574
+ padding: 6px 0;
3575
+ line-height: 1.5;
3576
+ }
3577
+
3578
+ .check_base + label{
3579
+ font-size: 12px;
3580
+ margin-right: 15px;
3581
+ }
3582
+
3583
+ .tag_round{
3584
+ font-size: 12px;
3585
+ }
3586
+ }
3587
+
3588
+ .modify-textarea{
3589
+ width: 100%;
3590
+ padding: 10px 20px;
3591
+ background-color: white;
3592
+ border: 1px solid #D3D3D3;
3593
+ border-radius: 20px;
3594
+ font-size: 12px;
3595
+ font-weight: 600;
3596
+ line-height: 1.5;
3597
+ height: 105px;
3598
+ }
3599
+
3600
+ .btn_translation_nor{
3601
+ margin-top: 5px;
3602
+ margin-bottom: 5px;
3603
+ }
3604
+ }
3605
+
3606
+ .footer_b{
3607
+ border-top: 1px solid #B6B9CC;
3608
+ flex-shrink: 0;
3609
+ display: flex;
3610
+ align-items: center;
3611
+ flex-wrap: wrap;
3612
+ gap: 10px 20px;
3613
+ padding: 20px;
3614
+ .priceAll{
3615
+ display: flex;
3616
+ flex-wrap: wrap;
3617
+ align-items: center;
3618
+ gap: 10px 20px;
3619
+ dt{
3620
+ font-size: 12px;
3621
+ }
3622
+ dd{
3623
+ font-size: 16px;
3624
+ font-weight: 600;
3625
+ color: black;
3626
+ span{
3627
+ color: #EC7777;
3628
+ margin-right: 5px;
3629
+ }
3630
+ strong{
3631
+ font-size: inherit;
3632
+ font-weight: inherit;
3633
+ color: inherit;
3634
+ }
3635
+ }
3636
+ }
3637
+ .left{
3638
+ margin-right: auto;
3639
+ }
3640
+ .right{
3641
+ margin-left: auto;
3642
+ }
3643
+ }
3644
+ }
3645
+
3646
+ .indie_booking_occupant_passenger_box{
3647
+ border-bottom: 1px dashed #E5E5E5;
3648
+ padding: 25px 30px 28px;
3649
+ .title_b{
3650
+ display: flex;
3651
+ flex-wrap: wrap;
3652
+ align-items: center;
3653
+ margin-bottom: 10px;
3654
+ gap: 10px;
3655
+ padding: 0 10px;
3656
+ .sbj{
3657
+ margin-right: auto;
3658
+ font-size: 14px;
3659
+ color: #383E96;
3660
+ }
3661
+ }
3662
+ .text_nor{
3663
+ margin-bottom: 8px;
3664
+ }
3665
+ .check_box{
3666
+ margin-top: 15px;
3667
+ padding: 0 10px;
3668
+ span{
3669
+ display: inline-block;
3670
+ vertical-align: middle;
3671
+ margin-right: 15px;
3672
+ }
3673
+ }
3674
+ }
3675
+
3676
+ // 지도 위치 아이콘
3677
+ .indie_ic_map_loca{
3678
+ display: inline-flex;
3679
+ vertical-align: top;
3680
+ justify-content: center;
3681
+ align-items: center;
3682
+ text-align: center;
3683
+ width: 26px;
3684
+ height: 30px;
3685
+ background-repeat: no-repeat;
3686
+ background-position: center center;
3687
+ background-size: 100%;
3688
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='30' viewBox='0 0 26 30'%3E%3Cg transform='translate(0 0)'%3E%3Cg %3E%3Cpath d='M32.192,22.215,25.419,29a3.418,3.418,0,0,1-4.838,0l-6.773-6.781a13.007,13.007,0,1,1,18.384,0' transform='translate(-10 0.001)' fill='%233f55c4'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate(0 0.006)'%3E%3Cg %3E%3Cpath d='M23,30.028a3.4,3.4,0,0,1-2.422-1l-6.77-6.777a13,13,0,1,1,18.384,0l-6.77,6.777a3.4,3.4,0,0,1-2.422,1M23,1.759a11.289,11.289,0,0,0-7.975,19.269L21.8,27.8a1.7,1.7,0,0,0,2.409,0l6.77-6.777A11.285,11.285,0,0,0,23,1.759' transform='translate(-10 -0.036)' fill='%23070203'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
3689
+ color: white;
3690
+ font-size: 12px;
3691
+ font-weight: 600;
3692
+ &.start{
3693
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='30' viewBox='0 0 26 30'%3E%3Cg transform='translate(0 0)'%3E%3Cg %3E%3Cpath d='M32.192,22.215,25.419,29a3.418,3.418,0,0,1-4.838,0l-6.773-6.781a13.007,13.007,0,1,1,18.384,0' transform='translate(-10 0.001)' fill='%23e8516c'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate(0 0.006)'%3E%3Cg %3E%3Cpath d='M23,30.028a3.4,3.4,0,0,1-2.422-1l-6.77-6.777a13,13,0,1,1,18.384,0l-6.77,6.777a3.4,3.4,0,0,1-2.422,1M23,1.759a11.289,11.289,0,0,0-7.975,19.269L21.8,27.8a1.7,1.7,0,0,0,2.409,0l6.77-6.777A11.285,11.285,0,0,0,23,1.759' transform='translate(-10 -0.036)' fill='%23070203'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
3694
+ }
3695
+ &.end{
3696
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='30' viewBox='0 0 26 30'%3E%3Cg transform='translate(0 0)'%3E%3Cg %3E%3Cpath d='M32.192,22.215,25.419,29a3.418,3.418,0,0,1-4.838,0l-6.773-6.781a13.007,13.007,0,1,1,18.384,0' transform='translate(-10 0.001)' fill='%2345cadf'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate(0 0.006)'%3E%3Cg %3E%3Cpath d='M23,30.028a3.4,3.4,0,0,1-2.422-1l-6.77-6.777a13,13,0,1,1,18.384,0l-6.77,6.777a3.4,3.4,0,0,1-2.422,1M23,1.759a11.289,11.289,0,0,0-7.975,19.269L21.8,27.8a1.7,1.7,0,0,0,2.409,0l6.77-6.777A11.285,11.285,0,0,0,23,1.759' transform='translate(-10 -0.036)' fill='%23070203'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
3697
+ }
3698
+ }
3699
+
3700
+
3701
+
3702
+ // 스케쥴 리스트
3703
+ .indie_schedule_drag_list{
3704
+ > li{
3705
+ position: relative;
3706
+ padding-bottom: 13px;
3707
+ padding-left: 40px;
3708
+ border-color: transparent;
3709
+ &::before{
3710
+ content: "";
3711
+ position: absolute;
3712
+ left: 12px;
3713
+ top: 18px;
3714
+ z-index: 1;
3715
+ display: block;
3716
+ width: 1px;
3717
+ height: 100%;
3718
+ background-color: #DBDBDB;
3719
+ }
3720
+ &.md-dash{
3721
+ &::after{
3722
+ content: "";
3723
+ display: block;
3724
+ position: absolute;
3725
+ left: 12px;
3726
+ top: calc(50% - 6px);
3727
+ width: 27px;
3728
+ height: 1px;
3729
+ border-top: 1px dotted #BCBDCB;
3730
+ }
3731
+ }
3732
+ &:last-child{
3733
+ padding-bottom: 0;
3734
+ &::before{
3735
+ width: 0;
3736
+ height: 0;
3737
+ background-color: transparent;
3738
+ }
3739
+ }
3740
+ .dot_txt{
3741
+ display: block;
3742
+ width: 24px;
3743
+ height: 24px;
3744
+ border-radius: 50%;
3745
+ line-height: 24px;
3746
+ text-align: center;
3747
+ color: white;
3748
+ font-size: 12px;
3749
+ font-weight: 600;
3750
+ background-color: #3F55C4;
3751
+ position: absolute;
3752
+ left: 0;
3753
+ top: 17px;
3754
+ z-index: 5;
3755
+ }
3756
+ .km_txt{
3757
+ display: inline-block;
3758
+ text-align: center;
3759
+ min-width: 40px;
3760
+ line-height: 22px;
3761
+ border-radius: 20px;
3762
+ background-color: white;
3763
+ border: 1px solid #ddd;
3764
+ font-size: 10px;
3765
+ font-family: "Montserrat", "Noto Sans KR", sans-serif;
3766
+ color: #696C89;
3767
+ font-weight: 700;
3768
+ padding: 0 5px;
3769
+ position: absolute;
3770
+ left: 12px;
3771
+ bottom: 10px;
3772
+ z-index: 5;
3773
+ transform: translateX(-50%);
3774
+ }
3775
+ .data{
3776
+ margin-left: 20px;
3777
+ background-color: white;
3778
+ border-radius: 20px;
3779
+ box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
3780
+ padding: 17px 15px 17px 40px;
3781
+ position: relative;
3782
+ border: 1px solid transparent;
3783
+ .a_place{
3784
+ position: absolute;
3785
+ right: 20px;
3786
+ bottom: 20px;
3787
+ font-size: 13px;
3788
+ }
3789
+ .time_box{
3790
+ margin-top: 10px;
3791
+ &.modify select{
3792
+ border-color: #383E96;
3793
+ background-color: #F0FBFF;
3794
+ }
3795
+ }
3796
+ .time_txt{
3797
+ font-size: 12px;
3798
+ margin-top: 10px;
3799
+ b{
3800
+ font-size: inherit;
3801
+ font-weight: 600;
3802
+ color: inherit;
3803
+ margin: 0 2px;
3804
+ }
3805
+ }
3806
+ .b_drag{
3807
+ display: block;
3808
+ width: 14px;
3809
+ height: 25px;
3810
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='19' viewBox='0 0 10 19'%3E%3Cpath d='M4.186,1.139a1,1,0,0,1,1.627,0l3.057,4.28A1,1,0,0,1,8.057,7H1.943a1,1,0,0,1-.814-1.581Z' fill='%23d1d1d1'/%3E%3Cpath d='M4.186,1.139a1,1,0,0,1,1.627,0l3.057,4.28A1,1,0,0,1,8.057,7H1.943a1,1,0,0,1-.814-1.581Z' transform='translate(10 19) rotate(180)' fill='%23d1d1d1'/%3E%3C/svg%3E");
3811
+ background-repeat: no-repeat;
3812
+ background-position: center center;
3813
+ background-size: 10px;
3814
+ overflow: hidden;
3815
+ text-indent: -9999px;
3816
+ position: absolute;
3817
+ top: 50%;
3818
+ left: 15px;
3819
+ transform: translateY(-50%);
3820
+ }
3821
+ .b_close{
3822
+ display: block;
3823
+ width: 20px;
3824
+ height: 20px;
3825
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M19,6.41,17.59,5,12,10.59,6.41,5,5,6.41,10.59,12,5,17.59,6.41,19,12,13.41,17.59,19,19,17.59,13.41,12Z' transform='translate(-5 -5)' fill='%23bababa'/%3E%3C/svg%3E");
3826
+ background-repeat: no-repeat;
3827
+ background-position: center center;
3828
+ background-size: 14px;
3829
+ overflow: hidden;
3830
+ text-indent: -9999px;
3831
+ position: absolute;
3832
+ right: 16px;
3833
+ top: 14px;
3834
+ }
3835
+ .case{
3836
+ line-height: 22px;
3837
+ padding: 0 10px;
3838
+ border-radius: 15px;
3839
+ background-color: #3F55C4;
3840
+ color: white;
3841
+ font-size: 11px;
3842
+ font-weight: 500;
3843
+ display: inline-block;
3844
+ position: absolute;
3845
+ right: 16px;
3846
+ top: 16px;
3847
+ &.start{
3848
+ background-color: #E8516C;
3849
+ }
3850
+ &.end{
3851
+ background-color: #45CADF;
3852
+ }
3853
+ display: none;
3854
+ }
3855
+ .time{
3856
+ font-size: 11px;
3857
+ color: black;
3858
+ font-family: "Montserrat", "Noto Sans KR", sans-serif;
3859
+ font-weight: 700;
3860
+ margin-bottom: 5px;
3861
+ }
3862
+ .place{
3863
+ font-size: 14px;
3864
+ color: black;
3865
+ margin-bottom: 2px;
3866
+ word-break: break-all;
3867
+ }
3868
+ .addr{
3869
+ font-size: 13px;
3870
+ color: #AFB3B9;
3871
+ word-break: break-all;
3872
+ }
3873
+
3874
+ &.select-add{
3875
+ padding-right: 210px;
3876
+ .user-select{
3877
+ width: 158px;
3878
+ position: absolute;
3879
+ right: 45px;
3880
+ top: 50%;
3881
+ transform: translateY(-50%);
3882
+ }
3883
+ }
3884
+ }
3885
+
3886
+ &.start,
3887
+ &.end{
3888
+ .dot_txt{
3889
+ border-width: 6px;
3890
+ border-style: solid;
3891
+ }
3892
+ .b_close{
3893
+ display: none;
3894
+ }
3895
+ .case{
3896
+ display: block;
3897
+ }
3898
+ .b_drag{
3899
+ display: none;
3900
+ }
3901
+ .data{
3902
+ &.select-add{
3903
+ padding-right: 245px;
3904
+ }
3905
+ .user-select{
3906
+ right: 85px;
3907
+ }
3908
+ margin-left: 0;
3909
+ padding-left: 25px;
3910
+ padding-right: 75px;
3911
+ }
3912
+ }
3913
+ &.start{
3914
+ .dot_txt{
3915
+ background-color: #FDDBDB;
3916
+ border-color: #E8516C;
3917
+ }
3918
+ .case{
3919
+ background-color: #E8516C;
3920
+ }
3921
+ .data{
3922
+ border-color: #E8516C;
3923
+ }
3924
+ .time_txt{
3925
+ color: #E8516C;
3926
+ }
3927
+ }
3928
+ &.end{
3929
+ .dot_txt{
3930
+ background-color: #C8EBF0;
3931
+ border-color: #45CADF;
3932
+ }
3933
+ .km_txt{
3934
+ display: none;
3935
+ }
3936
+ .case{
3937
+ background-color: #45CADF;
3938
+ }
3939
+ .data{
3940
+ border-color: #45CADF;
3941
+ }
3942
+ .time_txt{
3943
+ color: #1696CE;
3944
+ }
3945
+ }
3946
+ &.select{
3947
+ .dot_txt{
3948
+ background-color: #E8516C;
3949
+ }
3950
+ .data{
3951
+ border: 1px solid #323341;
3952
+ .place{
3953
+ color: #000;
3954
+ font-weight: 600;
3955
+ }
3956
+ }
3957
+ }
3958
+ &.start_num{
3959
+ .b_close{
3960
+ display: none;
3961
+ }
3962
+ .case{
3963
+ display: block;
3964
+ background-color: #E8516C;
3965
+ }
3966
+ }
3967
+ &.end_num{
3968
+ .b_close{
3969
+ display: none;
3970
+ }
3971
+ .km_txt{
3972
+ display: none;
3973
+ }
3974
+ .case{
3975
+ display: block;
3976
+ background-color: #45CADF;
3977
+ }
3978
+ }
3979
+ }
3980
+
3981
+
3982
+
3983
+ &.complete{
3984
+ .data{
3985
+ margin-left: 0;
3986
+ padding-left: 25px;
3987
+ .place{
3988
+ font-size: 13px;
3989
+ font-weight: 600;
3990
+ color: #5375C4;
3991
+ }
3992
+ .addr{
3993
+ margin-top: 5px;
3994
+ font-size: 12px;
3995
+ letter-spacing: 0;
3996
+ line-height: 1.5;
3997
+ }
3998
+
3999
+ // &.modify{
4000
+ // padding-left: 40px;
4001
+ // }
4002
+ }
4003
+ .start,
4004
+ .end{
4005
+ .data{
4006
+ border-color: transparent;
4007
+ padding-right: 25px;
4008
+ .place{
4009
+ padding-right: 45px;
4010
+ }
4011
+ }
4012
+ }
4013
+ }
4014
+
4015
+ .ch_form{
4016
+ display: inline-block;
4017
+ vertical-align: middle;
4018
+ }
4019
+ }
4020
+
4021
+
4022
+
4023
+
4024
+
4025
+
4026
+
4027
+
4028
+
4029
+
4030
+
4031
+
4032
+
4033
+
4034
+
4035
+
4036
+
4037
+
4038
+
4039
+
4040
+
4041
+
4042
+
4043
+
4044
+
4045
+
4046
+
4047
+ // 예약생성 - 항공편 검색
4048
+ .indie_flight_name_top_infos{
4049
+ display: flex;
4050
+ align-items: flex-end;
4051
+ gap: 10px;
4052
+ margin: 23px 0;
4053
+ padding: 0 0 20px 8px;
4054
+ border-bottom: 1px solid #E5E5E5;
4055
+ .sbj{
4056
+ font-size: 15px;
4057
+ margin-bottom: 5px;
4058
+ }
4059
+ .date{
4060
+ font-size: 16px;
4061
+ font-weight: 600;
4062
+ display: flex;
4063
+ flex-wrap: wrap;
4064
+ gap: 10px;
4065
+ color: black;
4066
+ }
4067
+ .infos{
4068
+ flex: 1;
4069
+ }
4070
+ .btns{
4071
+ flex-shrink: 0;
4072
+ margin-left: auto;
4073
+ }
4074
+ }
4075
+
4076
+ .indie_tab_squre_01_cont{
4077
+ flex-grow: 1;
4078
+ overflow: auto;
4079
+ min-height: 150px;
4080
+ }
4081
+
4082
+ .indie_flight_paing_box{
4083
+ flex-shrink: 0;
4084
+ text-align: center;
4085
+ margin-top: 20px;
4086
+ }
4087
+
4088
+ .indie_flight_name_select_list{
4089
+ > li{
4090
+ .check{
4091
+ transition: .25s;
4092
+ &:hover{
4093
+ background-color: #F7F7FA;
4094
+ }
4095
+
4096
+ &:has(.indie_radio_box:checked){
4097
+ background-color: #F7F7FA;
4098
+ }
4099
+ }
4100
+ .flight_b + label{
4101
+ display: flex;
4102
+ flex-direction: row;
4103
+ gap: 10px;
4104
+ align-items: center;
4105
+ .flight{
4106
+ flex: 1;
4107
+ font-size: 13px;
4108
+ word-break: break-all;
4109
+ }
4110
+ .flight_time_box{
4111
+ flex: 2.5;
4112
+ display: flex;
4113
+ align-items: center;
4114
+ position: relative;
4115
+ dl{
4116
+ flex: 1;
4117
+ dt{
4118
+ font-size: 12px;
4119
+ word-break: break-all;
4120
+ }
4121
+ dd{
4122
+ font-size: 11px;
4123
+ color: #9A9AB4;
4124
+ word-break: break-all;
4125
+ b{
4126
+ font-weight: 600;
4127
+ margin-right: 3px;
4128
+ }
4129
+ }
4130
+ &.start{
4131
+ padding-right: 10px;
4132
+ &::after{
4133
+ content: "";
4134
+ display: block;
4135
+ position: absolute;
4136
+ top: 50%;
4137
+ left: 50%;
4138
+ transform: translate(-50%, -50%);
4139
+ width: 25px;
4140
+ height: 5px;
4141
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25.604' height='5.347' viewBox='0 0 25.604 5.347'%3E%3Cpath d='M1768.217,242.5h24.336l-4.8-4.481' transform='translate(-1768.217 -237.653)' fill='none' stroke='%23232323' stroke-width='1'/%3E%3C/svg%3E");
4142
+ background-repeat: no-repeat;
4143
+ background-position: center center;
4144
+ background-size: 100%;
4145
+ }
4146
+ }
4147
+ &.end{
4148
+ padding-left: 50px;
4149
+ }
4150
+ }
4151
+ }
4152
+ }
4153
+
4154
+ .time{
4155
+ text-align: right;
4156
+ }
4157
+
4158
+ .name{
4159
+ text-align: center;
4160
+ }
4161
+
4162
+ .flight{
4163
+ font-size: 12px;
4164
+ font-weight: 600;
4165
+ color: black;
4166
+ }
4167
+ }
4168
+ }
4169
+
4170
+
4171
+ .indie_flight_direct_input{
4172
+ margin-top: 30px;
4173
+ // padding: 0 7px;
4174
+
4175
+ .tops{
4176
+ padding: 0 10px;
4177
+ display: flex;
4178
+ align-items: flex-end;
4179
+ .btns{
4180
+ margin-left: auto;
4181
+ }
4182
+ }
4183
+
4184
+ .tit{
4185
+ font-size: 14px;
4186
+ color: #383E96;
4187
+ margin-bottom: 5px;
4188
+ }
4189
+
4190
+ .times{
4191
+ font-size: 16px;
4192
+ font-weight: 700;
4193
+ color: black;
4194
+ }
4195
+ .indie_time_select_box{
4196
+ gap: 5px;
4197
+ }
4198
+
4199
+ .indie_exclamation_mark_box{
4200
+ margin: 20px 7px;
4201
+ p{
4202
+ word-break: break-all;
4203
+ }
4204
+ }
4205
+
4206
+ .gather_box{
4207
+ margin-top: 15px;
4208
+ display: flex;
4209
+ // flex-wrap: wrap;
4210
+ align-items: center;
4211
+ gap: 5px;
4212
+ .da_select_box{
4213
+ flex: 1;
4214
+ }
4215
+ }
4216
+
4217
+ .da_select_box{
4218
+ display: flex;
4219
+ align-items: center;
4220
+ gap: 10px;
4221
+ .date{
4222
+ font-size: 12px;
4223
+ font-weight: 600;
4224
+ color: black;
4225
+ }
4226
+ }
4227
+ }
4228
+
4229
+
4230
+ // 시간 추가
4231
+ .indie_time_select_box{
4232
+ // height: 42px;
4233
+ height: 30px;
4234
+ background-color: white;
4235
+ padding: 0 15px 0 16px;
4236
+ display: inline-flex;
4237
+ align-items: center;
4238
+ border-radius: 30px;
4239
+ border: 1px solid #D3D3D3;
4240
+ gap: 3px;
4241
+ font-size: 12px;
4242
+ span{
4243
+ font-weight: 600;
4244
+ margin: 0 5px;
4245
+ font-size: 12px;
4246
+ }
4247
+ select{
4248
+ font-weight: 600;
4249
+ // font-size: 12px;
4250
+ background-size: 10px;
4251
+ background-position: right 3px center;
4252
+ padding-right: 22px;
4253
+ font-size: 12px;
4254
+ }
4255
+ &.simple{
4256
+ padding-right: 20px;
4257
+ select{
4258
+ background-image: none;
4259
+ padding-right: 0;
4260
+ }
4261
+ }
4262
+
4263
+ &.sm{
4264
+ height: 28px;
4265
+ padding-left: 18px;
4266
+ select{
4267
+ font-size: 12px;
4268
+ background-size: 10px;
4269
+ background-position: right 3px center;
4270
+ padding-right: 22px;
4271
+ }
4272
+ }
4273
+
4274
+ &.triangle{
4275
+ select{
4276
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath id='다각형_44' data-name='다각형 44' d='M5.143,1.429a1,1,0,0,1,1.715,0l4.234,7.056A1,1,0,0,1,10.234,10H1.766A1,1,0,0,1,.909,8.486Z' transform='translate(12 10) rotate(180)' fill='%23232323'/%3E%3C/svg%3E%0A");
4277
+ background-repeat: no-repeat;
4278
+ background-size: 9px;
4279
+ }
4280
+ }
4281
+
4282
+ &.lg{
4283
+ height: 42px;
4284
+ gap: 10px;
4285
+ select{
4286
+ font-size: 13px;
4287
+ }
4288
+ }
4289
+
4290
+ &.wide{
4291
+ width: 100%;
4292
+ select{
4293
+ flex: 1;
4294
+ }
4295
+ }
4296
+ }
4297
+
4298
+
4299
+
4300
+
4301
+
4302
+
4303
+
4304
+
4305
+
4306
+ // 예약하기 - 번역 쪽
4307
+ .indie_booking_new_translation{
4308
+ width: 100%;
4309
+ height: 375px;
4310
+ display: flex;
4311
+ > div{
4312
+ flex: 1;
4313
+ display: flex;
4314
+ flex-direction: column;
4315
+ border-right: 1px solid #E5E5E5;
4316
+ &:last-of-type{
4317
+ border-right: none;
4318
+ }
4319
+ }
4320
+
4321
+ .select_lan_box{
4322
+ flex-shrink: 0;
4323
+ min-height: 52px;
4324
+ padding: 16px 30px;
4325
+ position: relative;
4326
+ border-bottom: 1px solid #E5E5E5;
4327
+
4328
+ }
4329
+
4330
+ .a_btn_select{
4331
+ font-size: 14px;
4332
+ display: inline-flex;
4333
+ align-items: center;
4334
+ font-weight: 400;
4335
+ line-height: 1.5;
4336
+ &::after{
4337
+ content: "";
4338
+ display: block;
4339
+ flex-shrink: 0;
4340
+ margin-left: 10px;
4341
+ width: 14px;
4342
+ height: 10px;
4343
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.818' height='5.445' viewBox='0 0 8.818 5.445'%3E%3Cpath d='M9.626,6,8.59,7.036l3.366,3.373L8.59,13.782l1.036,1.036,4.409-4.409Z' transform='translate(14.818 -8.59) rotate(90)' fill='%23afb3b9'/%3E%3C/svg%3E");
4344
+ background-repeat: no-repeat;
4345
+ background-position: center center;
4346
+ background-size: 100%;
4347
+ transition: .25s;
4348
+ }
4349
+ &.on{
4350
+ font-weight: 500;
4351
+ &::after{
4352
+ transform: rotate(180deg);
4353
+ }
4354
+
4355
+ + .pop_lang_select{
4356
+ height: 280px;
4357
+ box-shadow: 0 3px 10px rgba(0, 0, 0, .16);
4358
+ outline: 1px solid #EFEFF7;
4359
+ }
4360
+ }
4361
+ }
4362
+
4363
+ .pop_lang_select{
4364
+ position: absolute;
4365
+ left: 3%;
4366
+ top: calc(100% - 5px);
4367
+ z-index: 10;
4368
+ width: 94%;
4369
+ height: 0;
4370
+ overflow: hidden;
4371
+ outline: 1px solid transparent;
4372
+ transition: .4s;
4373
+ border-radius: 12px;
4374
+ background-color: white;
4375
+ .language_wrap{
4376
+ display: grid;
4377
+ grid-template-columns: 1fr 1fr 1fr;
4378
+ gap: 15px 10px;
4379
+ label{
4380
+ font-size: 12px;
4381
+ }
4382
+ padding: 35px 40px;
4383
+ }
4384
+ }
4385
+
4386
+ .radio_ch{
4387
+ display: none;
4388
+ + label{
4389
+ font-size: 12px;
4390
+ color: #696C89;
4391
+ display: flex;
4392
+ align-items: center;
4393
+ cursor: pointer;
4394
+ }
4395
+
4396
+ &:checked + label{
4397
+ color: #383E96;
4398
+ font-weight: 500;
4399
+ &::after{
4400
+ content: "";
4401
+ margin-left: 5px;
4402
+ flex-shrink: 0;
4403
+ width: 12px;
4404
+ height: 9px;
4405
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.381' height='7.152' viewBox='0 0 9.381 7.152'%3E%3Cpath d='M6.391,11.233,4.167,9.009l-.757.752,2.981,2.981,6.4-6.4-.752-.752Z' transform='translate(-3.41 -5.59)' fill='%23393e91'/%3E%3C/svg%3E");
4406
+ background-repeat: no-repeat;
4407
+ background-position: center center;
4408
+ }
4409
+ }
4410
+ }
4411
+
4412
+ .btn_trans{
4413
+ width: 100%;
4414
+ height: 52px;
4415
+ background-color: #383E96;
4416
+ text-align: center;
4417
+ color: white;
4418
+ font-size: 14px;
4419
+ font-weight: 500;
4420
+ transition: .25s;
4421
+ &:hover{
4422
+ background-color: darken(#383E96, 5%);
4423
+ }
4424
+ &:disabled{
4425
+ background-color: #DBDBEF;
4426
+ }
4427
+ }
4428
+
4429
+ .text_box{
4430
+ flex: 1;
4431
+ overflow: auto;
4432
+ padding: 28px 30px;
4433
+ p{
4434
+ line-height: 1.7;
4435
+ font-size: 16px;
4436
+ color: #8d8d8d;
4437
+ }
4438
+ }
4439
+
4440
+ .trans_lang{
4441
+ background-color: #F8F8FF;
4442
+ .text_box{
4443
+ p{
4444
+ color: black;
4445
+ }
4446
+ }
4447
+ .loading_box{
4448
+ display: none;
4449
+ flex: 1;
4450
+ justify-content: center;
4451
+ align-items: center;
4452
+ padding-bottom: 40px;
4453
+ }
4454
+
4455
+ &.loading{
4456
+ .loading_box{
4457
+ display: flex;
4458
+ }
4459
+ .text_box{
4460
+ display: none;
4461
+ }
4462
+ }
4463
+ }
4464
+ }