swiper.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  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 {
  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;
  73. }
  74. .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. z-index: 10;
  121. cursor: pointer;
  122. }
  123. .swiper-button-prev.swiper-button-disabled,
  124. .swiper-button-next.swiper-button-disabled {
  125. opacity: 0.35;
  126. cursor: auto;
  127. pointer-events: none;
  128. }
  129. /* Pagination Styles */
  130. .swiper-pagination {
  131. position: absolute;
  132. -webkit-transition: 300ms;
  133. -moz-transition: 300ms;
  134. -o-transition: 300ms;
  135. transition: 300ms;
  136. -webkit-transform: translate3d(0, 0, 0);
  137. -ms-transform: translate3d(0, 0, 0);
  138. -o-transform: translate3d(0, 0, 0);
  139. transform: translate3d(0, 0, 0);
  140. z-index: 10;
  141. }
  142. .swiper-pagination.swiper-pagination-hidden {
  143. opacity: 0;
  144. }
  145. /* Common Styles */
  146. /* Bullets */
  147. button.swiper-pagination-bullet {
  148. box-shadow: none;
  149. -moz-appearance: none;
  150. -ms-appearance: none;
  151. -webkit-appearance: none;
  152. appearance: none;
  153. }
  154. /* Progress */
  155. .swiper-pagination-progress {
  156. background: rgba(0, 0, 0, 0.25);
  157. position: absolute;
  158. }
  159. .swiper-pagination-progress .swiper-pagination-progressbar {
  160. background: #007aff;
  161. position: absolute;
  162. left: 0;
  163. top: 0;
  164. width: 100%;
  165. height: 100%;
  166. -webkit-transform: scale(0);
  167. -ms-transform: scale(0);
  168. -o-transform: scale(0);
  169. transform: scale(0);
  170. -webkit-transform-origin: left top;
  171. -moz-transform-origin: left top;
  172. -ms-transform-origin: left top;
  173. -o-transform-origin: left top;
  174. transform-origin: left top;
  175. }
  176. .swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  177. -webkit-transform-origin: right top;
  178. -moz-transform-origin: right top;
  179. -ms-transform-origin: right top;
  180. -o-transform-origin: right top;
  181. transform-origin: right top;
  182. }
  183. .swiper-container-horizontal > .swiper-pagination-progress {
  184. width: 100%;
  185. height: 4px;
  186. left: 0;
  187. top: 0;
  188. }
  189. .swiper-container-vertical > .swiper-pagination-progress {
  190. width: 4px;
  191. height: 100%;
  192. left: 0;
  193. top: 0;
  194. }
  195. .swiper-pagination-progress.swiper-pagination-white {
  196. background: rgba(255, 255, 255, 0.5);
  197. }
  198. .swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  199. background: #fff;
  200. }
  201. .swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  202. background: #000;
  203. }
  204. /* 3D Container */
  205. .swiper-container-3d {
  206. -webkit-perspective: 1200px;
  207. -moz-perspective: 1200px;
  208. -o-perspective: 1200px;
  209. perspective: 1200px;
  210. }
  211. .swiper-container-3d .swiper-wrapper,
  212. .swiper-container-3d .swiper-slide,
  213. .swiper-container-3d .swiper-slide-shadow-left,
  214. .swiper-container-3d .swiper-slide-shadow-right,
  215. .swiper-container-3d .swiper-slide-shadow-top,
  216. .swiper-container-3d .swiper-slide-shadow-bottom,
  217. .swiper-container-3d .swiper-cube-shadow {
  218. -webkit-transform-style: preserve-3d;
  219. -moz-transform-style: preserve-3d;
  220. -ms-transform-style: preserve-3d;
  221. transform-style: preserve-3d;
  222. }
  223. .swiper-container-3d .swiper-slide-shadow-left,
  224. .swiper-container-3d .swiper-slide-shadow-right,
  225. .swiper-container-3d .swiper-slide-shadow-top,
  226. .swiper-container-3d .swiper-slide-shadow-bottom {
  227. position: absolute;
  228. left: 0;
  229. top: 0;
  230. width: 100%;
  231. height: 100%;
  232. pointer-events: none;
  233. z-index: 10;
  234. }
  235. .swiper-container-3d .swiper-slide-shadow-left {
  236. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  237. /* Safari 4+, Chrome */
  238. background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  239. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  240. background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  241. /* Firefox 3.6-15 */
  242. background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  243. /* Opera 11.10-12.00 */
  244. background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  245. /* Firefox 16+, IE10, Opera 12.50+ */
  246. }
  247. .swiper-container-3d .swiper-slide-shadow-right {
  248. background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  249. /* Safari 4+, Chrome */
  250. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  251. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  252. background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  253. /* Firefox 3.6-15 */
  254. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  255. /* Opera 11.10-12.00 */
  256. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  257. /* Firefox 16+, IE10, Opera 12.50+ */
  258. }
  259. .swiper-container-3d .swiper-slide-shadow-top {
  260. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  261. /* Safari 4+, Chrome */
  262. background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  263. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  264. background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  265. /* Firefox 3.6-15 */
  266. background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  267. /* Opera 11.10-12.00 */
  268. background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  269. /* Firefox 16+, IE10, Opera 12.50+ */
  270. }
  271. .swiper-container-3d .swiper-slide-shadow-bottom {
  272. background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  273. /* Safari 4+, Chrome */
  274. background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  275. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  276. background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  277. /* Firefox 3.6-15 */
  278. background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  279. /* Opera 11.10-12.00 */
  280. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  281. /* Firefox 16+, IE10, Opera 12.50+ */
  282. }
  283. /* Coverflow */
  284. .swiper-container-coverflow .swiper-wrapper,
  285. .swiper-container-flip .swiper-wrapper {
  286. /* Windows 8 IE 10 fix */
  287. -ms-perspective: 1200px;
  288. }
  289. /* Cube + Flip */
  290. .swiper-container-cube,
  291. .swiper-container-flip {
  292. overflow: visible;
  293. }
  294. .swiper-container-cube .swiper-slide,
  295. .swiper-container-flip .swiper-slide {
  296. pointer-events: none;
  297. -webkit-backface-visibility: hidden;
  298. -moz-backface-visibility: hidden;
  299. -ms-backface-visibility: hidden;
  300. backface-visibility: hidden;
  301. z-index: 1;
  302. }
  303. .swiper-container-cube .swiper-slide .swiper-slide,
  304. .swiper-container-flip .swiper-slide .swiper-slide {
  305. pointer-events: none;
  306. }
  307. .swiper-container-cube .swiper-slide-active,
  308. .swiper-container-flip .swiper-slide-active,
  309. .swiper-container-cube .swiper-slide-active .swiper-slide-active,
  310. .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  311. pointer-events: auto;
  312. }
  313. .swiper-container-cube .swiper-slide-shadow-top,
  314. .swiper-container-flip .swiper-slide-shadow-top,
  315. .swiper-container-cube .swiper-slide-shadow-bottom,
  316. .swiper-container-flip .swiper-slide-shadow-bottom,
  317. .swiper-container-cube .swiper-slide-shadow-left,
  318. .swiper-container-flip .swiper-slide-shadow-left,
  319. .swiper-container-cube .swiper-slide-shadow-right,
  320. .swiper-container-flip .swiper-slide-shadow-right {
  321. z-index: 0;
  322. -webkit-backface-visibility: hidden;
  323. -moz-backface-visibility: hidden;
  324. -ms-backface-visibility: hidden;
  325. backface-visibility: hidden;
  326. }
  327. /* Cube */
  328. .swiper-container-cube .swiper-slide {
  329. visibility: hidden;
  330. -webkit-transform-origin: 0 0;
  331. -moz-transform-origin: 0 0;
  332. -ms-transform-origin: 0 0;
  333. transform-origin: 0 0;
  334. width: 100%;
  335. height: 100%;
  336. }
  337. .swiper-container-cube.swiper-container-rtl .swiper-slide {
  338. -webkit-transform-origin: 100% 0;
  339. -moz-transform-origin: 100% 0;
  340. -ms-transform-origin: 100% 0;
  341. transform-origin: 100% 0;
  342. }
  343. .swiper-container-cube .swiper-slide-active,
  344. .swiper-container-cube .swiper-slide-next,
  345. .swiper-container-cube .swiper-slide-prev,
  346. .swiper-container-cube .swiper-slide-next + .swiper-slide {
  347. pointer-events: auto;
  348. visibility: visible;
  349. }
  350. .swiper-container-cube .swiper-cube-shadow {
  351. position: absolute;
  352. left: 0;
  353. bottom: 0px;
  354. width: 100%;
  355. height: 100%;
  356. background: #000;
  357. opacity: 0.6;
  358. -webkit-filter: blur(50px);
  359. filter: blur(50px);
  360. z-index: 0;
  361. }
  362. /* Fade */
  363. .swiper-container-fade.swiper-container-free-mode .swiper-slide {
  364. -webkit-transition-timing-function: ease-out;
  365. -moz-transition-timing-function: ease-out;
  366. -ms-transition-timing-function: ease-out;
  367. -o-transition-timing-function: ease-out;
  368. transition-timing-function: ease-out;
  369. }
  370. .swiper-container-fade .swiper-slide {
  371. pointer-events: none;
  372. -webkit-transition-property: opacity;
  373. -moz-transition-property: opacity;
  374. -o-transition-property: opacity;
  375. transition-property: opacity;
  376. }
  377. .swiper-container-fade .swiper-slide .swiper-slide {
  378. pointer-events: none;
  379. }
  380. .swiper-container-fade .swiper-slide-active,
  381. .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  382. pointer-events: auto;
  383. }
  384. /* Scrollbar */
  385. .swiper-scrollbar {
  386. border-radius: 10px;
  387. position: relative;
  388. -ms-touch-action: none;
  389. background: rgba(0, 0, 0, 0.1);
  390. }
  391. .swiper-container-horizontal > .swiper-scrollbar {
  392. position: absolute;
  393. left: 1%;
  394. bottom: 3px;
  395. z-index: 50;
  396. height: 5px;
  397. width: 98%;
  398. }
  399. .swiper-container-vertical > .swiper-scrollbar {
  400. position: absolute;
  401. right: 3px;
  402. top: 1%;
  403. z-index: 50;
  404. width: 5px;
  405. height: 98%;
  406. }
  407. .swiper-scrollbar-drag {
  408. height: 100%;
  409. width: 100%;
  410. position: relative;
  411. background: rgba(0, 0, 0, 0.5);
  412. border-radius: 10px;
  413. left: 0;
  414. top: 0;
  415. }
  416. .swiper-scrollbar-cursor-drag {
  417. cursor: move;
  418. }
  419. /* Preloader */
  420. .swiper-lazy-preloader {
  421. width: 42px;
  422. height: 42px;
  423. position: absolute;
  424. left: 50%;
  425. top: 50%;
  426. margin-left: -21px;
  427. margin-top: -21px;
  428. z-index: 10;
  429. -webkit-transform-origin: 50%;
  430. -moz-transform-origin: 50%;
  431. transform-origin: 50%;
  432. -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  433. -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  434. animation: swiper-preloader-spin 1s steps(12, end) infinite;
  435. }
  436. .swiper-lazy-preloader:after {
  437. display: block;
  438. content: "";
  439. width: 100%;
  440. height: 100%;
  441. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  442. background-position: 50%;
  443. -webkit-background-size: 100%;
  444. background-size: 100%;
  445. background-repeat: no-repeat;
  446. }
  447. .swiper-lazy-preloader-white:after {
  448. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  449. }
  450. @-webkit-keyframes swiper-preloader-spin {
  451. 100% {
  452. -webkit-transform: rotate(360deg);
  453. }
  454. }
  455. @keyframes swiper-preloader-spin {
  456. 100% {
  457. transform: rotate(360deg);
  458. }
  459. }