@qite/tide-booking-component 1.3.1 → 1.3.3

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 (305) hide show
  1. package/.vs/ProjectSettings.json +3 -3
  2. package/.vs/VSWorkspaceState.json +5 -5
  3. package/README.md +8 -8
  4. package/build/build-cjs/booking-product/components/age-select.d.ts +8 -8
  5. package/build/build-cjs/booking-product/components/amount-input.d.ts +10 -10
  6. package/build/build-cjs/booking-product/components/date-range-picker/calendar-day.d.ts +12 -12
  7. package/build/build-cjs/booking-product/components/date-range-picker/calendar.d.ts +19 -19
  8. package/build/build-cjs/booking-product/components/date-range-picker/index.d.ts +20 -23
  9. package/build/build-cjs/booking-product/components/dates.d.ts +9 -9
  10. package/build/build-cjs/booking-product/components/footer.d.ts +10 -10
  11. package/build/build-cjs/booking-product/components/header.d.ts +11 -11
  12. package/build/build-cjs/booking-product/components/icon.d.ts +10 -10
  13. package/build/build-cjs/booking-product/components/product.d.ts +9 -9
  14. package/build/build-cjs/booking-product/components/rating.d.ts +6 -6
  15. package/build/build-cjs/booking-product/components/rooms.d.ts +10 -10
  16. package/build/build-cjs/booking-product/index.d.ts +10 -10
  17. package/build/build-cjs/booking-product/settings-context.d.ts +5 -6
  18. package/build/build-cjs/booking-product/types.d.ts +25 -25
  19. package/build/build-cjs/booking-product/utils/api.d.ts +16 -6
  20. package/build/build-cjs/booking-product/utils/price.d.ts +9 -1
  21. package/build/build-cjs/booking-wizard/api-settings-slice.d.ts +14 -4
  22. package/build/build-cjs/booking-wizard/components/icon.d.ts +10 -10
  23. package/build/build-cjs/booking-wizard/components/labeled-input.d.ts +18 -18
  24. package/build/build-cjs/booking-wizard/components/labeled-select.d.ts +21 -21
  25. package/build/build-cjs/booking-wizard/components/message.d.ts +9 -9
  26. package/build/build-cjs/booking-wizard/components/multi-range-filter.d.ts +11 -11
  27. package/build/build-cjs/booking-wizard/components/print-offer-button.d.ts +17 -17
  28. package/build/build-cjs/booking-wizard/components/product-card.d.ts +8 -8
  29. package/build/build-cjs/booking-wizard/components/step-indicator.d.ts +6 -6
  30. package/build/build-cjs/booking-wizard/components/step-route.d.ts +9 -9
  31. package/build/build-cjs/booking-wizard/features/booking/api.d.ts +29 -10
  32. package/build/build-cjs/booking-wizard/features/booking/booking-self-contained.d.ts +8 -8
  33. package/build/build-cjs/booking-wizard/features/booking/booking-slice.d.ts +177 -46
  34. package/build/build-cjs/booking-wizard/features/booking/booking.d.ts +8 -8
  35. package/build/build-cjs/booking-wizard/features/booking/constants.d.ts +15 -8
  36. package/build/build-cjs/booking-wizard/features/booking/selectors.d.ts +308 -136
  37. package/build/build-cjs/booking-wizard/features/confirmation/confirmation.d.ts +4 -5
  38. package/build/build-cjs/booking-wizard/features/error/error.d.ts +4 -5
  39. package/build/build-cjs/booking-wizard/features/flight-options/flight-filter.d.ts +9 -9
  40. package/build/build-cjs/booking-wizard/features/flight-options/flight-option-flight.d.ts +8 -8
  41. package/build/build-cjs/booking-wizard/features/flight-options/flight-option-modal.d.ts +3 -3
  42. package/build/build-cjs/booking-wizard/features/flight-options/flight-option.d.ts +10 -10
  43. package/build/build-cjs/booking-wizard/features/flight-options/flight-utils.d.ts +16 -6
  44. package/build/build-cjs/booking-wizard/features/flight-options/index.d.ts +4 -5
  45. package/build/build-cjs/booking-wizard/features/price-details/price-details-api.d.ts +15 -6
  46. package/build/build-cjs/booking-wizard/features/price-details/price-details-slice.d.ts +121 -80
  47. package/build/build-cjs/booking-wizard/features/price-details/util.d.ts +5 -2
  48. package/build/build-cjs/booking-wizard/features/product-options/no-options.d.ts +3 -3
  49. package/build/build-cjs/booking-wizard/features/product-options/none-option.d.ts +17 -9
  50. package/build/build-cjs/booking-wizard/features/product-options/option-booking-airline-group.d.ts +17 -8
  51. package/build/build-cjs/booking-wizard/features/product-options/option-booking-group.d.ts +18 -12
  52. package/build/build-cjs/booking-wizard/features/product-options/option-item.d.ts +11 -11
  53. package/build/build-cjs/booking-wizard/features/product-options/option-pax-card.d.ts +13 -10
  54. package/build/build-cjs/booking-wizard/features/product-options/option-pax-group.d.ts +20 -13
  55. package/build/build-cjs/booking-wizard/features/product-options/option-room.d.ts +18 -10
  56. package/build/build-cjs/booking-wizard/features/product-options/option-unit-group.d.ts +20 -13
  57. package/build/build-cjs/booking-wizard/features/product-options/option-units-card.d.ts +9 -9
  58. package/build/build-cjs/booking-wizard/features/product-options/options-form.d.ts +4 -5
  59. package/build/build-cjs/booking-wizard/features/room-options/index.d.ts +4 -5
  60. package/build/build-cjs/booking-wizard/features/room-options/room-utils.d.ts +29 -9
  61. package/build/build-cjs/booking-wizard/features/room-options/room.d.ts +15 -12
  62. package/build/build-cjs/booking-wizard/features/room-options/traveler-rooms.d.ts +13 -9
  63. package/build/build-cjs/booking-wizard/features/sidebar/index.d.ts +7 -7
  64. package/build/build-cjs/booking-wizard/features/sidebar/sidebar-flight.d.ts +8 -8
  65. package/build/build-cjs/booking-wizard/features/sidebar/sidebar-util.d.ts +31 -12
  66. package/build/build-cjs/booking-wizard/features/sidebar/sidebar.d.ts +29 -25
  67. package/build/build-cjs/booking-wizard/features/summary/summary-booking-option-pax.d.ts +7 -7
  68. package/build/build-cjs/booking-wizard/features/summary/summary-booking-option-unit.d.ts +7 -7
  69. package/build/build-cjs/booking-wizard/features/summary/summary-flight.d.ts +8 -8
  70. package/build/build-cjs/booking-wizard/features/summary/summary-per-booking-option-group.d.ts +10 -7
  71. package/build/build-cjs/booking-wizard/features/summary/summary-per-pax-option-group.d.ts +10 -7
  72. package/build/build-cjs/booking-wizard/features/summary/summary-per-unit-option-group.d.ts +10 -7
  73. package/build/build-cjs/booking-wizard/features/summary/summary-slice.d.ts +14 -8
  74. package/build/build-cjs/booking-wizard/features/summary/summary.d.ts +4 -5
  75. package/build/build-cjs/booking-wizard/features/travelers-form/travelers-form-slice.d.ts +75 -49
  76. package/build/build-cjs/booking-wizard/features/travelers-form/travelers-form.d.ts +4 -5
  77. package/build/build-cjs/booking-wizard/features/travelers-form/type-ahead-input.d.ts +16 -16
  78. package/build/build-cjs/booking-wizard/features/travelers-form/validate-form.d.ts +9 -4
  79. package/build/build-cjs/booking-wizard/index.d.ts +12 -12
  80. package/build/build-cjs/booking-wizard/settings-context.d.ts +5 -6
  81. package/build/build-cjs/booking-wizard/store.d.ts +44 -24
  82. package/build/build-cjs/booking-wizard/types.d.ts +253 -257
  83. package/build/build-cjs/booking-wizard/use-offer-printer.d.ts +19 -13
  84. package/build/build-cjs/index.d.ts +3 -3
  85. package/build/build-cjs/index.js +16348 -7394
  86. package/build/build-cjs/shared/components/loader.d.ts +6 -6
  87. package/build/build-cjs/shared/types.d.ts +4 -4
  88. package/build/build-cjs/shared/utils/class-util.d.ts +1 -1
  89. package/build/build-cjs/shared/utils/localization-util.d.ts +248 -248
  90. package/build/build-cjs/shared/utils/query-string-util.d.ts +29 -8
  91. package/build/build-cjs/shared/utils/tide-api-utils.d.ts +6 -4
  92. package/build/build-esm/booking-product/components/age-select.d.ts +8 -8
  93. package/build/build-esm/booking-product/components/amount-input.d.ts +10 -10
  94. package/build/build-esm/booking-product/components/date-range-picker/calendar-day.d.ts +12 -12
  95. package/build/build-esm/booking-product/components/date-range-picker/calendar.d.ts +19 -19
  96. package/build/build-esm/booking-product/components/date-range-picker/index.d.ts +20 -23
  97. package/build/build-esm/booking-product/components/dates.d.ts +9 -9
  98. package/build/build-esm/booking-product/components/footer.d.ts +10 -10
  99. package/build/build-esm/booking-product/components/header.d.ts +11 -11
  100. package/build/build-esm/booking-product/components/icon.d.ts +10 -10
  101. package/build/build-esm/booking-product/components/product.d.ts +9 -9
  102. package/build/build-esm/booking-product/components/rating.d.ts +6 -6
  103. package/build/build-esm/booking-product/components/rooms.d.ts +10 -10
  104. package/build/build-esm/booking-product/index.d.ts +10 -10
  105. package/build/build-esm/booking-product/settings-context.d.ts +5 -6
  106. package/build/build-esm/booking-product/types.d.ts +25 -25
  107. package/build/build-esm/booking-product/utils/api.d.ts +16 -6
  108. package/build/build-esm/booking-product/utils/price.d.ts +9 -1
  109. package/build/build-esm/booking-wizard/api-settings-slice.d.ts +14 -4
  110. package/build/build-esm/booking-wizard/components/icon.d.ts +10 -10
  111. package/build/build-esm/booking-wizard/components/labeled-input.d.ts +18 -18
  112. package/build/build-esm/booking-wizard/components/labeled-select.d.ts +21 -21
  113. package/build/build-esm/booking-wizard/components/message.d.ts +9 -9
  114. package/build/build-esm/booking-wizard/components/multi-range-filter.d.ts +11 -11
  115. package/build/build-esm/booking-wizard/components/print-offer-button.d.ts +17 -17
  116. package/build/build-esm/booking-wizard/components/product-card.d.ts +8 -8
  117. package/build/build-esm/booking-wizard/components/step-indicator.d.ts +6 -6
  118. package/build/build-esm/booking-wizard/components/step-route.d.ts +9 -9
  119. package/build/build-esm/booking-wizard/features/booking/api.d.ts +29 -10
  120. package/build/build-esm/booking-wizard/features/booking/booking-self-contained.d.ts +8 -8
  121. package/build/build-esm/booking-wizard/features/booking/booking-slice.d.ts +177 -46
  122. package/build/build-esm/booking-wizard/features/booking/booking.d.ts +8 -8
  123. package/build/build-esm/booking-wizard/features/booking/constants.d.ts +15 -8
  124. package/build/build-esm/booking-wizard/features/booking/selectors.d.ts +308 -136
  125. package/build/build-esm/booking-wizard/features/confirmation/confirmation.d.ts +4 -5
  126. package/build/build-esm/booking-wizard/features/error/error.d.ts +4 -5
  127. package/build/build-esm/booking-wizard/features/flight-options/flight-filter.d.ts +9 -9
  128. package/build/build-esm/booking-wizard/features/flight-options/flight-option-flight.d.ts +8 -8
  129. package/build/build-esm/booking-wizard/features/flight-options/flight-option-modal.d.ts +3 -3
  130. package/build/build-esm/booking-wizard/features/flight-options/flight-option.d.ts +10 -10
  131. package/build/build-esm/booking-wizard/features/flight-options/flight-utils.d.ts +16 -6
  132. package/build/build-esm/booking-wizard/features/flight-options/index.d.ts +4 -5
  133. package/build/build-esm/booking-wizard/features/price-details/price-details-api.d.ts +15 -6
  134. package/build/build-esm/booking-wizard/features/price-details/price-details-slice.d.ts +121 -80
  135. package/build/build-esm/booking-wizard/features/price-details/util.d.ts +5 -2
  136. package/build/build-esm/booking-wizard/features/product-options/no-options.d.ts +3 -3
  137. package/build/build-esm/booking-wizard/features/product-options/none-option.d.ts +17 -9
  138. package/build/build-esm/booking-wizard/features/product-options/option-booking-airline-group.d.ts +17 -8
  139. package/build/build-esm/booking-wizard/features/product-options/option-booking-group.d.ts +18 -12
  140. package/build/build-esm/booking-wizard/features/product-options/option-item.d.ts +11 -11
  141. package/build/build-esm/booking-wizard/features/product-options/option-pax-card.d.ts +13 -10
  142. package/build/build-esm/booking-wizard/features/product-options/option-pax-group.d.ts +20 -13
  143. package/build/build-esm/booking-wizard/features/product-options/option-room.d.ts +18 -10
  144. package/build/build-esm/booking-wizard/features/product-options/option-unit-group.d.ts +20 -13
  145. package/build/build-esm/booking-wizard/features/product-options/option-units-card.d.ts +9 -9
  146. package/build/build-esm/booking-wizard/features/product-options/options-form.d.ts +4 -5
  147. package/build/build-esm/booking-wizard/features/room-options/index.d.ts +4 -5
  148. package/build/build-esm/booking-wizard/features/room-options/room-utils.d.ts +29 -9
  149. package/build/build-esm/booking-wizard/features/room-options/room.d.ts +15 -12
  150. package/build/build-esm/booking-wizard/features/room-options/traveler-rooms.d.ts +13 -9
  151. package/build/build-esm/booking-wizard/features/sidebar/index.d.ts +7 -7
  152. package/build/build-esm/booking-wizard/features/sidebar/sidebar-flight.d.ts +8 -8
  153. package/build/build-esm/booking-wizard/features/sidebar/sidebar-util.d.ts +31 -12
  154. package/build/build-esm/booking-wizard/features/sidebar/sidebar.d.ts +29 -25
  155. package/build/build-esm/booking-wizard/features/summary/summary-booking-option-pax.d.ts +7 -7
  156. package/build/build-esm/booking-wizard/features/summary/summary-booking-option-unit.d.ts +7 -7
  157. package/build/build-esm/booking-wizard/features/summary/summary-flight.d.ts +8 -8
  158. package/build/build-esm/booking-wizard/features/summary/summary-per-booking-option-group.d.ts +10 -7
  159. package/build/build-esm/booking-wizard/features/summary/summary-per-pax-option-group.d.ts +10 -7
  160. package/build/build-esm/booking-wizard/features/summary/summary-per-unit-option-group.d.ts +10 -7
  161. package/build/build-esm/booking-wizard/features/summary/summary-slice.d.ts +14 -8
  162. package/build/build-esm/booking-wizard/features/summary/summary.d.ts +4 -5
  163. package/build/build-esm/booking-wizard/features/travelers-form/travelers-form-slice.d.ts +75 -49
  164. package/build/build-esm/booking-wizard/features/travelers-form/travelers-form.d.ts +4 -5
  165. package/build/build-esm/booking-wizard/features/travelers-form/type-ahead-input.d.ts +16 -16
  166. package/build/build-esm/booking-wizard/features/travelers-form/validate-form.d.ts +9 -4
  167. package/build/build-esm/booking-wizard/index.d.ts +12 -12
  168. package/build/build-esm/booking-wizard/settings-context.d.ts +5 -6
  169. package/build/build-esm/booking-wizard/store.d.ts +44 -24
  170. package/build/build-esm/booking-wizard/types.d.ts +253 -257
  171. package/build/build-esm/booking-wizard/use-offer-printer.d.ts +19 -13
  172. package/build/build-esm/index.d.ts +3 -3
  173. package/build/build-esm/index.js +15949 -7383
  174. package/build/build-esm/shared/components/loader.d.ts +6 -6
  175. package/build/build-esm/shared/types.d.ts +4 -4
  176. package/build/build-esm/shared/utils/class-util.d.ts +1 -1
  177. package/build/build-esm/shared/utils/localization-util.d.ts +248 -248
  178. package/build/build-esm/shared/utils/query-string-util.d.ts +29 -8
  179. package/build/build-esm/shared/utils/tide-api-utils.d.ts +6 -4
  180. package/package.json +75 -75
  181. package/rollup.config.js +23 -23
  182. package/src/booking-product/components/age-select.tsx +35 -35
  183. package/src/booking-product/components/amount-input.tsx +78 -78
  184. package/src/booking-product/components/date-range-picker/calendar-day.tsx +58 -58
  185. package/src/booking-product/components/date-range-picker/calendar.tsx +178 -178
  186. package/src/booking-product/components/date-range-picker/index.tsx +196 -196
  187. package/src/booking-product/components/dates.tsx +136 -136
  188. package/src/booking-product/components/footer.tsx +69 -69
  189. package/src/booking-product/components/header.tsx +79 -79
  190. package/src/booking-product/components/icon.tsx +251 -251
  191. package/src/booking-product/components/product.tsx +314 -314
  192. package/src/booking-product/components/rating.tsx +21 -21
  193. package/src/booking-product/components/rooms.tsx +195 -195
  194. package/src/booking-product/index.tsx +30 -30
  195. package/src/booking-product/settings-context.ts +14 -14
  196. package/src/booking-product/types.ts +28 -28
  197. package/src/booking-product/utils/api.ts +25 -25
  198. package/src/booking-product/utils/price.ts +29 -29
  199. package/src/booking-wizard/api-settings-slice.ts +24 -24
  200. package/src/booking-wizard/components/icon.tsx +508 -508
  201. package/src/booking-wizard/components/labeled-input.tsx +64 -64
  202. package/src/booking-wizard/components/labeled-select.tsx +69 -69
  203. package/src/booking-wizard/components/message.tsx +34 -34
  204. package/src/booking-wizard/components/multi-range-filter.tsx +113 -113
  205. package/src/booking-wizard/components/print-offer-button.tsx +63 -66
  206. package/src/booking-wizard/components/product-card.tsx +37 -37
  207. package/src/booking-wizard/components/step-indicator.tsx +51 -51
  208. package/src/booking-wizard/components/step-route.tsx +27 -27
  209. package/src/booking-wizard/declarations.d.ts +4 -4
  210. package/src/booking-wizard/features/booking/api.ts +49 -49
  211. package/src/booking-wizard/features/booking/booking-self-contained.tsx +389 -384
  212. package/src/booking-wizard/features/booking/booking-slice.ts +665 -662
  213. package/src/booking-wizard/features/booking/booking.tsx +361 -356
  214. package/src/booking-wizard/features/booking/constants.ts +16 -16
  215. package/src/booking-wizard/features/booking/selectors.ts +441 -441
  216. package/src/booking-wizard/features/confirmation/confirmation.tsx +97 -97
  217. package/src/booking-wizard/features/error/error.tsx +78 -78
  218. package/src/booking-wizard/features/flight-options/flight-filter.tsx +432 -432
  219. package/src/booking-wizard/features/flight-options/flight-option-flight.tsx +385 -385
  220. package/src/booking-wizard/features/flight-options/flight-option-modal.tsx +229 -229
  221. package/src/booking-wizard/features/flight-options/flight-option.tsx +81 -81
  222. package/src/booking-wizard/features/flight-options/flight-utils.ts +516 -516
  223. package/src/booking-wizard/features/flight-options/index.tsx +196 -196
  224. package/src/booking-wizard/features/price-details/price-details-api.ts +24 -24
  225. package/src/booking-wizard/features/price-details/price-details-slice.ts +178 -178
  226. package/src/booking-wizard/features/price-details/util.ts +155 -155
  227. package/src/booking-wizard/features/product-options/no-options.tsx +21 -21
  228. package/src/booking-wizard/features/product-options/none-option.tsx +120 -120
  229. package/src/booking-wizard/features/product-options/option-booking-airline-group.tsx +64 -64
  230. package/src/booking-wizard/features/product-options/option-booking-group.tsx +216 -216
  231. package/src/booking-wizard/features/product-options/option-item.tsx +317 -317
  232. package/src/booking-wizard/features/product-options/option-pax-card.tsx +201 -201
  233. package/src/booking-wizard/features/product-options/option-pax-group.tsx +175 -175
  234. package/src/booking-wizard/features/product-options/option-room.tsx +321 -321
  235. package/src/booking-wizard/features/product-options/option-unit-group.tsx +198 -198
  236. package/src/booking-wizard/features/product-options/option-units-card.tsx +185 -185
  237. package/src/booking-wizard/features/product-options/options-form.tsx +481 -563
  238. package/src/booking-wizard/features/room-options/index.tsx +187 -187
  239. package/src/booking-wizard/features/room-options/room-utils.ts +190 -190
  240. package/src/booking-wizard/features/room-options/room.tsx +160 -160
  241. package/src/booking-wizard/features/room-options/traveler-rooms.tsx +75 -75
  242. package/src/booking-wizard/features/sidebar/index.tsx +76 -76
  243. package/src/booking-wizard/features/sidebar/sidebar-flight.tsx +68 -68
  244. package/src/booking-wizard/features/sidebar/sidebar-util.ts +177 -177
  245. package/src/booking-wizard/features/sidebar/sidebar.tsx +364 -364
  246. package/src/booking-wizard/features/summary/summary-booking-option-pax.tsx +25 -25
  247. package/src/booking-wizard/features/summary/summary-booking-option-unit.tsx +25 -25
  248. package/src/booking-wizard/features/summary/summary-flight.tsx +39 -39
  249. package/src/booking-wizard/features/summary/summary-per-booking-option-group.tsx +69 -69
  250. package/src/booking-wizard/features/summary/summary-per-pax-option-group.tsx +63 -63
  251. package/src/booking-wizard/features/summary/summary-per-unit-option-group.tsx +66 -66
  252. package/src/booking-wizard/features/summary/summary-slice.ts +28 -28
  253. package/src/booking-wizard/features/summary/summary.tsx +674 -674
  254. package/src/booking-wizard/features/travelers-form/travelers-form-slice.ts +164 -164
  255. package/src/booking-wizard/features/travelers-form/travelers-form.tsx +754 -754
  256. package/src/booking-wizard/features/travelers-form/type-ahead-input.tsx +101 -101
  257. package/src/booking-wizard/features/travelers-form/validate-form.ts +245 -245
  258. package/src/booking-wizard/index.tsx +36 -36
  259. package/src/booking-wizard/settings-context.ts +62 -62
  260. package/src/booking-wizard/store.ts +31 -31
  261. package/src/booking-wizard/types.ts +279 -278
  262. package/src/booking-wizard/use-offer-printer.ts +117 -136
  263. package/src/index.ts +4 -4
  264. package/src/shared/components/loader.tsx +16 -16
  265. package/src/shared/translations/en-GB.json +237 -237
  266. package/src/shared/translations/fr-BE.json +238 -238
  267. package/src/shared/translations/nl-BE.json +237 -237
  268. package/src/shared/types.ts +4 -4
  269. package/src/shared/utils/class-util.ts +9 -9
  270. package/src/shared/utils/localization-util.ts +62 -62
  271. package/src/shared/utils/query-string-util.ts +119 -119
  272. package/src/shared/utils/tide-api-utils.ts +36 -36
  273. package/styles/booking-product-variables.scss +394 -394
  274. package/styles/booking-product.scss +446 -446
  275. package/styles/booking-wizard-variables.scss +873 -873
  276. package/styles/booking-wizard.scss +59 -59
  277. package/styles/components/_animations.scss +39 -39
  278. package/styles/components/_base.scss +107 -107
  279. package/styles/components/_booking.scss +879 -879
  280. package/styles/components/_button.scss +238 -238
  281. package/styles/components/_checkbox.scss +219 -219
  282. package/styles/components/_cta.scss +208 -208
  283. package/styles/components/_date-list.scss +41 -41
  284. package/styles/components/_date-range-picker.scss +225 -225
  285. package/styles/components/_decrement-increment.scss +35 -35
  286. package/styles/components/_dropdown.scss +72 -72
  287. package/styles/components/_flight-option.scss +1429 -1429
  288. package/styles/components/_form.scss +1583 -1583
  289. package/styles/components/_info-message.scss +71 -71
  290. package/styles/components/_input.scss +25 -25
  291. package/styles/components/_list.scss +187 -187
  292. package/styles/components/_loader.scss +72 -72
  293. package/styles/components/_mixins.scss +550 -550
  294. package/styles/components/_placeholders.scss +166 -166
  295. package/styles/components/_pricing-summary.scss +155 -155
  296. package/styles/components/_qsm.scss +17 -17
  297. package/styles/components/_radiobutton.scss +170 -170
  298. package/styles/components/_select-wrapper.scss +80 -80
  299. package/styles/components/_spinner.scss +29 -29
  300. package/styles/components/_step-indicators.scss +168 -168
  301. package/styles/components/_table.scss +81 -81
  302. package/styles/components/_tree.scss +530 -530
  303. package/styles/components/_typeahead.scss +281 -281
  304. package/styles/components/_variables.scss +89 -89
  305. package/tsconfig.json +24 -24
@@ -1,1429 +1,1429 @@
1
- .flight {
2
- display: flex;
3
- flex-direction: column;
4
- gap: 2rem;
5
-
6
- &__option {
7
- background: var(--tide-booking-flight-options-card-background);
8
- border-radius: var(--tide-booking-flight-options-card-border-radius);
9
- outline: var(--tide-booking-flight-options-card-border);
10
- display: flex;
11
- flex-direction: column-reverse;
12
- overflow: hidden;
13
-
14
- @include media-sm {
15
- }
16
-
17
- &__header {
18
- display: flex;
19
- align-items: center;
20
- gap: 10px;
21
-
22
- &__wrapper {
23
- display: grid;
24
- align-items: center;
25
- grid-template-columns: repeat(3, 1fr);
26
- gap: 10px;
27
- width: 100%;
28
- }
29
-
30
- .radiobutton {
31
- padding: 0;
32
-
33
- &__input {
34
- position: relative;
35
- margin-right: 0;
36
- margin-top: 0;
37
-
38
- &:checked {
39
- .flight__option {
40
- background: var(--tide-booking-color-primary);
41
- }
42
- }
43
- }
44
- }
45
- }
46
-
47
- // &__body{
48
- // margin-top: 15px;
49
- // padding-top: 15px;
50
- // border-top: 1px solid $gray-medium;
51
-
52
- // &__wrapper{
53
- // display: grid;
54
- // grid-template-rows: repeat(1, 1fr);
55
- // gap: 10px;
56
- // margin-left: 35px;
57
-
58
- // @include media-sm {
59
- // grid-template-columns: 1fr 4fr;
60
- // }
61
- // }
62
- // }
63
- }
64
-
65
- &__footer {
66
- display: flex;
67
- justify-content: space-between;
68
- align-items: center;
69
- gap: 20px;
70
-
71
- // @include media-sm {
72
- // border-bottom: none;
73
- // border-left: 2px solid $gray-border-light;
74
- // }
75
-
76
- &__wrapper {
77
- display: flex;
78
- justify-content: space-between;
79
- align-items: center;
80
- gap: 20px;
81
- }
82
- }
83
-
84
- &__operator {
85
- width: 45px;
86
- height: 45px;
87
- border-radius: 8px;
88
- overflow: hidden;
89
-
90
- &__img {
91
- width: 100%;
92
- height: 100%;
93
- object-fit: cover;
94
- object-position: center;
95
- }
96
- }
97
-
98
- &__price {
99
- text-align: right;
100
- display: flex;
101
- align-items: center;
102
- gap: 20px;
103
-
104
- // @include media-sm {
105
- // align-items: center;
106
- // }
107
-
108
- button {
109
- width: 100%;
110
- text-align: center;
111
- justify-content: center;
112
- align-self: flex-end;
113
- @include media-md {
114
- max-width: 162px;
115
- min-width: 162px;
116
- }
117
- }
118
-
119
- strong {
120
- font-weight: 600;
121
- font-size: 20px;
122
- }
123
- }
124
-
125
- &__content {
126
- display: flex;
127
- flex-direction: column;
128
- }
129
-
130
- &__flights {
131
- display: flex;
132
- flex-direction: column;
133
- background: var(--tide-booking-flight-options-card-background);
134
- }
135
-
136
- &__flight {
137
- display: flex;
138
- flex-direction: column;
139
- gap: 0rem;
140
-
141
- // &:not(:first-child){
142
- // border-top: 2px solid $gray-border-light;
143
- // }
144
-
145
- &__header {
146
- display: flex;
147
- align-items: center;
148
- justify-content: space-between;
149
- gap: 10px;
150
- padding: 15px;
151
- background: var(--tide-booking-flight-options-card-header-background);
152
- border-bottom: var(--tide-booking-flight-options-card-header-border);
153
- }
154
-
155
- &__container {
156
- display: grid;
157
- align-items: center;
158
- grid-template-columns: 1fr auto;
159
- gap: 0rem;
160
- position: relative;
161
- padding: 20px 15px;
162
-
163
- @include media-md {
164
- gap: 1rem;
165
- grid-template-columns: 1fr 16%;
166
- }
167
- }
168
-
169
- &__wrapper {
170
- display: grid;
171
- grid-template-rows: repeat(1, 1fr);
172
- gap: 20px;
173
-
174
- @include media-md {
175
- gap: 10px;
176
- grid-template-columns: 20% 1fr;
177
- }
178
- }
179
-
180
- &__airport {
181
- display: flex;
182
- align-items: center;
183
- }
184
-
185
- &__operator {
186
- font-size: 14px;
187
-
188
- @include media-lg {
189
- font-size: 16px;
190
- }
191
- }
192
- }
193
-
194
- &__logo {
195
- width: auto;
196
- max-height: 30px;
197
-
198
- // &__img{
199
- // width: auto;
200
- // height: 100%;
201
- // object-fit: cover;
202
- // object-position: center;
203
- // }
204
-
205
- &__wrapper {
206
- display: flex;
207
- flex-direction: row;
208
- align-items: center;
209
- gap: 3px;
210
- font-size: 12px;
211
-
212
- @include media-md {
213
- flex-direction: column;
214
- align-items: flex-start;
215
- }
216
- }
217
- }
218
-
219
- &__info {
220
- display: grid;
221
- grid-template-columns: repeat(3, 1fr);
222
- gap: 10px;
223
-
224
- &__times {
225
- display: flex;
226
- flex-direction: column;
227
- gap: 0rem;
228
- font-size: 16px;
229
- line-height: 20px;
230
-
231
- &__wrapper {
232
- display: flex;
233
- flex-direction: column-reverse;
234
- justify-content: flex-end;
235
- gap: 3px;
236
-
237
- @include media-sm {
238
- flex-direction: row;
239
- justify-content: space-between;
240
- gap: 10px;
241
- }
242
-
243
- svg {
244
- fill: var(--tide-booking-flight-options-dapart-arrive-icon--color);
245
-
246
- @include media-sm {
247
- margin: 0 20px;
248
- margin-top: 10px;
249
- }
250
- }
251
-
252
- &--arrival {
253
- display: flex;
254
- flex-direction: column;
255
- align-items: flex-end;
256
- justify-content: flex-start;
257
-
258
- @include media-sm {
259
- align-items: flex-start;
260
- flex-direction: row;
261
- justify-content: space-between;
262
- gap: 10px;
263
- }
264
- }
265
- }
266
-
267
- strong {
268
- color: var(--tide-booking-flight-options-times-title-color);
269
- font-family: var(--tide-booking-flight-options-times-title-font-family);
270
- font-weight: var(--tide-booking-flight-options-times-title-font-weight);
271
- }
272
-
273
- p {
274
- margin: 0;
275
- font-family: var(--tide-booking-flight-options-times-font-family);
276
- color: var(--tide-booking-flight-options-times-color);
277
- }
278
-
279
- &__days {
280
- font-size: 12px;
281
- font-weight: 300;
282
- color: var(--tide-booking-invalid);
283
- }
284
-
285
- &--arrival {
286
- align-items: flex-end;
287
- text-align: right;
288
- }
289
- }
290
-
291
- &__duration {
292
- line-height: 1.5;
293
- display: flex;
294
- flex-direction: column;
295
- align-items: center;
296
- gap: 3px;
297
- font-size: 12px;
298
-
299
- span {
300
- text-align: center;
301
- }
302
-
303
- &--waittime {
304
- gap: 8px;
305
- }
306
-
307
- &__stops {
308
- display: flex;
309
- justify-content: space-evenly;
310
- align-items: center;
311
- height: 1.5px;
312
- width: 100%;
313
- background: var(--tide-booking-flight-options-stops-line-color);
314
- z-index: 1;
315
-
316
- &--stoptime {
317
- background-color: transparent;
318
- border-top: 1.5px dashed
319
- var(--tide-booking-flight-options-stoptime-border-color);
320
- height: 0;
321
- }
322
- }
323
-
324
- &__stoptime {
325
- display: flex;
326
- flex-direction: column;
327
- align-items: center;
328
- }
329
-
330
- &__stop {
331
- height: 6px;
332
- width: 6px;
333
- background: var(--tide-booking-flight-options-stop-color);
334
- border: var(--tide-booking-flight-options-stop-border);
335
- border-radius: 50%;
336
- }
337
-
338
- strong {
339
- font-weight: 700;
340
- }
341
-
342
- p {
343
- margin: 0;
344
- }
345
- }
346
- }
347
-
348
- &__detail {
349
- display: flex;
350
- flex-direction: column;
351
- gap: 20px;
352
- overflow: hidden;
353
- background-color: var(--tide-booking-flight-options-detail-card-background);
354
- margin: 0 15px;
355
- padding: 0 20px;
356
- border: var(--tide-booking-flight-options-detail-card-border);
357
- border-radius: var(--tide-booking-flight-options-detail-card-border-radius);
358
- opacity: 0;
359
- transform: scaleY(0.95);
360
- transform-origin: top;
361
- height: 0;
362
- transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease,
363
- padding 0.4s ease, margin-bottom 0.4s ease,
364
- height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
365
-
366
- @include media-md {
367
- margin: 0 15px;
368
- }
369
-
370
- &--active {
371
- transform: scaleY(1);
372
- opacity: 1;
373
- height: auto;
374
- padding: 20px;
375
- margin-bottom: 20px;
376
-
377
- @include media-md {
378
- margin-bottom: 20px;
379
- }
380
- }
381
-
382
- &__btn {
383
- display: flex;
384
- align-items: center;
385
- justify-content: center;
386
- padding: 10px;
387
- border-radius: var(
388
- --tide-booking-flight-options-detail-toggle-border-radius
389
- );
390
- font-size: 14px;
391
- color: var(--tide-booking-flight-options-detail-toggle-icon-color);
392
- background: var(--tide-booking-flight-options-detail-toggle-background);
393
- border: var(--tide-booking-flight-options-detail-toggle-border);
394
- cursor: pointer;
395
- transition: all 0.3s ease-in-out;
396
-
397
- &__wrapper {
398
- position: absolute;
399
- top: 20px;
400
- right: 20px;
401
- display: flex;
402
- align-items: center;
403
- justify-content: flex-end;
404
- gap: 5px;
405
- padding: 0%;
406
-
407
- @include media-md {
408
- position: relative;
409
- top: 0;
410
- right: 0;
411
- }
412
- }
413
-
414
- svg {
415
- fill: var(--tide-booking-flight-options-detail-toggle-icon-color);
416
- transition: all 0.3s ease-in-out;
417
- }
418
-
419
- &:hover,
420
- &:focus {
421
- color: var(
422
- --tide-booking-flight-options-detail-toggle-icon-color-hover
423
- );
424
- background: var(
425
- --tide-booking-flight-options-detail-toggle-background-hover
426
- );
427
- border: var(--tide-booking-flight-options-detail-toggle-border-hover);
428
-
429
- svg {
430
- fill: var(
431
- --tide-booking-flight-options-detail-toggle-icon-color-hover
432
- );
433
- }
434
- }
435
-
436
- &--active {
437
- .flight__detail__btn__arrow {
438
- transform: rotate(90deg);
439
- }
440
- }
441
- }
442
-
443
- .flight__info {
444
- &__times {
445
- font-size: 14px;
446
-
447
- p {
448
- font-size: 12px;
449
-
450
- @include media-md {
451
- font-size: 14px;
452
- }
453
- }
454
- }
455
- }
456
- }
457
-
458
- &__rate {
459
- display: flex;
460
- flex-direction: column;
461
- // border-top: 2px solid $gray-border-light;
462
- overflow-y: hidden;
463
- height: 100%;
464
- max-height: 1.5px;
465
- transition: all 0.3s ease-in-out;
466
-
467
- &__container {
468
- display: flex;
469
- flex-direction: column;
470
- gap: 20px;
471
- padding: 20px;
472
-
473
- @include media-md {
474
- flex-direction: row;
475
- align-items: flex-start;
476
- justify-content: space-between;
477
- gap: 20px;
478
- }
479
- }
480
-
481
- &__title {
482
- display: flex;
483
- flex-direction: column;
484
- h2 {
485
- font-size: 20px;
486
- font-family: var(--tide-booking-font-heading);
487
- color: var(--tide-booking-gray-dark);
488
- margin-bottom: 0rem;
489
-
490
- @include media-md {
491
- font-size: 30px;
492
- }
493
-
494
- strong {
495
- font-weight: 600;
496
- color: #000;
497
- }
498
- }
499
- }
500
-
501
- &__wrapper {
502
- display: flex;
503
- align-items: center;
504
- gap: 20px;
505
- overflow-x: auto;
506
- @extend %scrollbar-none;
507
- margin: -20px;
508
- padding: 20px;
509
-
510
- @include media-md {
511
- overflow-x: visible;
512
- }
513
- }
514
-
515
- &__card {
516
- border: solid 1px var(--tide-booking-gray-medium);
517
- border-top: 3px solid #334eac;
518
- border-radius: 10px;
519
- max-width: 180px;
520
- min-width: 180px;
521
- // opacity: 0.7;
522
- cursor: pointer;
523
- transform: scale(1);
524
- transition: all 0.3s ease-in-out;
525
-
526
- &__header {
527
- display: flex;
528
- justify-content: space-between;
529
- align-items: center;
530
- gap: 10px;
531
- padding: 10px;
532
- background: #ebedf7;
533
- border-radius: 1rem 1rem 0 0;
534
-
535
- &__title {
536
- font-family: var(--tide-booking-font-heading);
537
- font-size: 18px;
538
- font-weight: 500;
539
- color: #334eac;
540
- margin: 0;
541
- }
542
- }
543
-
544
- &__content {
545
- display: flex;
546
- flex-direction: column;
547
- justify-content: flex-end;
548
- padding: 10px;
549
- overflow: hidden;
550
- min-height: 70px;
551
- max-height: 70px;
552
- }
553
-
554
- &__item {
555
- display: flex;
556
- align-items: center;
557
- justify-content: space-between;
558
- gap: 3px;
559
- color: var(--tide-booking-gray-dark);
560
- font-size: 20px;
561
- font-weight: 500;
562
-
563
- svg {
564
- fill: #334eac;
565
- transform: rotate(0deg);
566
- transition: all 0.3s ease-in-out;
567
- }
568
- }
569
-
570
- &__chairs {
571
- font-size: 12px;
572
- font-weight: lighter;
573
- color: var(--tide-booking-price-increase);
574
- }
575
-
576
- &__lowest {
577
- font-size: 14px;
578
- font-weight: bold;
579
- color: var(--tide-booking-price-decrease);
580
- }
581
-
582
- &--active {
583
- border-width: 2px;
584
- border-color: #334eac;
585
- border-top: 3px solid #334eac;
586
-
587
- .flight__rate__card__item svg {
588
- transform: rotate(90deg);
589
- }
590
- }
591
-
592
- &:hover {
593
- transform: scale(1.05);
594
- }
595
-
596
- &--premium {
597
- border-top: 3px solid #85204b;
598
-
599
- .flight__rate__card__header {
600
- background: #f1e6eb;
601
- }
602
-
603
- .flight__rate__card__header__title {
604
- color: #85204b;
605
- }
606
-
607
- .flight__rate__card__item svg {
608
- fill: #85204b;
609
- }
610
-
611
- &--active {
612
- border-width: 2px;
613
- border-color: #85204b;
614
- border-top: 3px solid #85204b;
615
-
616
- .flight__rate__card__item svg {
617
- transform: rotate(90deg);
618
- }
619
- }
620
- }
621
-
622
- &--business {
623
- border-top: 3px solid #8e8347;
624
-
625
- .flight__rate__card__header {
626
- background: #f5f4ed;
627
- }
628
-
629
- .flight__rate__card__header__title {
630
- color: #8e8347;
631
- }
632
-
633
- .flight__rate__card__item svg {
634
- fill: #8e8347;
635
- }
636
-
637
- &--active {
638
- border-width: 2px;
639
- border-color: #8e8347;
640
- border-top: 3px solid #8e8347;
641
-
642
- .flight__rate__card__item svg {
643
- transform: rotate(90deg);
644
- }
645
- }
646
- }
647
- }
648
-
649
- p {
650
- font-size: 12px;
651
- margin: 0;
652
-
653
- strong {
654
- font-weight: 700;
655
- }
656
- }
657
-
658
- &__change {
659
- font-size: 12px;
660
- }
661
-
662
- &__modal {
663
- background: #f9f9f9;
664
- border-radius: 10px;
665
- width: 100%;
666
- max-width: 1440px;
667
- max-height: 920px;
668
- height: calc(100vh - 40px);
669
- z-index: 101;
670
- position: relative;
671
- display: grid;
672
- grid-template-rows: auto 60px 1fr auto;
673
-
674
- @include media-sm {
675
- margin: 45px 20px;
676
- height: calc(100vh - 90px);
677
- }
678
-
679
- @include media-lg {
680
- margin: 45px;
681
- }
682
-
683
- &__container {
684
- position: fixed;
685
- height: 100vh;
686
- width: 100vw;
687
- display: none;
688
- justify-content: center;
689
- align-items: center;
690
- z-index: 100;
691
- top: 0;
692
- left: 0;
693
-
694
- &::after {
695
- content: "";
696
- position: absolute;
697
- height: 100%;
698
- width: 100%;
699
- background: #0a0a0abb;
700
- z-index: 100;
701
- }
702
-
703
- &--active {
704
- display: flex;
705
- }
706
- }
707
-
708
- &__header {
709
- display: flex;
710
- justify-content: space-between;
711
- align-items: center;
712
- gap: 10px;
713
- padding: 20px;
714
- background-color: #fff;
715
- border-radius: 10px 10px 0px 0px;
716
- box-shadow: 0px 3px 10px 0px #00000021;
717
- position: relative;
718
- z-index: 1;
719
-
720
- &__title {
721
- font-family: var(--tide-booking-font-heading);
722
- font-size: 16px;
723
- font-weight: 500;
724
- margin: 0;
725
- }
726
-
727
- &__close {
728
- font-size: 16px;
729
- background-color: transparent;
730
- border: none;
731
- height: auto;
732
- cursor: pointer;
733
- }
734
- }
735
-
736
- &__content {
737
- padding: 2rem;
738
- overflow: auto;
739
- @extend %scrollbar-thin;
740
- display: grid;
741
- grid-auto-columns: 310px;
742
- grid-auto-flow: column;
743
- gap: 20px;
744
- }
745
-
746
- &__tabs {
747
- display: flex;
748
- gap: 1rem;
749
- padding: 0 20px;
750
- margin-bottom: 10px;
751
- background-color: #fff;
752
- height: 60px;
753
- }
754
-
755
- &__tab {
756
- font-size: 12px;
757
- color: #cbcbcb;
758
- background: transparent;
759
- border: none;
760
- border-bottom: solid 2px #fff;
761
- cursor: pointer;
762
- transition: border 0.3s ease-in-out;
763
- height: 100%;
764
-
765
- @include media-md {
766
- font-size: 16px;
767
- }
768
-
769
- &:hover,
770
- &:focus {
771
- color: rgba(255, 255, 255, 0.325);
772
- }
773
-
774
- &--active {
775
- color: var(--tide-booking-color-primary);
776
- border-bottom: solid 2px var(--tide-booking-color-primary);
777
- }
778
- }
779
-
780
- &__card {
781
- background: #fff;
782
- border-radius: 10px;
783
- display: flex;
784
- flex-direction: column;
785
- justify-content: space-between;
786
- gap: 1rem;
787
- height: auto;
788
- border: solid 1px var(--tide-booking-gray-medium);
789
- border-top: 3px solid #334eac;
790
- // min-height: calc(100% - 40px);
791
-
792
- &__header {
793
- padding: 0 20px;
794
- padding-top: 20px;
795
- background: #ebedf7;
796
- border-radius: 10px 10px 0 0;
797
-
798
- &__title {
799
- font-family: "proxima-nova", sans-serif;
800
- font-size: 20px;
801
- margin: 0;
802
- color: #334eac;
803
- }
804
-
805
- &__class {
806
- font-size: 12px;
807
- font-weight: 300;
808
- margin: 0;
809
- }
810
- }
811
-
812
- &__items {
813
- display: flex;
814
- flex-direction: column;
815
- gap: 10px;
816
- padding: 20px;
817
-
818
- &--top {
819
- background: #ebedf7;
820
- }
821
- }
822
-
823
- &__item {
824
- display: grid;
825
- grid-template-columns: 20px 1fr;
826
- align-items: center;
827
- gap: 10px;
828
-
829
- svg {
830
- fill: var(--tide-booking-gray-dark);
831
- }
832
-
833
- &__wrapper {
834
- font-size: 12px;
835
-
836
- p {
837
- margin: 0;
838
- }
839
-
840
- strong {
841
- font-weight: 700;
842
- }
843
- }
844
-
845
- &--border {
846
- width: 100%;
847
- height: 1px;
848
- background: var(--tide-booking-gray-border-light);
849
- }
850
-
851
- &--disabled {
852
- opacity: 0.25;
853
- }
854
- }
855
-
856
- &__footer {
857
- display: flex;
858
- flex-direction: row-reverse;
859
- justify-content: space-between;
860
- align-items: center;
861
- gap: 10px;
862
- padding: 0 20px;
863
- padding-bottom: 20px;
864
-
865
- button {
866
- width: 100%;
867
- text-align: center;
868
- justify-content: center;
869
- @include media-md {
870
- max-width: 162px;
871
- }
872
- }
873
-
874
- .price {
875
- white-space: nowrap;
876
-
877
- &--decrease {
878
- color: var(--tide-booking-price-decrease);
879
- }
880
-
881
- &--increase {
882
- color: var(--tide-booking-price-increase);
883
- }
884
- }
885
- }
886
-
887
- &--premium {
888
- border-top: 3px solid #85204b;
889
-
890
- .flight__rate__modal__card__header,
891
- .flight__rate__modal__card__items--top {
892
- background: #f1e6eb;
893
- }
894
-
895
- .flight__rate__modal__card__header__title {
896
- color: #85204b;
897
- }
898
- }
899
-
900
- &--business {
901
- border-top: 3px solid #8e8347;
902
-
903
- .flight__rate__modal__card__header,
904
- .flight__rate__modal__card__items--top {
905
- background: #f5f4ed;
906
- }
907
-
908
- .flight__rate__modal__card__header__title {
909
- color: #8e8347;
910
- }
911
- }
912
- }
913
-
914
- &__footer {
915
- display: flex;
916
- justify-content: flex-end;
917
- gap: 10px;
918
- padding: 20px;
919
- background-color: #fff;
920
- border-radius: 0px 0px 10px 10px;
921
- box-shadow: 0px -3px 10px 0px #00000021;
922
-
923
- button {
924
- width: 100%;
925
- text-align: center;
926
- justify-content: center;
927
- @include media-md {
928
- max-width: 162px;
929
- }
930
- }
931
- }
932
- }
933
-
934
- &__detail {
935
- overflow: auto;
936
- @extend %scrollbar-thin;
937
- display: none;
938
- grid-auto-columns: 310px;
939
- grid-auto-flow: column;
940
- gap: 20px;
941
- padding: 0rem 20px;
942
- max-height: 0px;
943
- opacity: 0;
944
- transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out,
945
- padding-bottom 0.3s ease-in-out;
946
-
947
- @include media-md {
948
- display: grid;
949
- }
950
-
951
- &--active {
952
- display: none;
953
- max-height: 1000px;
954
- opacity: 1;
955
- padding-bottom: 20px;
956
-
957
- @include media-md {
958
- display: grid;
959
- }
960
- }
961
- }
962
-
963
- &--active {
964
- height: 100%;
965
- max-height: 1000px;
966
- }
967
- }
968
-
969
- &__status {
970
- display: flex;
971
- justify-content: center;
972
- align-items: center;
973
- gap: 10px;
974
- color: #fff;
975
- background: var(--tide-booking-color-primary);
976
- border-radius: 50%;
977
- padding: 10px;
978
- font-size: 12px;
979
- font-weight: 300;
980
- width: 30px;
981
- height: 30px;
982
-
983
- &--pub {
984
- background: var(--tide-booking-price-decrease);
985
- }
986
- }
987
-
988
- &__airport {
989
- display: none;
990
- align-items: center;
991
- gap: 5px;
992
-
993
- @include media-sm {
994
- display: flex;
995
- }
996
- }
997
-
998
- &__times {
999
- display: flex;
1000
- flex-direction: column;
1001
- align-items: flex-end;
1002
-
1003
- &__date {
1004
- font-size: 14px;
1005
-
1006
- @include media-lg {
1007
- font-size: 16px;
1008
- }
1009
- }
1010
- }
1011
-
1012
- &__filter {
1013
- position: fixed;
1014
- left: 0%;
1015
- top: 0;
1016
- z-index: 100;
1017
- display: flex;
1018
- flex-direction: column;
1019
- gap: 20px;
1020
- background: #fff;
1021
- height: 100%;
1022
- max-height: 97.3vh;
1023
- width: calc(100vw - 40px);
1024
- padding: 20px;
1025
- box-shadow: 0px 0px 5px rgba(158, 158, 158, 0.447);
1026
- transform: translateX(-100%);
1027
- transition: all 0.3s ease-in-out;
1028
- overflow-y: auto;
1029
- @extend %scrollbar-thin;
1030
- scrollbar-gutter: stable;
1031
-
1032
- @include media-xs {
1033
- width: 100%;
1034
- max-width: 360px;
1035
- }
1036
-
1037
- &--active {
1038
- transform: translateX(0%);
1039
- }
1040
-
1041
- &__header {
1042
- position: relative;
1043
- display: flex;
1044
- justify-content: space-between;
1045
- align-items: flex-start;
1046
- gap: 10px;
1047
-
1048
- &__title {
1049
- h3 {
1050
- margin-bottom: 0rem;
1051
- }
1052
-
1053
- p {
1054
- font-weight: var(
1055
- --tide-booking-flight-options-filter-header-text-font-weight
1056
- );
1057
- color: var(--tide-booking-flight-options-filter-header-text-color);
1058
- font-size: 16px;
1059
- }
1060
-
1061
- strong {
1062
- font-weight: var(
1063
- --tide-booking-flight-options-filter-header-text-strong-font-weight
1064
- );
1065
- color: var(
1066
- --tide-booking-flight-options-filter-header-text-strong-color
1067
- );
1068
- }
1069
- }
1070
- }
1071
-
1072
- &__body {
1073
- display: flex;
1074
- flex-direction: column;
1075
- gap: 30px;
1076
- }
1077
-
1078
- &__group {
1079
- display: flex;
1080
- flex-direction: column;
1081
- gap: 20px;
1082
-
1083
- &__title {
1084
- font-family: var(
1085
- --tide-booking-flight-options-filter-group-title-text-font-family
1086
- );
1087
- font-size: 18px;
1088
- font-weight: var(
1089
- --tide-booking-flight-options-filter-group-title-text-font-weight
1090
- );
1091
- color: var(--tide-booking-flight-options-filter-group-title-text-color);
1092
- display: flex;
1093
- justify-content: space-between;
1094
- align-items: center;
1095
- padding-bottom: 5px;
1096
- border-bottom: var(
1097
- --tide-booking-flight-options-filter-group-title-text-border
1098
- );
1099
-
1100
- svg {
1101
- fill: var(--tide-booking-color-primary);
1102
- }
1103
- }
1104
-
1105
- &__wrapper {
1106
- display: flex;
1107
- flex-direction: column;
1108
- gap: 10px;
1109
-
1110
- p {
1111
- margin: 0px;
1112
- font-size: 16px;
1113
- padding: 0rem 10px;
1114
- font-family: var(
1115
- --tide-booking-flight-options-filter-group-title-subtext-font-family
1116
- );
1117
- font-weight: var(
1118
- --tide-booking-flight-options-filter-group-title-subtext-font-weight
1119
- );
1120
- color: var(
1121
- --tide-booking-flight-options-filter-group-title-subtext-color
1122
- );
1123
- }
1124
- }
1125
-
1126
- .tree {
1127
- padding: 7.5px 10px;
1128
- font-size: 16px;
1129
-
1130
- .checkbox,
1131
- .radiobutton {
1132
- padding: 0rem 15px 0 28px;
1133
- }
1134
-
1135
- .checkbox__input--parent,
1136
- .radiobutton__input--parent {
1137
- top: -1px;
1138
- }
1139
-
1140
- .checkbox__label {
1141
- padding: 0px;
1142
- }
1143
-
1144
- .radiobutton__label-text {
1145
- display: flex;
1146
- flex-direction: row;
1147
- align-items: center;
1148
- gap: 5px;
1149
- color: var(--tide-booking-checkbox-color-text);
1150
- margin: 0px;
1151
- padding: 0px;
1152
-
1153
- .amount {
1154
- color: var(--tide-booking-color-primary);
1155
- }
1156
- }
1157
- }
1158
- }
1159
-
1160
- &__slider {
1161
- display: flex;
1162
- flex-direction: column;
1163
- gap: 10px;
1164
- padding: 7.5px 10px;
1165
-
1166
- &__value {
1167
- font-size: 12px;
1168
- display: flex;
1169
- justify-content: space-between;
1170
- width: 100%;
1171
- }
1172
-
1173
- // .slider--progress {
1174
- // -webkit-appearance: none;
1175
- // width: 90%;
1176
- // height: 4px;
1177
- // border-radius: 5px;
1178
- // background: linear-gradient(to right, $color-primary 0%, $color-primary calc((var(--value) - 2) / 5 * 100%), $gray-light calc((var(--value) - 2) / 5 * 100%), $gray-light 100%);
1179
- // outline: none;
1180
- // opacity: 0.7;
1181
- // transition: opacity .15s ease-in-out;
1182
-
1183
- // &::-webkit-slider-runnable-track {
1184
- // width: 90%;
1185
- // height: 4px;
1186
- // cursor: pointer;
1187
- // animate: 0.2s;
1188
- // background: linear-gradient(to right, $color-primary 0%, $color-primary calc((var(--value) - 2) / 5 * 100%), $gray-light calc((var(--value) - 2) / 5 * 100%), $gray-light 100%);
1189
- // border-radius: 5px;
1190
- // }
1191
-
1192
- // &::-moz-range-track {
1193
- // width: 90%;
1194
- // height: 4px;
1195
- // cursor: pointer;
1196
- // animate: 0.2s;
1197
- // background: linear-gradient(to right, $color-primary 0%, $color-primary calc((var(--value) - 2) / 5 * 100%), $gray-light calc((var(--value) - 2) / 5 * 100%), $gray-light 100%);
1198
- // border-radius: 5px;
1199
- // }
1200
-
1201
- // &::-webkit-slider-thumb {
1202
- // -webkit-appearance: none;
1203
- // appearance: none;
1204
- // width: 16px;
1205
- // height: 16px;
1206
- // border-radius: 50%;
1207
- // background: $color-primary;
1208
- // cursor: pointer;
1209
- // margin-top: -5px;
1210
- // }
1211
-
1212
- // &::-moz-range-thumb {
1213
- // width: 16px;
1214
- // height: 16px;
1215
- // border-radius: 50%;
1216
- // background: $color-primary;
1217
- // cursor: pointer;
1218
- // margin-top: -5px;
1219
- // }
1220
- // }
1221
- }
1222
-
1223
- .double-slider-box {
1224
- background-color: transparent;
1225
- border-radius: 10px;
1226
- width: 100%;
1227
- max-width: 97%;
1228
- margin-left: 10px;
1229
-
1230
- @include media-xs {
1231
- max-width: 342px;
1232
- }
1233
- }
1234
-
1235
- .range-slider {
1236
- position: relative;
1237
- width: 100%;
1238
- height: 5px;
1239
- margin: 30px 0;
1240
- background-color: var(--tide-booking-slider-range-background);
1241
- border-radius: 5px;
1242
-
1243
- input {
1244
- padding: 0rem;
1245
- }
1246
- }
1247
-
1248
- .slider-track {
1249
- height: 100%;
1250
- position: absolute;
1251
- background-color: var(--tide-booking-slider-track-background);
1252
- left: 0;
1253
- right: 100%;
1254
- border-radius: 5px;
1255
- }
1256
-
1257
- .range-slider input[type="range"] {
1258
- position: absolute;
1259
- width: 101%;
1260
- left: -3px;
1261
- top: 0;
1262
- transform: translateY(-50%);
1263
- background: none;
1264
- pointer-events: none;
1265
- border: none;
1266
- appearance: none;
1267
- height: 5px;
1268
- }
1269
-
1270
- input[type="range"]::-webkit-slider-thumb {
1271
- height: 25px;
1272
- width: 25px;
1273
- border-radius: 50%;
1274
- border: 3px solid var(--tide-booking-slider-thumb-border-color);
1275
- background: var(--tide-booking-slider-thumb-background);
1276
- pointer-events: auto;
1277
- appearance: none;
1278
- cursor: pointer;
1279
- box-shadow: 0 1.25px 5.625px -1.25px rgba(0, 0, 0, 0.25);
1280
- position: relative;
1281
- z-index: 2; /* Ensure thumbs appear above the track */
1282
- }
1283
-
1284
- input[type="range"]::-moz-range-thumb {
1285
- height: 25px;
1286
- width: 25px;
1287
- border-radius: 50%;
1288
- border: 3px solid var(--tide-booking-slider-thumb-border-color);
1289
- background: var(--tide-booking-slider-thumb-background);
1290
- pointer-events: auto;
1291
- cursor: pointer;
1292
- box-shadow: 0 1.25px 5.625px -1.25px rgba(0, 0, 0, 0.25);
1293
- position: relative;
1294
- z-index: 2;
1295
- }
1296
-
1297
- .input-box {
1298
- display: flex;
1299
- justify-content: space-between;
1300
- width: 100%;
1301
- }
1302
-
1303
- .min-box,
1304
- .max-box {
1305
- width: 50%;
1306
- font-size: 16px;
1307
- }
1308
-
1309
- .min-box {
1310
- margin-right: 10px;
1311
- }
1312
-
1313
- .max-box {
1314
- text-align: right;
1315
- }
1316
-
1317
- input[type="number"] {
1318
- width: 40px;
1319
- padding: 10px;
1320
- border: 1px solid #ccc;
1321
- border-radius: 5px;
1322
- text-align: center;
1323
- }
1324
-
1325
- .min-tooltip,
1326
- .max-tooltip {
1327
- position: absolute;
1328
- top: -35px;
1329
- font-size: 12px;
1330
- color: #555;
1331
- background-color: #fff;
1332
- padding: 5px;
1333
- border: 1px solid #ddd;
1334
- border-radius: 5px;
1335
- white-space: nowrap;
1336
- z-index: 1;
1337
- }
1338
-
1339
- .min-tooltip {
1340
- left: 20px;
1341
- transform: translateX(-50%);
1342
- }
1343
-
1344
- .max-tooltip {
1345
- right: 20px;
1346
- transform: translateX(50%);
1347
- }
1348
- }
1349
- }
1350
-
1351
- // .flight-option {
1352
- // @extend %reset;
1353
- // width: 100%;
1354
- // padding: $gutter;
1355
-
1356
- // &:not(:first-child) {
1357
- // margin-top: $gutter;
1358
- // border-top: 1px solid $gray-medium;
1359
- // }
1360
-
1361
- // &__header {
1362
- // display: flex;
1363
- // align-items: flex-start;
1364
-
1365
- // @include media-md {
1366
- // margin-bottom: 0;
1367
- // justify-content: space-between;
1368
- // }
1369
- // }
1370
-
1371
- // &__header-copy {
1372
- // padding-top: 0.75rem;
1373
- // font-size: 1.4rem;
1374
-
1375
- // @include media-md {
1376
- // font-size: 1.6rem;
1377
- // }
1378
- // }
1379
-
1380
- // &__header-actions {
1381
- // margin-left: auto;
1382
- // display: flex;
1383
- // align-items: center;
1384
-
1385
- // .cta {
1386
- // display: none;
1387
-
1388
- // @include media-md {
1389
- // display: flex;
1390
- // }
1391
- // }
1392
- // }
1393
-
1394
- // &__select {
1395
- // position: relative;
1396
-
1397
- // @include media-md {
1398
- // display: none;
1399
- // }
1400
- // }
1401
-
1402
- // &__select-label {
1403
- // padding: 0.3rem $gutter * 0.5;
1404
- // margin-top: -1.5rem;
1405
- // margin-bottom: 1rem;
1406
- // display: inline-flex;
1407
- // align-items: center;
1408
- // font-size: 1.3rem;
1409
- // text-transform: uppercase;
1410
- // border-radius: 0 0 0.5rem 0.5rem;
1411
- // color: $white;
1412
- // background-color: $color-primary;
1413
-
1414
- // @include media-md {
1415
- // display: none;
1416
- // }
1417
-
1418
- // &:before {
1419
- // content: "";
1420
- // width: 10px;
1421
- // height: 0.5rem;
1422
- // margin: -0.5rem 0.5rem 0 0;
1423
- // display: inline-block;
1424
- // border-left: 2px solid $white;
1425
- // border-bottom: 2px solid $white;
1426
- // transform: rotate(-45deg);
1427
- // }
1428
- // }
1429
- // }
1
+ .flight {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 2rem;
5
+
6
+ &__option {
7
+ background: var(--tide-booking-flight-options-card-background);
8
+ border-radius: var(--tide-booking-flight-options-card-border-radius);
9
+ outline: var(--tide-booking-flight-options-card-border);
10
+ display: flex;
11
+ flex-direction: column-reverse;
12
+ overflow: hidden;
13
+
14
+ @include media-sm {
15
+ }
16
+
17
+ &__header {
18
+ display: flex;
19
+ align-items: center;
20
+ gap: 10px;
21
+
22
+ &__wrapper {
23
+ display: grid;
24
+ align-items: center;
25
+ grid-template-columns: repeat(3, 1fr);
26
+ gap: 10px;
27
+ width: 100%;
28
+ }
29
+
30
+ .radiobutton {
31
+ padding: 0;
32
+
33
+ &__input {
34
+ position: relative;
35
+ margin-right: 0;
36
+ margin-top: 0;
37
+
38
+ &:checked {
39
+ .flight__option {
40
+ background: var(--tide-booking-color-primary);
41
+ }
42
+ }
43
+ }
44
+ }
45
+ }
46
+
47
+ // &__body{
48
+ // margin-top: 15px;
49
+ // padding-top: 15px;
50
+ // border-top: 1px solid $gray-medium;
51
+
52
+ // &__wrapper{
53
+ // display: grid;
54
+ // grid-template-rows: repeat(1, 1fr);
55
+ // gap: 10px;
56
+ // margin-left: 35px;
57
+
58
+ // @include media-sm {
59
+ // grid-template-columns: 1fr 4fr;
60
+ // }
61
+ // }
62
+ // }
63
+ }
64
+
65
+ &__footer {
66
+ display: flex;
67
+ justify-content: space-between;
68
+ align-items: center;
69
+ gap: 20px;
70
+
71
+ // @include media-sm {
72
+ // border-bottom: none;
73
+ // border-left: 2px solid $gray-border-light;
74
+ // }
75
+
76
+ &__wrapper {
77
+ display: flex;
78
+ justify-content: space-between;
79
+ align-items: center;
80
+ gap: 20px;
81
+ }
82
+ }
83
+
84
+ &__operator {
85
+ width: 45px;
86
+ height: 45px;
87
+ border-radius: 8px;
88
+ overflow: hidden;
89
+
90
+ &__img {
91
+ width: 100%;
92
+ height: 100%;
93
+ object-fit: cover;
94
+ object-position: center;
95
+ }
96
+ }
97
+
98
+ &__price {
99
+ text-align: right;
100
+ display: flex;
101
+ align-items: center;
102
+ gap: 20px;
103
+
104
+ // @include media-sm {
105
+ // align-items: center;
106
+ // }
107
+
108
+ button {
109
+ width: 100%;
110
+ text-align: center;
111
+ justify-content: center;
112
+ align-self: flex-end;
113
+ @include media-md {
114
+ max-width: 162px;
115
+ min-width: 162px;
116
+ }
117
+ }
118
+
119
+ strong {
120
+ font-weight: 600;
121
+ font-size: 20px;
122
+ }
123
+ }
124
+
125
+ &__content {
126
+ display: flex;
127
+ flex-direction: column;
128
+ }
129
+
130
+ &__flights {
131
+ display: flex;
132
+ flex-direction: column;
133
+ background: var(--tide-booking-flight-options-card-background);
134
+ }
135
+
136
+ &__flight {
137
+ display: flex;
138
+ flex-direction: column;
139
+ gap: 0rem;
140
+
141
+ // &:not(:first-child){
142
+ // border-top: 2px solid $gray-border-light;
143
+ // }
144
+
145
+ &__header {
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: space-between;
149
+ gap: 10px;
150
+ padding: 15px;
151
+ background: var(--tide-booking-flight-options-card-header-background);
152
+ border-bottom: var(--tide-booking-flight-options-card-header-border);
153
+ }
154
+
155
+ &__container {
156
+ display: grid;
157
+ align-items: center;
158
+ grid-template-columns: 1fr auto;
159
+ gap: 0rem;
160
+ position: relative;
161
+ padding: 20px 15px;
162
+
163
+ @include media-md {
164
+ gap: 1rem;
165
+ grid-template-columns: 1fr 16%;
166
+ }
167
+ }
168
+
169
+ &__wrapper {
170
+ display: grid;
171
+ grid-template-rows: repeat(1, 1fr);
172
+ gap: 20px;
173
+
174
+ @include media-md {
175
+ gap: 10px;
176
+ grid-template-columns: 20% 1fr;
177
+ }
178
+ }
179
+
180
+ &__airport {
181
+ display: flex;
182
+ align-items: center;
183
+ }
184
+
185
+ &__operator {
186
+ font-size: 14px;
187
+
188
+ @include media-lg {
189
+ font-size: 16px;
190
+ }
191
+ }
192
+ }
193
+
194
+ &__logo {
195
+ width: auto;
196
+ max-height: 30px;
197
+
198
+ // &__img{
199
+ // width: auto;
200
+ // height: 100%;
201
+ // object-fit: cover;
202
+ // object-position: center;
203
+ // }
204
+
205
+ &__wrapper {
206
+ display: flex;
207
+ flex-direction: row;
208
+ align-items: center;
209
+ gap: 3px;
210
+ font-size: 12px;
211
+
212
+ @include media-md {
213
+ flex-direction: column;
214
+ align-items: flex-start;
215
+ }
216
+ }
217
+ }
218
+
219
+ &__info {
220
+ display: grid;
221
+ grid-template-columns: repeat(3, 1fr);
222
+ gap: 10px;
223
+
224
+ &__times {
225
+ display: flex;
226
+ flex-direction: column;
227
+ gap: 0rem;
228
+ font-size: 16px;
229
+ line-height: 20px;
230
+
231
+ &__wrapper {
232
+ display: flex;
233
+ flex-direction: column-reverse;
234
+ justify-content: flex-end;
235
+ gap: 3px;
236
+
237
+ @include media-sm {
238
+ flex-direction: row;
239
+ justify-content: space-between;
240
+ gap: 10px;
241
+ }
242
+
243
+ svg {
244
+ fill: var(--tide-booking-flight-options-dapart-arrive-icon--color);
245
+
246
+ @include media-sm {
247
+ margin: 0 20px;
248
+ margin-top: 10px;
249
+ }
250
+ }
251
+
252
+ &--arrival {
253
+ display: flex;
254
+ flex-direction: column;
255
+ align-items: flex-end;
256
+ justify-content: flex-start;
257
+
258
+ @include media-sm {
259
+ align-items: flex-start;
260
+ flex-direction: row;
261
+ justify-content: space-between;
262
+ gap: 10px;
263
+ }
264
+ }
265
+ }
266
+
267
+ strong {
268
+ color: var(--tide-booking-flight-options-times-title-color);
269
+ font-family: var(--tide-booking-flight-options-times-title-font-family);
270
+ font-weight: var(--tide-booking-flight-options-times-title-font-weight);
271
+ }
272
+
273
+ p {
274
+ margin: 0;
275
+ font-family: var(--tide-booking-flight-options-times-font-family);
276
+ color: var(--tide-booking-flight-options-times-color);
277
+ }
278
+
279
+ &__days {
280
+ font-size: 12px;
281
+ font-weight: 300;
282
+ color: var(--tide-booking-invalid);
283
+ }
284
+
285
+ &--arrival {
286
+ align-items: flex-end;
287
+ text-align: right;
288
+ }
289
+ }
290
+
291
+ &__duration {
292
+ line-height: 1.5;
293
+ display: flex;
294
+ flex-direction: column;
295
+ align-items: center;
296
+ gap: 3px;
297
+ font-size: 12px;
298
+
299
+ span {
300
+ text-align: center;
301
+ }
302
+
303
+ &--waittime {
304
+ gap: 8px;
305
+ }
306
+
307
+ &__stops {
308
+ display: flex;
309
+ justify-content: space-evenly;
310
+ align-items: center;
311
+ height: 1.5px;
312
+ width: 100%;
313
+ background: var(--tide-booking-flight-options-stops-line-color);
314
+ z-index: 1;
315
+
316
+ &--stoptime {
317
+ background-color: transparent;
318
+ border-top: 1.5px dashed
319
+ var(--tide-booking-flight-options-stoptime-border-color);
320
+ height: 0;
321
+ }
322
+ }
323
+
324
+ &__stoptime {
325
+ display: flex;
326
+ flex-direction: column;
327
+ align-items: center;
328
+ }
329
+
330
+ &__stop {
331
+ height: 6px;
332
+ width: 6px;
333
+ background: var(--tide-booking-flight-options-stop-color);
334
+ border: var(--tide-booking-flight-options-stop-border);
335
+ border-radius: 50%;
336
+ }
337
+
338
+ strong {
339
+ font-weight: 700;
340
+ }
341
+
342
+ p {
343
+ margin: 0;
344
+ }
345
+ }
346
+ }
347
+
348
+ &__detail {
349
+ display: flex;
350
+ flex-direction: column;
351
+ gap: 20px;
352
+ overflow: hidden;
353
+ background-color: var(--tide-booking-flight-options-detail-card-background);
354
+ margin: 0 15px;
355
+ padding: 0 20px;
356
+ border: var(--tide-booking-flight-options-detail-card-border);
357
+ border-radius: var(--tide-booking-flight-options-detail-card-border-radius);
358
+ opacity: 0;
359
+ transform: scaleY(0.95);
360
+ transform-origin: top;
361
+ height: 0;
362
+ transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease,
363
+ padding 0.4s ease, margin-bottom 0.4s ease,
364
+ height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
365
+
366
+ @include media-md {
367
+ margin: 0 15px;
368
+ }
369
+
370
+ &--active {
371
+ transform: scaleY(1);
372
+ opacity: 1;
373
+ height: auto;
374
+ padding: 20px;
375
+ margin-bottom: 20px;
376
+
377
+ @include media-md {
378
+ margin-bottom: 20px;
379
+ }
380
+ }
381
+
382
+ &__btn {
383
+ display: flex;
384
+ align-items: center;
385
+ justify-content: center;
386
+ padding: 10px;
387
+ border-radius: var(
388
+ --tide-booking-flight-options-detail-toggle-border-radius
389
+ );
390
+ font-size: 14px;
391
+ color: var(--tide-booking-flight-options-detail-toggle-icon-color);
392
+ background: var(--tide-booking-flight-options-detail-toggle-background);
393
+ border: var(--tide-booking-flight-options-detail-toggle-border);
394
+ cursor: pointer;
395
+ transition: all 0.3s ease-in-out;
396
+
397
+ &__wrapper {
398
+ position: absolute;
399
+ top: 20px;
400
+ right: 20px;
401
+ display: flex;
402
+ align-items: center;
403
+ justify-content: flex-end;
404
+ gap: 5px;
405
+ padding: 0%;
406
+
407
+ @include media-md {
408
+ position: relative;
409
+ top: 0;
410
+ right: 0;
411
+ }
412
+ }
413
+
414
+ svg {
415
+ fill: var(--tide-booking-flight-options-detail-toggle-icon-color);
416
+ transition: all 0.3s ease-in-out;
417
+ }
418
+
419
+ &:hover,
420
+ &:focus {
421
+ color: var(
422
+ --tide-booking-flight-options-detail-toggle-icon-color-hover
423
+ );
424
+ background: var(
425
+ --tide-booking-flight-options-detail-toggle-background-hover
426
+ );
427
+ border: var(--tide-booking-flight-options-detail-toggle-border-hover);
428
+
429
+ svg {
430
+ fill: var(
431
+ --tide-booking-flight-options-detail-toggle-icon-color-hover
432
+ );
433
+ }
434
+ }
435
+
436
+ &--active {
437
+ .flight__detail__btn__arrow {
438
+ transform: rotate(90deg);
439
+ }
440
+ }
441
+ }
442
+
443
+ .flight__info {
444
+ &__times {
445
+ font-size: 14px;
446
+
447
+ p {
448
+ font-size: 12px;
449
+
450
+ @include media-md {
451
+ font-size: 14px;
452
+ }
453
+ }
454
+ }
455
+ }
456
+ }
457
+
458
+ &__rate {
459
+ display: flex;
460
+ flex-direction: column;
461
+ // border-top: 2px solid $gray-border-light;
462
+ overflow-y: hidden;
463
+ height: 100%;
464
+ max-height: 1.5px;
465
+ transition: all 0.3s ease-in-out;
466
+
467
+ &__container {
468
+ display: flex;
469
+ flex-direction: column;
470
+ gap: 20px;
471
+ padding: 20px;
472
+
473
+ @include media-md {
474
+ flex-direction: row;
475
+ align-items: flex-start;
476
+ justify-content: space-between;
477
+ gap: 20px;
478
+ }
479
+ }
480
+
481
+ &__title {
482
+ display: flex;
483
+ flex-direction: column;
484
+ h2 {
485
+ font-size: 20px;
486
+ font-family: var(--tide-booking-font-heading);
487
+ color: var(--tide-booking-gray-dark);
488
+ margin-bottom: 0rem;
489
+
490
+ @include media-md {
491
+ font-size: 30px;
492
+ }
493
+
494
+ strong {
495
+ font-weight: 600;
496
+ color: #000;
497
+ }
498
+ }
499
+ }
500
+
501
+ &__wrapper {
502
+ display: flex;
503
+ align-items: center;
504
+ gap: 20px;
505
+ overflow-x: auto;
506
+ @extend %scrollbar-none;
507
+ margin: -20px;
508
+ padding: 20px;
509
+
510
+ @include media-md {
511
+ overflow-x: visible;
512
+ }
513
+ }
514
+
515
+ &__card {
516
+ border: solid 1px var(--tide-booking-gray-medium);
517
+ border-top: 3px solid #334eac;
518
+ border-radius: 10px;
519
+ max-width: 180px;
520
+ min-width: 180px;
521
+ // opacity: 0.7;
522
+ cursor: pointer;
523
+ transform: scale(1);
524
+ transition: all 0.3s ease-in-out;
525
+
526
+ &__header {
527
+ display: flex;
528
+ justify-content: space-between;
529
+ align-items: center;
530
+ gap: 10px;
531
+ padding: 10px;
532
+ background: #ebedf7;
533
+ border-radius: 1rem 1rem 0 0;
534
+
535
+ &__title {
536
+ font-family: var(--tide-booking-font-heading);
537
+ font-size: 18px;
538
+ font-weight: 500;
539
+ color: #334eac;
540
+ margin: 0;
541
+ }
542
+ }
543
+
544
+ &__content {
545
+ display: flex;
546
+ flex-direction: column;
547
+ justify-content: flex-end;
548
+ padding: 10px;
549
+ overflow: hidden;
550
+ min-height: 70px;
551
+ max-height: 70px;
552
+ }
553
+
554
+ &__item {
555
+ display: flex;
556
+ align-items: center;
557
+ justify-content: space-between;
558
+ gap: 3px;
559
+ color: var(--tide-booking-gray-dark);
560
+ font-size: 20px;
561
+ font-weight: 500;
562
+
563
+ svg {
564
+ fill: #334eac;
565
+ transform: rotate(0deg);
566
+ transition: all 0.3s ease-in-out;
567
+ }
568
+ }
569
+
570
+ &__chairs {
571
+ font-size: 12px;
572
+ font-weight: lighter;
573
+ color: var(--tide-booking-price-increase);
574
+ }
575
+
576
+ &__lowest {
577
+ font-size: 14px;
578
+ font-weight: bold;
579
+ color: var(--tide-booking-price-decrease);
580
+ }
581
+
582
+ &--active {
583
+ border-width: 2px;
584
+ border-color: #334eac;
585
+ border-top: 3px solid #334eac;
586
+
587
+ .flight__rate__card__item svg {
588
+ transform: rotate(90deg);
589
+ }
590
+ }
591
+
592
+ &:hover {
593
+ transform: scale(1.05);
594
+ }
595
+
596
+ &--premium {
597
+ border-top: 3px solid #85204b;
598
+
599
+ .flight__rate__card__header {
600
+ background: #f1e6eb;
601
+ }
602
+
603
+ .flight__rate__card__header__title {
604
+ color: #85204b;
605
+ }
606
+
607
+ .flight__rate__card__item svg {
608
+ fill: #85204b;
609
+ }
610
+
611
+ &--active {
612
+ border-width: 2px;
613
+ border-color: #85204b;
614
+ border-top: 3px solid #85204b;
615
+
616
+ .flight__rate__card__item svg {
617
+ transform: rotate(90deg);
618
+ }
619
+ }
620
+ }
621
+
622
+ &--business {
623
+ border-top: 3px solid #8e8347;
624
+
625
+ .flight__rate__card__header {
626
+ background: #f5f4ed;
627
+ }
628
+
629
+ .flight__rate__card__header__title {
630
+ color: #8e8347;
631
+ }
632
+
633
+ .flight__rate__card__item svg {
634
+ fill: #8e8347;
635
+ }
636
+
637
+ &--active {
638
+ border-width: 2px;
639
+ border-color: #8e8347;
640
+ border-top: 3px solid #8e8347;
641
+
642
+ .flight__rate__card__item svg {
643
+ transform: rotate(90deg);
644
+ }
645
+ }
646
+ }
647
+ }
648
+
649
+ p {
650
+ font-size: 12px;
651
+ margin: 0;
652
+
653
+ strong {
654
+ font-weight: 700;
655
+ }
656
+ }
657
+
658
+ &__change {
659
+ font-size: 12px;
660
+ }
661
+
662
+ &__modal {
663
+ background: #f9f9f9;
664
+ border-radius: 10px;
665
+ width: 100%;
666
+ max-width: 1440px;
667
+ max-height: 920px;
668
+ height: calc(100vh - 40px);
669
+ z-index: 101;
670
+ position: relative;
671
+ display: grid;
672
+ grid-template-rows: auto 60px 1fr auto;
673
+
674
+ @include media-sm {
675
+ margin: 45px 20px;
676
+ height: calc(100vh - 90px);
677
+ }
678
+
679
+ @include media-lg {
680
+ margin: 45px;
681
+ }
682
+
683
+ &__container {
684
+ position: fixed;
685
+ height: 100vh;
686
+ width: 100vw;
687
+ display: none;
688
+ justify-content: center;
689
+ align-items: center;
690
+ z-index: 100;
691
+ top: 0;
692
+ left: 0;
693
+
694
+ &::after {
695
+ content: "";
696
+ position: absolute;
697
+ height: 100%;
698
+ width: 100%;
699
+ background: #0a0a0abb;
700
+ z-index: 100;
701
+ }
702
+
703
+ &--active {
704
+ display: flex;
705
+ }
706
+ }
707
+
708
+ &__header {
709
+ display: flex;
710
+ justify-content: space-between;
711
+ align-items: center;
712
+ gap: 10px;
713
+ padding: 20px;
714
+ background-color: #fff;
715
+ border-radius: 10px 10px 0px 0px;
716
+ box-shadow: 0px 3px 10px 0px #00000021;
717
+ position: relative;
718
+ z-index: 1;
719
+
720
+ &__title {
721
+ font-family: var(--tide-booking-font-heading);
722
+ font-size: 16px;
723
+ font-weight: 500;
724
+ margin: 0;
725
+ }
726
+
727
+ &__close {
728
+ font-size: 16px;
729
+ background-color: transparent;
730
+ border: none;
731
+ height: auto;
732
+ cursor: pointer;
733
+ }
734
+ }
735
+
736
+ &__content {
737
+ padding: 2rem;
738
+ overflow: auto;
739
+ @extend %scrollbar-thin;
740
+ display: grid;
741
+ grid-auto-columns: 310px;
742
+ grid-auto-flow: column;
743
+ gap: 20px;
744
+ }
745
+
746
+ &__tabs {
747
+ display: flex;
748
+ gap: 1rem;
749
+ padding: 0 20px;
750
+ margin-bottom: 10px;
751
+ background-color: #fff;
752
+ height: 60px;
753
+ }
754
+
755
+ &__tab {
756
+ font-size: 12px;
757
+ color: #cbcbcb;
758
+ background: transparent;
759
+ border: none;
760
+ border-bottom: solid 2px #fff;
761
+ cursor: pointer;
762
+ transition: border 0.3s ease-in-out;
763
+ height: 100%;
764
+
765
+ @include media-md {
766
+ font-size: 16px;
767
+ }
768
+
769
+ &:hover,
770
+ &:focus {
771
+ color: rgba(255, 255, 255, 0.325);
772
+ }
773
+
774
+ &--active {
775
+ color: var(--tide-booking-color-primary);
776
+ border-bottom: solid 2px var(--tide-booking-color-primary);
777
+ }
778
+ }
779
+
780
+ &__card {
781
+ background: #fff;
782
+ border-radius: 10px;
783
+ display: flex;
784
+ flex-direction: column;
785
+ justify-content: space-between;
786
+ gap: 1rem;
787
+ height: auto;
788
+ border: solid 1px var(--tide-booking-gray-medium);
789
+ border-top: 3px solid #334eac;
790
+ // min-height: calc(100% - 40px);
791
+
792
+ &__header {
793
+ padding: 0 20px;
794
+ padding-top: 20px;
795
+ background: #ebedf7;
796
+ border-radius: 10px 10px 0 0;
797
+
798
+ &__title {
799
+ font-family: "proxima-nova", sans-serif;
800
+ font-size: 20px;
801
+ margin: 0;
802
+ color: #334eac;
803
+ }
804
+
805
+ &__class {
806
+ font-size: 12px;
807
+ font-weight: 300;
808
+ margin: 0;
809
+ }
810
+ }
811
+
812
+ &__items {
813
+ display: flex;
814
+ flex-direction: column;
815
+ gap: 10px;
816
+ padding: 20px;
817
+
818
+ &--top {
819
+ background: #ebedf7;
820
+ }
821
+ }
822
+
823
+ &__item {
824
+ display: grid;
825
+ grid-template-columns: 20px 1fr;
826
+ align-items: center;
827
+ gap: 10px;
828
+
829
+ svg {
830
+ fill: var(--tide-booking-gray-dark);
831
+ }
832
+
833
+ &__wrapper {
834
+ font-size: 12px;
835
+
836
+ p {
837
+ margin: 0;
838
+ }
839
+
840
+ strong {
841
+ font-weight: 700;
842
+ }
843
+ }
844
+
845
+ &--border {
846
+ width: 100%;
847
+ height: 1px;
848
+ background: var(--tide-booking-gray-border-light);
849
+ }
850
+
851
+ &--disabled {
852
+ opacity: 0.25;
853
+ }
854
+ }
855
+
856
+ &__footer {
857
+ display: flex;
858
+ flex-direction: row-reverse;
859
+ justify-content: space-between;
860
+ align-items: center;
861
+ gap: 10px;
862
+ padding: 0 20px;
863
+ padding-bottom: 20px;
864
+
865
+ button {
866
+ width: 100%;
867
+ text-align: center;
868
+ justify-content: center;
869
+ @include media-md {
870
+ max-width: 162px;
871
+ }
872
+ }
873
+
874
+ .price {
875
+ white-space: nowrap;
876
+
877
+ &--decrease {
878
+ color: var(--tide-booking-price-decrease);
879
+ }
880
+
881
+ &--increase {
882
+ color: var(--tide-booking-price-increase);
883
+ }
884
+ }
885
+ }
886
+
887
+ &--premium {
888
+ border-top: 3px solid #85204b;
889
+
890
+ .flight__rate__modal__card__header,
891
+ .flight__rate__modal__card__items--top {
892
+ background: #f1e6eb;
893
+ }
894
+
895
+ .flight__rate__modal__card__header__title {
896
+ color: #85204b;
897
+ }
898
+ }
899
+
900
+ &--business {
901
+ border-top: 3px solid #8e8347;
902
+
903
+ .flight__rate__modal__card__header,
904
+ .flight__rate__modal__card__items--top {
905
+ background: #f5f4ed;
906
+ }
907
+
908
+ .flight__rate__modal__card__header__title {
909
+ color: #8e8347;
910
+ }
911
+ }
912
+ }
913
+
914
+ &__footer {
915
+ display: flex;
916
+ justify-content: flex-end;
917
+ gap: 10px;
918
+ padding: 20px;
919
+ background-color: #fff;
920
+ border-radius: 0px 0px 10px 10px;
921
+ box-shadow: 0px -3px 10px 0px #00000021;
922
+
923
+ button {
924
+ width: 100%;
925
+ text-align: center;
926
+ justify-content: center;
927
+ @include media-md {
928
+ max-width: 162px;
929
+ }
930
+ }
931
+ }
932
+ }
933
+
934
+ &__detail {
935
+ overflow: auto;
936
+ @extend %scrollbar-thin;
937
+ display: none;
938
+ grid-auto-columns: 310px;
939
+ grid-auto-flow: column;
940
+ gap: 20px;
941
+ padding: 0rem 20px;
942
+ max-height: 0px;
943
+ opacity: 0;
944
+ transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out,
945
+ padding-bottom 0.3s ease-in-out;
946
+
947
+ @include media-md {
948
+ display: grid;
949
+ }
950
+
951
+ &--active {
952
+ display: none;
953
+ max-height: 1000px;
954
+ opacity: 1;
955
+ padding-bottom: 20px;
956
+
957
+ @include media-md {
958
+ display: grid;
959
+ }
960
+ }
961
+ }
962
+
963
+ &--active {
964
+ height: 100%;
965
+ max-height: 1000px;
966
+ }
967
+ }
968
+
969
+ &__status {
970
+ display: flex;
971
+ justify-content: center;
972
+ align-items: center;
973
+ gap: 10px;
974
+ color: #fff;
975
+ background: var(--tide-booking-color-primary);
976
+ border-radius: 50%;
977
+ padding: 10px;
978
+ font-size: 12px;
979
+ font-weight: 300;
980
+ width: 30px;
981
+ height: 30px;
982
+
983
+ &--pub {
984
+ background: var(--tide-booking-price-decrease);
985
+ }
986
+ }
987
+
988
+ &__airport {
989
+ display: none;
990
+ align-items: center;
991
+ gap: 5px;
992
+
993
+ @include media-sm {
994
+ display: flex;
995
+ }
996
+ }
997
+
998
+ &__times {
999
+ display: flex;
1000
+ flex-direction: column;
1001
+ align-items: flex-end;
1002
+
1003
+ &__date {
1004
+ font-size: 14px;
1005
+
1006
+ @include media-lg {
1007
+ font-size: 16px;
1008
+ }
1009
+ }
1010
+ }
1011
+
1012
+ &__filter {
1013
+ position: fixed;
1014
+ left: 0%;
1015
+ top: 0;
1016
+ z-index: 100;
1017
+ display: flex;
1018
+ flex-direction: column;
1019
+ gap: 20px;
1020
+ background: #fff;
1021
+ height: 100%;
1022
+ max-height: 97.3vh;
1023
+ width: calc(100vw - 40px);
1024
+ padding: 20px;
1025
+ box-shadow: 0px 0px 5px rgba(158, 158, 158, 0.447);
1026
+ transform: translateX(-100%);
1027
+ transition: all 0.3s ease-in-out;
1028
+ overflow-y: auto;
1029
+ @extend %scrollbar-thin;
1030
+ scrollbar-gutter: stable;
1031
+
1032
+ @include media-xs {
1033
+ width: 100%;
1034
+ max-width: 360px;
1035
+ }
1036
+
1037
+ &--active {
1038
+ transform: translateX(0%);
1039
+ }
1040
+
1041
+ &__header {
1042
+ position: relative;
1043
+ display: flex;
1044
+ justify-content: space-between;
1045
+ align-items: flex-start;
1046
+ gap: 10px;
1047
+
1048
+ &__title {
1049
+ h3 {
1050
+ margin-bottom: 0rem;
1051
+ }
1052
+
1053
+ p {
1054
+ font-weight: var(
1055
+ --tide-booking-flight-options-filter-header-text-font-weight
1056
+ );
1057
+ color: var(--tide-booking-flight-options-filter-header-text-color);
1058
+ font-size: 16px;
1059
+ }
1060
+
1061
+ strong {
1062
+ font-weight: var(
1063
+ --tide-booking-flight-options-filter-header-text-strong-font-weight
1064
+ );
1065
+ color: var(
1066
+ --tide-booking-flight-options-filter-header-text-strong-color
1067
+ );
1068
+ }
1069
+ }
1070
+ }
1071
+
1072
+ &__body {
1073
+ display: flex;
1074
+ flex-direction: column;
1075
+ gap: 30px;
1076
+ }
1077
+
1078
+ &__group {
1079
+ display: flex;
1080
+ flex-direction: column;
1081
+ gap: 20px;
1082
+
1083
+ &__title {
1084
+ font-family: var(
1085
+ --tide-booking-flight-options-filter-group-title-text-font-family
1086
+ );
1087
+ font-size: 18px;
1088
+ font-weight: var(
1089
+ --tide-booking-flight-options-filter-group-title-text-font-weight
1090
+ );
1091
+ color: var(--tide-booking-flight-options-filter-group-title-text-color);
1092
+ display: flex;
1093
+ justify-content: space-between;
1094
+ align-items: center;
1095
+ padding-bottom: 5px;
1096
+ border-bottom: var(
1097
+ --tide-booking-flight-options-filter-group-title-text-border
1098
+ );
1099
+
1100
+ svg {
1101
+ fill: var(--tide-booking-color-primary);
1102
+ }
1103
+ }
1104
+
1105
+ &__wrapper {
1106
+ display: flex;
1107
+ flex-direction: column;
1108
+ gap: 10px;
1109
+
1110
+ p {
1111
+ margin: 0px;
1112
+ font-size: 16px;
1113
+ padding: 0rem 10px;
1114
+ font-family: var(
1115
+ --tide-booking-flight-options-filter-group-title-subtext-font-family
1116
+ );
1117
+ font-weight: var(
1118
+ --tide-booking-flight-options-filter-group-title-subtext-font-weight
1119
+ );
1120
+ color: var(
1121
+ --tide-booking-flight-options-filter-group-title-subtext-color
1122
+ );
1123
+ }
1124
+ }
1125
+
1126
+ .tree {
1127
+ padding: 7.5px 10px;
1128
+ font-size: 16px;
1129
+
1130
+ .checkbox,
1131
+ .radiobutton {
1132
+ padding: 0rem 15px 0 28px;
1133
+ }
1134
+
1135
+ .checkbox__input--parent,
1136
+ .radiobutton__input--parent {
1137
+ top: -1px;
1138
+ }
1139
+
1140
+ .checkbox__label {
1141
+ padding: 0px;
1142
+ }
1143
+
1144
+ .radiobutton__label-text {
1145
+ display: flex;
1146
+ flex-direction: row;
1147
+ align-items: center;
1148
+ gap: 5px;
1149
+ color: var(--tide-booking-checkbox-color-text);
1150
+ margin: 0px;
1151
+ padding: 0px;
1152
+
1153
+ .amount {
1154
+ color: var(--tide-booking-color-primary);
1155
+ }
1156
+ }
1157
+ }
1158
+ }
1159
+
1160
+ &__slider {
1161
+ display: flex;
1162
+ flex-direction: column;
1163
+ gap: 10px;
1164
+ padding: 7.5px 10px;
1165
+
1166
+ &__value {
1167
+ font-size: 12px;
1168
+ display: flex;
1169
+ justify-content: space-between;
1170
+ width: 100%;
1171
+ }
1172
+
1173
+ // .slider--progress {
1174
+ // -webkit-appearance: none;
1175
+ // width: 90%;
1176
+ // height: 4px;
1177
+ // border-radius: 5px;
1178
+ // background: linear-gradient(to right, $color-primary 0%, $color-primary calc((var(--value) - 2) / 5 * 100%), $gray-light calc((var(--value) - 2) / 5 * 100%), $gray-light 100%);
1179
+ // outline: none;
1180
+ // opacity: 0.7;
1181
+ // transition: opacity .15s ease-in-out;
1182
+
1183
+ // &::-webkit-slider-runnable-track {
1184
+ // width: 90%;
1185
+ // height: 4px;
1186
+ // cursor: pointer;
1187
+ // animate: 0.2s;
1188
+ // background: linear-gradient(to right, $color-primary 0%, $color-primary calc((var(--value) - 2) / 5 * 100%), $gray-light calc((var(--value) - 2) / 5 * 100%), $gray-light 100%);
1189
+ // border-radius: 5px;
1190
+ // }
1191
+
1192
+ // &::-moz-range-track {
1193
+ // width: 90%;
1194
+ // height: 4px;
1195
+ // cursor: pointer;
1196
+ // animate: 0.2s;
1197
+ // background: linear-gradient(to right, $color-primary 0%, $color-primary calc((var(--value) - 2) / 5 * 100%), $gray-light calc((var(--value) - 2) / 5 * 100%), $gray-light 100%);
1198
+ // border-radius: 5px;
1199
+ // }
1200
+
1201
+ // &::-webkit-slider-thumb {
1202
+ // -webkit-appearance: none;
1203
+ // appearance: none;
1204
+ // width: 16px;
1205
+ // height: 16px;
1206
+ // border-radius: 50%;
1207
+ // background: $color-primary;
1208
+ // cursor: pointer;
1209
+ // margin-top: -5px;
1210
+ // }
1211
+
1212
+ // &::-moz-range-thumb {
1213
+ // width: 16px;
1214
+ // height: 16px;
1215
+ // border-radius: 50%;
1216
+ // background: $color-primary;
1217
+ // cursor: pointer;
1218
+ // margin-top: -5px;
1219
+ // }
1220
+ // }
1221
+ }
1222
+
1223
+ .double-slider-box {
1224
+ background-color: transparent;
1225
+ border-radius: 10px;
1226
+ width: 100%;
1227
+ max-width: 97%;
1228
+ margin-left: 10px;
1229
+
1230
+ @include media-xs {
1231
+ max-width: 342px;
1232
+ }
1233
+ }
1234
+
1235
+ .range-slider {
1236
+ position: relative;
1237
+ width: 100%;
1238
+ height: 5px;
1239
+ margin: 30px 0;
1240
+ background-color: var(--tide-booking-slider-range-background);
1241
+ border-radius: 5px;
1242
+
1243
+ input {
1244
+ padding: 0rem;
1245
+ }
1246
+ }
1247
+
1248
+ .slider-track {
1249
+ height: 100%;
1250
+ position: absolute;
1251
+ background-color: var(--tide-booking-slider-track-background);
1252
+ left: 0;
1253
+ right: 100%;
1254
+ border-radius: 5px;
1255
+ }
1256
+
1257
+ .range-slider input[type="range"] {
1258
+ position: absolute;
1259
+ width: 101%;
1260
+ left: -3px;
1261
+ top: 0;
1262
+ transform: translateY(-50%);
1263
+ background: none;
1264
+ pointer-events: none;
1265
+ border: none;
1266
+ appearance: none;
1267
+ height: 5px;
1268
+ }
1269
+
1270
+ input[type="range"]::-webkit-slider-thumb {
1271
+ height: 25px;
1272
+ width: 25px;
1273
+ border-radius: 50%;
1274
+ border: 3px solid var(--tide-booking-slider-thumb-border-color);
1275
+ background: var(--tide-booking-slider-thumb-background);
1276
+ pointer-events: auto;
1277
+ appearance: none;
1278
+ cursor: pointer;
1279
+ box-shadow: 0 1.25px 5.625px -1.25px rgba(0, 0, 0, 0.25);
1280
+ position: relative;
1281
+ z-index: 2; /* Ensure thumbs appear above the track */
1282
+ }
1283
+
1284
+ input[type="range"]::-moz-range-thumb {
1285
+ height: 25px;
1286
+ width: 25px;
1287
+ border-radius: 50%;
1288
+ border: 3px solid var(--tide-booking-slider-thumb-border-color);
1289
+ background: var(--tide-booking-slider-thumb-background);
1290
+ pointer-events: auto;
1291
+ cursor: pointer;
1292
+ box-shadow: 0 1.25px 5.625px -1.25px rgba(0, 0, 0, 0.25);
1293
+ position: relative;
1294
+ z-index: 2;
1295
+ }
1296
+
1297
+ .input-box {
1298
+ display: flex;
1299
+ justify-content: space-between;
1300
+ width: 100%;
1301
+ }
1302
+
1303
+ .min-box,
1304
+ .max-box {
1305
+ width: 50%;
1306
+ font-size: 16px;
1307
+ }
1308
+
1309
+ .min-box {
1310
+ margin-right: 10px;
1311
+ }
1312
+
1313
+ .max-box {
1314
+ text-align: right;
1315
+ }
1316
+
1317
+ input[type="number"] {
1318
+ width: 40px;
1319
+ padding: 10px;
1320
+ border: 1px solid #ccc;
1321
+ border-radius: 5px;
1322
+ text-align: center;
1323
+ }
1324
+
1325
+ .min-tooltip,
1326
+ .max-tooltip {
1327
+ position: absolute;
1328
+ top: -35px;
1329
+ font-size: 12px;
1330
+ color: #555;
1331
+ background-color: #fff;
1332
+ padding: 5px;
1333
+ border: 1px solid #ddd;
1334
+ border-radius: 5px;
1335
+ white-space: nowrap;
1336
+ z-index: 1;
1337
+ }
1338
+
1339
+ .min-tooltip {
1340
+ left: 20px;
1341
+ transform: translateX(-50%);
1342
+ }
1343
+
1344
+ .max-tooltip {
1345
+ right: 20px;
1346
+ transform: translateX(50%);
1347
+ }
1348
+ }
1349
+ }
1350
+
1351
+ // .flight-option {
1352
+ // @extend %reset;
1353
+ // width: 100%;
1354
+ // padding: $gutter;
1355
+
1356
+ // &:not(:first-child) {
1357
+ // margin-top: $gutter;
1358
+ // border-top: 1px solid $gray-medium;
1359
+ // }
1360
+
1361
+ // &__header {
1362
+ // display: flex;
1363
+ // align-items: flex-start;
1364
+
1365
+ // @include media-md {
1366
+ // margin-bottom: 0;
1367
+ // justify-content: space-between;
1368
+ // }
1369
+ // }
1370
+
1371
+ // &__header-copy {
1372
+ // padding-top: 0.75rem;
1373
+ // font-size: 1.4rem;
1374
+
1375
+ // @include media-md {
1376
+ // font-size: 1.6rem;
1377
+ // }
1378
+ // }
1379
+
1380
+ // &__header-actions {
1381
+ // margin-left: auto;
1382
+ // display: flex;
1383
+ // align-items: center;
1384
+
1385
+ // .cta {
1386
+ // display: none;
1387
+
1388
+ // @include media-md {
1389
+ // display: flex;
1390
+ // }
1391
+ // }
1392
+ // }
1393
+
1394
+ // &__select {
1395
+ // position: relative;
1396
+
1397
+ // @include media-md {
1398
+ // display: none;
1399
+ // }
1400
+ // }
1401
+
1402
+ // &__select-label {
1403
+ // padding: 0.3rem $gutter * 0.5;
1404
+ // margin-top: -1.5rem;
1405
+ // margin-bottom: 1rem;
1406
+ // display: inline-flex;
1407
+ // align-items: center;
1408
+ // font-size: 1.3rem;
1409
+ // text-transform: uppercase;
1410
+ // border-radius: 0 0 0.5rem 0.5rem;
1411
+ // color: $white;
1412
+ // background-color: $color-primary;
1413
+
1414
+ // @include media-md {
1415
+ // display: none;
1416
+ // }
1417
+
1418
+ // &:before {
1419
+ // content: "";
1420
+ // width: 10px;
1421
+ // height: 0.5rem;
1422
+ // margin: -0.5rem 0.5rem 0 0;
1423
+ // display: inline-block;
1424
+ // border-left: 2px solid $white;
1425
+ // border-bottom: 2px solid $white;
1426
+ // transform: rotate(-45deg);
1427
+ // }
1428
+ // }
1429
+ // }