iceholidays-frontend 0.3.0 → 0.4.0

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 (76) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/iceholidays/frontend/application.sass.scss +1588 -0
  3. data/app/assets/stylesheets/iceholidays/frontend/common.scss +233 -0
  4. data/app/assets/stylesheets/iceholidays/frontend/layout.scss +188 -0
  5. data/app/assets/stylesheets/iceholidays/frontend/utils/_antd_overrides.scss +107 -0
  6. data/app/assets/stylesheets/iceholidays/frontend/utils/_variables.scss +3 -0
  7. data/app/assets/stylesheets/iceholidays/frontend/widgets/filter_pills.scss +45 -0
  8. data/app/assets/stylesheets/iceholidays/frontend/widgets/search_bar.scss +112 -0
  9. data/app/controllers/iceholidays/frontend/site_controller.rb +32 -0
  10. data/app/javascript/api-services/banners-api.service.ts +28 -0
  11. data/app/javascript/api-services/locations-api.service.ts +49 -0
  12. data/app/javascript/api-services/search-api.service.ts +16 -0
  13. data/app/javascript/api-services/series-api.service.ts +44 -0
  14. data/app/javascript/api-services/testimonials-api.service.ts +27 -0
  15. data/app/javascript/interfaces/banner.interface.ts +10 -0
  16. data/app/javascript/interfaces/country.interface.ts +18 -0
  17. data/app/javascript/interfaces/itinerary.interface.ts +18 -0
  18. data/app/javascript/interfaces/testimonial.interface.ts +6 -0
  19. data/app/javascript/react/App.tsx +32 -0
  20. data/app/javascript/react/components/Destinations.tsx +72 -141
  21. data/app/javascript/react/components/Testimonials.tsx +68 -61
  22. data/app/javascript/react/components/shared/Headline.tsx +29 -0
  23. data/app/javascript/react/components/shared/Postcard.tsx +31 -0
  24. data/app/javascript/react/components/shared/RibbonSection.tsx +21 -0
  25. data/app/javascript/react/index.js +3 -5
  26. data/app/javascript/react/layouts/MainFooter.tsx +72 -0
  27. data/app/javascript/react/layouts/MainHeader.tsx +45 -0
  28. data/app/javascript/react/layouts/MainLayout.tsx +21 -0
  29. data/app/javascript/react/pages/AboutUsPage.tsx +95 -0
  30. data/app/javascript/react/pages/BlogPage.tsx +79 -0
  31. data/app/javascript/react/pages/BlogShowPage.tsx +43 -0
  32. data/app/javascript/react/pages/ContactAgentsPage.tsx +16 -0
  33. data/app/javascript/react/pages/ContactUsPage.tsx +122 -0
  34. data/app/javascript/react/pages/CountriesPage.tsx +62 -0
  35. data/app/javascript/react/pages/Homepage.tsx +90 -0
  36. data/app/javascript/react/pages/ListingPage.tsx +246 -0
  37. data/app/javascript/react/pages/ShowPage.tsx +397 -0
  38. data/app/javascript/react/widgets/FilterPills.tsx +77 -0
  39. data/app/javascript/react/widgets/SearchBarWidget.tsx +42 -0
  40. data/app/views/iceholidays/frontend/site/index.html.erb +1 -24
  41. data/app/views/layouts/iceholidays/frontend/application.html.erb +2 -6
  42. data/config/routes.rb +9 -0
  43. data/lib/iceholidays/frontend/version.rb +1 -1
  44. data/public/iceholidays-assets/application.css +1873 -0
  45. data/public/iceholidays-assets/application.js +225 -651
  46. data/public/iceholidays-assets/application.js.map +4 -4
  47. data/public/iceholidays-assets/images/8D7N.png +0 -0
  48. data/public/iceholidays-assets/images/about_us.png +0 -0
  49. data/public/iceholidays-assets/images/about_us2.png +0 -0
  50. data/public/iceholidays-assets/images/blog.png +0 -0
  51. data/public/iceholidays-assets/images/blog1.png +0 -0
  52. data/public/iceholidays-assets/images/certificate1.png +0 -0
  53. data/public/iceholidays-assets/images/certificate2.png +0 -0
  54. data/public/iceholidays-assets/images/china_listings_cover.png +0 -0
  55. data/public/iceholidays-assets/images/china_southern_airlines.png +0 -0
  56. data/public/iceholidays-assets/images/china_southern_airlines_icon.png +0 -0
  57. data/public/iceholidays-assets/images/competitiveness.png +0 -0
  58. data/public/iceholidays-assets/images/contact_agents.png +0 -0
  59. data/public/iceholidays-assets/images/contact_us.png +0 -0
  60. data/public/iceholidays-assets/images/contact_us_form.png +0 -0
  61. data/public/iceholidays-assets/images/ethical.png +0 -0
  62. data/public/iceholidays-assets/images/hw_logo.png +0 -0
  63. data/public/iceholidays-assets/images/innovative.png +0 -0
  64. data/public/iceholidays-assets/images/plane.png +0 -0
  65. data/public/iceholidays-assets/images/social/ico_fb.png +0 -0
  66. data/public/iceholidays-assets/images/social/ico_ig.png +0 -0
  67. data/public/iceholidays-assets/images/social/ico_twitter.png +0 -0
  68. data/public/iceholidays-assets/images/social/ico_yt.png +0 -0
  69. data/public/iceholidays-assets/images/social.png +0 -0
  70. data/public/iceholidays-assets/images/tour1.png +0 -0
  71. metadata +61 -49
  72. data/app/assets/stylesheets/iceholidays/frontend/application.scss +0 -904
  73. data/app/javascript/react/components/Homepage.tsx +0 -15
  74. data/app/javascript/react/components/HomepageBanner.tsx +0 -62
  75. data/app/views/layouts/iceholidays/frontend/shared/_footer.html.erb +0 -42
  76. data/app/views/layouts/iceholidays/frontend/shared/_header.html.erb +0 -20
@@ -0,0 +1,1588 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
16
+
17
+ @import url("//fonts.googleapis.com/css?family=Poppins:ital,wght@0,100;0,200;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
18
+ @import "utils/_variables.scss";
19
+ @import "utils/_antd_overrides.scss";
20
+ @import "layout.scss";
21
+ @import "common.scss";
22
+ @import "widgets/search_bar.scss";
23
+ @import "widgets/filter_pills.scss";
24
+
25
+
26
+ body{
27
+ margin: 0;
28
+ background: #F2F2F2;
29
+ font-family: $font-default;
30
+ }
31
+
32
+
33
+ .flip{
34
+ -webkit-transform: scaleX(-1);
35
+ transform: scaleX(-1);
36
+ }
37
+
38
+ #homepage{
39
+
40
+ &_banner{
41
+ min-height: 760px;
42
+ border-radius: 0px 0px 50px 50px;
43
+
44
+ [class~='ant-carousel'] {
45
+ .slick-prev{
46
+ inset-inline-start: 115px;
47
+ }
48
+ .slick-next{
49
+ inset-inline-end: 115px;
50
+ }
51
+ }
52
+ }
53
+ }
54
+
55
+
56
+ #popular-destinations{
57
+ margin: auto;
58
+ width: 80%;
59
+
60
+ h1{
61
+ font-family: $font-default;
62
+ font-size: 45px;
63
+ font-weight: 200;
64
+ line-height: 67.5px;
65
+ text-align: center;
66
+ text-underline-position: from-font;
67
+ text-decoration-skip-ink: none;
68
+ text-transform: uppercase;
69
+ color: #545047;
70
+ }
71
+
72
+ .ant-tabs .ant-tabs-content-holder{
73
+ margin-top: -2px;
74
+ }
75
+
76
+ .ant-tabs >.ant-tabs-nav{
77
+ margin: 0;
78
+ }
79
+
80
+ .ant-tabs-nav {
81
+ width: 100% !important;
82
+ }
83
+
84
+ .ant-tabs-card.ant-tabs-top >.ant-tabs-nav {
85
+ .ant-tabs-tab {
86
+ display: block; // centers text inside tabs
87
+ // flex: 1;
88
+ text-align: center;
89
+ justify-content: center;
90
+ background: transparent;
91
+ // border-color: #EBEBEB;
92
+ // border-bottom-color: $primary-color;
93
+ margin-left: 30px;
94
+ padding: 0;
95
+
96
+ &+.ant-tabs-tab{
97
+ margin:0;
98
+ }
99
+
100
+ .ant-tabs-tab-btn {
101
+ text-transform: uppercase;
102
+ font-family: $font-default;
103
+ font-size: 20px;
104
+ font-weight: 400;
105
+ line-height: 30px;
106
+ letter-spacing: 0.05em;
107
+ text-align: center;
108
+ text-underline-position: from-font;
109
+ text-decoration-skip-ink: none;
110
+ color: $primary-color;
111
+
112
+ position: relative;
113
+ margin: 0 5px;
114
+ padding: 8px 20px;
115
+ background: #FAFAFA;
116
+ border-radius: 20px 20px 0 0;
117
+
118
+ &:before, &:after{
119
+ content: " ";
120
+ position: absolute;
121
+ top: 0;
122
+ width: 23px;
123
+ height: 100%;
124
+ background-color: inherit;
125
+ }
126
+
127
+ &:before{
128
+ border-radius: 12px 0 0 0;
129
+ transform: skew(-24deg);
130
+ left: -13px;
131
+ }
132
+
133
+ &:after{
134
+ border-radius: 0 12px 0 0;
135
+ transform: skew(24deg);
136
+ right: -13px; /* play with this one to give the LI border ~2px extrusion */
137
+ border-right: 1px solid #EBEBEB;
138
+ z-index: 1; /* overlap next element */
139
+ }
140
+ }
141
+
142
+ &.ant-tabs-tab-active{
143
+ z-index: 1;
144
+ // border-bottom-color: $primary-color;
145
+ .ant-tabs-tab-btn {
146
+ background: linear-gradient(180deg, $secondary-color -1.58%, $primary-color 92.51%);
147
+ color: white !important;
148
+
149
+ &:before, &:after{
150
+ background: linear-gradient(180deg, $secondary-color -1.58%, $primary-color 92.51%);
151
+ }
152
+ }
153
+ }
154
+ }
155
+ }
156
+
157
+ .ant-tabs-nav > div:nth-of-type(1) {
158
+ display: unset !important;
159
+ width: 100% !important;
160
+ }
161
+
162
+ .country{
163
+ position: relative;
164
+ display: block;
165
+
166
+ &-image{
167
+ width: 100%;
168
+ height: 392px;
169
+ object-fit: cover;
170
+ object-position: center;
171
+ border-width: 5px 0px 5px 0px;
172
+ border-style: solid;
173
+ border-color: $primary-color;
174
+ border-radius: 20px;
175
+ }
176
+
177
+ &-name{
178
+ width: 160px;
179
+ height: 71px;
180
+ top: 58px;
181
+ left: 45px;
182
+ gap: 0px;
183
+ opacity: 0px;
184
+ position: absolute;
185
+ }
186
+
187
+ .bottom-logo{
188
+ position: absolute;
189
+ bottom: -35px;
190
+ border-color: #F2F2F2;
191
+ left: 0;
192
+ width: 100%;
193
+ }
194
+ }
195
+
196
+ .top-cities {
197
+ h2{
198
+ font-family: $font-default;
199
+ font-size: 30px;
200
+ font-weight: 600;
201
+ line-height: 45px;
202
+ letter-spacing: 0.05em;
203
+ text-align: left;
204
+ text-underline-position: from-font;
205
+ text-decoration-skip-ink: none;
206
+
207
+ }
208
+ }
209
+
210
+ .more-cities {
211
+ h2{
212
+ font-family: $font-default;
213
+ font-size: 30px;
214
+ font-weight: 600;
215
+ line-height: 45px;
216
+ letter-spacing: 0.05em;
217
+ text-align: left;
218
+ text-underline-position: from-font;
219
+ text-decoration-skip-ink: none;
220
+ }
221
+
222
+ .other-destinations{
223
+ display: inline-flex;
224
+ gap: 10px;
225
+
226
+ a{
227
+ font-family: $font-default;
228
+ font-size: 18px;
229
+ font-weight: 400;
230
+ line-height: 27px;
231
+ letter-spacing: 0.05em;
232
+ text-align: left;
233
+ text-underline-position: from-font;
234
+ text-decoration-skip-ink: none;
235
+ background: linear-gradient(360deg, $primary-color 5.04%, $secondary-color 99.13%);
236
+ color: #836848;
237
+
238
+ width: auto;
239
+ padding: 5px 15px;
240
+ gap: 4px;
241
+ border-radius: 20px;
242
+ opacity: 0px;
243
+
244
+ }
245
+ }
246
+ }
247
+
248
+ .highlights{
249
+ display: grid;
250
+ grid-template-columns: repeat(5, 1fr);
251
+ gap: 10px;
252
+ margin-top: 30px;
253
+
254
+ .tour{
255
+ // width: 220px;
256
+ height: 352px;
257
+ padding: 15px 0px 0px 0px;
258
+ gap: 0px;
259
+ border-radius: 20px;
260
+ opacity: 0px;
261
+ object-fit: cover;
262
+ position: relative;
263
+ background-size: cover;
264
+ position: relative;
265
+ background-position: top;
266
+ background-color: linear-gradient(
267
+ rgba(0, 0, 0, 0.5),
268
+ rgba(0, 0, 0, 0.5)
269
+ );
270
+
271
+ .details{
272
+ position: absolute;
273
+ display: flex;
274
+ justify-content: space-between;
275
+ align-items: flex-end;
276
+ bottom: 10px;
277
+ width: 100%;
278
+ padding: 0 15px;
279
+
280
+ .city-name{
281
+ font-family: $font-default;
282
+ font-size: 20px;
283
+ font-weight: 400;
284
+ line-height: 30px;
285
+ letter-spacing: 0.05em;
286
+ text-align: left;
287
+ text-underline-position: from-font;
288
+ text-decoration-skip-ink: none;
289
+ color: $secondary-color;
290
+ }
291
+
292
+ .tour-count{
293
+ width: 80px;
294
+ font-family: $font-default;
295
+ font-size: 12px;
296
+ font-weight: 400;
297
+ line-height: 21px;
298
+ letter-spacing: 0.05em;
299
+ text-align: right;
300
+ text-underline-position: from-font;
301
+ text-decoration-skip-ink: none;
302
+ color: #FFFFFF;
303
+ display: inline-flex;
304
+ align-items: center;
305
+ justify-content: flex-end;
306
+ }
307
+ }
308
+ }
309
+ }
310
+ }
311
+
312
+
313
+ #testimonials{
314
+ max-width: 1099px;
315
+ margin: auto;
316
+ padding: 50px 0;
317
+
318
+ [class~='ant-carousel'] {
319
+ .slick-slider{
320
+ padding: 0 70px;
321
+ }
322
+ .slick-list {
323
+ margin: 0;
324
+ }
325
+
326
+ .slick-track {
327
+ margin: auto;
328
+ }
329
+
330
+ .slick-slide>div {
331
+ padding: 20px 15px;
332
+ }
333
+
334
+ .slick-prev,
335
+ .slick-next{
336
+ color: #959492;
337
+
338
+ &:hover{
339
+ color: #DFB163;
340
+ }
341
+ }
342
+ }
343
+
344
+ .testimonial{
345
+ // min-height: 383px;
346
+ padding: 10px 18px 20px 18px;
347
+ gap: 15px;
348
+ border-radius: 20px;
349
+ opacity: 0px;
350
+ background: #FFFFFF;
351
+ box-shadow: 0px 5px 20px 0px #E1B65B33;
352
+ text-align: center;
353
+ display: flex !important;
354
+ flex-direction: column;
355
+ justify-content: flex-start;
356
+
357
+ .stars-icon{
358
+ width: 92px;
359
+ height: 32px;
360
+ gap: 0px;
361
+ opacity: 0px;
362
+ margin: auto;
363
+
364
+ }
365
+
366
+ .tour{
367
+ width: 100%;
368
+ // height: 56px;
369
+ padding: 10px;
370
+ gap: 10px;
371
+ border-radius: 10px;
372
+ opacity: 0px;
373
+ background: linear-gradient(270deg, $secondary-color 0%, #FFFDF5 117.76%);
374
+ box-shadow: 0px 7px 16.7px 0px #E1B65B80;
375
+ box-sizing: border-box;
376
+ display: inline-flex;
377
+ align-items: center;
378
+
379
+ img{
380
+ width: 28.46px;
381
+ height: 26.5px;
382
+ }
383
+
384
+ span{
385
+ font-family: $font-default;
386
+ font-size: 12px;
387
+ font-weight: 500;
388
+ line-height: 18px;
389
+ text-align: left;
390
+ text-underline-position: from-font;
391
+ text-decoration-skip-ink: none;
392
+ color: #AA853E;
393
+ width: 100%;
394
+ display: block;
395
+ }
396
+
397
+ }
398
+
399
+ .comment {
400
+ white-space: break-spaces;
401
+
402
+ span{
403
+ font-family: $font-default;
404
+ font-size: 14px;
405
+ font-style: italic;
406
+ font-weight: 200;
407
+ line-height: 21px;
408
+ text-align: center;
409
+ text-underline-position: from-font;
410
+ text-decoration-skip-ink: none;
411
+ }
412
+ }
413
+
414
+ .author {
415
+ display: inline-flex;
416
+ align-items: center;
417
+ justify-content: center;
418
+ gap: 10px;
419
+
420
+ .author-icon{
421
+ color: rgba(0, 0, 0, 0.8);
422
+ width: 20px;
423
+ height: 20px;
424
+ }
425
+ span{
426
+ font-family: $font-default;
427
+ font-size: 20px;
428
+ font-weight: 400;
429
+ line-height: 30px;
430
+ letter-spacing: 0.05em;
431
+ text-align: left;
432
+ text-underline-position: from-font;
433
+ text-decoration-skip-ink: none;
434
+
435
+ }
436
+ }
437
+ }
438
+ }
439
+
440
+
441
+ #listing-page{
442
+
443
+ &_header{
444
+ .country-filter.ant-select{
445
+ line-height: 35px;
446
+ width: 170px;
447
+
448
+ .ant-select-selector{
449
+ padding: 3px 40px 3px 15px;
450
+ border-radius: 30px;
451
+ height: 36px;
452
+ }
453
+
454
+ .ant-select-selection-item{
455
+ font-family: $font-default;
456
+ font-size: 20px;
457
+ font-weight: 500;
458
+ line-height: 30px;
459
+ letter-spacing: 0.05em;
460
+ text-align: left;
461
+ text-underline-position: from-font;
462
+ text-decoration-skip-ink: none;
463
+ color: #836848;
464
+ text-transform: uppercase;
465
+ }
466
+
467
+ .ant-select-arrow{
468
+ inset-inline-end: 20px;
469
+ color: #836848;
470
+ }
471
+ }
472
+
473
+ }
474
+
475
+ &_body{
476
+ padding: 20px var(--side-padding);
477
+ }
478
+
479
+ #legends{
480
+ --legend-size: 10px;
481
+ padding: 20px 0;
482
+
483
+ .ant-badge-status-dot{
484
+ width: var(--legend-size);
485
+ height: var(--legend-size);
486
+ }
487
+
488
+ .ant-badge-status-text{
489
+ font-family: $font-default;
490
+ font-size: 12px;
491
+ font-weight: 400;
492
+ line-height: 18px;
493
+ letter-spacing: 0.05em;
494
+ text-align: center;
495
+ text-underline-position: from-font;
496
+ text-decoration-skip-ink: none;
497
+
498
+ }
499
+ }
500
+
501
+ #tours{
502
+ .tour{
503
+
504
+ &_image{
505
+ height: 100%;
506
+
507
+ img{
508
+ width: 300px;
509
+ height: 100%;
510
+ border-top-left-radius: 20px;
511
+ border-bottom-left-radius: 20px;
512
+ }
513
+ }
514
+
515
+ &_details{
516
+ padding: 20px;
517
+ background-color: #FFFFFF;
518
+ height: 100%;
519
+
520
+ .ant-space{
521
+ .ant-space-item:first-child{
522
+ position: relative;
523
+ }
524
+ }
525
+
526
+ &_title{
527
+ font-family: $font-default;
528
+ font-size: 16px;
529
+ font-weight: 500;
530
+ line-height: 24px;
531
+ letter-spacing: 0.05em;
532
+ text-align: left;
533
+ text-underline-position: from-font;
534
+ text-decoration-skip-ink: none;
535
+ max-width: 95%;
536
+ }
537
+
538
+ &_subtitle{
539
+ font-family: $font-default;
540
+ font-size: 15px;
541
+ font-weight: 400;
542
+ line-height: 24px;
543
+ letter-spacing: 0.05em;
544
+ text-align: left;
545
+ text-underline-position: from-font;
546
+ text-decoration-skip-ink: none;
547
+ color: #00000066;
548
+ }
549
+
550
+ &_country{
551
+ font-family: $font-default;
552
+ font-size: 15px;
553
+ font-weight: 500;
554
+ line-height: 22.5px;
555
+ letter-spacing: 0.05em;
556
+ text-align: left;
557
+ text-underline-position: from-font;
558
+ text-decoration-skip-ink: none;
559
+ }
560
+
561
+ &_code{
562
+ color: $primary-color;
563
+ }
564
+
565
+ &_country, &_code{
566
+ svg{
567
+ vertical-align: middle;
568
+ }
569
+ }
570
+
571
+ &_info{
572
+ position: absolute;
573
+ right: 0;
574
+ top: 0;
575
+
576
+ svg{
577
+ color: $primary-color;
578
+ cursor: pointer;
579
+ }
580
+ }
581
+
582
+ &_dates{
583
+ padding: 12px 8px 17px 8px;
584
+
585
+ label{
586
+ font-family: $font-default;
587
+ font-size: 14px;
588
+ font-weight: 500;
589
+ line-height: 21px;
590
+ letter-spacing: 0.05em;
591
+ text-align: left;
592
+ text-underline-position: from-font;
593
+ text-decoration-skip-ink: none;
594
+ color: #434039;
595
+ }
596
+ }
597
+ }
598
+
599
+ &_pricing{
600
+ background-color: $primary-color;
601
+ padding: 20px;
602
+ border-top-right-radius: 20px;
603
+ border-bottom-right-radius: 20px;
604
+ height: 100%;
605
+
606
+ &>.ant-space{
607
+ height: 100%;
608
+ width: 100%;
609
+ justify-content: center;
610
+ }
611
+
612
+ span{
613
+ font-family: $font-default;
614
+ font-size: 15px;
615
+ font-weight: 400;
616
+ line-height: 22.5px;
617
+ letter-spacing: 0.05em;
618
+ text-align: center;
619
+ text-underline-position: from-font;
620
+ text-decoration-skip-ink: none;
621
+
622
+ &.price{
623
+ font-size: 28px;
624
+ font-weight: 500;
625
+ line-height: 42px;
626
+ color: #FFFFFF;
627
+ }
628
+
629
+ }
630
+
631
+ .select-tour{
632
+ padding: 5px 27px 5px 27px;
633
+ border-radius: 20px;
634
+ font-family: $font-default;
635
+ font-size: 15px;
636
+ font-weight: 700;
637
+ line-height: 22.5px;
638
+ letter-spacing: 0.05em;
639
+ text-align: center;
640
+ text-underline-position: from-font;
641
+ text-decoration-skip-ink: none;
642
+ color: $primary-color;
643
+ background-color: #FFFFFF;
644
+ }
645
+ }
646
+ }
647
+ }
648
+ }
649
+
650
+ .tour_details_description.ant-modal{
651
+ .ant-modal-title{
652
+ font-family: $font-default;
653
+ font-size: 16px;
654
+ font-weight: 700;
655
+ line-height: 24px;
656
+ letter-spacing: 0.05em;
657
+ text-align: left;
658
+ text-underline-position: from-font;
659
+ text-decoration-skip-ink: none;
660
+ color: #836848;
661
+ }
662
+
663
+ .ant-modal-body{
664
+ overflow-y: auto;
665
+ max-height: 500px;
666
+ }
667
+ }
668
+
669
+ .tour_details_all_dates.ant-modal{
670
+ .ant-modal-title{
671
+ padding-right: 30px;
672
+ }
673
+ .custom-modal-header-title{
674
+ font-family: $font-default;
675
+ font-size: 20px;
676
+ font-weight: 500;
677
+ line-height: 30px;
678
+ letter-spacing: 0.05em;
679
+ text-align: left;
680
+ text-underline-position: from-font;
681
+ text-decoration-skip-ink: none;
682
+ color: #434039;
683
+ }
684
+
685
+ .custom-modal-header-legends{
686
+ font-family: $font-default;
687
+ font-size: 12px;
688
+ font-weight: 400;
689
+ line-height: 18px;
690
+ letter-spacing: 0.05em;
691
+ text-align: center;
692
+ text-underline-position: from-font;
693
+ text-decoration-skip-ink: none;
694
+ color: #545047;
695
+
696
+ --legend-size: 10px;
697
+
698
+ .ant-badge-status-dot{
699
+ width: var(--legend-size);
700
+ height: var(--legend-size);
701
+ }
702
+
703
+ }
704
+
705
+ .ant-modal-footer{
706
+ text-align: center;
707
+
708
+ button{
709
+ padding: 5px 27px 5px 27px;
710
+ border-radius: 32px;
711
+ background: #AA853E;
712
+ color: #FFFFFF;
713
+ text-transform: uppercase;
714
+
715
+ &:hover{
716
+ color: #FFFFFF;
717
+ background: $primary-color;
718
+ border-color: $primary-color;
719
+ outline: $primary-color;
720
+ }
721
+ }
722
+ }
723
+ }
724
+
725
+ .country-filter_option{
726
+ font-family: $font-default;
727
+ font-size: 20px;
728
+ font-weight: 400;
729
+ line-height: 30px;
730
+ letter-spacing: 0.05em;
731
+ text-align: left;
732
+ text-underline-position: from-font;
733
+ text-decoration-skip-ink: none;
734
+ text-transform: uppercase;
735
+ }
736
+
737
+ *{
738
+ //can change to container width
739
+ --side-padding: 10%;
740
+ }
741
+
742
+ #show-page{
743
+
744
+ &_header{
745
+ h1{
746
+ font-size: 30px;
747
+ font-weight: 400;
748
+ line-height: 45px;
749
+ letter-spacing: 0.05em;
750
+ text-align: left;
751
+ }
752
+
753
+ .tour_details{
754
+ display: inline-flex;
755
+ gap: 10px;
756
+ opacity: 0.5;
757
+
758
+ span{
759
+ font-family: $font-default;
760
+ font-size: 16px;
761
+ font-weight: 500;
762
+ line-height: 24px;
763
+ letter-spacing: 0.05em;
764
+ text-align: left;
765
+ text-underline-position: from-font;
766
+ text-decoration-skip-ink: none;
767
+ }
768
+ }
769
+ }
770
+
771
+ #date-selector{
772
+ padding: 20px var(--side-padding);
773
+
774
+ [class~='ant-carousel'] {
775
+ .slick-slide > div{
776
+ padding: 0 5px;
777
+ }
778
+
779
+ .slick-arrow{
780
+ color: rgba(149, 148, 146, 1);
781
+
782
+ &:hover{
783
+ color: $primary-color;
784
+ }
785
+ }
786
+
787
+ .slick-prev{
788
+ inset-inline-start: -40px;
789
+ }
790
+
791
+ .slick-next{
792
+ inset-inline-end: -40px;
793
+ }
794
+ }
795
+ .date-box{
796
+ background: #FFFFFF;
797
+ border: 1px solid #DFB16333;
798
+ padding: 6px 13px 6px 13px;
799
+ border-radius: 20px;
800
+ border-width: 1px;
801
+ color:rgba(0, 0, 0, 0.8);
802
+ cursor: pointer;
803
+ text-align: center;
804
+
805
+ &_date{
806
+ font-family: $font-default;
807
+ font-size: 15px;
808
+ font-weight: 400;
809
+ line-height: 22.5px;
810
+ letter-spacing: 0.05em;
811
+ text-align: center;
812
+ text-underline-position: from-font;
813
+ text-decoration-skip-ink: none;
814
+ }
815
+
816
+ span{
817
+ font-family: $font-default;
818
+ font-size: 12px;
819
+ font-weight: 400;
820
+ line-height: 18px;
821
+ letter-spacing: 0.05em;
822
+ text-align: center;
823
+ text-underline-position: from-font;
824
+ text-decoration-skip-ink: none;
825
+ opacity: 50%;
826
+ }
827
+
828
+ &_price{
829
+ font-family: $font-default;
830
+ font-size: 14px;
831
+ font-weight: 400;
832
+ line-height: 21px;
833
+ letter-spacing: 0.05em;
834
+ text-align: center;
835
+ text-underline-position: from-font;
836
+ text-decoration-skip-ink: none;
837
+ }
838
+
839
+ &.selected{
840
+ background-color: $primary-color;
841
+ color: rgba(249, 246, 243, 1);
842
+
843
+ .date-box_date, .date-box_price{
844
+ font-weight: 700;
845
+ }
846
+ }
847
+ }
848
+ }
849
+
850
+ &_body{
851
+ padding: 20px var(--side-padding);
852
+ gap: 20px;
853
+
854
+ .details{
855
+ // max-width: 790px;
856
+ }
857
+
858
+ .details-container{
859
+ padding: 20px;
860
+ gap: 20px;
861
+ border-radius: 20px;
862
+ background: #FFFFFF;
863
+ display: flex;
864
+ flex-direction: column;
865
+ box-shadow: 0px 5px 20px 0px #00000026;
866
+
867
+ &_header{
868
+ font-family: $font-default;
869
+ font-size: 16px;
870
+ font-weight: 700;
871
+ line-height: 24px;
872
+ letter-spacing: 0.05em;
873
+ text-align: left;
874
+ text-underline-position: from-font;
875
+ text-decoration-skip-ink: none;
876
+ color: #5B4713;
877
+ }
878
+
879
+ &_content{
880
+ #things-to-know{
881
+ padding: 20px;
882
+ border-radius: 5px;
883
+ background: #F9F6F3;
884
+ display: grid;
885
+ grid-template-columns: repeat(5, 18%);
886
+ justify-content: center;
887
+ text-align: center;
888
+ gap: 20px;
889
+
890
+ .item{
891
+ color: #5B4713;
892
+
893
+ .icon{
894
+ opacity: 0.8;
895
+ }
896
+
897
+ label{
898
+ font-family: $font-default;
899
+ font-size: 12px;
900
+ font-weight: 400;
901
+ line-height: 18px;
902
+ letter-spacing: 0.05em;
903
+ text-align: center;
904
+ text-underline-position: from-font;
905
+ text-decoration-skip-ink: none;
906
+ }
907
+
908
+ &.guaranteed{
909
+ color: $primary-color;
910
+ }
911
+ }
912
+
913
+ }
914
+
915
+ .schedule{
916
+ // width: Fill (795px)px;
917
+ // height: Hug (87px)px;
918
+ padding: 20px;
919
+ gap: 32px;
920
+ border-radius: 5px;
921
+ background: #F9F6F3;
922
+ display: inline-flex;
923
+ align-items: center;
924
+ justify-content: space-between;
925
+
926
+ .flight-date{
927
+ svg{
928
+ vertical-align: middle;
929
+ margin-right: 12px;
930
+
931
+ }
932
+ span{
933
+ color: rgba(91, 71, 19, 0.7);
934
+ font-family: $font-default;
935
+ font-size: 12px;
936
+ font-weight: 400;
937
+ line-height: 18px;
938
+ letter-spacing: 0.05em;
939
+ text-align: left;
940
+ text-underline-position: from-font;
941
+ text-decoration-skip-ink: none;
942
+ }
943
+ }
944
+
945
+ .flight-details{
946
+ display: flex;
947
+ flex-direction: column;
948
+ gap: 11px;
949
+
950
+ label{
951
+ font-family: $font-default;
952
+ font-size: 12px;
953
+ font-weight: 700;
954
+ line-height: 18px;
955
+ letter-spacing: 0.05em;
956
+ text-align: left;
957
+ text-underline-position: from-font;
958
+ text-decoration-skip-ink: none;
959
+ color: rgba(0, 0, 0, 0.8)
960
+ }
961
+
962
+ img{
963
+ width: 14px;
964
+ height: 14px;
965
+ vertical-align: middle;
966
+ margin-right: 5px;
967
+ }
968
+
969
+ span{
970
+ font-family: $font-default;
971
+ font-size: 12px;
972
+ font-weight: 400;
973
+ line-height: 18px;
974
+ letter-spacing: 0.05em;
975
+ text-align: left;
976
+ text-underline-position: from-font;
977
+ text-decoration-skip-ink: none;
978
+ color: rgba(0, 0, 0, 0.8);
979
+ }
980
+ }
981
+
982
+ .flight-time{
983
+ .from, .to{
984
+ display: flex;
985
+ flex-direction: column;
986
+ gap: 8px;
987
+ }
988
+
989
+ .from{
990
+ align-items: flex-end;
991
+ }
992
+
993
+ .to{
994
+ align-items: flex-start;
995
+ }
996
+
997
+ label{
998
+ font-family: $font-default;
999
+ font-size: 15px;
1000
+ font-weight: 700;
1001
+ line-height: 22.5px;
1002
+ letter-spacing: 0.05em;
1003
+ text-align: center;
1004
+ text-underline-position: from-font;
1005
+ text-decoration-skip-ink: none;
1006
+ color: rgba(0, 0, 0, 1);
1007
+ }
1008
+
1009
+ span{
1010
+ font-family: $font-default;
1011
+ font-size: 12px;
1012
+ font-weight: 300;
1013
+ line-height: 18px;
1014
+ text-align: center;
1015
+ text-underline-position: from-font;
1016
+ text-decoration-skip-ink: none;
1017
+ color: rgba(91, 71, 19, 0.7);
1018
+ }
1019
+
1020
+ &_icon{
1021
+ &::before, &::after{
1022
+ /* Styles kept */
1023
+ width: 25%;
1024
+ height: 1px;
1025
+
1026
+ /* Changed to border-top (instead of border) to simulate a line better */
1027
+ border-top: 1px solid #ccc;
1028
+
1029
+ /* Styles added */
1030
+ display: inline-block;
1031
+ content: '';
1032
+
1033
+ /* Use padding to vertical align the line */
1034
+ /* Use padding in em for a responsive icon height */
1035
+ padding-top: 0.5em;
1036
+
1037
+ /* Use margins to give the lines some spacement around the icon */
1038
+ /* Use margins in % for a responsive spacement */
1039
+ margin-left: 5%;
1040
+ margin-right: 5%;
1041
+ }
1042
+ }
1043
+ }
1044
+ }
1045
+
1046
+ #pricing-table{
1047
+ width: 100%;
1048
+ border-spacing: 5px 0;
1049
+
1050
+ .super-promo{
1051
+ background: rgba(249, 226, 152, 1);
1052
+ }
1053
+
1054
+ .promo{
1055
+ background: rgba(249, 246, 243, 1);
1056
+ }
1057
+
1058
+ .normal{
1059
+ background: rgba(245, 245, 245, 1);
1060
+ }
1061
+
1062
+ th{
1063
+ border-top-left-radius: 10px;
1064
+ border-top-right-radius: 10px;
1065
+ font-family: $font-default;
1066
+ font-size: 14px;
1067
+ font-weight: 700;
1068
+ line-height: 21px;
1069
+ letter-spacing: 0.05em;
1070
+ text-align: center;
1071
+ text-underline-position: from-font;
1072
+ text-decoration-skip-ink: none;
1073
+ color: rgba(131, 104, 72, 1);
1074
+ padding: 10px 15px;
1075
+ }
1076
+
1077
+ td{
1078
+ font-family: $font-default;
1079
+ font-size: 14px;
1080
+ font-weight: 500;
1081
+ line-height: 21px;
1082
+ letter-spacing: 0.05em;
1083
+ text-align: center;
1084
+ text-underline-position: from-font;
1085
+ text-decoration-skip-ink: none;
1086
+ color: rgba(84, 80, 71, 1);
1087
+ padding: 15px;
1088
+ white-space: nowrap;
1089
+
1090
+ &:first-child{
1091
+ text-align: left;
1092
+ font-weight: 400;
1093
+ }
1094
+ }
1095
+
1096
+ tr:last-child td{
1097
+ border-bottom-left-radius: 10px;
1098
+ border-bottom-right-radius: 10px;
1099
+ }
1100
+ }
1101
+ }
1102
+ }
1103
+
1104
+ .contact-agent{
1105
+ // width: 265px;
1106
+ height: auto;
1107
+ border-radius: 20px;
1108
+ background: #FFFFFF;
1109
+
1110
+ &_header{
1111
+ background-color: #F9E298;
1112
+ font-family: $font-default;
1113
+ font-size: 15px;
1114
+ font-weight: 400;
1115
+ line-height: 22.5px;
1116
+ letter-spacing: 0.05em;
1117
+ text-align: left;
1118
+ text-underline-position: from-font;
1119
+ text-decoration-skip-ink: none;
1120
+ color: #545047;
1121
+ padding: 11px 15px 11px 15px;
1122
+ border-radius: inherit;
1123
+ border-bottom-left-radius: 0;
1124
+ border-bottom-right-radius: 0;
1125
+ }
1126
+
1127
+ &_content{
1128
+ padding: 10px 15px 15px 15px;
1129
+
1130
+ .ant-form-item{
1131
+ margin-bottom: 15px;
1132
+
1133
+ &:last-child{
1134
+ margin-bottom: 0;
1135
+ }
1136
+ }
1137
+
1138
+ .search-results{
1139
+ margin-top: 10px;
1140
+
1141
+ .agent-info{
1142
+ .company{
1143
+ font-family: $font-default;
1144
+ font-size: 10px;
1145
+ font-weight: 600;
1146
+ line-height: 15px;
1147
+ text-align: left;
1148
+ text-underline-position: from-font;
1149
+ text-decoration-skip-ink: none;
1150
+ min-height: 20px;
1151
+ color: rgba(0, 0, 0, 0.8);
1152
+ max-width: 180px;
1153
+ cursor: pointer;
1154
+ }
1155
+
1156
+ .contact-numbers{
1157
+ display: inline-flex;
1158
+ gap: 2px;
1159
+ }
1160
+ }
1161
+ }
1162
+ }
1163
+
1164
+ }
1165
+ }
1166
+ }
1167
+
1168
+ .agent-full-contact-details{
1169
+ .contact-details{
1170
+ padding: 15px 10px 15px 10px;
1171
+ background: rgba(245, 245, 245, 1);
1172
+
1173
+ svg{
1174
+ color: rgba(170, 133, 62, 1);
1175
+ background: rgba(255, 255, 255, 1);
1176
+ height: Fixed (25px)px;
1177
+ padding: 3.75px;
1178
+ border-radius: 62.5px;
1179
+ margin-right: 6px;
1180
+ vertical-align: middle;
1181
+ }
1182
+
1183
+ span{
1184
+ font-family: $font-default;
1185
+ font-size: 14px;
1186
+ font-weight: 400;
1187
+ line-height: 21px;
1188
+ letter-spacing: 0.03em;
1189
+ text-align: left;
1190
+ text-underline-position: from-font;
1191
+ text-decoration-skip-ink: none;
1192
+ }
1193
+ }
1194
+ }
1195
+
1196
+ #about-signature-tours{
1197
+ // width: 1440px;
1198
+ height: 100%;
1199
+ gap: 0px;
1200
+ opacity: 0px;
1201
+ display: flex;
1202
+ flex-direction: column;
1203
+ align-items: center;
1204
+ padding: 50px 0;
1205
+
1206
+ &>div{
1207
+ max-width: 970px;
1208
+ }
1209
+
1210
+ h1{
1211
+ font-family: $font-default;
1212
+ font-size: 45px;
1213
+ font-weight: 200;
1214
+ line-height: 67.5px;
1215
+ letter-spacing: 0.06em;
1216
+ text-align: center;
1217
+ text-underline-position: from-font;
1218
+ text-decoration-skip-ink: none;
1219
+ color: #545047;
1220
+ }
1221
+
1222
+ p{
1223
+ font-family: $font-default;
1224
+ font-size: 18px;
1225
+ font-weight: 200;
1226
+ line-height: 27px;
1227
+ letter-spacing: 0.05em;
1228
+ text-align: left;
1229
+ text-underline-position: from-font;
1230
+ text-decoration-skip-ink: none;
1231
+ color: #545047;
1232
+ margin: 20px 0;
1233
+ display: block;
1234
+ }
1235
+
1236
+ #about-st-feature{
1237
+ display: flex;
1238
+ align-items: center;
1239
+ justify-content: space-between;
1240
+
1241
+ #feature{
1242
+ width: 419px;
1243
+ height: 246px;
1244
+ gap: 0px;
1245
+ border-radius: 20px;
1246
+ opacity: 0px;
1247
+ background: #FFFFFF;
1248
+ box-shadow: 0px 5px 20px 0px #00000026;
1249
+
1250
+ &> img{
1251
+ width: 419px;
1252
+ height: 183.24px;
1253
+ gap: 0px;
1254
+ border-radius: 20px;
1255
+ opacity: 0px;
1256
+ border: 3px solid #FFFFFF;
1257
+
1258
+ object-fit: cover;
1259
+ object-position: 50% 33%;
1260
+ display: block;
1261
+ box-sizing: border-box;
1262
+ }
1263
+
1264
+ #st-brand{
1265
+ display: flex;
1266
+ justify-content: space-between;
1267
+ align-items: center;
1268
+ padding: 5px 23px 0px 12px;
1269
+
1270
+ span{
1271
+ font-family: $font-default;
1272
+ font-size: 20px;
1273
+ font-weight: 400;
1274
+ line-height: 30px;
1275
+ letter-spacing: 0.05em;
1276
+ text-align: left;
1277
+ text-underline-position: from-font;
1278
+ text-decoration-skip-ink: none;
1279
+ }
1280
+
1281
+ #st-logo{
1282
+ width: 47px;
1283
+ height: 43.76px;
1284
+ gap: 0px;
1285
+ opacity: 0px;
1286
+ }
1287
+ }
1288
+ }
1289
+ }
1290
+ }
1291
+
1292
+ #about-us-page{
1293
+ &_body{
1294
+ padding: 20px var(--side-padding);
1295
+
1296
+ #introduction{
1297
+ img{
1298
+ width: 42.96px;
1299
+ height: 40px;
1300
+ }
1301
+
1302
+ h1{
1303
+ font-family: $font-default;
1304
+ font-size: 24px;
1305
+ font-weight: 500;
1306
+ line-height: 36px;
1307
+ text-align: left;
1308
+ text-underline-position: from-font;
1309
+ text-decoration-skip-ink: none;
1310
+ }
1311
+ }
1312
+
1313
+ #article{
1314
+ background: #FFFFFF;
1315
+ padding: 32px;
1316
+ border-radius: 20px;
1317
+ box-shadow: 0px 5px 20px 0px #E1B65B33;
1318
+
1319
+ img{
1320
+ // width: 1056px;
1321
+ height: 644px;
1322
+ border-radius: 20px;
1323
+ width: 100%;
1324
+ object-fit: cover;
1325
+ }
1326
+
1327
+ p{
1328
+ font-family: $font-default;
1329
+ font-size: 14px;
1330
+ font-weight: 300;
1331
+ line-height: 27px;
1332
+ text-align: left;
1333
+ text-underline-position: from-font;
1334
+ text-decoration-skip-ink: none;
1335
+ color: #000000;
1336
+ }
1337
+ }
1338
+ }
1339
+
1340
+ .section-header{
1341
+ width: 741px;
1342
+ margin: auto;
1343
+
1344
+ h2{
1345
+ font-family: $font-default;
1346
+ font-size: 24px;
1347
+ font-weight: 500;
1348
+ line-height: 36px;
1349
+ text-align: center;
1350
+ text-underline-position: from-font;
1351
+ text-decoration-skip-ink: none;
1352
+ color: #000000;
1353
+ }
1354
+ p{
1355
+ font-family: $font-default;
1356
+ font-size: 14px;
1357
+ font-weight: 300;
1358
+ line-height: 27px;
1359
+ text-align: center;
1360
+ text-underline-position: from-font;
1361
+ text-decoration-skip-ink: none;
1362
+ color: #000000;
1363
+ }
1364
+ }
1365
+
1366
+ .items{
1367
+ display: flex;
1368
+ flex-direction: column;
1369
+ align-items: center;
1370
+ gap: 12px;
1371
+ color: #000000;
1372
+ padding: 24px;
1373
+
1374
+ label{
1375
+ font-family: $font-default;
1376
+ font-size: 16px;
1377
+ font-weight: 500;
1378
+ line-height: 24px;
1379
+ text-align: center;
1380
+ text-underline-position: from-font;
1381
+ text-decoration-skip-ink: none;
1382
+ }
1383
+
1384
+ p{
1385
+ font-family: $font-default;
1386
+ font-size: 14px;
1387
+ font-weight: 300;
1388
+ line-height: 27px;
1389
+ text-align: center;
1390
+ text-underline-position: from-font;
1391
+ text-decoration-skip-ink: none;
1392
+
1393
+ }
1394
+ }
1395
+
1396
+ #quality-policy{
1397
+ padding: 0 170px 16px 170px;
1398
+ margin-top: -70px;
1399
+ }
1400
+
1401
+
1402
+ #certificates{
1403
+ background: linear-gradient(180deg, #F7F4EB 0%, #FFFFFF 100%);
1404
+ padding: 40px 160px 40px 160px;
1405
+
1406
+ img {
1407
+ width: 263px;
1408
+ height: 365px;
1409
+ box-shadow: 0px 2px 16px 0px #0000001A;
1410
+ }
1411
+ }
1412
+ }
1413
+
1414
+ #countries-page{
1415
+ &_body{
1416
+ padding: 20px var(--side-padding);
1417
+
1418
+ #introduction{
1419
+ // width: 1120px;
1420
+ // height: Hug (263px)px;
1421
+ padding: 32px;
1422
+ border-radius: 20px;
1423
+ background: #FFFFFF;
1424
+
1425
+ &_header{
1426
+ text-align: center;
1427
+ display: inline-flex;
1428
+ justify-content: center;
1429
+ align-items: center;
1430
+ gap: 24px;
1431
+
1432
+ img{
1433
+ width: 42.96px;
1434
+ height: 40px;
1435
+ }
1436
+ span{
1437
+ font-family: $font-default;
1438
+ font-size: 24px;
1439
+ font-weight: 500;
1440
+ line-height: 36px;
1441
+ text-align: left;
1442
+ text-underline-position: from-font;
1443
+ text-decoration-skip-ink: none;
1444
+ color: #000000;
1445
+ }
1446
+ }
1447
+
1448
+ &_body{
1449
+ p {
1450
+ font-family: $font-default;
1451
+ font-size: 14px;
1452
+ font-weight: 300;
1453
+ line-height: 27px;
1454
+ text-align: left;
1455
+ text-underline-position: from-font;
1456
+ text-decoration-skip-ink: none;
1457
+ }
1458
+ }
1459
+ }
1460
+
1461
+ h2{
1462
+ font-family: $font-default;
1463
+ font-size: 30px;
1464
+ font-weight: 600;
1465
+ line-height: 45px;
1466
+ letter-spacing: 0.05em;
1467
+ text-align: left;
1468
+ text-underline-position: from-font;
1469
+ text-decoration-skip-ink: none;
1470
+ }
1471
+ }
1472
+ }
1473
+
1474
+ #contact-us-page{
1475
+ &_body{
1476
+ margin: 20px var(--side-padding);
1477
+ border-radius: 20px;
1478
+ box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
1479
+ background-color: #FFFFFF;
1480
+
1481
+ img{
1482
+ height: 250px;
1483
+ width: 100%;
1484
+ object-fit: cover;
1485
+ border-top-left-radius: 20px;
1486
+ border-top-right-radius: 20px;
1487
+ }
1488
+
1489
+ #contact-us-form{
1490
+ padding: 20px 24px 40px 24px;
1491
+
1492
+ &_header{
1493
+ margin-bottom: 20px;
1494
+ h2{
1495
+ font-family: $font-default;
1496
+ font-size: 16px;
1497
+ font-weight: 700;
1498
+ line-height: 24px;
1499
+ letter-spacing: 0.05em;
1500
+ text-align: left;
1501
+ text-underline-position: from-font;
1502
+ text-decoration-skip-ink: none;
1503
+ color: rgba(91, 71, 19, 1);
1504
+ margin: 0;
1505
+ }
1506
+
1507
+ span{
1508
+ font-family: $font-default;
1509
+ font-size: 14px;
1510
+ font-weight: 300;
1511
+ line-height: 21px;
1512
+ letter-spacing: 0.05em;
1513
+ text-align: left;
1514
+ text-underline-position: from-font;
1515
+ text-decoration-skip-ink: none;
1516
+ color: rgba(0, 0, 0, 1);
1517
+ }
1518
+ }
1519
+
1520
+ textarea{
1521
+ min-height: 200px;
1522
+ }
1523
+
1524
+ button[type=submit]{
1525
+ width: 216px;
1526
+ }
1527
+ }
1528
+ }
1529
+
1530
+ &_footer{
1531
+ margin: 20px var(--side-padding);
1532
+ border-radius: 20px;
1533
+ box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
1534
+ background-color: #FFFFFF;
1535
+ padding: 40px 24px 40px 24px;
1536
+
1537
+ label{
1538
+ font-family: $font-default;
1539
+ font-size: 16px;
1540
+ font-weight: 700;
1541
+ line-height: 24px;
1542
+ letter-spacing: 0.05em;
1543
+ text-align: left;
1544
+ text-underline-position: from-font;
1545
+ text-decoration-skip-ink: none;
1546
+ color: rgba(91, 71, 19, 1);
1547
+ display: block;
1548
+ margin-bottom: 10px;
1549
+ }
1550
+
1551
+ span{
1552
+ font-family: $font-default;
1553
+ font-size: 14px;
1554
+ font-weight: 300;
1555
+ line-height: 21px;
1556
+ letter-spacing: 0.05em;
1557
+ text-align: left;
1558
+ text-underline-position: from-font;
1559
+ text-decoration-skip-ink: none;
1560
+ color: rgba(0, 0, 0, 1);
1561
+ }
1562
+
1563
+ svg{
1564
+ color: $primary-color;
1565
+ }
1566
+ }
1567
+ }
1568
+
1569
+ #blog-page{
1570
+ &_body{
1571
+ margin: 20px var(--side-padding);
1572
+
1573
+ #blogs{
1574
+ margin: 30px 0;
1575
+ }
1576
+ }
1577
+ }
1578
+
1579
+ #blog-show-page{
1580
+ &_body{
1581
+ margin: 20px var(--side-padding);
1582
+ padding: 32px;
1583
+ border-radius: 20px;
1584
+ background: rgba(255, 255, 255, 1);
1585
+ box-shadow: 0px 5px 20px 0px rgba(225, 182, 91, 0.2);
1586
+ }
1587
+
1588
+ }