lightgallery.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828
  1. /*! lightgallery - v1.2.0 - 2015-08-26
  2. * http://sachinchoolur.github.io/lightGallery/
  3. * Copyright (c) 2015 Sachin N; Licensed Apache 2.0 */
  4. @font-face {
  5. /* font-family: 'lg';
  6. src: url("../fonts/lg.eot?n1z373");
  7. src: url("../fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg.woff?n1z373") format("woff"), url("../fonts/lg.ttf?n1z373") format("truetype"), url("../fonts/lg.svg?n1z373#lg") format("svg");*/
  8. font-weight: normal;
  9. font-style: normal;
  10. }
  11. .xm_v2logo{width:86px; position: absolute;top: 7px;left: 50%;margin-left: -43px;}
  12. .xm_v2logo img{width:100%;height:100%;}
  13. .lg-icon {
  14. font-family: 'lg';
  15. speak: none;
  16. font-style: normal;
  17. font-weight: normal;
  18. font-variant: normal;
  19. text-transform: none;
  20. line-height: 1;
  21. /* Better Font Rendering =========== */
  22. -webkit-font-smoothing: antialiased;
  23. -moz-osx-font-smoothing: grayscale;
  24. }
  25. .lg-actions .lg-next, .lg-actions .lg-prev {
  26. background-color: rgba(0, 0, 0, 0.45);
  27. border-radius: 2px;
  28. color: #999;
  29. cursor: pointer;
  30. display: block;
  31. font-size: 22px;
  32. margin-top: -10px;
  33. padding: 8px 10px 9px;
  34. position: absolute;
  35. top: 50%;
  36. z-index: 1080;
  37. }
  38. .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  39. pointer-events: none;
  40. opacity: 0.5;
  41. }
  42. .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  43. color: #FFF;
  44. }
  45. .lg-actions .lg-next {
  46. right: 20px;
  47. }
  48. .lg-actions .lg-next:before {
  49. content: "\e095";
  50. }
  51. .lg-actions .lg-prev {
  52. left: 20px;
  53. }
  54. .lg-actions .lg-prev:after {
  55. content: "\e094";
  56. }
  57. @-webkit-keyframes lg-right-end {
  58. 0% {
  59. left: 0;
  60. }
  61. 50% {
  62. left: -30px;
  63. }
  64. 100% {
  65. left: 0;
  66. }
  67. }
  68. @-moz-keyframes lg-right-end {
  69. 0% {
  70. left: 0;
  71. }
  72. 50% {
  73. left: -30px;
  74. }
  75. 100% {
  76. left: 0;
  77. }
  78. }
  79. @-ms-keyframes lg-right-end {
  80. 0% {
  81. left: 0;
  82. }
  83. 50% {
  84. left: -30px;
  85. }
  86. 100% {
  87. left: 0;
  88. }
  89. }
  90. @keyframes lg-right-end {
  91. 0% {
  92. left: 0;
  93. }
  94. 50% {
  95. left: -30px;
  96. }
  97. 100% {
  98. left: 0;
  99. }
  100. }
  101. @-webkit-keyframes lg-left-end {
  102. 0% {
  103. left: 0;
  104. }
  105. 50% {
  106. left: 30px;
  107. }
  108. 100% {
  109. left: 0;
  110. }
  111. }
  112. @-moz-keyframes lg-left-end {
  113. 0% {
  114. left: 0;
  115. }
  116. 50% {
  117. left: 30px;
  118. }
  119. 100% {
  120. left: 0;
  121. }
  122. }
  123. @-ms-keyframes lg-left-end {
  124. 0% {
  125. left: 0;
  126. }
  127. 50% {
  128. left: 30px;
  129. }
  130. 100% {
  131. left: 0;
  132. }
  133. }
  134. @keyframes lg-left-end {
  135. 0% {
  136. left: 0;
  137. }
  138. 50% {
  139. left: 30px;
  140. }
  141. 100% {
  142. left: 0;
  143. }
  144. }
  145. .lg-outer.lg-right-end .lg-object {
  146. -webkit-animation: lg-right-end 0.3s;
  147. -o-animation: lg-right-end 0.3s;
  148. animation: lg-right-end 0.3s;
  149. position: relative;
  150. }
  151. .lg-outer.lg-left-end .lg-object {
  152. -webkit-animation: lg-left-end 0.3s;
  153. -o-animation: lg-left-end 0.3s;
  154. animation: lg-left-end 0.3s;
  155. position: relative;
  156. }
  157. .lg-toolbar {
  158. z-index: 1080;
  159. left: 0;
  160. position: absolute;
  161. top: 2%;
  162. width: 100%;
  163. background-color: rgba(0, 0, 0, 0.45);
  164. }
  165. .lg-toolbar .lg-icon {
  166. color: #999;
  167. cursor: pointer;
  168. float: right;
  169. font-size: 24px;
  170. height: 47px;
  171. line-height: 27px;
  172. padding: 10px 0;
  173. text-align: center;
  174. width: 50px;
  175. text-decoration: none !important;
  176. outline: medium none;
  177. }
  178. .lg-toolbar .lg-icon:hover {
  179. color: #FFF;
  180. }
  181. .lg-toolbar .lg-close:after {
  182. /*content: "\e070";*/
  183. }
  184. .lg-toolbar .lg-download:after {
  185. /*content: "\e0f2";*/
  186. }
  187. .lg-sub-html {
  188. background-color: rgba(0, 0, 0, 0.45);
  189. bottom: 18%;
  190. color: #EEE;
  191. font-size: 16px;
  192. left: 0;
  193. padding: 10px 2%;
  194. position: fixed;
  195. right: 0;
  196. text-align: center;
  197. z-index: 1080;
  198. text-align:left;
  199. }
  200. .optionMore {
  201. background-color: rgba(0, 0, 0, 0.45);
  202. bottom: 0px;
  203. color: #EEE;
  204. font-size: 16px;
  205. left: 0;
  206. position: fixed;
  207. right: 0;
  208. text-align: center;
  209. z-index: 1080;
  210. text-align: left;
  211. }
  212. .lg-sub-html h4 {
  213. margin: 0;
  214. font-size: 13px;
  215. font-weight: bold;
  216. }
  217. .lg-sub-html p {
  218. font-size: 12px;
  219. margin: 5px 0 0;
  220. }
  221. #lg-counter {
  222. color: #999;
  223. display: inline-block;
  224. font-size: 16px;
  225. padding-left: 20px;
  226. padding-top: 16px;
  227. vertical-align: middle;
  228. }
  229. .lg-toolbar, .lg-prev, .lg-next {
  230. opacity: 1;
  231. -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  232. -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  233. -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  234. transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  235. }
  236. .lg-hide-items .lg-prev {
  237. opacity: 0;
  238. -webkit-transform: translate3d(-10px, 0, 0);
  239. transform: translate3d(-10px, 0, 0);
  240. }
  241. .lg-hide-items .lg-next {
  242. opacity: 0;
  243. -webkit-transform: translate3d(10px, 0, 0);
  244. transform: translate3d(10px, 0, 0);
  245. }
  246. .lg-hide-items .lg-toolbar {
  247. opacity: 0;
  248. -webkit-transform: translate3d(0, -10px, 0);
  249. transform: translate3d(0, -10px, 0);
  250. }
  251. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  252. -webkit-transform: scale3d(0.5, 0.5, 0.5);
  253. transform: scale3d(0.5, 0.5, 0.5);
  254. opacity: 0;
  255. -webkit-transition: -webkit-transform 250ms ease 0s, opacity 250ms !important;
  256. -moz-transition: -moz-transform 250ms ease 0s, opacity 250ms !important;
  257. -o-transition: -o-transform 250ms ease 0s, opacity 250ms !important;
  258. transition: transform 250ms ease 0s, opacity 250ms !important;
  259. -webkit-transform-origin: 50% 50%;
  260. -moz-transform-origin: 50% 50%;
  261. -ms-transform-origin: 50% 50%;
  262. transform-origin: 50% 50%;
  263. }
  264. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  265. -webkit-transform: scale3d(1, 1, 1);
  266. transform: scale3d(1, 1, 1);
  267. opacity: 1;
  268. }
  269. .lg-outer .lg-thumb-outer {
  270. background-color: #0D0A0A;
  271. bottom: 0;
  272. position: absolute;
  273. width: 100%;
  274. z-index: 1080;
  275. max-height: 350px;
  276. -webkit-transform: translate3d(0, 100%, 0);
  277. transform: translate3d(0, 100%, 0);
  278. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  279. -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  280. -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  281. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  282. }
  283. .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  284. cursor: -webkit-grab;
  285. cursor: -moz-grab;
  286. cursor: -o-grab;
  287. cursor: -ms-grab;
  288. cursor: grab;
  289. }
  290. .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  291. cursor: move;
  292. cursor: -webkit-grabbing;
  293. cursor: -moz-grabbing;
  294. cursor: -o-grabbing;
  295. cursor: -ms-grabbing;
  296. cursor: grabbing;
  297. }
  298. .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  299. -webkit-transition-duration: 0s !important;
  300. transition-duration: 0s !important;
  301. }
  302. .lg-outer.lg-thumb-open .lg-thumb-outer {
  303. -webkit-transform: translate3d(0, 0%, 0);
  304. transform: translate3d(0, 0%, 0);
  305. }
  306. .lg-outer .lg-thumb {
  307. padding: 10px 0;
  308. height: 100%;
  309. margin-bottom: -5px;
  310. }
  311. .lg-outer .lg-thumb-item {
  312. border-radius: 5px;
  313. cursor: pointer;
  314. float: left;
  315. overflow: hidden;
  316. height: 100%;
  317. border: 2px solid #FFF;
  318. border-radius: 4px;
  319. margin-bottom: 5px;
  320. }
  321. @media (min-width: 1025px) {
  322. .lg-outer .lg-thumb-item {
  323. -webkit-transition: border-color 0.25s ease;
  324. -o-transition: border-color 0.25s ease;
  325. transition: border-color 0.25s ease;
  326. }
  327. }
  328. .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  329. border-color: #a90707;
  330. }
  331. .lg-outer .lg-thumb-item img {
  332. width: 100%;
  333. height: 100%;
  334. }
  335. .lg-outer.lg-has-thumb .lg-item {
  336. padding-bottom: 120px;
  337. }
  338. .lg-outer.lg-can-toggle .lg-item {
  339. padding-bottom: 0;
  340. }
  341. .lg-outer .lg-toogle-thumb {
  342. background-color: #0D0A0A;
  343. border-radius: 2px 2px 0 0;
  344. color: white;
  345. cursor: pointer;
  346. font-size: 26px;
  347. height: 39px;
  348. line-height: 27px;
  349. padding: 5px 0;
  350. position: absolute;
  351. right: 3%;
  352. text-align: center;
  353. top: -39px;
  354. width: 50px;
  355. }
  356. .lg-outer .lg-toogle-thumb:after {
  357. content: "\e1ff";
  358. }
  359. .lg-outer .lg-toogle-thumb:hover {
  360. color: #FFF;
  361. }
  362. .lg-outer .lg-video-cont {
  363. display: inline-block;
  364. vertical-align: middle;
  365. max-width: 1140px;
  366. max-height: 100%;
  367. width: 100%;
  368. padding: 0 5px;
  369. }
  370. .lg-outer .lg-video {
  371. width: 100%;
  372. height: 0;
  373. padding-bottom: 56.25%;
  374. overflow: hidden;
  375. position: relative;
  376. }
  377. .lg-outer .lg-video .lg-object {
  378. display: inline-block;
  379. position: absolute;
  380. top: 0;
  381. left: 0;
  382. width: 100% !important;
  383. height: 100% !important;
  384. }
  385. .lg-outer .lg-video .lg-video-play {
  386. width: 84px;
  387. height: 59px;
  388. position: absolute;
  389. left: 50%;
  390. top: 50%;
  391. margin-left: -42px;
  392. margin-top: -30px;
  393. z-index: 1080;
  394. cursor: pointer;
  395. }
  396. .lg-outer .lg-has-vimeo .lg-video-play {
  397. background: url("../images/vimeo-play.png") no-repeat scroll 0 0 transparent;
  398. }
  399. .lg-outer .lg-has-vimeo:hover .lg-video-play {
  400. background: url("../images/vimeo-play.png") no-repeat scroll 0 -58px transparent;
  401. }
  402. .lg-outer .lg-has-html5 .lg-video-play {
  403. background: transparent url("../images/video-play.png") no-repeat scroll 0 0;
  404. height: 64px;
  405. margin-left: -32px;
  406. margin-top: -32px;
  407. width: 64px;
  408. opacity: 0.8;
  409. }
  410. .lg-outer .lg-has-html5:hover .lg-video-play {
  411. opacity: 1;
  412. }
  413. .lg-outer .lg-has-youtube .lg-video-play {
  414. background: url("../images/youtube-play.png") no-repeat scroll 0 0 transparent;
  415. }
  416. .lg-outer .lg-has-youtube:hover .lg-video-play {
  417. background: url("../images/youtube-play.png") no-repeat scroll 0 -60px transparent;
  418. }
  419. .lg-outer .lg-video-object {
  420. width: 100% !important;
  421. height: 100% !important;
  422. position: absolute;
  423. top: 0;
  424. left: 0;
  425. }
  426. .lg-outer .lg-has-video .lg-video-object {
  427. visibility: hidden;
  428. }
  429. .lg-outer .lg-has-video.lg-video-palying .lg-object, .lg-outer .lg-has-video.lg-video-palying .lg-video-play {
  430. display: none;
  431. }
  432. .lg-outer .lg-has-video.lg-video-palying .lg-video-object {
  433. visibility: visible;
  434. }
  435. .lg-progress-bar {
  436. background-color: #333;
  437. height: 5px;
  438. left: 0;
  439. position: absolute;
  440. top: 0;
  441. width: 100%;
  442. z-index: 1080;
  443. opacity: 0;
  444. -webkit-transition: opacity 0.08s ease 0s;
  445. -moz-transition: opacity 0.08s ease 0s;
  446. -o-transition: opacity 0.08s ease 0s;
  447. transition: opacity 0.08s ease 0s;
  448. }
  449. .lg-progress-bar .lg-progress {
  450. background-color: #a90707;
  451. height: 5px;
  452. width: 0;
  453. }
  454. .lg-progress-bar.lg-start .lg-progress {
  455. width: 100%;
  456. }
  457. .lg-show-autoplay .lg-progress-bar {
  458. opacity: 1;
  459. }
  460. .lg-autoplay-button:after {
  461. content: "\e01d";
  462. }
  463. .lg-show-autoplay .lg-autoplay-button:after {
  464. content: "\e01a";
  465. }
  466. .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  467. -webkit-transition-duration: 0s;
  468. transition-duration: 0s;
  469. }
  470. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  471. -webkit-transition: -webkit-transform 0.3s ease 0s;
  472. -moz-transition: -moz-transform 0.3s ease 0s;
  473. -o-transition: -o-transform 0.3s ease 0s;
  474. transition: transform 0.3s ease 0s;
  475. -webkit-transform: translate3d(0, 0, 0);
  476. transform: translate3d(0, 0, 0);
  477. }
  478. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  479. -webkit-transform: scale3d(1, 1, 1);
  480. transform: scale3d(1, 1, 1);
  481. -webkit-transition: -webkit-transform 0.3s ease 0s, opacity 0.15s !important;
  482. -moz-transition: -moz-transform 0.3s ease 0s, opacity 0.15s !important;
  483. -o-transition: -o-transform 0.3s ease 0s, opacity 0.15s !important;
  484. transition: transform 0.3s ease 0s, opacity 0.15s !important;
  485. -webkit-transform-origin: 0 0;
  486. -moz-transform-origin: 0 0;
  487. -ms-transform-origin: 0 0;
  488. transform-origin: 0 0;
  489. }
  490. #lg-zoom-in:after {
  491. content: "\e311";
  492. }
  493. #lg-zoom-out {
  494. opacity: 0.5;
  495. pointer-events: none;
  496. }
  497. #lg-zoom-out:after {
  498. content: "\e312";
  499. }
  500. .lg-zoomed #lg-zoom-out {
  501. opacity: 1;
  502. pointer-events: auto;
  503. }
  504. .lg-outer .lg-pager-outer {
  505. bottom: 60px;
  506. left: 0;
  507. position: absolute;
  508. right: 0;
  509. text-align: center;
  510. z-index: 1080;
  511. height: 10px;
  512. }
  513. .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  514. overflow: visible;
  515. }
  516. .lg-outer .lg-pager-cont {
  517. cursor: pointer;
  518. display: inline-block;
  519. overflow: hidden;
  520. position: relative;
  521. vertical-align: top;
  522. margin: 0 5px;
  523. }
  524. .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  525. opacity: 1;
  526. -webkit-transform: translate3d(0, 0, 0);
  527. transform: translate3d(0, 0, 0);
  528. }
  529. .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  530. box-shadow: 0 0 0 2px white inset;
  531. }
  532. .lg-outer .lg-pager-thumb-cont {
  533. background-color: #fff;
  534. color: #FFF;
  535. bottom: 100%;
  536. height: 83px;
  537. left: 0;
  538. margin-bottom: 20px;
  539. margin-left: -60px;
  540. opacity: 0;
  541. padding: 5px;
  542. position: absolute;
  543. width: 120px;
  544. border-radius: 3px;
  545. -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  546. -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  547. -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  548. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  549. -webkit-transform: translate3d(0, 5px, 0);
  550. transform: translate3d(0, 5px, 0);
  551. }
  552. .lg-outer .lg-pager-thumb-cont img {
  553. width: 100%;
  554. height: 100%;
  555. }
  556. .lg-outer .lg-pager {
  557. background-color: rgba(255, 255, 255, 0.5);
  558. border-radius: 50%;
  559. box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  560. display: block;
  561. height: 12px;
  562. -webkit-transition: box-shadow 0.3s ease 0s;
  563. -o-transition: box-shadow 0.3s ease 0s;
  564. transition: box-shadow 0.3s ease 0s;
  565. width: 12px;
  566. }
  567. .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  568. box-shadow: 0 0 0 8px white inset;
  569. }
  570. .lg-outer .lg-caret {
  571. border-left: 10px solid transparent;
  572. border-right: 10px solid transparent;
  573. border-top: 10px dashed;
  574. bottom: -10px;
  575. display: inline-block;
  576. height: 0;
  577. left: 50%;
  578. margin-left: -5px;
  579. position: absolute;
  580. vertical-align: middle;
  581. width: 0;
  582. }
  583. .lg-fullscreen:after {
  584. content: "\e20c";
  585. }
  586. .lg-fullscreen-on .lg-fullscreen:after {
  587. content: "\e20d";
  588. }
  589. .group {
  590. *zoom: 1;
  591. }
  592. .group:before, .group:after {
  593. display: table;
  594. content: "";
  595. line-height: 0;
  596. }
  597. .group:after {
  598. clear: both;
  599. }
  600. .lg-outer {
  601. width: 100%;
  602. height: 100%;
  603. position: fixed;
  604. top: 0;
  605. left: 0;
  606. z-index: 1050;
  607. opacity: 0;
  608. -webkit-transition: opacity 0.15s ease 0s;
  609. -o-transition: opacity 0.15s ease 0s;
  610. transition: opacity 0.15s ease 0s;
  611. }
  612. .lg-outer * {
  613. -webkit-box-sizing: border-box;
  614. -moz-box-sizing: border-box;
  615. box-sizing: border-box;
  616. }
  617. .lg-outer.lg-visible {
  618. opacity: 1;
  619. }
  620. .lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  621. -webkit-transition-duration: inherit !important;
  622. transition-duration: inherit !important;
  623. -webkit-transition-timing-function: inherit !important;
  624. transition-timing-function: inherit !important;
  625. }
  626. .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  627. -webkit-transition-duration: 0s !important;
  628. transition-duration: 0s !important;
  629. opacity: 1;
  630. }
  631. .lg-outer.lg-grab img.lg-object {
  632. cursor: -webkit-grab;
  633. cursor: -moz-grab;
  634. cursor: -o-grab;
  635. cursor: -ms-grab;
  636. cursor: grab;
  637. }
  638. .lg-outer.lg-grabbing img.lg-object {
  639. cursor: move;
  640. cursor: -webkit-grabbing;
  641. cursor: -moz-grabbing;
  642. cursor: -o-grabbing;
  643. cursor: -ms-grabbing;
  644. cursor: grabbing;
  645. }
  646. .lg-outer .lg {
  647. height: 100%;
  648. width: 100%;
  649. position: relative;
  650. overflow: hidden;
  651. margin-left: auto;
  652. margin-right: auto;
  653. max-width: 100%;
  654. max-height: 100%;
  655. }
  656. .lg-outer .lg-inner {
  657. width: 100%;
  658. height: 100%;
  659. position: absolute;
  660. left: 0;
  661. top: 0;
  662. white-space: nowrap;
  663. }
  664. .lg-outer .lg-item {
  665. /*background: url(../images/loading.gif) no-repeat scroll center center transparent;*/
  666. }
  667. .lg-outer .lg-item, .lg-outer .lg-img-wrap {
  668. display: inline-block;
  669. text-align: center;
  670. position: absolute;
  671. width: 100%;
  672. height: 100%;
  673. }
  674. .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  675. content: "";
  676. display: inline-block;
  677. height: 45%;
  678. width: 1px;
  679. margin-right: -5px;
  680. }
  681. .lg-outer .lg-img-wrap {
  682. top: 0;
  683. bottom: 0;
  684. left: 0;
  685. right: 0;
  686. padding: 0 5px;
  687. }
  688. .lg-outer .lg-item.lg-complete {
  689. background-image: none;
  690. }
  691. .lg-outer .lg-item.lg-current {
  692. z-index: 1060;
  693. }
  694. .lg-outer .lg-image {
  695. display: inline-block;
  696. vertical-align: middle;
  697. min-width: 80%;
  698. min-height: 10%;
  699. max-height:60%;
  700. }
  701. .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  702. opacity: 0;
  703. -webkit-transition: opacity 0.15s ease 0s;
  704. -o-transition: opacity 0.15s ease 0s;
  705. transition: opacity 0.15s ease 0s;
  706. }
  707. .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  708. opacity: 1;
  709. }
  710. .lg-outer .lg-empty-html {
  711. display: none;
  712. }
  713. .lg-backdrop {
  714. position: fixed;
  715. top: 0;
  716. left: 0;
  717. right: 0;
  718. bottom: 0;
  719. z-index: 1040;
  720. background-color: #000;
  721. opacity: 0;
  722. -webkit-transition: opacity 0.15s ease 0s;
  723. -o-transition: opacity 0.15s ease 0s;
  724. transition: opacity 0.15s ease 0s;
  725. }
  726. .lg-backdrop.in {
  727. opacity: 1;
  728. }
  729. .lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  730. -webkit-transition: none 0s ease 0s !important;
  731. -moz-transition: none 0s ease 0s !important;
  732. -o-transition: none 0s ease 0s !important;
  733. transition: none 0s ease 0s !important;
  734. }
  735. .lg-css3.lg-use-css3 .lg-item {
  736. will-change: transform, opacity;
  737. }
  738. .lg-css3.lg-use-left .lg-item {
  739. will-change: left, opacity;
  740. }
  741. .lg-css3.lg-fade .lg-item {
  742. opacity: 0;
  743. }
  744. .lg-css3.lg-fade .lg-item.lg-current {
  745. opacity: 1;
  746. }
  747. .lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  748. -webkit-transition: opacity 0.1s ease 0s;
  749. -moz-transition: opacity 0.1s ease 0s;
  750. -o-transition: opacity 0.1s ease 0s;
  751. transition: opacity 0.1s ease 0s;
  752. }
  753. .lg-css3.lg-slide.lg-use-css3 .lg-item {
  754. opacity: 0;
  755. }
  756. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  757. -webkit-transform: translate3d(-100%, 0, 0);
  758. transform: translate3d(-100%, 0, 0);
  759. }
  760. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  761. -webkit-transform: translate3d(100%, 0, 0);
  762. transform: translate3d(100%, 0, 0);
  763. }
  764. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  765. -webkit-transform: translate3d(0, 0, 0);
  766. transform: translate3d(0, 0, 0);
  767. opacity: 1;
  768. }
  769. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  770. -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  771. -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  772. -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  773. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  774. }
  775. .lg-css3.lg-slide.lg-use-left .lg-item {
  776. opacity: 0;
  777. position: absolute;
  778. left: 0;
  779. }
  780. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  781. left: -100%;
  782. }
  783. .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  784. left: 100%;
  785. }
  786. .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  787. left: 0;
  788. opacity: 1;
  789. }
  790. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  791. -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  792. -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  793. -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  794. transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  795. }
  796. /*# sourceMappingURL=lightgallery.css.map */