1
|
-/**
|
|
|
2
|
- * Swiper 3.3.1
|
|
|
3
|
- * Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
|
4
|
- *
|
|
|
5
|
- * http://www.idangero.us/swiper/
|
|
|
6
|
- *
|
|
|
7
|
- * Copyright 2016, Vladimir Kharlampidi
|
|
|
8
|
- * The iDangero.us
|
|
|
9
|
- * http://www.idangero.us/
|
|
|
10
|
- *
|
|
|
11
|
- * Licensed under MIT
|
|
|
12
|
- *
|
|
|
13
|
- * Released on: February 7, 2016
|
|
|
14
|
- */
|
|
|
15
|
.swiper-container {
|
1
|
.swiper-container {
|
16
|
- margin: 0 auto;
|
|
|
17
|
- position: relative;
|
|
|
18
|
- overflow: hidden;
|
|
|
19
|
- /* Fix of Webkit flickering */
|
|
|
20
|
- z-index: 1;
|
|
|
21
|
-}
|
|
|
22
|
-.swiper-container-no-flexbox .swiper-slide {
|
|
|
23
|
- float: left;
|
|
|
24
|
-}
|
|
|
25
|
-.swiper-container-vertical > .swiper-wrapper {
|
|
|
26
|
- -webkit-box-orient: vertical;
|
|
|
27
|
- -moz-box-orient: vertical;
|
|
|
28
|
- -ms-flex-direction: column;
|
|
|
29
|
- -webkit-flex-direction: column;
|
|
|
30
|
- flex-direction: column;
|
|
|
31
|
-}
|
|
|
32
|
-.swiper-wrapper {
|
|
|
33
|
- position: relative;
|
|
|
34
|
- width: 100%;
|
|
|
35
|
- height: 100%;
|
|
|
36
|
- z-index: 1;
|
|
|
37
|
- display: -webkit-box;
|
|
|
38
|
- display: -moz-box;
|
|
|
39
|
- display: -ms-flexbox;
|
|
|
40
|
- display: -webkit-flex;
|
|
|
41
|
- display: flex;
|
|
|
42
|
- -webkit-transition-property: -webkit-transform;
|
|
|
43
|
- -moz-transition-property: -moz-transform;
|
|
|
44
|
- -o-transition-property: -o-transform;
|
|
|
45
|
- -ms-transition-property: -ms-transform;
|
|
|
46
|
- transition-property: transform;
|
|
|
47
|
- -webkit-box-sizing: content-box;
|
|
|
48
|
- -moz-box-sizing: content-box;
|
|
|
49
|
- box-sizing: content-box;
|
|
|
50
|
-}
|
|
|
51
|
-.swiper-container-android .swiper-slide,
|
|
|
52
|
-.swiper-wrapper {
|
|
|
53
|
- -webkit-transform: translate3d(0px, 0, 0);
|
|
|
54
|
- -moz-transform: translate3d(0px, 0, 0);
|
|
|
55
|
- -o-transform: translate(0px, 0px);
|
|
|
56
|
- -ms-transform: translate3d(0px, 0, 0);
|
|
|
57
|
- transform: translate3d(0px, 0, 0);
|
|
|
58
|
-}
|
|
|
59
|
-.swiper-container-multirow > .swiper-wrapper {
|
|
|
60
|
- -webkit-box-lines: multiple;
|
|
|
61
|
- -moz-box-lines: multiple;
|
|
|
62
|
- -ms-flex-wrap: wrap;
|
|
|
63
|
- -webkit-flex-wrap: wrap;
|
|
|
64
|
- flex-wrap: wrap;
|
|
|
65
|
-}
|
|
|
66
|
-.swiper-container-free-mode > .swiper-wrapper {
|
|
|
67
|
- -webkit-transition-timing-function: ease-out;
|
|
|
68
|
- -moz-transition-timing-function: ease-out;
|
|
|
69
|
- -ms-transition-timing-function: ease-out;
|
|
|
70
|
- -o-transition-timing-function: ease-out;
|
|
|
71
|
- transition-timing-function: ease-out;
|
|
|
72
|
- margin: 0 auto;
|
2
|
+ position: relative;
|
|
|
3
|
+ overflow: hidden;
|
73
|
}
|
4
|
}
|
|
|
5
|
+
|
74
|
.swiper-slide {
|
6
|
.swiper-slide {
|
75
|
- -webkit-flex-shrink: 0;
|
|
|
76
|
- -ms-flex: 0 0 auto;
|
|
|
77
|
- flex-shrink: 0;
|
|
|
78
|
- width: 100%;
|
|
|
79
|
- height: 100%;
|
|
|
80
|
- position: relative;
|
|
|
81
|
-}
|
|
|
82
|
-/* Auto Height */
|
|
|
83
|
-.swiper-container-autoheight,
|
|
|
84
|
-.swiper-container-autoheight .swiper-slide {
|
|
|
85
|
- height: auto;
|
|
|
86
|
-}
|
|
|
87
|
-.swiper-container-autoheight .swiper-wrapper {
|
|
|
88
|
- -webkit-box-align: start;
|
|
|
89
|
- -ms-flex-align: start;
|
|
|
90
|
- -webkit-align-items: flex-start;
|
|
|
91
|
- align-items: flex-start;
|
|
|
92
|
- -webkit-transition-property: -webkit-transform, height;
|
|
|
93
|
- -moz-transition-property: -moz-transform;
|
|
|
94
|
- -o-transition-property: -o-transform;
|
|
|
95
|
- -ms-transition-property: -ms-transform;
|
|
|
96
|
- transition-property: transform, height;
|
|
|
97
|
-}
|
|
|
98
|
-/* a11y */
|
|
|
99
|
-.swiper-container .swiper-notification {
|
|
|
100
|
- position: absolute;
|
|
|
101
|
- left: 0;
|
|
|
102
|
- top: 0;
|
|
|
103
|
- pointer-events: none;
|
|
|
104
|
- opacity: 0;
|
|
|
105
|
- z-index: -1000;
|
|
|
106
|
-}
|
|
|
107
|
-/* IE10 Windows Phone 8 Fixes */
|
|
|
108
|
-.swiper-wp8-horizontal {
|
|
|
109
|
- -ms-touch-action: pan-y;
|
|
|
110
|
- touch-action: pan-y;
|
|
|
111
|
-}
|
|
|
112
|
-.swiper-wp8-vertical {
|
|
|
113
|
- -ms-touch-action: pan-x;
|
|
|
114
|
- touch-action: pan-x;
|
|
|
115
|
-}
|
|
|
116
|
-/* Arrows */
|
|
|
117
|
-.swiper-button-prev,
|
|
|
118
|
-.swiper-button-next {
|
|
|
119
|
- position: absolute;
|
|
|
120
|
- top: 50%;
|
|
|
121
|
- width: 27px;
|
|
|
122
|
- height: 44px;
|
|
|
123
|
- margin-top: -22px;
|
|
|
124
|
- z-index: 10;
|
|
|
125
|
- cursor: pointer;
|
|
|
126
|
- -moz-background-size: 27px 44px;
|
|
|
127
|
- -webkit-background-size: 27px 44px;
|
|
|
128
|
- background-size: 27px 44px;
|
|
|
129
|
- background-position: center;
|
|
|
130
|
- background-repeat: no-repeat;
|
|
|
131
|
-}
|
|
|
132
|
-.swiper-button-prev.swiper-button-disabled,
|
|
|
133
|
-.swiper-button-next.swiper-button-disabled {
|
|
|
134
|
- opacity: 0.35;
|
|
|
135
|
- cursor: auto;
|
|
|
136
|
- pointer-events: none;
|
|
|
137
|
-}
|
|
|
138
|
-.swiper-button-prev,
|
|
|
139
|
-.swiper-container-rtl .swiper-button-next {
|
|
|
140
|
- left: 10px;
|
|
|
141
|
- right: auto;
|
|
|
142
|
-}
|
|
|
143
|
-.swiper-button-prev.swiper-button-black,
|
|
|
144
|
-.swiper-container-rtl .swiper-button-next.swiper-button-black {
|
|
|
145
|
- }
|
|
|
146
|
-.swiper-button-prev.swiper-button-white,
|
|
|
147
|
-.swiper-container-rtl .swiper-button-next.swiper-button-white {
|
|
|
148
|
-}
|
|
|
149
|
-.swiper-button-next,
|
|
|
150
|
-.swiper-container-rtl .swiper-button-prev {
|
|
|
151
|
- right: 10px;
|
|
|
152
|
- left: auto;
|
|
|
153
|
-}
|
|
|
154
|
-.swiper-button-next.swiper-button-black,
|
|
|
155
|
-.swiper-container-rtl .swiper-button-prev.swiper-button-black {
|
|
|
156
|
- }
|
|
|
157
|
-.swiper-button-next.swiper-button-white,
|
|
|
158
|
-.swiper-container-rtl .swiper-button-prev.swiper-button-white {
|
|
|
159
|
-}
|
|
|
160
|
-/* Pagination Styles */
|
|
|
161
|
-.swiper-pagination {
|
|
|
162
|
- position: absolute;
|
|
|
163
|
- text-align: center;
|
|
|
164
|
- -webkit-transition: 300ms;
|
|
|
165
|
- -moz-transition: 300ms;
|
|
|
166
|
- -o-transition: 300ms;
|
|
|
167
|
- transition: 300ms;
|
|
|
168
|
- -webkit-transform: translate3d(0, 0, 0);
|
|
|
169
|
- -ms-transform: translate3d(0, 0, 0);
|
|
|
170
|
- -o-transform: translate3d(0, 0, 0);
|
|
|
171
|
- transform: translate3d(0, 0, 0);
|
|
|
172
|
- z-index: 10;
|
|
|
173
|
-}
|
|
|
174
|
-.swiper-pagination.swiper-pagination-hidden {
|
|
|
175
|
- opacity: 0;
|
|
|
176
|
-}
|
|
|
177
|
-/* Common Styles */
|
|
|
178
|
-.swiper-pagination-fraction,
|
|
|
179
|
-.swiper-pagination-custom,
|
|
|
180
|
-.swiper-container-horizontal > .swiper-pagination-bullets {
|
|
|
181
|
- bottom: 10px;
|
|
|
182
|
- left: 0;
|
|
|
183
|
- width: 100%;
|
|
|
184
|
-}
|
|
|
185
|
-/* Bullets */
|
|
|
186
|
-.swiper-pagination-bullet {
|
|
|
187
|
- width: 8px;
|
|
|
188
|
- height: 8px;
|
|
|
189
|
- display: inline-block;
|
|
|
190
|
- border-radius: 100%;
|
|
|
191
|
- background: #000;
|
|
|
192
|
- opacity: 0.2;
|
|
|
193
|
-}
|
|
|
194
|
-button.swiper-pagination-bullet {
|
|
|
195
|
- border: none;
|
|
|
196
|
- margin: 0;
|
|
|
197
|
- padding: 0;
|
|
|
198
|
- box-shadow: none;
|
|
|
199
|
- -moz-appearance: none;
|
|
|
200
|
- -ms-appearance: none;
|
|
|
201
|
- -webkit-appearance: none;
|
|
|
202
|
- appearance: none;
|
|
|
203
|
-}
|
|
|
204
|
-.swiper-pagination-clickable .swiper-pagination-bullet {
|
|
|
205
|
- cursor: pointer;
|
|
|
206
|
-}
|
|
|
207
|
-.swiper-pagination-white .swiper-pagination-bullet {
|
|
|
208
|
- background: #fff;
|
|
|
209
|
-}
|
|
|
210
|
-.swiper-pagination-bullet-active {
|
|
|
211
|
- opacity: 1;
|
|
|
212
|
- background: #007aff;
|
|
|
213
|
-}
|
|
|
214
|
-.swiper-pagination-white .swiper-pagination-bullet-active {
|
|
|
215
|
- background: #fff;
|
|
|
216
|
-}
|
|
|
217
|
-.swiper-pagination-black .swiper-pagination-bullet-active {
|
|
|
218
|
- background: #000;
|
|
|
219
|
-}
|
|
|
220
|
-.swiper-container-vertical > .swiper-pagination-bullets {
|
|
|
221
|
- right: 10px;
|
|
|
222
|
- top: 50%;
|
|
|
223
|
- -webkit-transform: translate3d(0px, -50%, 0);
|
|
|
224
|
- -moz-transform: translate3d(0px, -50%, 0);
|
|
|
225
|
- -o-transform: translate(0px, -50%);
|
|
|
226
|
- -ms-transform: translate3d(0px, -50%, 0);
|
|
|
227
|
- transform: translate3d(0px, -50%, 0);
|
|
|
228
|
-}
|
|
|
229
|
-.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
|
|
|
230
|
- margin: 5px 0;
|
|
|
231
|
- display: block;
|
|
|
232
|
-}
|
|
|
233
|
-.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
|
|
|
234
|
- margin: 0 5px;
|
|
|
235
|
-}
|
|
|
236
|
-/* Progress */
|
|
|
237
|
-.swiper-pagination-progress {
|
|
|
238
|
- background: rgba(0, 0, 0, 0.25);
|
|
|
239
|
- position: absolute;
|
|
|
240
|
-}
|
|
|
241
|
-.swiper-pagination-progress .swiper-pagination-progressbar {
|
|
|
242
|
- background: #007aff;
|
|
|
243
|
- position: absolute;
|
|
|
244
|
- left: 0;
|
|
|
245
|
- top: 0;
|
|
|
246
|
- width: 100%;
|
|
|
247
|
- height: 100%;
|
|
|
248
|
- -webkit-transform: scale(0);
|
|
|
249
|
- -ms-transform: scale(0);
|
|
|
250
|
- -o-transform: scale(0);
|
|
|
251
|
- transform: scale(0);
|
|
|
252
|
- -webkit-transform-origin: left top;
|
|
|
253
|
- -moz-transform-origin: left top;
|
|
|
254
|
- -ms-transform-origin: left top;
|
|
|
255
|
- -o-transform-origin: left top;
|
|
|
256
|
- transform-origin: left top;
|
|
|
257
|
-}
|
|
|
258
|
-.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
|
|
|
259
|
- -webkit-transform-origin: right top;
|
|
|
260
|
- -moz-transform-origin: right top;
|
|
|
261
|
- -ms-transform-origin: right top;
|
|
|
262
|
- -o-transform-origin: right top;
|
|
|
263
|
- transform-origin: right top;
|
7
|
+ width: 185px;
|
|
|
8
|
+ margin-right: 8px;
|
|
|
9
|
+ float: left;
|
264
|
}
|
10
|
}
|
265
|
-.swiper-container-horizontal > .swiper-pagination-progress {
|
|
|
266
|
- width: 100%;
|
|
|
267
|
- height: 4px;
|
|
|
268
|
- left: 0;
|
|
|
269
|
- top: 0;
|
|
|
270
|
-}
|
|
|
271
|
-.swiper-container-vertical > .swiper-pagination-progress {
|
|
|
272
|
- width: 4px;
|
|
|
273
|
- height: 100%;
|
|
|
274
|
- left: 0;
|
|
|
275
|
- top: 0;
|
|
|
276
|
-}
|
|
|
277
|
-.swiper-pagination-progress.swiper-pagination-white {
|
|
|
278
|
- background: rgba(255, 255, 255, 0.5);
|
|
|
279
|
-}
|
|
|
280
|
-.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
|
|
|
281
|
- background: #fff;
|
|
|
282
|
-}
|
|
|
283
|
-.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
|
|
|
284
|
- background: #000;
|
|
|
285
|
-}
|
|
|
286
|
-/* 3D Container */
|
|
|
287
|
-.swiper-container-3d {
|
|
|
288
|
- -webkit-perspective: 1200px;
|
|
|
289
|
- -moz-perspective: 1200px;
|
|
|
290
|
- -o-perspective: 1200px;
|
|
|
291
|
- perspective: 1200px;
|
|
|
292
|
-}
|
|
|
293
|
-.swiper-container-3d .swiper-wrapper,
|
|
|
294
|
-.swiper-container-3d .swiper-slide,
|
|
|
295
|
-.swiper-container-3d .swiper-slide-shadow-left,
|
|
|
296
|
-.swiper-container-3d .swiper-slide-shadow-right,
|
|
|
297
|
-.swiper-container-3d .swiper-slide-shadow-top,
|
|
|
298
|
-.swiper-container-3d .swiper-slide-shadow-bottom,
|
|
|
299
|
-.swiper-container-3d .swiper-cube-shadow {
|
|
|
300
|
- -webkit-transform-style: preserve-3d;
|
|
|
301
|
- -moz-transform-style: preserve-3d;
|
|
|
302
|
- -ms-transform-style: preserve-3d;
|
|
|
303
|
- transform-style: preserve-3d;
|
|
|
304
|
-}
|
|
|
305
|
-.swiper-container-3d .swiper-slide-shadow-left,
|
|
|
306
|
-.swiper-container-3d .swiper-slide-shadow-right,
|
|
|
307
|
-.swiper-container-3d .swiper-slide-shadow-top,
|
|
|
308
|
-.swiper-container-3d .swiper-slide-shadow-bottom {
|
|
|
309
|
- position: absolute;
|
|
|
310
|
- left: 0;
|
|
|
311
|
- top: 0;
|
|
|
312
|
- width: 100%;
|
|
|
313
|
- height: 100%;
|
|
|
314
|
- pointer-events: none;
|
|
|
315
|
- z-index: 10;
|
|
|
316
|
-}
|
|
|
317
|
-.swiper-container-3d .swiper-slide-shadow-left {
|
|
|
318
|
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
|
|
|
319
|
- /* Safari 4+, Chrome */
|
|
|
320
|
- background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
321
|
- /* Chrome 10+, Safari 5.1+, iOS 5+ */
|
|
|
322
|
- background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
323
|
- /* Firefox 3.6-15 */
|
|
|
324
|
- background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
325
|
- /* Opera 11.10-12.00 */
|
|
|
326
|
- background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
327
|
- /* Firefox 16+, IE10, Opera 12.50+ */
|
|
|
328
|
-}
|
|
|
329
|
-.swiper-container-3d .swiper-slide-shadow-right {
|
|
|
330
|
- background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
|
|
|
331
|
- /* Safari 4+, Chrome */
|
|
|
332
|
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
333
|
- /* Chrome 10+, Safari 5.1+, iOS 5+ */
|
|
|
334
|
- background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
335
|
- /* Firefox 3.6-15 */
|
|
|
336
|
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
337
|
- /* Opera 11.10-12.00 */
|
|
|
338
|
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
339
|
- /* Firefox 16+, IE10, Opera 12.50+ */
|
|
|
340
|
-}
|
|
|
341
|
-.swiper-container-3d .swiper-slide-shadow-top {
|
|
|
342
|
- background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
|
|
|
343
|
- /* Safari 4+, Chrome */
|
|
|
344
|
- background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
345
|
- /* Chrome 10+, Safari 5.1+, iOS 5+ */
|
|
|
346
|
- background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
347
|
- /* Firefox 3.6-15 */
|
|
|
348
|
- background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
349
|
- /* Opera 11.10-12.00 */
|
|
|
350
|
- background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
351
|
- /* Firefox 16+, IE10, Opera 12.50+ */
|
|
|
352
|
-}
|
|
|
353
|
-.swiper-container-3d .swiper-slide-shadow-bottom {
|
|
|
354
|
- background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
|
|
|
355
|
- /* Safari 4+, Chrome */
|
|
|
356
|
- background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
357
|
- /* Chrome 10+, Safari 5.1+, iOS 5+ */
|
|
|
358
|
- background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
359
|
- /* Firefox 3.6-15 */
|
|
|
360
|
- background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
361
|
- /* Opera 11.10-12.00 */
|
|
|
362
|
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
|
363
|
- /* Firefox 16+, IE10, Opera 12.50+ */
|
|
|
364
|
-}
|
|
|
365
|
-/* Coverflow */
|
|
|
366
|
-.swiper-container-coverflow .swiper-wrapper,
|
|
|
367
|
-.swiper-container-flip .swiper-wrapper {
|
|
|
368
|
- /* Windows 8 IE 10 fix */
|
|
|
369
|
- -ms-perspective: 1200px;
|
|
|
370
|
-}
|
|
|
371
|
-/* Cube + Flip */
|
|
|
372
|
-.swiper-container-cube,
|
|
|
373
|
-.swiper-container-flip {
|
|
|
374
|
- overflow: visible;
|
|
|
375
|
-}
|
|
|
376
|
-.swiper-container-cube .swiper-slide,
|
|
|
377
|
-.swiper-container-flip .swiper-slide {
|
|
|
378
|
- pointer-events: none;
|
|
|
379
|
- -webkit-backface-visibility: hidden;
|
|
|
380
|
- -moz-backface-visibility: hidden;
|
|
|
381
|
- -ms-backface-visibility: hidden;
|
|
|
382
|
- backface-visibility: hidden;
|
|
|
383
|
- z-index: 1;
|
|
|
384
|
-}
|
|
|
385
|
-.swiper-container-cube .swiper-slide .swiper-slide,
|
|
|
386
|
-.swiper-container-flip .swiper-slide .swiper-slide {
|
|
|
387
|
- pointer-events: none;
|
|
|
388
|
-}
|
|
|
389
|
-.swiper-container-cube .swiper-slide-active,
|
|
|
390
|
-.swiper-container-flip .swiper-slide-active,
|
|
|
391
|
-.swiper-container-cube .swiper-slide-active .swiper-slide-active,
|
|
|
392
|
-.swiper-container-flip .swiper-slide-active .swiper-slide-active {
|
|
|
393
|
- pointer-events: auto;
|
|
|
394
|
-}
|
|
|
395
|
-.swiper-container-cube .swiper-slide-shadow-top,
|
|
|
396
|
-.swiper-container-flip .swiper-slide-shadow-top,
|
|
|
397
|
-.swiper-container-cube .swiper-slide-shadow-bottom,
|
|
|
398
|
-.swiper-container-flip .swiper-slide-shadow-bottom,
|
|
|
399
|
-.swiper-container-cube .swiper-slide-shadow-left,
|
|
|
400
|
-.swiper-container-flip .swiper-slide-shadow-left,
|
|
|
401
|
-.swiper-container-cube .swiper-slide-shadow-right,
|
|
|
402
|
-.swiper-container-flip .swiper-slide-shadow-right {
|
|
|
403
|
- z-index: 0;
|
|
|
404
|
- -webkit-backface-visibility: hidden;
|
|
|
405
|
- -moz-backface-visibility: hidden;
|
|
|
406
|
- -ms-backface-visibility: hidden;
|
|
|
407
|
- backface-visibility: hidden;
|
|
|
408
|
-}
|
|
|
409
|
-/* Cube */
|
|
|
410
|
-.swiper-container-cube .swiper-slide {
|
|
|
411
|
- visibility: hidden;
|
|
|
412
|
- -webkit-transform-origin: 0 0;
|
|
|
413
|
- -moz-transform-origin: 0 0;
|
|
|
414
|
- -ms-transform-origin: 0 0;
|
|
|
415
|
- transform-origin: 0 0;
|
|
|
416
|
- width: 100%;
|
|
|
417
|
- height: 100%;
|
|
|
418
|
-}
|
|
|
419
|
-.swiper-container-cube.swiper-container-rtl .swiper-slide {
|
|
|
420
|
- -webkit-transform-origin: 100% 0;
|
|
|
421
|
- -moz-transform-origin: 100% 0;
|
|
|
422
|
- -ms-transform-origin: 100% 0;
|
|
|
423
|
- transform-origin: 100% 0;
|
|
|
424
|
-}
|
|
|
425
|
-.swiper-container-cube .swiper-slide-active,
|
|
|
426
|
-.swiper-container-cube .swiper-slide-next,
|
|
|
427
|
-.swiper-container-cube .swiper-slide-prev,
|
|
|
428
|
-.swiper-container-cube .swiper-slide-next + .swiper-slide {
|
|
|
429
|
- pointer-events: auto;
|
|
|
430
|
- visibility: visible;
|
|
|
431
|
-}
|
|
|
432
|
-.swiper-container-cube .swiper-cube-shadow {
|
|
|
433
|
- position: absolute;
|
|
|
434
|
- left: 0;
|
|
|
435
|
- bottom: 0px;
|
|
|
436
|
- width: 100%;
|
|
|
437
|
- height: 100%;
|
|
|
438
|
- background: #000;
|
|
|
439
|
- opacity: 0.6;
|
|
|
440
|
- -webkit-filter: blur(50px);
|
|
|
441
|
- filter: blur(50px);
|
|
|
442
|
- z-index: 0;
|
|
|
443
|
-}
|
|
|
444
|
-/* Fade */
|
|
|
445
|
-.swiper-container-fade.swiper-container-free-mode .swiper-slide {
|
|
|
446
|
- -webkit-transition-timing-function: ease-out;
|
|
|
447
|
- -moz-transition-timing-function: ease-out;
|
|
|
448
|
- -ms-transition-timing-function: ease-out;
|
|
|
449
|
- -o-transition-timing-function: ease-out;
|
|
|
450
|
- transition-timing-function: ease-out;
|
|
|
451
|
-}
|
|
|
452
|
-.swiper-container-fade .swiper-slide {
|
|
|
453
|
- pointer-events: none;
|
|
|
454
|
- -webkit-transition-property: opacity;
|
|
|
455
|
- -moz-transition-property: opacity;
|
|
|
456
|
- -o-transition-property: opacity;
|
|
|
457
|
- transition-property: opacity;
|
|
|
458
|
-}
|
|
|
459
|
-.swiper-container-fade .swiper-slide .swiper-slide {
|
|
|
460
|
- pointer-events: none;
|
|
|
461
|
-}
|
|
|
462
|
-.swiper-container-fade .swiper-slide-active,
|
|
|
463
|
-.swiper-container-fade .swiper-slide-active .swiper-slide-active {
|
|
|
464
|
- pointer-events: auto;
|
|
|
465
|
-}
|
|
|
466
|
-/* Scrollbar */
|
|
|
467
|
-.swiper-scrollbar {
|
|
|
468
|
- border-radius: 10px;
|
|
|
469
|
- position: relative;
|
|
|
470
|
- -ms-touch-action: none;
|
|
|
471
|
- background: rgba(0, 0, 0, 0.1);
|
|
|
472
|
-}
|
|
|
473
|
-.swiper-container-horizontal > .swiper-scrollbar {
|
|
|
474
|
- position: absolute;
|
|
|
475
|
- left: 1%;
|
|
|
476
|
- bottom: 3px;
|
|
|
477
|
- z-index: 50;
|
|
|
478
|
- height: 5px;
|
|
|
479
|
- width: 98%;
|
|
|
480
|
-}
|
|
|
481
|
-.swiper-container-vertical > .swiper-scrollbar {
|
|
|
482
|
- position: absolute;
|
|
|
483
|
- right: 3px;
|
|
|
484
|
- top: 1%;
|
|
|
485
|
- z-index: 50;
|
|
|
486
|
- width: 5px;
|
|
|
487
|
- height: 98%;
|
|
|
488
|
-}
|
|
|
489
|
-.swiper-scrollbar-drag {
|
|
|
490
|
- height: 100%;
|
|
|
491
|
- width: 100%;
|
|
|
492
|
- position: relative;
|
|
|
493
|
- background: rgba(0, 0, 0, 0.5);
|
|
|
494
|
- border-radius: 10px;
|
|
|
495
|
- left: 0;
|
|
|
496
|
- top: 0;
|
|
|
497
|
-}
|
|
|
498
|
-.swiper-scrollbar-cursor-drag {
|
|
|
499
|
- cursor: move;
|
|
|
500
|
-}
|
|
|
501
|
-/* Preloader */
|
|
|
502
|
-.swiper-lazy-preloader {
|
|
|
503
|
- width: 42px;
|
|
|
504
|
- height: 42px;
|
|
|
505
|
- position: absolute;
|
|
|
506
|
- left: 50%;
|
|
|
507
|
- top: 50%;
|
|
|
508
|
- margin-left: -21px;
|
|
|
509
|
- margin-top: -21px;
|
|
|
510
|
- z-index: 10;
|
|
|
511
|
- -webkit-transform-origin: 50%;
|
|
|
512
|
- -moz-transform-origin: 50%;
|
|
|
513
|
- transform-origin: 50%;
|
|
|
514
|
- -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
|
|
|
515
|
- -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
|
|
|
516
|
- animation: swiper-preloader-spin 1s steps(12, end) infinite;
|
|
|
517
|
-}
|
|
|
518
|
-.swiper-lazy-preloader:after {
|
|
|
519
|
- display: block;
|
|
|
520
|
- content: "";
|
|
|
521
|
- width: 100%;
|
|
|
522
|
- height: 100%;
|
|
|
523
|
- background-position: 50%;
|
|
|
524
|
- -webkit-background-size: 100%;
|
|
|
525
|
- background-size: 100%;
|
|
|
526
|
- background-repeat: no-repeat;
|
|
|
527
|
-}
|
|
|
528
|
-.swiper-lazy-preloader-white:after {
|
|
|
529
|
- }
|
|
|
530
|
-@-webkit-keyframes swiper-preloader-spin {
|
|
|
531
|
- 100% {
|
|
|
532
|
- -webkit-transform: rotate(360deg);
|
|
|
533
|
- }
|
|
|
534
|
-}
|
|
|
535
|
-@keyframes swiper-preloader-spin {
|
|
|
536
|
- 100% {
|
|
|
537
|
- transform: rotate(360deg);
|
|
|
538
|
- }
|
11
|
+.swiper-wrapper {
|
|
|
12
|
+ margin-left: 0px;
|
539
|
} |
13
|
} |