lightgallery.css 19 KB

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