@rio-cloud/rio-uikit 0.16.1-beta-7 → 0.16.1-beta-10

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 (212) hide show
  1. package/lib/.DS_Store +0 -0
  2. package/lib/components/.DS_Store +0 -0
  3. package/lib/components/applicationHeader/AppMenu.js +3 -2
  4. package/lib/components/applicationHeader/AppMenuDropdown.js +7 -5
  5. package/lib/components/applicationHeader/ApplicationHeader.js +84 -162
  6. package/lib/components/applicationHeader/MobileAppMenu.js +77 -0
  7. package/lib/components/applicationHeader/MobileHeaderModal.js +90 -0
  8. package/lib/components/applicationHeader/MobileSubmoduleNavigation.js +89 -0
  9. package/lib/components/applicationHeader/NavItems.js +167 -274
  10. package/lib/components/applicationLayout/ApplicationLayoutBody.js +1 -3
  11. package/lib/components/applicationLayout/SubNavigation.js +60 -0
  12. package/lib/components/assetTree/AssetTree.js +4 -7
  13. package/lib/components/assetTree/Tree.js +46 -54
  14. package/lib/components/assetTree/TreeLeaf.js +1 -1
  15. package/lib/components/assetTree/TreeSelectAll.js +2 -1
  16. package/lib/components/assetTree/TreeSidebar.js +10 -22
  17. package/lib/components/assetTree/TypeCounter.js +10 -8
  18. package/lib/components/charts/AreaChart.js +5 -3
  19. package/lib/components/charts/BarChart.js +5 -3
  20. package/lib/components/charts/ChartTooltip.js +14 -0
  21. package/lib/components/charts/LineChart.js +4 -2
  22. package/lib/components/charts/PieChart.js +5 -3
  23. package/lib/components/charts/RadialBarChart.js +4 -4
  24. package/lib/components/charts/chartHelper.js +1 -1
  25. package/lib/components/dialog/Dialog.js +4 -4
  26. package/lib/components/dialog/baseDialogPropTypes.js +1 -1
  27. package/lib/components/map/.DS_Store +0 -0
  28. package/lib/components/map/components/.DS_Store +0 -0
  29. package/lib/components/map/components/features/.DS_Store +0 -0
  30. package/lib/components/map/components/features/settings/.DS_Store +0 -0
  31. package/lib/components/steppedProgressBar/SteppedProgressBar.js +59 -107
  32. package/lib/es/ChartTooltip.d.ts +5 -0
  33. package/lib/es/ChartTooltip.js +15 -0
  34. package/lib/es/Colors.js +1 -1
  35. package/lib/es/DeviceUtils.d.ts +5 -1
  36. package/lib/es/SubNavigation.d.ts +5 -0
  37. package/lib/es/SubNavigation.js +15 -0
  38. package/lib/es/VolkswagenApplicationHeader.d.ts +5 -0
  39. package/lib/es/VolkswagenApplicationHeader.js +15 -0
  40. package/lib/es/deviceUtils.js +24 -0
  41. package/lib/hooks/useClickOutside.js +2 -1
  42. package/lib/index.js +1 -1
  43. package/lib/style/css/_exports/rio-website.less +36 -22
  44. package/lib/style/css/_exports/vw-uikit.less +5 -1
  45. package/lib/style/css/components/ApplicationHeader.less +288 -257
  46. package/lib/style/css/components/ApplicationLayout.less +7 -5
  47. package/lib/style/css/components/AssetTree.less +3 -3
  48. package/lib/style/css/variables.less +1 -1
  49. package/lib/style/fonts/rioglyph/rioglyph.less +56 -1
  50. package/lib/style/fonts/rioglyph/rioglyph.svg +68 -2
  51. package/lib/style/fonts/rioglyph/rioglyph.ttf +0 -0
  52. package/lib/style/fonts/rioglyph/rioglyph.woff +0 -0
  53. package/lib/styles/animations/_imports.less +10 -0
  54. package/lib/styles/animations/collapse.less +16 -0
  55. package/lib/styles/animations/fade.less +28 -0
  56. package/lib/styles/animations/pinging.less +7 -0
  57. package/lib/styles/animations/pulsing.less +5 -0
  58. package/lib/styles/animations/rotate.less +52 -0
  59. package/lib/styles/animations/scale.less +35 -0
  60. package/lib/styles/animations/slide.less +39 -0
  61. package/lib/styles/animations/spinning.less +4 -0
  62. package/lib/styles/animations/transition.less +129 -0
  63. package/lib/styles/animations/translate.less +28 -0
  64. package/lib/styles/components/Activity.less +93 -0
  65. package/lib/styles/components/ApplicationHeader.less +469 -0
  66. package/lib/styles/components/ApplicationLayout.less +240 -0
  67. package/lib/styles/components/AssetTree.less +439 -0
  68. package/lib/styles/components/AutoSuggest.less +22 -0
  69. package/lib/styles/components/BottomSheet.less +14 -0
  70. package/lib/styles/components/Carousel.less +212 -0
  71. package/lib/styles/components/Checkbox.less +224 -0
  72. package/lib/styles/components/ClearableInput.less +115 -0
  73. package/lib/styles/components/Counter.less +142 -0
  74. package/lib/styles/components/DataTabs.less +100 -0
  75. package/lib/styles/components/DatePicker.less +391 -0
  76. package/lib/styles/components/Dialog.less +484 -0
  77. package/lib/styles/components/Dropdown.less +185 -0
  78. package/lib/styles/components/Expander.less +196 -0
  79. package/lib/styles/components/FilePicker.less +8 -0
  80. package/lib/styles/components/ListMenu.less +77 -0
  81. package/lib/styles/components/MapHere.less +91 -0
  82. package/lib/styles/components/MapMarker.less +347 -0
  83. package/lib/styles/components/MapSettings.less +140 -0
  84. package/lib/styles/components/NoData.less +8 -0
  85. package/lib/styles/components/Notification.less +234 -0
  86. package/lib/styles/components/RadioButton.less +173 -0
  87. package/lib/styles/components/Resizer.less +43 -0
  88. package/lib/styles/components/Select.less +287 -0
  89. package/lib/styles/components/Sidebar.less +157 -0
  90. package/lib/styles/components/Slider.less +278 -0
  91. package/lib/styles/components/Spinner.less +49 -0
  92. package/lib/styles/components/StatsWidget.less +111 -0
  93. package/lib/styles/components/SteppedProgressBar.less +310 -0
  94. package/lib/styles/components/SupportMarker.less +34 -0
  95. package/lib/styles/components/Switch.less +145 -0
  96. package/lib/styles/components/TableSettingsDialog.less +96 -0
  97. package/lib/styles/components/TableSortArrows.less +54 -0
  98. package/lib/styles/components/TableToolbar.less +121 -0
  99. package/lib/styles/components/Tag.less +246 -0
  100. package/lib/styles/components/TagManager.less +4 -0
  101. package/lib/styles/components/Teaser.less +12 -0
  102. package/lib/styles/components/Timeline.less +69 -0
  103. package/lib/styles/components/Tooltip.less +222 -0
  104. package/lib/styles/design/alerts.less +55 -0
  105. package/lib/styles/design/aspect-ratio.less +23 -0
  106. package/lib/styles/design/badges.less +120 -0
  107. package/lib/styles/design/blockquote.less +49 -0
  108. package/lib/styles/design/border.less +192 -0
  109. package/lib/styles/design/breadcrumbs.less +20 -0
  110. package/lib/styles/design/button-groups.less +194 -0
  111. package/lib/styles/design/buttons.less +543 -0
  112. package/lib/styles/design/callouts.less +27 -0
  113. package/lib/styles/design/caret.less +28 -0
  114. package/lib/styles/design/close.less +12 -0
  115. package/lib/styles/design/code.less +45 -0
  116. package/lib/styles/design/colors.less +202 -0
  117. package/lib/styles/design/cols.less +56 -0
  118. package/lib/styles/design/container.less +29 -0
  119. package/lib/styles/design/cursors.less +19 -0
  120. package/lib/styles/design/custom.less +20 -0
  121. package/lib/styles/design/ellipsis.less +46 -0
  122. package/lib/styles/design/flexgrid.less +7 -0
  123. package/lib/styles/design/fonts.less +458 -0
  124. package/lib/styles/design/form-input-groups.less +245 -0
  125. package/lib/styles/design/form-inputs.less +655 -0
  126. package/lib/styles/design/iframe.less +80 -0
  127. package/lib/styles/design/images.less +47 -0
  128. package/lib/styles/design/labels.less +66 -0
  129. package/lib/styles/design/list-group.less +100 -0
  130. package/lib/styles/design/navs.less +262 -0
  131. package/lib/styles/design/normalize.less +436 -0
  132. package/lib/styles/design/opacity.less +26 -0
  133. package/lib/styles/design/overflow.less +1 -0
  134. package/lib/styles/design/pagination.less +161 -0
  135. package/lib/styles/design/panels.less +105 -0
  136. package/lib/styles/design/popovers.less +119 -0
  137. package/lib/styles/design/position.less +16 -0
  138. package/lib/styles/design/progress-bars.less +131 -0
  139. package/lib/styles/design/responsive/_imports.less +67 -0
  140. package/lib/styles/design/responsive/backgrounds.less +32 -0
  141. package/lib/styles/design/responsive/display.less +9 -0
  142. package/lib/styles/design/responsive/flexgrid.less +75 -0
  143. package/lib/styles/design/responsive/floating.less +4 -0
  144. package/lib/styles/design/responsive/gap.less +41 -0
  145. package/lib/styles/design/responsive/margin.less +127 -0
  146. package/lib/styles/design/responsive/overflow.less +16 -0
  147. package/lib/styles/design/responsive/padding.less +71 -0
  148. package/lib/styles/design/responsive/position.less +103 -0
  149. package/lib/styles/design/responsive/sizing.less +96 -0
  150. package/lib/styles/design/responsive/text.less +71 -0
  151. package/lib/styles/design/responsive-embed.less +31 -0
  152. package/lib/styles/design/responsive-video.less +22 -0
  153. package/lib/styles/design/rioglyph.less +13 -0
  154. package/lib/styles/design/rounded.less +44 -0
  155. package/lib/styles/design/shadows.less +65 -0
  156. package/lib/styles/design/sizing.less +18 -0
  157. package/lib/styles/design/tables.less +855 -0
  158. package/lib/styles/design/text.less +201 -0
  159. package/lib/styles/design/theme.less +206 -0
  160. package/lib/styles/design/thumbnails.less +29 -0
  161. package/lib/styles/design/transition.less +33 -0
  162. package/lib/styles/design/type.less +159 -0
  163. package/lib/styles/design/utilities.less +75 -0
  164. package/lib/styles/design/visibility.less +186 -0
  165. package/lib/styles/design/wells.less +17 -0
  166. package/lib/styles/design/z-index.less +21 -0
  167. package/lib/styles/filter/_imports.less +1 -0
  168. package/lib/styles/filter/blur.less +17 -0
  169. package/lib/styles/mapping/breakpoint-map.less +44 -0
  170. package/lib/styles/mapping/color-map.less +200 -0
  171. package/lib/styles/mapping/cols-map.less +15 -0
  172. package/lib/styles/mapping/numbers-map.less +16 -0
  173. package/lib/styles/mapping/positions-map.less +21 -0
  174. package/lib/styles/mapping/sizes-map.less +129 -0
  175. package/lib/styles/mapping/spacings-map.less +28 -0
  176. package/lib/styles/mixins/_mixins.less +13 -0
  177. package/lib/styles/mixins/alerts.less +13 -0
  178. package/lib/styles/mixins/border-radius.less +16 -0
  179. package/lib/styles/mixins/buttons.less +117 -0
  180. package/lib/styles/mixins/clearfix.less +9 -0
  181. package/lib/styles/mixins/cols.less +59 -0
  182. package/lib/styles/mixins/forms.less +61 -0
  183. package/lib/styles/mixins/panels.less +27 -0
  184. package/lib/styles/mixins/placeholder.less +17 -0
  185. package/lib/styles/mixins/reset.less +27 -0
  186. package/lib/styles/mixins/sizings.less +21 -0
  187. package/lib/styles/mixins/spinner.less +30 -0
  188. package/lib/styles/mixins/table.less +26 -0
  189. package/lib/styles/mixins/tabs.less +4 -0
  190. package/lib/styles/mixins/text.less +5 -0
  191. package/lib/styles/print/print.less +163 -0
  192. package/lib/styles/rio-uikit-core.less +114 -0
  193. package/lib/styles/rio-uikit-print-utilities.less +16 -0
  194. package/lib/styles/rio-uikit-responsive-utilities.less +16 -0
  195. package/lib/styles/shared/colors.json +56 -0
  196. package/lib/styles/shared/colors.less +73 -0
  197. package/lib/styles/shared/screens.less +7 -0
  198. package/lib/styles/shared/text.less +23 -0
  199. package/lib/styles/variables.less +180 -0
  200. package/lib/themes/BuyButton/styles/rio-buyButton.less +183 -0
  201. package/lib/themes/MAN/styles/man-uikit.less +48 -0
  202. package/lib/themes/RIO/styles/rio-uikit.less +20 -0
  203. package/lib/themes/SCANIA/styles/scania-uikit.less +36 -0
  204. package/lib/themes/Volkswagen/components/applicationHeader/VolkswagenApplicationHeader.js +94 -0
  205. package/lib/themes/Volkswagen/components/applicationHeader/modulePropTypes.js +17 -0
  206. package/lib/themes/Volkswagen/styles/vw-uikit.less +205 -0
  207. package/lib/themes/Website/styles/rio-website.less +2236 -0
  208. package/lib/themes/Xmas/styles/rio-xmas.less +36 -0
  209. package/lib/types.ts +19 -11
  210. package/lib/utils/deviceUtils.js +9 -1
  211. package/lib/version.json +1 -1
  212. package/package.json +96 -95
@@ -0,0 +1,2236 @@
1
+ // Core
2
+ @import (less) '../../../styles/rio-uikit-core.less';
3
+
4
+ // Utility Classes
5
+ @import (less) '../../../styles/design/responsive/_imports.less';
6
+ .import-reponsive(
7
+ @default: true;
8
+ @xs: true;
9
+ @ls: true;
10
+ @sm: true;
11
+ @md: true;
12
+ @lg: true;
13
+ @xl: true;
14
+ @print: false;
15
+ );
16
+
17
+ // Fonts
18
+ @font-source-sans: true;
19
+ @font-man: true;
20
+ @font-redring: true;
21
+
22
+ // Screens
23
+ @screen-xs: 480px;
24
+ @screen-ls: 768px;
25
+ @screen-sm: @screen-ls;
26
+ @screen-md: 992px;
27
+ @screen-lg: 1200px;
28
+ @screen-xl: 1700px;
29
+
30
+ // Breakpoints
31
+ @responsive-font-breakpoint: 1440px;
32
+ @mobile-breakpoint: @screen-ls;
33
+
34
+ // Colors
35
+ @text-color: @color-black;
36
+ .text-color-darkest { color: @text-color !important }
37
+
38
+ .svg-color-primary { filter: invert(53%) sepia(50%) saturate(562%) hue-rotate(137deg) brightness(104%) contrast(92%) }
39
+ .svg-color-coldplay-wine { filter: invert(10%) sepia(28%) saturate(7014%) hue-rotate(287deg) brightness(100%) contrast(102%) }
40
+ .svg-color-coldplay-aubergine { filter: invert(26%) sepia(68%) saturate(353%) hue-rotate(222deg) brightness(94%) contrast(87%) }
41
+ .svg-color-coldplay-kashmir { filter: invert(39%) sepia(54%) saturate(304%) hue-rotate(170deg) brightness(93%) contrast(85%) }
42
+ .svg-color-coldplay-fountain { filter: invert(60%) sepia(86%) saturate(207%) hue-rotate(151deg) brightness(90%) contrast(89%) }
43
+ .svg-color-coldplay-turquoise { filter: invert(74%) sepia(75%) saturate(342%) hue-rotate(118deg) brightness(87%) contrast(85%) }
44
+ .svg-color-coldplay-bermuda { filter: invert(82%) sepia(22%) saturate(612%) hue-rotate(105deg) brightness(90%) contrast(91%) }
45
+ .svg-color-coldplay-moos { filter: invert(91%) sepia(16%) saturate(739%) hue-rotate(61deg) brightness(93%) contrast(82%) }
46
+ .svg-color-coldplay-primrose { filter: invert(90%) sepia(45%) saturate(358%) hue-rotate(20deg) brightness(92%) contrast(91%) }
47
+ .svg-color-coldplay-khaki { filter: invert(96%) sepia(97%) saturate(604%) hue-rotate(340deg) brightness(103%) contrast(88%) }
48
+
49
+ .svg-color-warmup-crimson { filter: invert(9%) sepia(63%) saturate(3034%) hue-rotate(259deg) brightness(88%) contrast(98%) }
50
+ .svg-color-warmup-victoria { filter: invert(26%) sepia(13%) saturate(1942%) hue-rotate(214deg) brightness(90%) contrast(91%) }
51
+ .svg-color-warmup-cadillac { filter: invert(30%) sepia(17%) saturate(1737%) hue-rotate(259deg) brightness(93%) contrast(89%) }
52
+ .svg-color-warmup-raspberry { filter: invert(24%) sepia(85%) saturate(1488%) hue-rotate(301deg) brightness(91%) contrast(84%) }
53
+ .svg-color-warmup-cerise { filter: invert(31%) sepia(62%) saturate(6649%) hue-rotate(322deg) brightness(93%) contrast(93%) }
54
+ .svg-color-warmup-charm { filter: invert(59%) sepia(62%) saturate(394%) hue-rotate(297deg) brightness(85%) contrast(82%) }
55
+ .svg-color-warmup-salmon { filter: invert(78%) sepia(54%) saturate(3248%) hue-rotate(310deg) brightness(114%) contrast(89%) }
56
+ .svg-color-warmup-cherokee { filter: invert(93%) sepia(99%) saturate(5864%) hue-rotate(300deg) brightness(103%) contrast(93%) }
57
+ .svg-color-warmup-corn { filter: invert(97%) sepia(66%) saturate(897%) hue-rotate(323deg) brightness(93%) contrast(116%) }
58
+ .svg-color-white { filter: invert(100%) sepia(4%) saturate(16%) hue-rotate(173deg) brightness(106%) contrast(106%) }
59
+
60
+ [class*="bg-"] { color: inherit }
61
+
62
+ .bg-color-coldplay-wine { background-color: @color-coldplay-wine !important }
63
+ .bg-color-coldplay-aubergine { background-color: @color-coldplay-aubergine !important }
64
+ .bg-color-coldplay-kashmir { background-color: @color-coldplay-kashmir !important }
65
+ .bg-color-coldplay-fountain { background-color: @color-coldplay-fountain !important }
66
+ .bg-color-coldplay-turquoise { background-color: @color-coldplay-turquoise !important }
67
+ .bg-color-coldplay-bermuda { background-color: @color-coldplay-bermuda !important }
68
+ .bg-color-coldplay-moos { background-color: @color-coldplay-moos !important }
69
+ .bg-color-coldplay-primrose { background-color: @color-coldplay-primrose !important }
70
+ .bg-color-coldplay-khaki { background-color: @color-coldplay-khaki !important }
71
+ .bg-color-warmup-crimson { background-color: @color-warmup-crimson !important }
72
+ .bg-color-warmup-victoria { background-color: @color-warmup-victoria !important }
73
+ .bg-color-warmup-cadillac { background-color: @color-warmup-cadillac !important }
74
+ .bg-color-warmup-raspberry { background-color: @color-warmup-raspberry !important }
75
+ .bg-color-warmup-cerise { background-color: @color-warmup-cerise !important }
76
+ .bg-color-warmup-charm{ background-color: @color-warmup-charm !important }
77
+ .bg-color-warmup-salmon { background-color: @color-warmup-salmon !important }
78
+ .bg-color-warmup-cherokee { background-color: @color-warmup-cherokee !important }
79
+ .bg-color-warmup-corn { background-color: @color-warmup-corn !important }
80
+ .bg-color-black { background-color: @color-black !important }
81
+ .bg-color-white { background-color: @color-white !important }
82
+ .bg-color-primary { background-color: @color-highlight !important }​
83
+
84
+ .text-color-placeholder { color: transparent }
85
+ .text-color-coldplay-wine { color: @color-coldplay-wine !important }
86
+ .text-color-coldplay-kashmir { color: @color-coldplay-kashmir !important }
87
+ .text-color-coldplay-aubergine { color: @color-coldplay-aubergine !important }
88
+ .text-color-coldplay-fountain { color: @color-coldplay-fountain !important }
89
+ .text-color-coldplay-turquoise { color: @color-coldplay-turquoise !important }
90
+ .text-color-coldplay-bermuda { color: @color-coldplay-bermuda !important }
91
+ .text-color-coldplay-moos { color: @color-coldplay-moos !important }
92
+ .text-color-coldplay-primrose { color: @color-coldplay-primrose !important }
93
+ .text-color-coldplay-khaki { color: @color-coldplay-khaki !important }
94
+ .text-color-warmup-crimson { color: @color-warmup-crimson !important }
95
+ .text-color-warmup-victoria { color: @color-warmup-victoria !important }
96
+ .text-color-warmup-cadillac { color: @color-warmup-cadillac !important }
97
+ .text-color-warmup-raspberry { color: @color-warmup-raspberry !important }
98
+ .text-color-warmup-cerise { color: @color-warmup-cerise !important }
99
+ .text-color-warmup-charm { color: @color-warmup-charm !important }
100
+ .text-color-warmup-salmon { color: @color-warmup-salmon !important }
101
+ .text-color-warmup-cherokee { color: @color-warmup-cherokee !important }
102
+ .text-color-warmup-corn { color: @color-warmup-corn !important }
103
+ .text-color-black { color: @color-black !important }
104
+ .text-color-white { color: @color-white !important }
105
+ .text-color-primary { color: @color-highlight !important }
106
+
107
+ .hyphens {
108
+ hyphens: auto;
109
+ overflow: hidden;
110
+ word-break: break-word;
111
+ word-wrap: break-word;
112
+ }
113
+
114
+ h1, h2, h3, h4, h5, h6 {
115
+ border: 0;
116
+ color: inherit;
117
+ font-size: 100%;
118
+ font: inherit;
119
+ line-height: 1.15;
120
+ margin: 0;
121
+ padding: 0;
122
+ vertical-align: baseline;
123
+ }
124
+
125
+ h1 { font-size: @font-size-h1; margin-bottom: @font-size-h1 * 0.75 }
126
+ h2 { font-size: @font-size-h2; margin-bottom: @font-size-h2 * 0.75 }
127
+ h3 { font-size: @font-size-h3; margin-bottom: @font-size-h3 * 0.75 }
128
+ h4 { font-size: @font-size-h4; margin-bottom: @font-size-h4 * 0.75 }
129
+ h5 { font-size: @font-size-h5; margin-bottom: @font-size-h5 * 0.75 }
130
+ h6 { font-size: @font-size-h6; margin-bottom: @font-size-h6 * 0.75 }
131
+
132
+ // Responsive Behaviour
133
+ @media (min-width: @responsive-font-breakpoint) {
134
+ .text-size-10 { font-size: @font-size-10 * 1.25 !important }
135
+ .text-size-12 { font-size: @font-size-12 * 1.25 !important }
136
+ .text-size-14 { font-size: @font-size-14 * 1.25 !important }
137
+ .text-size-16 { font-size: @font-size-16 * 1.25 !important }
138
+ .text-size-18 { font-size: @font-size-18 * 1.25 !important }
139
+ .text-size-20 { font-size: @font-size-20 * 1.25 !important }
140
+
141
+ .line-height-10 { line-height: @font-size-10 * 1.25 !important }
142
+ .line-height-12 { line-height: @font-size-12 * 1.25 !important }
143
+ .line-height-14 { line-height: @font-size-14 * 1.25 !important }
144
+ .line-height-16 { line-height: @font-size-16 * 1.25 !important }
145
+ .line-height-18 { line-height: @font-size-18 * 1.25 !important }
146
+ .line-height-20 { line-height: @font-size-20 * 1.25 !important }
147
+
148
+ .text-size-h1,h1 { font-size:@font-size-h1 * 1.35!important; &:not([class*="margin-bottom-"]){ margin-bottom:@font-size-h1 * .75 * 1.35!important } }
149
+ .text-size-h2,h2 { font-size:@font-size-h2 * 1.35!important; &:not([class*="margin-bottom-"]){ margin-bottom:@font-size-h2 * .75 * 1.35!important } }
150
+ .text-size-h3,h3 { font-size:@font-size-h3 * 1.35!important; &:not([class*="margin-bottom-"]){ margin-bottom:@font-size-h3 * .75 * 1.35!important } }
151
+ .text-size-h4,h4 { font-size:@font-size-h4 * 1.35!important; &:not([class*="margin-bottom-"]){ margin-bottom:@font-size-h4 * .75 * 1.35!important } }
152
+ .text-size-h5,h5 { font-size:@font-size-h5 * 1.35!important; &:not([class*="margin-bottom-"]){ margin-bottom:@font-size-h5 * .75 * 1.35!important } }
153
+ .text-size-h5,h6 { font-size:@font-size-h6 * 1.35!important; &:not([class*="margin-bottom-"]){ margin-bottom:@font-size-h6 * .75 * 1.35!important } }
154
+
155
+ .line-height-h1 { line-height: @font-size-h1 * 1.35 !important }
156
+ .line-height-h2 { line-height: @font-size-h2 * 1.35 !important }
157
+ .line-height-h3 { line-height: @font-size-h3 * 1.35 !important }
158
+ .line-height-h4 { line-height: @font-size-h4 * 1.35 !important }
159
+ .line-height-h5 { line-height: @font-size-h5 * 1.35 !important }
160
+ .line-height-h5 { line-height: @font-size-h6 * 1.35 !important }
161
+ }
162
+
163
+ @media (max-width: @screen-ls) {
164
+ .text-size-h1, h1 { font-size: @font-size-h1 * 0.8 !important; &:not([class*="margin-bottom-"]){ margin-bottom: @font-size-h1 * 0.75 * 0.8 !important; } }
165
+ .text-size-h2, h2 { font-size: @font-size-h2 * 0.8 !important; &:not([class*="margin-bottom-"]){ margin-bottom: @font-size-h2 * 0.75 * 0.8 !important; } }
166
+ .text-size-h3, h3 { font-size: @font-size-h3 * 0.8 !important; &:not([class*="margin-bottom-"]){ margin-bottom: @font-size-h3 * 0.75 * 0.8 !important; } }
167
+ .text-size-h4, h4 { &:not([class*="margin-bottom-"]){ margin-bottom: @font-size-h4 * 0.75 * 0.8 !important; } }
168
+ .text-size-h5, h5 { &:not([class*="margin-bottom-"]){ margin-bottom: @font-size-h5 * 0.75 * 0.8 !important; } }
169
+ .text-size-h5, h6 { &:not([class*="margin-bottom-"]){ margin-bottom: @font-size-h6 * 0.75 * 0.8 !important; } }
170
+
171
+ .line-height-h1 { line-height: @font-size-h1 * 0.8 !important }
172
+ .line-height-h2 { line-height: @font-size-h2 * 0.8 !important }
173
+ .line-height-h3 { line-height: @font-size-h3 * 0.8 !important }
174
+ .line-height-h4 { line-height: @font-size-h4 * 0.8 !important }
175
+ .line-height-h5 { line-height: @font-size-h5 * 0.8 !important }
176
+ .line-height-h5 { line-height: @font-size-h6 * 0.8 !important }
177
+ }
178
+
179
+ // Navigation
180
+ html.show-handheld-navigation {
181
+ overflow: hidden;
182
+
183
+ body {
184
+ overflow: hidden;
185
+ }
186
+ }
187
+
188
+ body .module-content {
189
+ overflow: hidden;
190
+ }
191
+
192
+ .ApplicationHeader {
193
+ .navbar-brand {
194
+ //background-image: url('@{cdnBase}/svg/common/ico_rio.svg') !important;
195
+ background-size: cover;
196
+ }
197
+
198
+ .SubmoduleNavigation .SubmoduleNavigation {
199
+ padding-left: 0;
200
+ }
201
+
202
+ html.show-handheld-navigation & {
203
+ position: fixed;
204
+ top: 0;
205
+ right: 0;
206
+ bottom: 0;
207
+ left: 0;
208
+ overflow-x: hidden;
209
+ overflow-y: auto;
210
+ -webkit-overflow-scrolling: touch;
211
+
212
+ .navbar-brand {
213
+ display: none;
214
+ }
215
+
216
+ .ApplicationActionBar {
217
+ position: fixed;
218
+ right: 0;
219
+
220
+ li:not(#handheld-navigation) {
221
+ display: none;
222
+ }
223
+ }
224
+
225
+ .ModuleNavigation {
226
+ display: none;
227
+ }
228
+
229
+ .SubmoduleNavigation {
230
+ border-bottom: none;
231
+ display: block;
232
+ height: auto;
233
+ margin: 50px 0;
234
+ padding-left: 0;
235
+ text-align: center;
236
+
237
+ @media (min-width: @screen-ls) {
238
+ margin: 5% 0;
239
+ }
240
+
241
+ @media (max-width: @screen-ls) {
242
+ margin: 50px 0;
243
+ }
244
+
245
+ .submodule {
246
+ margin-left: 0 !important;
247
+ margin-bottom: 50px;
248
+
249
+ a {
250
+ box-shadow: none !important;
251
+ font-size: 20px;
252
+ padding-bottom: 0;
253
+ padding-top: 0;
254
+ }
255
+
256
+ .SubmoduleNavigation {
257
+ margin: 20px 0 0 0;
258
+
259
+ .submodule {
260
+ &:not(:last-child) {
261
+ margin-bottom: 10px;
262
+ }
263
+
264
+ a {
265
+ font-size: 16px;
266
+ }
267
+ }
268
+ }
269
+ }
270
+ }
271
+ }
272
+
273
+ html:not(.show-handheld-navigation) & {
274
+ @media (max-width: @screen-ls) {
275
+ .ModuleNavigation {
276
+ z-index: 1;
277
+
278
+ .dropdown {
279
+ width: calc(~"100vw - 205px");
280
+
281
+ &.open {
282
+ width: calc(~"100vw - 100px");
283
+ }
284
+ }
285
+ }
286
+ }
287
+
288
+ .ApplicationActionBar {
289
+ li {
290
+ &#login {
291
+ .login-text {
292
+ font-weight: @font-medium;
293
+ }
294
+
295
+ @media (max-width: @screen-ls) {
296
+ .login-text {
297
+ display: none;
298
+ }
299
+ }
300
+
301
+ @media (min-width: @screen-ls) {
302
+ width: auto;
303
+
304
+ .ActionBarItem {
305
+ width: auto;
306
+ }
307
+
308
+ .login-icon {
309
+ display: none;
310
+ }
311
+ }
312
+ }
313
+
314
+ &#handheld-navigation {
315
+ @media (min-width: @screen-ls) {
316
+ display: none;
317
+ }
318
+ }
319
+
320
+ &#user-menu iframe {
321
+ height: 30px !important;
322
+ }
323
+
324
+ &.navigationItem .ActionBarItemIcon {
325
+ color: @color-black;
326
+ }
327
+ }
328
+ }
329
+
330
+ > .SubmoduleNavigation {
331
+ @media (max-width: @screen-ls) {
332
+ padding-left: 0 !important;
333
+
334
+ > .submodule {
335
+ display: none;
336
+ }
337
+ }
338
+
339
+ > .submodule {
340
+ @media (min-width: @screen-ls) {
341
+ > .SubmoduleNavigation {
342
+ max-height: calc(~"100vh - 100px");
343
+ height: auto;
344
+ overflow: auto;
345
+ -webkit-overflow-scrolling: touch;
346
+ }
347
+ }
348
+
349
+ &:hover {
350
+ > .SubmoduleNavigation {
351
+ display: block;
352
+ }
353
+ }
354
+ }
355
+
356
+ .SubmoduleNavigation {
357
+ background: white;
358
+ border-bottom: 1px solid @gray-light;
359
+ border-left: 1px solid @gray-light;
360
+ border-right: 1px solid @gray-light;
361
+ display: none;
362
+ position: absolute;
363
+ width: auto;
364
+
365
+ li {
366
+ float: none;
367
+
368
+ a {
369
+ padding-top: 5px !important;
370
+ padding-bottom: 5px !important;
371
+ }
372
+
373
+ &.active,
374
+ &:hover {
375
+ > a {
376
+ box-shadow: none !important;
377
+ }
378
+ }
379
+
380
+ &:first-child {
381
+ margin-left: 0 !important;
382
+ margin-top: 10px;
383
+ }
384
+
385
+ &:last-child {
386
+ margin-bottom: 10px;
387
+ }
388
+ }
389
+ }
390
+ }
391
+ }
392
+ }
393
+
394
+ // Section Wrapper
395
+ .section-wrapper {
396
+ position: relative;
397
+
398
+ &[class*="position-sticky"] {
399
+ top: (@navbar-height - 1);
400
+ z-index: 10;
401
+
402
+ ~ * .anchor {
403
+ margin-top: -122px !important;
404
+
405
+ @media (min-width: @screen-md) {
406
+ margin-top: -172px !important;
407
+ }
408
+ }
409
+ }
410
+
411
+ .section-content-container-col {
412
+ &[class*="position-sticky"] {
413
+ top: (@navbar-height - 1);
414
+ z-index: 10;
415
+ }
416
+ }
417
+
418
+ // reorder columns on mobile
419
+ @media (max-width: @screen-ls) {
420
+ &.flex-reorder-xs {
421
+ .section-layout-container-row {
422
+ display: flex !important;
423
+ flex-wrap: wrap !important;
424
+
425
+ > .section-content-container-col {
426
+ &:first-child {
427
+ order: 2 !important;
428
+ }
429
+
430
+ &:last-child {
431
+ order: 1 !important;
432
+ }
433
+ }
434
+ }
435
+ }
436
+ }
437
+
438
+ // Section Wrapper/Content Background Image
439
+ .section-wrapper-background-image,
440
+ .section-content-container-background-image {
441
+ bottom: 0;
442
+ left: 0;
443
+ position: absolute;
444
+ right: 0;
445
+ top: 0;
446
+ z-index: 1;
447
+
448
+ background-size: cover;
449
+ background-repeat: no-repeat;
450
+ background-position: center;
451
+
452
+ + * {
453
+ position: relative;
454
+ z-index: 2;
455
+ }
456
+
457
+ &[class*="opacity-"] {
458
+ &:before {
459
+ background: #000000;
460
+ bottom: 0;
461
+ content: "";
462
+ left: 0;
463
+ position: absolute;
464
+ top: 0;
465
+ width: 100%;
466
+ }
467
+ }
468
+
469
+ // iOS Background Image Fix
470
+ @supports (-webkit-touch-callout: none) {
471
+ @media (min-width: @screen-ls) {
472
+ &.bg-attachment-fixed-ls {
473
+ background-attachment: initial !important;
474
+ }
475
+ }
476
+ }
477
+
478
+ &.overlay-opacity-10:before { opacity: 0.1 }
479
+ &.overlay-opacity-20:before { opacity: 0.2 }
480
+ &.overlay-opacity-30:before { opacity: 0.3 }
481
+ &.overlay-opacity-40:before { opacity: 0.4 }
482
+ &.overlay-opacity-50:before { opacity: 0.5 }
483
+ &.overlay-opacity-60:before { opacity: 0.6 }
484
+ &.overlay-opacity-70:before { opacity: 0.7 }
485
+ &.overlay-opacity-80:before { opacity: 0.8 }
486
+ &.overlay-opacity-90:before { opacity: 0.9 }
487
+ }
488
+
489
+ @media (min-width: @screen-ls) {
490
+ &.min-height-offset {
491
+ .sizing-vh(min-height; -ls; @navbar-height);
492
+ }
493
+ }
494
+
495
+ .section-layout {
496
+ position: relative;
497
+ padding: 10% 6%;
498
+ z-index: 2;
499
+
500
+ @media (max-width: @screen-ls) {
501
+ padding: 6%;
502
+ }
503
+
504
+ // Section Wrapper Outer Container
505
+ .section-layout-container {
506
+
507
+ // Section Wrapper Outer Container Row
508
+ .section-layout-container-row {
509
+ // Section Wrapper Outer Container Col
510
+ .section-content-container-col {
511
+ margin-bottom: 20px;
512
+
513
+ @media (max-width: @screen-ls) {
514
+ &:not(.margin-bottom-0) {
515
+ margin-bottom: 6%;
516
+ }
517
+
518
+ &[class*="margin-left--"] {
519
+ margin-left: 0 !important;
520
+ }
521
+
522
+ &[class*="margin-right--"] {
523
+ margin-right: 0 !important;
524
+ }
525
+ }
526
+
527
+ &.box-shadow-inner {
528
+ > .section-content-container {
529
+ box-shadow: 0 0 10px 5px rgba(0,0,0,.25) !important
530
+ }
531
+ }
532
+
533
+ &.rounded {
534
+ > .section-content-container {
535
+ border-radius: (@border-radius-default * 4) !important
536
+ }
537
+ }
538
+
539
+ &.hidden-reference {
540
+ display: none !important; // hide typo3 reference
541
+ }
542
+
543
+ &.headline-light {
544
+ .section-content-container {
545
+ .section-content-container-row {
546
+ .section-content-container-headline {
547
+ font-weight: @font-light;
548
+ }
549
+ }
550
+ }
551
+ }
552
+
553
+ &.link-color-white {
554
+ a:not(.btn) {
555
+ color: @color-white;
556
+ }
557
+ }
558
+
559
+ &.link-underline {
560
+ a:not(.btn) {
561
+ text-decoration: underline;
562
+
563
+ &:hover {
564
+ text-decoration: none;
565
+ }
566
+ }
567
+ }
568
+
569
+ &.btn-default {
570
+ .btn {
571
+ .button-variant(
572
+ ~'!important';
573
+ @btn-default-bg;
574
+ @btn-default-border;
575
+ @btn-default-color;
576
+ @btn-default-color;
577
+ @btn-default-color;
578
+ @btn-default-color;
579
+ darken(@btn-default-color, 17%);
580
+ darken(@btn-default-border, 12%);
581
+ darken(@btn-default-border, 12%);
582
+ darken(@btn-default-border, 25%);
583
+ darken(@btn-default-border, 25%);
584
+ @btn-default-bg;
585
+ @btn-default-bg;
586
+ @btn-default-bg;
587
+ @btn-default-bg;
588
+ );
589
+ }
590
+ }
591
+
592
+ &.btn-white {
593
+ .btn {
594
+ .button-variant(
595
+ ~'!important';
596
+ @color-white;
597
+ darken(@color-white, 5%);
598
+ @color-black;
599
+ darken(@color-white, 3%);
600
+ );
601
+ }
602
+ }
603
+
604
+ &.btn-primary {
605
+ .btn {
606
+ .button-variant(
607
+ ~'!important';
608
+ @btn-primary-bg;
609
+ @btn-primary-border;
610
+ @btn-primary-color;
611
+ );
612
+ }
613
+ }
614
+
615
+ &.btn-man {
616
+ .btn {
617
+ .button-variant(
618
+ ~'!important';
619
+ #e40045;
620
+ darken(#e40045, 5%);
621
+ @color-white;
622
+ );
623
+
624
+ font-family: "MANEurope", sans-serif !important;
625
+ }
626
+ }
627
+
628
+ &.btn-right {
629
+ .btn {
630
+ float: right;
631
+ }
632
+ }
633
+
634
+ &.btn-block {
635
+ .btn {
636
+ width: 100%;
637
+ }
638
+ }
639
+
640
+ &[class*="margin-top--"] {
641
+ .btn.margin-top-25 {
642
+ margin-top: 0 !important;
643
+ }
644
+ }
645
+
646
+ &.hyphens {
647
+ .hyphens();
648
+
649
+ &-headline {
650
+ .section-content-container-headline {
651
+ .hyphens();
652
+ }
653
+ }
654
+
655
+ &-body {
656
+ .section-content-container-body {
657
+ .hyphens();
658
+ }
659
+ }
660
+ }
661
+
662
+ &.preset-thumbnail {
663
+ .section-content-container {
664
+ padding: 0 20px 20px 20px !important;
665
+
666
+ .img-responsive {
667
+ max-width: calc(100% + 40px + 2px);
668
+ width: calc(100% + 40px + 2px);
669
+ margin: -1px -1px 0 -21px;
670
+ }
671
+
672
+ .section-content-container-row {
673
+ @media (max-width: @screen-ls) {
674
+ margin: 0 !important;
675
+ }
676
+ }
677
+ }
678
+ }
679
+
680
+ &.headline-block {
681
+ .section-content-container-row {
682
+ display: flex;
683
+ flex-direction: column;
684
+
685
+ .section-content-container-headline {
686
+ padding: 10px 20px;
687
+ background: @color-black;
688
+ text-transform: uppercase;
689
+ width: fit-content;
690
+
691
+ &:before {
692
+ display: block;
693
+ content: "+";
694
+ width: 20px;
695
+ height: 20px;
696
+ position: absolute;
697
+ top: 0px;
698
+ left: 0px;
699
+ transform: translate(-100%, -100%);
700
+ text-align: center;
701
+ line-height: 20px;
702
+ color: @color-black;
703
+ font-size: 40px;
704
+ }
705
+ }
706
+ }
707
+ }
708
+
709
+ &.list-style-position-inside {
710
+ ul, ol {
711
+ list-style-position: inside !important;
712
+ }
713
+ }
714
+
715
+ &.large-panel-border {
716
+ > .section-content-container.panel {
717
+ border-width: 3px;
718
+ }
719
+
720
+ &.panel-border-color-lighter {
721
+ > .section-content-container.panel {
722
+ border-color: @gray-lighter;
723
+ }
724
+ }
725
+ }
726
+
727
+ // Section Wrapper Inner Container
728
+ .section-content-container {
729
+ height: 100%;
730
+ justify-content: center;
731
+ margin-bottom: 0;
732
+ position: relative;
733
+
734
+ @media (max-width: @screen-ls) {
735
+ &[class*="padding-"]:not([class*="bg-"]) {
736
+ padding-left: 0 !important;
737
+ padding-right: 0 !important;
738
+ }
739
+ }
740
+
741
+ // Section Wrapper Inner Container Link
742
+ .section-content-container-link {
743
+ align-items: center;
744
+ display: flex;
745
+ text-decoration: none;
746
+ z-index: 3;
747
+
748
+ * {
749
+ text-decoration: none;
750
+ }
751
+ }
752
+
753
+ // Section Wrapper Inner Container Row
754
+ .section-content-container-row {
755
+ position: relative;
756
+ z-index: 2;
757
+
758
+ // Section Wrapper Inner Container Headline
759
+ .section-content-container-headline {
760
+ font-weight: @font-bold;
761
+ line-height: 1.20;
762
+
763
+ // hyphens
764
+ // @media (max-width: @screen-ls) {
765
+ // hyphens: auto;
766
+ // word-break: break-word;
767
+ // }
768
+ }
769
+
770
+ // Section Wrapper Inner Container Body
771
+ .section-content-container-body {
772
+ ul, ol {
773
+ &:not(.feature-list):not(.list-unstyled):not(.text-center) {
774
+ margin: 10px 0 20px 0;
775
+ padding-left: 20px;
776
+
777
+ li {
778
+ margin-bottom: 10px;
779
+ }
780
+ }
781
+ }
782
+
783
+ ul {
784
+ &:not(.feature-list):not(.list-unstyled) {
785
+ list-style: square;
786
+ }
787
+ }
788
+
789
+ p:not(:only-child) {
790
+ margin: 1% auto 3% auto;
791
+ }
792
+
793
+ .section-content-container-body-footnote {
794
+ margin-top: 20px;
795
+ opacity: 0.75;
796
+
797
+ .section-content-container-body-footnote-text {
798
+ font-style: italic;
799
+ transform: scale(0.75);
800
+ transform-origin: 0 0 0;
801
+
802
+ &:before {
803
+ content: "*";
804
+ }
805
+ }
806
+ }
807
+ }
808
+ }
809
+ }
810
+ }
811
+ }
812
+ }
813
+ }
814
+
815
+ // Section Wrapper Outer Presets
816
+ .section-layout {
817
+ &.small {
818
+ &-spacings {
819
+ &-top {
820
+ @media (min-width: @screen-ls) {
821
+ padding-top: 2%;
822
+ }
823
+ }
824
+ &-bottom {
825
+ @media (min-width: @screen-ls) {
826
+ padding-bottom: 2%;
827
+ }
828
+ }
829
+ }
830
+ }
831
+
832
+ &.medium {
833
+ &-spacings {
834
+ &-top {
835
+ @media (min-width: @screen-ls) {
836
+ padding-top: 5%;
837
+ }
838
+ }
839
+ &-bottom {
840
+ @media (min-width: @screen-ls) {
841
+ padding-bottom: 5%;
842
+ }
843
+ }
844
+ }
845
+ }
846
+
847
+ &.large {
848
+ &-spacings {
849
+ &-top {
850
+ @media (min-width: @screen-ls) {
851
+ padding-top: 7%;
852
+ }
853
+ }
854
+ &-bottom {
855
+ @media (min-width: @screen-ls) {
856
+ padding-bottom: 7%;
857
+ }
858
+ }
859
+ }
860
+ }
861
+
862
+ // Presets
863
+ &.preset {
864
+ &-hero {
865
+ padding: 7% 7% 7% 0;
866
+
867
+ .section-layout-container {
868
+ padding-left: 0;
869
+ margin-left: 0;
870
+
871
+ .section-layout-container-row {
872
+ justify-content: end;
873
+ flex-direction: column;
874
+
875
+ .section-content-container-col {
876
+ margin-bottom: 0;
877
+
878
+ .section-content-container {
879
+ flex: initial !important;
880
+ background: @color-black;
881
+
882
+ .section-content-container-row {
883
+ font-family: 'Red Ring Bold', Helvetica, Arial, sans-serif;
884
+ padding: 20px 30px 20px 30px;
885
+
886
+ .section-content-container-headline {
887
+ font-weight: @font-bold;
888
+ margin-bottom: 0 !important;
889
+ // hyphens
890
+ // hyphens: auto;
891
+ // word-break: break-word;
892
+ }
893
+
894
+ .section-content-container-body {
895
+ margin-bottom: 0 !important;
896
+ }
897
+ }
898
+ }
899
+
900
+ &:first-child {
901
+ max-width: 95%;
902
+ }
903
+
904
+ &:not(:first-child) {
905
+ max-width: 75%;
906
+ @media (max-width: @screen-ls) { max-width: 85% }
907
+ }
908
+ }
909
+ }
910
+ }
911
+ }
912
+
913
+ &-teaser {
914
+ &.rimless {
915
+ &.left {
916
+ padding-left: 0;
917
+
918
+ .section-layout-container {
919
+ padding-left: 0;
920
+ margin-left: 0;
921
+
922
+ .section-layout-container-row {
923
+ justify-content: flex-start;
924
+ margin-left: 0;
925
+
926
+ .section-content-container-col {
927
+ &:first-child {
928
+ padding-left: 0;
929
+ }
930
+
931
+ .section-content-container {
932
+ justify-content: center;
933
+ }
934
+
935
+ @media (max-width: @screen-ls) {
936
+ &:not(:first-child) {
937
+ padding-left: calc(~"6% + 20px");
938
+ }
939
+ }
940
+ }
941
+ }
942
+ }
943
+ }
944
+
945
+ &.right {
946
+ padding-right: 0;
947
+
948
+ .section-layout-container {
949
+ padding-right: 0;
950
+ margin-right: 0;
951
+
952
+ .section-layout-container-row {
953
+ justify-content: flex-end;
954
+ margin-right: 0;
955
+
956
+ .section-content-container-col {
957
+ &:last-child {
958
+ padding-right: 0;
959
+ }
960
+
961
+ .section-content-container {
962
+ justify-content: center;
963
+ }
964
+ }
965
+ }
966
+ }
967
+ }
968
+ }
969
+ }
970
+
971
+ &-footer {
972
+ padding: 20px 6%;
973
+
974
+ @media (max-width: @screen-ls) {
975
+ padding: 6%;
976
+ }
977
+
978
+ &:not(.marketplace) a {
979
+ color: @color-white;
980
+ }
981
+
982
+ &.marketplace a {
983
+ color: @color-black
984
+ }
985
+
986
+ &.minimal ul.text-center {
987
+ padding-left: 0;
988
+ }
989
+
990
+ .section-layout-container {
991
+ .section-layout-container-row {
992
+ .section-content-container-col {
993
+
994
+ @media (max-width: @screen-ls) {
995
+ &:last-child {
996
+ margin-bottom: 0;
997
+ }
998
+ }
999
+
1000
+ .section-content-container {
1001
+ .section-content-container-row {
1002
+ .section-content-container-headline {
1003
+ font-size: @font-size-18;
1004
+ margin-bottom: 10px;
1005
+
1006
+ @media (max-width: @screen-ls) {
1007
+ text-align: center;
1008
+ }
1009
+ }
1010
+
1011
+ .section-content-container-body {
1012
+ font-size: @font-size-16;
1013
+
1014
+ ul {
1015
+ li {
1016
+ margin: 0 0 5px 0;
1017
+ padding: 0;
1018
+ }
1019
+
1020
+ @media (max-width: @screen-ls) {
1021
+ list-style: none !important;
1022
+ margin: 0 !important;
1023
+ padding: 0 !important;
1024
+ text-align: center;
1025
+ }
1026
+ }
1027
+ }
1028
+ }
1029
+ }
1030
+ }
1031
+ }
1032
+ }
1033
+ }
1034
+ }
1035
+
1036
+ // Marketplace Presets
1037
+ &.marketplace {
1038
+ &-search-header {
1039
+ padding-top: 4%;
1040
+ padding-bottom: 0;
1041
+ position: relative;
1042
+
1043
+ &:not([class*="bg-"]) {
1044
+ &:last-child:before {
1045
+ background-image: url('@{cdnBase}/images/placeholder/open_marketplace_1920x400.png');
1046
+ background-size: cover;
1047
+ content: "";
1048
+ display: block;
1049
+ height: 100%;
1050
+ left: 0;
1051
+ position: absolute;
1052
+ right: 0;
1053
+ top: 0;
1054
+ }
1055
+ }
1056
+
1057
+ @media (min-width: @responsive-font-breakpoint) {
1058
+ min-height: 400px;
1059
+ }
1060
+
1061
+ .section-layout-container {
1062
+ .section-layout-container-row {
1063
+ @media (max-width: @screen-ls) {
1064
+ text-shadow: 1px 1px 0 #000;
1065
+ }
1066
+
1067
+ .section-content-container-col {
1068
+ .section-content-container {
1069
+ .section-content-container-row {
1070
+ display: flex;
1071
+ flex-direction: column;
1072
+ min-height: 175px;
1073
+ //padding-bottom: 15px;
1074
+
1075
+ .section-content-container-headline {
1076
+ font-size: @font-size-h1;
1077
+ margin-bottom: @font-size-h1 * 0.25;
1078
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-h1 * 1.35; margin-bottom: @font-size-h1 * 0.25 * 1.35 }
1079
+ }
1080
+
1081
+ .section-content-container-body {
1082
+ flex: 1 0 auto;
1083
+ }
1084
+
1085
+ &:not([class*="text-size-"]) .section-content-container-body {
1086
+ font-size: @font-size-20;
1087
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-20 * 1.35 }
1088
+ }
1089
+
1090
+ .input-group-addon,
1091
+ .form-control {
1092
+ border: none !important;
1093
+ box-shadow: none !important;
1094
+ }
1095
+ }
1096
+ }
1097
+
1098
+ // Section Body Max Width
1099
+ @media (min-width: @screen-ls) {
1100
+ &.body-max-width-sm {
1101
+ .section-content-container-headline,
1102
+ .section-content-container-body {
1103
+ max-width: 45%
1104
+ }
1105
+ }
1106
+
1107
+ &.body-max-width-md, &:not([class*="body-max-width"]) {
1108
+ .section-content-container-headline,
1109
+ .section-content-container-body {
1110
+ max-width: 65%
1111
+ }
1112
+ }
1113
+
1114
+ &.body-max-width-lg {
1115
+ .section-content-container-headline,
1116
+ .section-content-container-body {
1117
+ max-width: 75%
1118
+ }
1119
+ }
1120
+
1121
+ &.body-max-width-none {
1122
+ .section-content-container-headline,
1123
+ .section-content-container-body {
1124
+ max-width: none
1125
+ }
1126
+ }
1127
+ }
1128
+ }
1129
+ }
1130
+ }
1131
+ }
1132
+
1133
+ &-category-links {
1134
+ .section-layout-container {
1135
+ @media (min-width: @screen-ls) {
1136
+ .section-content-container-link {
1137
+ bottom: 0;
1138
+ left: 0;
1139
+ position: absolute;
1140
+ right: 0;
1141
+ top: 0;
1142
+ }
1143
+ }
1144
+
1145
+ .section-layout-container-row {
1146
+ .section-content-container-col {
1147
+ .section-content-container {
1148
+ display: flex;
1149
+ justify-content: center;
1150
+
1151
+ > a {
1152
+ text-decoration: none;
1153
+ }
1154
+
1155
+ &:not([class*="bg-"]) {
1156
+ .section-content-container-background-image {
1157
+ background-image: url('@{cdnBase}/images/placeholder/open_marketplace_300x100.png');
1158
+ }
1159
+ }
1160
+
1161
+ @media (min-width: @screen-ls) {
1162
+ min-height: 100px; // Image Size 300x100
1163
+ }
1164
+
1165
+ .section-content-container-row {
1166
+ text-align: center;
1167
+ padding: 10px;
1168
+
1169
+ .section-content-container-headline {
1170
+ font-weight: @font-normal;
1171
+ font-size: @font-size-18;
1172
+ line-height: 1.15;
1173
+ // hyphens
1174
+ // @media (max-width: @responsive-font-breakpoint) { hyphens: auto; word-break: break-word }
1175
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-18 * 1.35 }
1176
+ }
1177
+
1178
+ .section-content-container-body {
1179
+ font-weight: @font-normal;
1180
+ font-size: @font-size-14;
1181
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-14 * 1.35 }
1182
+
1183
+ p {
1184
+ margin: 0;
1185
+ }
1186
+ }
1187
+ }
1188
+ }
1189
+ }
1190
+ }
1191
+ }
1192
+ }
1193
+
1194
+ &-category-header {
1195
+ padding-bottom: 0;
1196
+
1197
+ .section-layout-container {
1198
+ .section-layout-container-row {
1199
+ @media (max-width: @screen-ls) {
1200
+ text-shadow: 1px 1px 0 #000;
1201
+ }
1202
+
1203
+ .section-content-container-col {
1204
+ .section-content-container {
1205
+ min-height: 150px; // Image Size 1260x150
1206
+
1207
+ &:not([class*="bg-"]) {
1208
+ .section-content-container-background-image {
1209
+ background-image: url('@{cdnBase}/images/placeholder/open_marketplace_1260x175.png');
1210
+ }
1211
+ }
1212
+
1213
+ .section-content-container-row {
1214
+ padding: 20px 20px 25px 20px;
1215
+ @media (min-width: @responsive-font-breakpoint) { padding: 25px 40px 30px 40px }
1216
+
1217
+ .section-content-container-headline {
1218
+ font-size: @font-size-h4;
1219
+ margin-bottom: @font-size-h4 * 0.75;
1220
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-h4 * 1.35; margin-bottom: @font-size-h4 * 0.75 * 1.35 }
1221
+ }
1222
+
1223
+ .section-content-container-body {
1224
+ font-size: @font-size-16;
1225
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-16 * 1.35 }
1226
+ }
1227
+ }
1228
+
1229
+ // overlay gradient
1230
+ .section-content-container-background-image {
1231
+ &:before {
1232
+ bottom: 0;
1233
+ content: "";
1234
+ left: 0;
1235
+ position: absolute;
1236
+ top: 0;
1237
+
1238
+ @media (max-width: @screen-ls) {
1239
+ width: 100%;
1240
+ background: rgba(0, 0, 0, 0.5);
1241
+ }
1242
+
1243
+ @media (min-width: @screen-ls) {
1244
+ width: 75%;
1245
+ background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
1246
+ }
1247
+ }
1248
+ }
1249
+ }
1250
+
1251
+ // hide overlay gradient on large screens
1252
+ &.no-gradient {
1253
+ @media (min-width: @screen-ls) {
1254
+ .section-content-container {
1255
+ .section-content-container-background-image {
1256
+ &:before {
1257
+ display: none !important;
1258
+ }
1259
+ }
1260
+ }
1261
+ }
1262
+ }
1263
+
1264
+ // Section Body Max Width
1265
+ @media (min-width: @screen-ls) {
1266
+ &:not([class*="body-max-width"]) {
1267
+ .section-content-container-headline,
1268
+ .section-content-container-body {
1269
+ max-width: 50%
1270
+ }
1271
+ }
1272
+
1273
+ &.body-max-width-sm {
1274
+ .section-content-container-headline,
1275
+ .section-content-container-body {
1276
+ max-width: 35%
1277
+ }
1278
+ }
1279
+
1280
+ &.body-max-width-lg {
1281
+ .section-content-container-headline,
1282
+ .section-content-container-body {
1283
+ max-width: 65%
1284
+ }
1285
+ }
1286
+ }
1287
+ }
1288
+ }
1289
+ }
1290
+ }
1291
+
1292
+ &-category-tiles {
1293
+ padding-top: 0;
1294
+
1295
+ .section-layout-container {
1296
+ .section-layout-container-row {
1297
+ .section-content-container-col {
1298
+ margin-bottom: 0;
1299
+
1300
+ .section-content-container {
1301
+ margin-bottom: 20px;
1302
+
1303
+ .teaser-headline {
1304
+ font-weight: @font-bold;
1305
+ font-size: @font-size-16;
1306
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-16 * 1.35 }
1307
+ }
1308
+
1309
+ .teaser-content-wrapper {
1310
+ margin-bottom: 0;
1311
+
1312
+ .feature-list {
1313
+ margin: 0;
1314
+ padding: 0;
1315
+ list-style: none;
1316
+
1317
+ li {
1318
+ padding: 5px 7px;
1319
+ border: 1px solid @gray-light;
1320
+ background: @gray-lightest;
1321
+ border-radius: 3px;
1322
+
1323
+ &:last-child {
1324
+ margin-bottom: 0;
1325
+ }
1326
+ }
1327
+ }
1328
+ }
1329
+ }
1330
+ }
1331
+ }
1332
+ }
1333
+ }
1334
+
1335
+ &-banner {
1336
+ .section-layout-container {
1337
+ .section-layout-container-row {
1338
+ @media (max-width: @screen-ls) {
1339
+ text-shadow: 1px 1px 0 #000;
1340
+
1341
+ .btn {
1342
+ text-shadow: none;
1343
+ }
1344
+ }
1345
+
1346
+ .section-content-container-col {
1347
+ .section-content-container {
1348
+ @media (min-width: @responsive-font-breakpoint) { min-height: 350px } // Image Size 1260x350
1349
+
1350
+ &:not([class*="bg-"]) {
1351
+ .section-content-container-background-image {
1352
+ background-image: url('@{cdnBase}/images/placeholder/open_marketplace_1260x350.png');
1353
+ }
1354
+ }
1355
+
1356
+ @media (min-width: @responsive-font-breakpoint) {
1357
+ .section-content-container-link {
1358
+ bottom: 0;
1359
+ left: 0;
1360
+ position: absolute;
1361
+ right: 0;
1362
+ top: 0;
1363
+ }
1364
+ }
1365
+
1366
+ .section-content-container-row {
1367
+ padding: 20px 20px 25px 20px;
1368
+ @media (min-width: @responsive-font-breakpoint) { padding: 50px 40px 55px 40px; }
1369
+
1370
+ .section-content-container-headline {
1371
+ font-size: @font-size-h4;
1372
+ margin-bottom: @font-size-h4 * 0.75;
1373
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-h4 * 1.35; margin-bottom: @font-size-h4 * 0.75 * 1.35 }
1374
+ }
1375
+
1376
+ .section-content-container-body {
1377
+ font-size: @font-size-16;
1378
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-16 * 1.35 }
1379
+ }
1380
+
1381
+ // reset to primary because of default btn-black
1382
+ .btn {
1383
+ .button-variant(
1384
+ ~'!important';
1385
+ @btn-primary-bg;
1386
+ @btn-primary-border;
1387
+ @btn-primary-color;
1388
+ );
1389
+ }
1390
+ }
1391
+
1392
+ // overlay gradient
1393
+ .section-content-container-background-image {
1394
+ &:before {
1395
+ bottom: 0;
1396
+ content: "";
1397
+ left: 0;
1398
+ position: absolute;
1399
+ top: 0;
1400
+
1401
+ @media (max-width: @screen-ls) {
1402
+ width: 100%;
1403
+ background: rgba(0, 0, 0, 0.5);
1404
+ }
1405
+
1406
+ @media (min-width: @screen-ls) {
1407
+ width: 75%;
1408
+ background: linear-gradient(90deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
1409
+ }
1410
+ }
1411
+ }
1412
+ }
1413
+
1414
+ // hide overlay gradient on large screens
1415
+ &.no-gradient {
1416
+ @media (min-width: @screen-ls) {
1417
+ .section-content-container {
1418
+ .section-content-container-background-image {
1419
+ &:before {
1420
+ display: none;
1421
+ }
1422
+ }
1423
+ }
1424
+ }
1425
+ }
1426
+
1427
+ // Section Body Max Width
1428
+ @media (min-width: @screen-ls) {
1429
+ &:not([class*="body-max-width"]) {
1430
+ .section-content-container-headline,
1431
+ .section-content-container-body {
1432
+ max-width: 50%
1433
+ }
1434
+ }
1435
+
1436
+ &.body-max-width-sm {
1437
+ .section-content-container-headline,
1438
+ .section-content-container-body {
1439
+ max-width: 35%
1440
+ }
1441
+ }
1442
+
1443
+ &.body-max-width-lg {
1444
+ .section-content-container-headline,
1445
+ .section-content-container-body {
1446
+ max-width: 65%
1447
+ }
1448
+ }
1449
+ }
1450
+ }
1451
+ }
1452
+ }
1453
+ }
1454
+
1455
+ &-details-buyframe {
1456
+ .section-layout-container {
1457
+ .section-layout-container-row {
1458
+ background-color: @color-white;
1459
+ border: 1px solid @gray-light;
1460
+ margin: 0 0 -1px 0;
1461
+ padding: 3% 5%;
1462
+ }
1463
+ }
1464
+ }
1465
+
1466
+ &-details-panel {
1467
+ .section-layout-container {
1468
+ .section-layout-container-row {
1469
+ background-color: @color-white;
1470
+ border: 1px solid @gray-light;
1471
+ margin: 0 0 20px 0;
1472
+ padding: 5%;
1473
+
1474
+ .section-content-container-col {
1475
+ @media (max-width: @screen-ls) {
1476
+ &:not(:last-child) {
1477
+ margin-bottom: 5%;
1478
+ }
1479
+ }
1480
+
1481
+ @media (min-width: @mobile-breakpoint) {
1482
+ &:not([class*="col-ls-"]) {
1483
+ width: 66.66666667%;
1484
+ }
1485
+ }
1486
+ }
1487
+ }
1488
+ }
1489
+ }
1490
+ }
1491
+
1492
+ // Partner Brandings
1493
+ &.man {
1494
+ &.marketplace-search-header,
1495
+ &.marketplace-category-header,
1496
+ &.marketplace-category-links,
1497
+ &.marketplace-banner {
1498
+ .section-layout-container {
1499
+ .section-layout-container-row {
1500
+ .section-content-container-col {
1501
+ .section-content-container {
1502
+ .section-content-container-row {
1503
+ .section-content-container-headline {
1504
+ font-family: "MANEurope Condensed", sans-serif;
1505
+ }
1506
+
1507
+ .section-content-container-body {
1508
+ font-family: "MANEurope", sans-serif;
1509
+ }
1510
+
1511
+ .btn {
1512
+ .button-variant(
1513
+ ~'!important';
1514
+ #e40045;
1515
+ darken(#e40045, 5%);
1516
+ @color-white;
1517
+ );
1518
+
1519
+ font-family: "MANEurope", sans-serif !important;
1520
+ }
1521
+ }
1522
+ }
1523
+ }
1524
+ }
1525
+ }
1526
+ }
1527
+ }
1528
+ }
1529
+
1530
+ // Section Custom Wrapper Styles/Presets
1531
+ &.preset {
1532
+ &-hero-centered {
1533
+ .section-layout {
1534
+ &.preset-hero {
1535
+ padding: 7%;
1536
+
1537
+ .section-layout-container {
1538
+ padding-left: 10px;
1539
+ padding-right: 10px;
1540
+ margin-left: auto;
1541
+ margin-right: auto;
1542
+
1543
+ .section-layout-container-row {
1544
+ align-items: center;
1545
+ display: flex;
1546
+
1547
+ .section-content-container-col {
1548
+ justify-content: center;
1549
+ max-width: none !important;
1550
+
1551
+ .section-content-container {
1552
+ flex: initial !important;
1553
+ background: @color-black;
1554
+ }
1555
+ }
1556
+ }
1557
+ }
1558
+ }
1559
+ }
1560
+ }
1561
+
1562
+ &-rimless {
1563
+ @media (min-width: @screen-ls) {
1564
+ .section-layout {
1565
+ padding-left: 0;
1566
+ padding-right: 0;
1567
+
1568
+ .section-layout-container {
1569
+ max-width: none;
1570
+ padding-left: 0;
1571
+ padding-right: 0;
1572
+
1573
+ .section-layout-container-row {
1574
+ .section-content-container-col {
1575
+ padding-left: 0;
1576
+ padding-right: 0;
1577
+ }
1578
+ }
1579
+ }
1580
+ }
1581
+ }
1582
+
1583
+ &-always {
1584
+ .section-layout {
1585
+ padding-left: 0;
1586
+ padding-right: 0;
1587
+
1588
+ .section-layout-container {
1589
+ max-width: none;
1590
+ padding-left: 0;
1591
+ padding-right: 0;
1592
+
1593
+ .section-layout-container-row {
1594
+ .section-content-container-col {
1595
+ padding-left: 0;
1596
+ padding-right: 0;
1597
+ }
1598
+ }
1599
+ }
1600
+ }
1601
+ }
1602
+ }
1603
+
1604
+ &-marketplace-details-panel {
1605
+ &-rimless-bottom {
1606
+ .section-layout-container-row {
1607
+ padding-bottom: 0 !important;
1608
+ }
1609
+ }
1610
+
1611
+ &-rimless-top {
1612
+ .section-layout-container-row {
1613
+ padding-top: 0 !important;
1614
+ }
1615
+ }
1616
+ }
1617
+
1618
+ &-marketplace-col-4-as-col-6 {
1619
+ .section-layout {
1620
+ .section-layout-container {
1621
+ .section-layout-container-row {
1622
+ .section-content-container-col {
1623
+ &.col-md-4 {
1624
+ @media (min-width: @screen-md) { width: 50%; }
1625
+ }
1626
+
1627
+ &.col-ls-4 {
1628
+ @media (min-width: @screen-ls) { width: 50%; }
1629
+ }
1630
+ }
1631
+ }
1632
+ }
1633
+ }
1634
+ }
1635
+
1636
+ &-double-col-padding {
1637
+ .section-layout > .section-layout-container {
1638
+ padding-left: 0;
1639
+ padding-right: 0;
1640
+
1641
+ [class*="col-"] {
1642
+ padding-left: 20px;
1643
+ padding-right: 20px;
1644
+ }
1645
+ }
1646
+ }
1647
+
1648
+ &-man {
1649
+ .section-layout {
1650
+ .section-layout-container {
1651
+ .section-layout-container-row {
1652
+ .section-content-container-col {
1653
+ .section-content-container {
1654
+ .section-content-container-row {
1655
+ .section-content-container-headline {
1656
+ font-family: "MANEurope Condensed", sans-serif;
1657
+ }
1658
+
1659
+ .section-content-container-body {
1660
+ font-family: "MANEurope", sans-serif;
1661
+ }
1662
+ }
1663
+ }
1664
+ }
1665
+ }
1666
+ }
1667
+ }
1668
+ }
1669
+
1670
+ &-hide-background-on-mobile {
1671
+ @media (max-width: @screen-ls) {
1672
+ .section-wrapper-background-image {
1673
+ display: none;
1674
+ }
1675
+ }
1676
+ }
1677
+
1678
+ &-overlay-light {
1679
+ .section-wrapper-background-image,
1680
+ .section-content-container-background-image {
1681
+ &[class*="opacity-"] {
1682
+ &:before {
1683
+ background: #ffffff;
1684
+ }
1685
+ }
1686
+ }
1687
+ }
1688
+ }
1689
+
1690
+ &:not(.no-gradient) {
1691
+ @media (max-width: @screen-md) {
1692
+ .marketplace-search-header {
1693
+ &:before {
1694
+ background: linear-gradient(0deg,rgba(0,0,0,.85),rgba(0,0,0,.50));
1695
+ bottom: 0;
1696
+ content: "";
1697
+ left: 0;
1698
+ position: absolute;
1699
+ height: 100%;
1700
+ width: 100%;
1701
+ }
1702
+ }
1703
+ }
1704
+ }
1705
+
1706
+ // Section Wrapper Inner Presets
1707
+ .section-layout {
1708
+ .section-layout-container {
1709
+ .section-layout-container-row {
1710
+ .section-content-container-col {
1711
+ &.preset {
1712
+ &-feature {
1713
+ &-tile {
1714
+ margin-bottom: 20px;
1715
+
1716
+ .section-content-container {
1717
+ padding: 40px 20px;
1718
+ justify-content: flex-start;
1719
+
1720
+ .section-content-container-row {
1721
+ display: flex;
1722
+ flex-direction: column;
1723
+ height: 100%;
1724
+ text-align: center;
1725
+
1726
+ .section-content-container-headline {
1727
+ font-size: @font-size-20;
1728
+ margin-bottom: @font-size-20 * 0.75;
1729
+ margin-top: 30px;
1730
+ .hyphens();
1731
+
1732
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-20 * 1.35; margin-bottom: @font-size-20 * 0.75 * 1.35 }
1733
+ }
1734
+
1735
+ .section-content-container-body {
1736
+ flex: 1 1 auto;
1737
+ }
1738
+
1739
+ .btn {
1740
+ align-self: center;
1741
+ }
1742
+ }
1743
+
1744
+ @media (max-width: @mobile-breakpoint) {
1745
+ &:not([class*="bg-"]) {
1746
+ padding-top: 0;
1747
+ padding-bottom: 0;
1748
+
1749
+ .section-content-container-row {
1750
+ margin-top: 10%;
1751
+ margin-bottom: 10%;
1752
+ }
1753
+ }
1754
+ }
1755
+ }
1756
+
1757
+ // hyphens
1758
+ &.hyphens-none {
1759
+ .section-content-container-headline {
1760
+ hyphens: none !important;
1761
+ word-break: normal !important;
1762
+ word-wrap: normal !important;
1763
+ }
1764
+ }
1765
+
1766
+ &.headline-max-width {
1767
+ .section-content-container-headline {
1768
+ margin-left: auto;
1769
+ margin-right: auto;
1770
+ max-width: 300px;
1771
+
1772
+ @media (min-width: @responsive-font-breakpoint) { max-width: 400px; }
1773
+ }
1774
+ }
1775
+ }
1776
+ }
1777
+
1778
+ &-app-feedback {
1779
+ blockquote {
1780
+ border: none;
1781
+ font-size: inherit;
1782
+ font-style: italic;
1783
+ line-height: 1.30;
1784
+ margin: 0 auto;
1785
+ padding: 0 20px;
1786
+ position: relative;
1787
+ text-align: center;
1788
+
1789
+ p {
1790
+ margin: 0;
1791
+ }
1792
+
1793
+ &:before,
1794
+ &:after {
1795
+ font-size: 235%;
1796
+ height: 20px;
1797
+ line-height: 20px;
1798
+ opacity: 0.5;
1799
+ position: absolute;
1800
+ width: 20px;
1801
+ }
1802
+
1803
+ &:before {
1804
+ top: 10px;
1805
+ left: 0;
1806
+ content: "“";
1807
+ }
1808
+
1809
+ &:after {
1810
+ content: "”";
1811
+ right: 0;
1812
+ bottom: -10px;
1813
+ }
1814
+ }
1815
+ }
1816
+ }
1817
+ }
1818
+ }
1819
+ }
1820
+ }
1821
+ }
1822
+
1823
+ // Theme
1824
+ html {
1825
+ background-color: @color-white;
1826
+ }
1827
+
1828
+ body {
1829
+ font-weight: @font-light;
1830
+ line-height: 1.35;
1831
+
1832
+ font-size: @font-size-16;
1833
+ @media (min-width: @responsive-font-breakpoint) { font-size: @font-size-16 * 1.25 }
1834
+ }
1835
+
1836
+ .box-shadow { box-shadow: 0 0 10px 5px rgba(0,0,0,.25) !important }
1837
+
1838
+ iframe {
1839
+ border: none;
1840
+ overflow: hidden;
1841
+ width: 100%;
1842
+ }
1843
+
1844
+ #typo3-preview-info {
1845
+ display: none;
1846
+ }
1847
+
1848
+ .panel, .thumbnail {
1849
+ box-shadow: none;
1850
+ border-radius: 0;
1851
+ }
1852
+
1853
+ blockquote {
1854
+ padding: 2% 10%;
1855
+
1856
+ &:before {
1857
+ font-size: 100px;
1858
+ width: 10%;
1859
+ }
1860
+ }
1861
+
1862
+ .panel {
1863
+ &[class*="bg-"]:not(.bg-white):not(.bg-black) {
1864
+ border: none;
1865
+ }
1866
+
1867
+ &-body {
1868
+ padding: 20px;
1869
+ }
1870
+ }
1871
+
1872
+ @media (max-width: @screen-ls) {
1873
+ .btn.btn-dynamic {
1874
+ display: inline-block;
1875
+ max-width: calc(~"100vw - 65px");
1876
+ overflow: hidden;
1877
+ text-overflow: ellipsis;
1878
+ white-space: nowrap;
1879
+
1880
+ .marketplace-details-panel & {
1881
+ max-width: calc(~"100vw - 110px");
1882
+ }
1883
+ }
1884
+
1885
+ // no scale animations on mobile
1886
+ [class*="hover-scale-"],
1887
+ [class*="hover-scale-"]:hover {
1888
+ transform: scale(1.0) !important;
1889
+ transition: none;
1890
+ }
1891
+
1892
+ [class*="rotate-"],
1893
+ [class*="rotate-"]:hover {
1894
+ transform: rotate(0deg) !important;
1895
+ }
1896
+ }
1897
+
1898
+ .anchor {
1899
+ display: block;
1900
+ position: absolute;
1901
+ visibility: hidden;
1902
+ }
1903
+
1904
+ .text-shadow {
1905
+ text-shadow: 1px 1px 3px rgba(0,0,0,0.85);
1906
+
1907
+ .btn,
1908
+ .input-group {
1909
+ text-shadow: none;
1910
+ }
1911
+ }
1912
+
1913
+ .ApplicationLayout {
1914
+ .ApplicationLayoutHeader + .ApplicationLayoutBody {
1915
+ .anchor {
1916
+ margin-top: -50px;
1917
+ }
1918
+ }
1919
+
1920
+ .ApplicationLayoutBody {
1921
+
1922
+ @media (min-width: @screen-ls) {
1923
+ .module-content {
1924
+ display: flex;
1925
+ flex-direction: column;
1926
+
1927
+ > div:not([class]) {
1928
+ display: flex;
1929
+ flex: 1 1 auto;
1930
+
1931
+ > .section-wrapper {
1932
+ width: 100%;
1933
+ }
1934
+ }
1935
+ }
1936
+ }
1937
+
1938
+ .scroll-to-top {
1939
+ bottom: 20px;
1940
+ position: fixed;
1941
+ right: 20px;
1942
+ z-index: 10;
1943
+
1944
+ > .btn {
1945
+ border-radius: 4px;
1946
+
1947
+ .button-variant(
1948
+ ~'!important';
1949
+ @btn-primary-bg;
1950
+ @color-white;
1951
+ @btn-primary-color;
1952
+ );
1953
+ }
1954
+
1955
+ @media (max-width: @screen-ls) {
1956
+ transform: scale(1.3);
1957
+ transform-origin: 100% 100%;
1958
+ }
1959
+ }
1960
+ }
1961
+ }
1962
+
1963
+ // old dialog markup fix
1964
+ .modal-dialog {
1965
+ .modal-header {
1966
+ > .modal-header-close {
1967
+ background: none;
1968
+ border: none;
1969
+ color: @gray-dark;
1970
+ float: right;
1971
+ font-size: 30px;
1972
+ line-height: 55px;
1973
+ margin-top: 0;
1974
+ opacity: 0.7;
1975
+ text-align: center;
1976
+ width: 60px;
1977
+
1978
+ &:hover {
1979
+ opacity: 1;
1980
+ }
1981
+
1982
+ .sr-only {
1983
+ display: none;
1984
+ }
1985
+ }
1986
+ }
1987
+ }
1988
+
1989
+ // Search Pagination
1990
+ .pagination > li:not(:empty) {
1991
+ width: auto;
1992
+ min-width: 30px;
1993
+
1994
+ > a {
1995
+ &.next,
1996
+ &.prev {
1997
+ position: relative;
1998
+ padding-left: 10px;
1999
+ padding-right: 10px;
2000
+ }
2001
+ }
2002
+ }
2003
+
2004
+ // Hide typo3 <header>
2005
+ .module-content,
2006
+ .section-layout-container-row {
2007
+ > header {
2008
+ display: none;
2009
+ }
2010
+ }
2011
+
2012
+ // Product (Partner)
2013
+ @media (min-width: @screen-ls) {
2014
+ header ~ .section-wrapper > a[id*="product"] + .section-layout {
2015
+ .col-ls-4,
2016
+ .col-ls-8 {
2017
+ width: 50%;
2018
+
2019
+ .section-content-container-headline {
2020
+ .hyphens;
2021
+ }
2022
+ }
2023
+ }
2024
+ }
2025
+
2026
+ // Video Player
2027
+ ._video-embed-container {
2028
+ background: @color-black;
2029
+
2030
+ .data-privacy-modal {
2031
+ &.hide {
2032
+ display: none !important;
2033
+ }
2034
+
2035
+ @media (max-width: @screen-ls) {
2036
+ p {
2037
+ display: none;
2038
+ }
2039
+
2040
+ .btn {
2041
+ height: auto;
2042
+ line-height: 1.25;
2043
+ white-space: pre-wrap;
2044
+ }
2045
+ }
2046
+ @media (min-width: @screen-ls) {
2047
+ z-index: 1;
2048
+
2049
+ .btn {
2050
+ min-height: auto;
2051
+ }
2052
+ }
2053
+ }
2054
+ }
2055
+
2056
+ [class*="btn-"]:hover {
2057
+ transform: none !important;
2058
+ box-shadow: none !important;
2059
+ }
2060
+
2061
+ // cookie disclaimer
2062
+ #cookieDisclaimer > .position-absolute {
2063
+ position: fixed !important;
2064
+
2065
+ > .max-height-100vh {
2066
+ overflow-y: auto !important;
2067
+ -webkit-overflow-scrolling: touch !important;
2068
+ }
2069
+ }
2070
+
2071
+ // A/B testing switcher
2072
+ .ce-switcher {
2073
+ display: contents;
2074
+
2075
+ .ab[style*="block"] {
2076
+ display: contents !important;
2077
+ }
2078
+ }
2079
+
2080
+ // Contact Form
2081
+ form[id*="contactForm"] {
2082
+ label[for*="newsletter"] {
2083
+ display: none;
2084
+ }
2085
+ }
2086
+
2087
+ // Rioglyph Icons
2088
+ .column-icon-wrapper {
2089
+ position: relative;
2090
+ margin-bottom: 15px;
2091
+
2092
+ @media (max-width: @screen-ls) {
2093
+ margin-bottom: 0;
2094
+ }
2095
+
2096
+ .column-icon-background {
2097
+ display: block;
2098
+ margin: 0 auto;
2099
+ }
2100
+
2101
+ .column-icon {
2102
+ color: @color-white;
2103
+ font-size: 60px;
2104
+ left: 50%;
2105
+ position: absolute;
2106
+ top: 50%;
2107
+ transform: translate(-50%, -50%);
2108
+ }
2109
+ }
2110
+
2111
+ // Responisve Table
2112
+ @media (max-width: @screen-ls) {
2113
+ .table-responsive-wrapper {
2114
+ position: relative;
2115
+ z-index: 0;
2116
+
2117
+ &.scroll-horizontal {
2118
+ &:before {
2119
+ background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,1));
2120
+ bottom: 1px;
2121
+ content: "";
2122
+ position: absolute;
2123
+ right: 11px;
2124
+ top: 1px;
2125
+ width: 20px;
2126
+ z-index: 5;
2127
+ }
2128
+ }
2129
+ }
2130
+ }
2131
+
2132
+ body:not(.legal-documents) {
2133
+ .table-responsive {
2134
+ @media (min-width: @screen-ls) {
2135
+ > .table {
2136
+ tr {
2137
+ > td, > th {
2138
+ &:first-child {
2139
+ padding-left: 0;
2140
+ }
2141
+
2142
+ &:last-child {
2143
+ padding-right: 0;
2144
+ }
2145
+ }
2146
+ }
2147
+ }
2148
+ }
2149
+
2150
+ @media (max-width: @screen-ls) {
2151
+ > .table {
2152
+ > thead,
2153
+ > tbody,
2154
+ > tfoot {
2155
+ > tr {
2156
+ > th,
2157
+ > td {
2158
+ white-space: initial;
2159
+ }
2160
+ }
2161
+ }
2162
+ }
2163
+ }
2164
+ }
2165
+ }
2166
+
2167
+ // Safari image fix
2168
+ @media not all and (min-resolution:.001dpcm) {
2169
+ @supports (-webkit-appearance:none) {
2170
+ img[src*="placeholder_transparent"]:not([style*="background-image"]) {
2171
+ opacity: 0;
2172
+ }
2173
+
2174
+ img[src*="placeholder_transparent_16x9"] {
2175
+ width: 100%;
2176
+ height: 0;
2177
+ padding-bottom: 56.25%;
2178
+ }
2179
+ }
2180
+ }
2181
+
2182
+ // section clippig
2183
+ .section-wrapper {
2184
+ &[class*="clip-"]:after {
2185
+ content: "";
2186
+ background: @color-white;
2187
+ width: 100%;
2188
+ position: absolute;
2189
+ z-index: 1;
2190
+ }
2191
+
2192
+ &[class*="clip-top"]:after {
2193
+ top: 0;
2194
+ }
2195
+
2196
+ &[class*="clip-bottom"]::after {
2197
+ bottom: 0;
2198
+ }
2199
+
2200
+ &[class*="clip-white"]:after {
2201
+ background: @color-white
2202
+ }
2203
+
2204
+ &[class*="clip-lightest"]::after {
2205
+ background: @gray-lightest
2206
+ }
2207
+
2208
+ &.clip-top-ltr:after {
2209
+ clip-path: polygon(0 0, 100% 0, 100% 100%);
2210
+ }
2211
+
2212
+ &.clip-top-rtl:after {
2213
+ clip-path: polygon(0 0, 100% 0, 0 100%);
2214
+ }
2215
+
2216
+ &.clip-bottom-ltr:after {
2217
+ clip-path: polygon(0 100%, 100% 0, 100% 100%);
2218
+ }
2219
+
2220
+ &.clip-bottom-rtl:after {
2221
+ clip-path: polygon(0 0, 100% 100%, 0 100%);
2222
+ }
2223
+ }
2224
+
2225
+ @media (max-width: @screen-ls) {
2226
+ .section-wrapper[class*="clip-"]:after {
2227
+ height: 0;
2228
+ padding-bottom: 5%;
2229
+ }
2230
+ }
2231
+
2232
+ @media (min-width: @screen-ls) {
2233
+ .section-wrapper[class*="clip-"]:after {
2234
+ height: 50px;
2235
+ }
2236
+ }