lightgallery.bundle.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179
  1. /*!
  2. * justifiedGallery - v3.7.0
  3. * http://miromannino.github.io/Justified-Gallery/
  4. * Copyright (c) 2018 Miro Mannino
  5. * Licensed under the MIT license.
  6. */
  7. .justified-gallery {
  8. width: 100%;
  9. position: relative;
  10. overflow: hidden; }
  11. .justified-gallery > a,
  12. .justified-gallery > div,
  13. .justified-gallery > figure {
  14. position: absolute;
  15. display: inline-block;
  16. overflow: hidden;
  17. /* background: #888888; To have gray placeholders while the gallery is loading with waitThumbnailsLoad = false */
  18. filter: "alpha(opacity=10)";
  19. opacity: 0.1;
  20. margin: 0;
  21. padding: 0; }
  22. .justified-gallery > a > img,
  23. .justified-gallery > div > img,
  24. .justified-gallery > figure > img,
  25. .justified-gallery > a > a > img,
  26. .justified-gallery > div > a > img,
  27. .justified-gallery > figure > a > img {
  28. position: absolute;
  29. top: 50%;
  30. left: 50%;
  31. margin: 0;
  32. padding: 0;
  33. border: none;
  34. filter: "alpha(opacity=0)";
  35. opacity: 0; }
  36. .justified-gallery > a > .caption,
  37. .justified-gallery > div > .caption,
  38. .justified-gallery > figure > .caption {
  39. display: none;
  40. position: absolute;
  41. bottom: 0;
  42. padding: 5px;
  43. background-color: #000000;
  44. left: 0;
  45. right: 0;
  46. margin: 0;
  47. color: white;
  48. font-size: 12px;
  49. font-weight: 300;
  50. font-family: sans-serif; }
  51. .justified-gallery > a > .caption.caption-visible,
  52. .justified-gallery > div > .caption.caption-visible,
  53. .justified-gallery > figure > .caption.caption-visible {
  54. display: initial;
  55. filter: "alpha(opacity=70)";
  56. opacity: 0.7;
  57. -webkit-transition: opacity 500ms ease-in;
  58. transition: opacity 500ms ease-in; }
  59. .justified-gallery > .entry-visible {
  60. filter: "alpha(opacity=100)";
  61. opacity: 1;
  62. background: none; }
  63. .justified-gallery > .entry-visible > img,
  64. .justified-gallery > .entry-visible > a > img {
  65. filter: "alpha(opacity=100)";
  66. opacity: 1;
  67. -webkit-transition: opacity 500ms ease-in;
  68. transition: opacity 500ms ease-in; }
  69. .justified-gallery > .jg-filtered {
  70. display: none; }
  71. .justified-gallery > .spinner {
  72. position: absolute;
  73. bottom: 0;
  74. margin-left: -24px;
  75. padding: 10px 0 10px 0;
  76. left: 50%;
  77. filter: "alpha(opacity=100)";
  78. opacity: 1;
  79. overflow: initial; }
  80. .justified-gallery > .spinner > span {
  81. display: inline-block;
  82. filter: "alpha(opacity=0)";
  83. opacity: 0;
  84. width: 8px;
  85. height: 8px;
  86. margin: 0 4px 0 4px;
  87. background-color: #000;
  88. border-radius: 6px; }
  89. /* THEME COLORs
  90. ========================================================================== */
  91. /* Looks good on chrome default color profile */
  92. /* looks good in sRGB but washed up on chrome default
  93. $color-primary: #826bb0;
  94. $color-success: #31cb55;
  95. $color-info: #5e93ec;
  96. $color-warning: #eec559;
  97. $color-danger: #dc4b92;
  98. $color-fusion: darken(desaturate(adjust-hue($color-primary, 5), 80%), 25%); */
  99. /* Color Polarity
  100. ========================================================================== */
  101. /* PAINTBUCKET MIXER
  102. ========================================================================== */
  103. /* the grays */
  104. /* the sapphires */
  105. /* the emeralds */
  106. /* the amethyths */
  107. /* the topaz */
  108. /* the rubies */
  109. /* the graphites */
  110. /* Define universal border difition (div outlines, etc)
  111. ========================================================================== */
  112. /* MOBILE BREAKPOINT & GUTTERS (contains some bootstrap responsive overrides)
  113. ========================================================================== */
  114. /* define when mobile menu activates, here we are declearing (lg) so it targets the one after it */
  115. /* bootstrap reference xs: 0, sm: 544px, md: 768px, lg: 992px, xl: 1200px*/
  116. /* global var used for spacing*/
  117. /* Uniform Padding variable */
  118. /* Heads up! This is a global scoped variable - changing may impact the whole template */
  119. /* BOOTSTRAP OVERRIDES (bootstrap variables)
  120. ========================================================================== */
  121. /* usage: theme-colors("primary"); */
  122. /* forms */
  123. /*$input-height: calc(2.25rem + 1px); //I had to add this because the input gruops was having improper height for some reason... */
  124. /* links */
  125. /* checkbox */
  126. /*$custom-file-height-inner: calc(2.25rem - 1px);*/
  127. /* not part of bootstrap variable */
  128. /* custom checkbox */
  129. /* custom range */
  130. /* select */
  131. /* badge */
  132. /* cards */
  133. /*border radius*/
  134. /* alert */
  135. /* toast */
  136. /* breadcrumb */
  137. /* input button */
  138. /* nav link */
  139. /* nav, tabs, pills */
  140. /* tables */
  141. /* dropdowns */
  142. /* dropdowns sizes */
  143. /* popovers */
  144. /* tooltips */
  145. /* modal */
  146. /* reference guide
  147. http://www.standardista.com/px-to-rem-conversion-if-root-font-size-is-16px/
  148. 8px = 0.5rem
  149. 9px = 0.5625rem
  150. 10px = 0.625rem
  151. 11px = 0.6875rem
  152. 12px = 0.75rem
  153. 13px = 0.8125rem
  154. 14px = 0.875rem
  155. 15px = 0.9375rem
  156. 16px = 1rem (base)
  157. 17px = 1.0625rem
  158. 18px = 1.125rem
  159. 19px = 1.1875rem
  160. 20px = 1.25rem
  161. 21px = 1.3125rem
  162. 22px = 1.375rem
  163. 24px = 1.5rem
  164. 25px = 1.5625rem
  165. 26px = 1.625rem
  166. 28px = 1.75rem
  167. 30px = 1.875rem
  168. 32px = 2rem
  169. 34px = 2.125rem
  170. 36px = 2.25rem
  171. 38px = 2.375rem
  172. 40px = 2.5rem
  173. */
  174. /* Fonts */
  175. /* carousel */
  176. /* BASE VARS
  177. ========================================================================== */
  178. /* font vars below will auto change to rem values using function rem($value)*/
  179. /* 11px */
  180. /* 12px */
  181. /* 12.5px */
  182. /* 14px */
  183. /* 15px */
  184. /* 16px */
  185. /* 28px */
  186. /* Font Family
  187. ========================================================================== */
  188. /*hint: you can also try the font called 'Poppins' by replacing the font 'Roboto' */
  189. /* ANIMATIONS
  190. ========================================================================== */
  191. /* this addresses all animation related to nav hide to nav minify */
  192. /* Z-INDEX declearation
  193. ========================================================================== */
  194. /* we adjust bootstrap z-index to be higher than our higest z-index*/
  195. /* CUSTOM ICON PREFIX
  196. ========================================================================== */
  197. /* PRINT CSS (landscape or portrait)
  198. ========================================================================== */
  199. /* landscape or portrait */
  200. /* auto, letter */
  201. /* Common Element Variables
  202. ========================================================================== */
  203. /* Z-index decleartion "birds eye view"
  204. ========================================================================== */
  205. /* Components
  206. ========================================================================== */
  207. /* PAGE HEADER STUFF
  208. ========================================================================== */
  209. /* colors */
  210. /* height */
  211. /* logo */
  212. /* try not to go beywond the width of $main_nav_width value */
  213. /* you may need to change this depending on your logo design */
  214. /* adjust this as you see fit : left, right, center */
  215. /* icon font size (not button) */
  216. /* search input box */
  217. /* suggestion: #ccced0*/
  218. /* btn */
  219. /* dropdown: app list */
  220. /* badge */
  221. /* COMPONENTS & MODS */
  222. /* NAVIGATION STUFF
  223. Guide:
  224. aside.page-sidebar ($nav-width, $nav-background)
  225. .page-logo
  226. .primary-nav
  227. .info-card
  228. ul.nav-menu
  229. li
  230. a (parent level-0..., $nav-link-color, $nav-link-hover-color, $nav-link-hover-bg-color, $nav-link-hover-left-border-color)
  231. icon
  232. span
  233. collapse-sign
  234. ul.nav-menu-sub-one
  235. li
  236. a ($nav-level-1... $nav-sub-link-height)
  237. span
  238. collapse-sign
  239. ul.nav-menu-sub-two
  240. li
  241. a ($nav-level-2... $nav-sub-link-height)
  242. span
  243. p.nav-title ($nav-title-*...)
  244. ========================================================================== */
  245. /* main navigation */
  246. /* left panel */
  247. /* nav parent level-0 */
  248. /* nav icon sizes */
  249. /* badge default */
  250. /* all child */
  251. /* nav title */
  252. /* nav Minify */
  253. /* when the menu pops on hover */
  254. /* navigation Width */
  255. /* partial visibility of the menu */
  256. /* top navigation */
  257. /* nav Info Card (appears below the logo) */
  258. /* width is auto */
  259. /* nav DL labels for all child */
  260. /* will be pulled to left as a negative value */
  261. /* MISC Settings
  262. ========================================================================== */
  263. /* List Table */
  264. /* PAGE SETTINGS
  265. ========================================================================== */
  266. /* PAGE BREADCRUMB
  267. ========================================================================== */
  268. /* PAGE COMPONENT PANELS
  269. ========================================================================== */
  270. /* PAGE COMPONENT PROGRESSBARS
  271. ========================================================================== */
  272. /* PAGE COMPONENT MESSENGER
  273. ========================================================================== */
  274. /* FOOTER
  275. ========================================================================== */
  276. /* GLOBALS
  277. ========================================================================== */
  278. /* ACCESSIBILITIES */
  279. /* SHORTCUT BUTTON (appears on bottom right of the page) */
  280. /* GULP WARNINGS */
  281. @font-face {
  282. font-family: 'lg';
  283. src: url("./fonts/lg.eot?n1z373");
  284. 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");
  285. font-weight: normal;
  286. font-style: normal; }
  287. .lg-icon {
  288. font-family: 'lg';
  289. speak: none;
  290. font-style: normal;
  291. font-weight: normal;
  292. font-variant: normal;
  293. text-transform: none;
  294. line-height: 1;
  295. /* Better Font Rendering =========== */
  296. -webkit-font-smoothing: antialiased;
  297. -moz-osx-font-smoothing: grayscale; }
  298. .lg-actions .lg-next, .lg-actions .lg-prev {
  299. background-color: rgba(0, 0, 0, 0.45);
  300. border-radius: 2px;
  301. color: #999;
  302. cursor: pointer;
  303. display: block;
  304. font-size: 22px;
  305. margin-top: -10px;
  306. padding: 8px 10px 9px;
  307. position: absolute;
  308. top: 50%;
  309. z-index: 2180;
  310. border: none;
  311. outline: none; }
  312. .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  313. pointer-events: none;
  314. opacity: 0.5; }
  315. .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  316. color: #FFF; }
  317. .lg-actions .lg-next {
  318. right: 20px; }
  319. .lg-actions .lg-next:before {
  320. content: "\e095"; }
  321. .lg-actions .lg-prev {
  322. left: 20px; }
  323. .lg-actions .lg-prev:after {
  324. content: "\e094"; }
  325. @-webkit-keyframes lg-right-end {
  326. 0% {
  327. left: 0; }
  328. 50% {
  329. left: -30px; }
  330. 100% {
  331. left: 0; } }
  332. @keyframes lg-right-end {
  333. 0% {
  334. left: 0; }
  335. 50% {
  336. left: -30px; }
  337. 100% {
  338. left: 0; } }
  339. @-webkit-keyframes lg-left-end {
  340. 0% {
  341. left: 0; }
  342. 50% {
  343. left: 30px; }
  344. 100% {
  345. left: 0; } }
  346. @keyframes lg-left-end {
  347. 0% {
  348. left: 0; }
  349. 50% {
  350. left: 30px; }
  351. 100% {
  352. left: 0; } }
  353. .lg-outer.lg-right-end .lg-object {
  354. -webkit-animation: lg-right-end 0.3s;
  355. animation: lg-right-end 0.3s;
  356. position: relative; }
  357. .lg-outer.lg-left-end .lg-object {
  358. -webkit-animation: lg-left-end 0.3s;
  359. animation: lg-left-end 0.3s;
  360. position: relative; }
  361. .lg-toolbar {
  362. z-index: 2182;
  363. left: 0;
  364. position: absolute;
  365. top: 0;
  366. width: 100%;
  367. background-color: rgba(0, 0, 0, 0.45); }
  368. .lg-toolbar .lg-icon {
  369. color: #999;
  370. cursor: pointer;
  371. float: right;
  372. font-size: 24px;
  373. height: 47px;
  374. line-height: 27px;
  375. padding: 10px 0;
  376. text-align: center;
  377. width: 50px;
  378. text-decoration: none !important;
  379. outline: medium none;
  380. -webkit-transition: color 0.2s linear;
  381. transition: color 0.2s linear; }
  382. .lg-toolbar .lg-icon:hover {
  383. color: #FFF; }
  384. .lg-toolbar .lg-close:after {
  385. content: "\e070"; }
  386. .lg-toolbar .lg-download:after {
  387. content: "\e0f2"; }
  388. .lg-sub-html {
  389. background-color: transparent;
  390. bottom: 0;
  391. color: #EEE;
  392. font-size: 16px;
  393. left: 0;
  394. padding: 10px 40px;
  395. position: fixed;
  396. right: 0;
  397. text-align: center;
  398. z-index: 2180; }
  399. .lg-sub-html h4 {
  400. margin: 0;
  401. font-size: 13px;
  402. font-weight: bold; }
  403. .lg-sub-html p {
  404. font-size: 12px;
  405. margin: 5px 0 0; }
  406. #lg-counter {
  407. color: #999;
  408. display: inline-block;
  409. font-size: 1rem;
  410. padding-left: 20px;
  411. padding-top: 12px;
  412. vertical-align: middle; }
  413. .lg-toolbar, .lg-prev, .lg-next {
  414. opacity: 1;
  415. -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, color 0.2s linear;
  416. -webkit-transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  417. transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  418. transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  419. transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s; }
  420. .lg-hide-items .lg-prev {
  421. opacity: 0;
  422. -webkit-transform: translate3d(-10px, 0, 0);
  423. transform: translate3d(-10px, 0, 0); }
  424. .lg-hide-items .lg-next {
  425. opacity: 0;
  426. -webkit-transform: translate3d(10px, 0, 0);
  427. transform: translate3d(10px, 0, 0); }
  428. .lg-hide-items .lg-toolbar {
  429. opacity: 0;
  430. -webkit-transform: translate3d(0, -10px, 0);
  431. transform: translate3d(0, -10px, 0); }
  432. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  433. -webkit-transform: scale3d(0.5, 0.5, 0.5);
  434. transform: scale3d(0.5, 0.5, 0.5);
  435. opacity: 0;
  436. -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  437. -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  438. transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  439. transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  440. transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  441. -webkit-transform-origin: 50% 50%;
  442. transform-origin: 50% 50%; }
  443. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  444. -webkit-transform: scale3d(1, 1, 1);
  445. transform: scale3d(1, 1, 1);
  446. opacity: 1; }
  447. .lg-outer .lg-thumb-outer {
  448. background-color: #232323;
  449. bottom: 0;
  450. position: absolute;
  451. width: 100%;
  452. z-index: 2180;
  453. max-height: 350px;
  454. -webkit-transform: translate3d(0, 100%, 0);
  455. transform: translate3d(0, 100%, 0);
  456. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  457. transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  458. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  459. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
  460. .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  461. cursor: -webkit-grab;
  462. cursor: -o-grab;
  463. cursor: -ms-grab;
  464. cursor: grab; }
  465. .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  466. cursor: move;
  467. cursor: -webkit-grabbing;
  468. cursor: -o-grabbing;
  469. cursor: -ms-grabbing;
  470. cursor: grabbing; }
  471. .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  472. -webkit-transition-duration: 0s !important;
  473. transition-duration: 0s !important; }
  474. .lg-outer.lg-thumb-open .lg-thumb-outer {
  475. -webkit-transform: translate3d(0, 0%, 0);
  476. transform: translate3d(0, 0%, 0); }
  477. .lg-outer .lg-thumb {
  478. padding: 10px 0;
  479. height: 100%;
  480. margin-bottom: -5px; }
  481. .lg-outer .lg-thumb-item {
  482. border-radius: 5px;
  483. cursor: pointer;
  484. float: left;
  485. overflow: hidden;
  486. height: 100%;
  487. border: 2px solid #FFF;
  488. border-radius: 4px;
  489. margin-bottom: 5px; }
  490. @media (min-width: 1025px) {
  491. .lg-outer .lg-thumb-item {
  492. -webkit-transition: border-color 0.25s ease;
  493. transition: border-color 0.25s ease; } }
  494. .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  495. border-color: #a90707; }
  496. .lg-outer .lg-thumb-item img {
  497. width: 100%;
  498. height: 100%;
  499. -o-object-fit: cover;
  500. object-fit: cover; }
  501. .lg-outer.lg-has-thumb .lg-item {
  502. padding-bottom: 120px; }
  503. .lg-outer.lg-can-toggle .lg-item {
  504. padding-bottom: 0; }
  505. .lg-outer.lg-pull-caption-up .lg-sub-html {
  506. -webkit-transition: bottom 0.25s ease;
  507. transition: bottom 0.25s ease; }
  508. .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  509. bottom: 100px; }
  510. .lg-outer .lg-toogle-thumb {
  511. background-color: #232323;
  512. border-radius: 2px 2px 0 0;
  513. color: #999;
  514. cursor: pointer;
  515. font-size: 24px;
  516. height: 39px;
  517. line-height: 27px;
  518. padding: 5px 0;
  519. position: absolute;
  520. right: 20px;
  521. text-align: center;
  522. top: -39px;
  523. width: 50px; }
  524. .lg-outer .lg-toogle-thumb:after {
  525. content: "\e1ff"; }
  526. .lg-outer .lg-toogle-thumb:hover {
  527. color: #FFF; }
  528. .lg-outer .lg-video-cont {
  529. display: inline-block;
  530. vertical-align: middle;
  531. max-width: 1140px;
  532. max-height: 100%;
  533. width: 100%;
  534. padding: 0 5px; }
  535. .lg-outer .lg-video {
  536. width: 100%;
  537. height: 0;
  538. padding-bottom: 56.25%;
  539. overflow: hidden;
  540. position: relative; }
  541. .lg-outer .lg-video .lg-object {
  542. display: inline-block;
  543. position: absolute;
  544. top: 0;
  545. left: 0;
  546. width: 100% !important;
  547. height: 100% !important; }
  548. .lg-outer .lg-video .lg-video-play {
  549. width: 84px;
  550. height: 59px;
  551. position: absolute;
  552. left: 50%;
  553. top: 50%;
  554. margin-left: -42px;
  555. margin-top: -30px;
  556. z-index: 2180;
  557. cursor: pointer; }
  558. .lg-outer .lg-has-iframe .lg-video {
  559. -webkit-overflow-scrolling: touch;
  560. overflow: auto; }
  561. .lg-outer .lg-has-vimeo .lg-video-play {
  562. background: url("../../../img/vimeo-play.png") no-repeat scroll 0 0 transparent; }
  563. .lg-outer .lg-has-vimeo:hover .lg-video-play {
  564. background: url("../../../img/vimeo-play.png") no-repeat scroll 0 -58px transparent; }
  565. .lg-outer .lg-has-html5 .lg-video-play {
  566. background: transparent url("../../../img/video-play.png") no-repeat scroll 0 0;
  567. height: 64px;
  568. margin-left: -32px;
  569. margin-top: -32px;
  570. width: 64px;
  571. opacity: 0.8; }
  572. .lg-outer .lg-has-html5:hover .lg-video-play {
  573. opacity: 1; }
  574. .lg-outer .lg-has-youtube .lg-video-play {
  575. background: url("../../../img/youtube-play.png") no-repeat scroll 0 0 transparent; }
  576. .lg-outer .lg-has-youtube:hover .lg-video-play {
  577. background: url("../../../img/youtube-play.png") no-repeat scroll 0 -60px transparent; }
  578. .lg-outer .lg-video-object {
  579. width: 100% !important;
  580. height: 100% !important;
  581. position: absolute;
  582. top: 0;
  583. left: 0; }
  584. .lg-outer .lg-has-video .lg-video-object {
  585. visibility: hidden; }
  586. .lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  587. display: none; }
  588. .lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  589. visibility: visible; }
  590. .lg-progress-bar {
  591. background-color: #333;
  592. height: 5px;
  593. left: 0;
  594. position: absolute;
  595. top: 0;
  596. width: 100%;
  597. z-index: 2183;
  598. opacity: 0;
  599. -webkit-transition: opacity 0.08s ease 0s;
  600. transition: opacity 0.08s ease 0s; }
  601. .lg-progress-bar .lg-progress {
  602. background-color: #a90707;
  603. height: 5px;
  604. width: 0; }
  605. .lg-progress-bar.lg-start .lg-progress {
  606. width: 100%; }
  607. .lg-show-autoplay .lg-progress-bar {
  608. opacity: 1; }
  609. .lg-autoplay-button:after {
  610. content: "\e01d"; }
  611. .lg-show-autoplay .lg-autoplay-button:after {
  612. content: "\e01a"; }
  613. .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 {
  614. -webkit-transition-duration: 0s;
  615. transition-duration: 0s; }
  616. .lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  617. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  618. transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  619. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  620. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  621. .lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  622. -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  623. transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  624. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  625. -webkit-transform: translate3d(0, 0, 0);
  626. transform: translate3d(0, 0, 0);
  627. -webkit-backface-visibility: hidden;
  628. backface-visibility: hidden; }
  629. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  630. -webkit-transform: scale3d(1, 1, 1);
  631. transform: scale3d(1, 1, 1);
  632. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  633. -webkit-transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  634. transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  635. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  636. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  637. -webkit-transform-origin: 0 0;
  638. transform-origin: 0 0;
  639. -webkit-backface-visibility: hidden;
  640. backface-visibility: hidden; }
  641. #lg-zoom-in:after {
  642. content: "\e311"; }
  643. #lg-actual-size {
  644. font-size: 20px; }
  645. #lg-actual-size:after {
  646. content: "\e033"; }
  647. #lg-zoom-out {
  648. opacity: 0.5;
  649. pointer-events: none; }
  650. #lg-zoom-out:after {
  651. content: "\e312"; }
  652. .lg-zoomed #lg-zoom-out {
  653. opacity: 1;
  654. pointer-events: auto; }
  655. .lg-outer .lg-pager-outer {
  656. bottom: 60px;
  657. left: 0;
  658. position: absolute;
  659. right: 0;
  660. text-align: center;
  661. z-index: 2180;
  662. height: 10px; }
  663. .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  664. overflow: visible; }
  665. .lg-outer .lg-pager-cont {
  666. cursor: pointer;
  667. display: inline-block;
  668. overflow: hidden;
  669. position: relative;
  670. vertical-align: top;
  671. margin: 0 5px; }
  672. .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  673. opacity: 1;
  674. -webkit-transform: translate3d(0, 0, 0);
  675. transform: translate3d(0, 0, 0); }
  676. .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  677. -webkit-box-shadow: 0 0 0 2px white inset;
  678. box-shadow: 0 0 0 2px white inset; }
  679. .lg-outer .lg-pager-thumb-cont {
  680. background-color: #fff;
  681. color: #FFF;
  682. bottom: 100%;
  683. height: 83px;
  684. left: 0;
  685. margin-bottom: 20px;
  686. margin-left: -60px;
  687. opacity: 0;
  688. padding: 5px;
  689. position: absolute;
  690. width: 120px;
  691. border-radius: 3px;
  692. -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  693. transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  694. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  695. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  696. -webkit-transform: translate3d(0, 5px, 0);
  697. transform: translate3d(0, 5px, 0); }
  698. .lg-outer .lg-pager-thumb-cont img {
  699. width: 100%;
  700. height: 100%; }
  701. .lg-outer .lg-pager {
  702. background-color: rgba(255, 255, 255, 0.5);
  703. border-radius: 50%;
  704. -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  705. box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  706. display: block;
  707. height: 12px;
  708. -webkit-transition: box-shadow 0.3s ease 0s;
  709. -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  710. transition: -webkit-box-shadow 0.3s ease 0s;
  711. transition: box-shadow 0.3s ease 0s;
  712. transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  713. width: 12px; }
  714. .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  715. -webkit-box-shadow: 0 0 0 8px white inset;
  716. box-shadow: 0 0 0 8px white inset; }
  717. .lg-outer .lg-caret {
  718. border-left: 10px solid transparent;
  719. border-right: 10px solid transparent;
  720. border-top: 10px dashed;
  721. bottom: -10px;
  722. display: inline-block;
  723. height: 0;
  724. left: 50%;
  725. margin-left: -5px;
  726. position: absolute;
  727. vertical-align: middle;
  728. width: 0; }
  729. .lg-fullscreen:after {
  730. content: "\e20c"; }
  731. .lg-fullscreen-on .lg-fullscreen:after {
  732. content: "\e20d"; }
  733. .lg-outer #lg-dropdown-overlay {
  734. background-color: rgba(0, 0, 0, 0.25);
  735. bottom: 0;
  736. cursor: default;
  737. left: 0;
  738. position: fixed;
  739. right: 0;
  740. top: 0;
  741. z-index: 2181;
  742. opacity: 0;
  743. visibility: hidden;
  744. -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  745. transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }
  746. .lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  747. -webkit-transition-delay: 0s;
  748. transition-delay: 0s;
  749. -webkit-transform: translate3d(0, 0px, 0);
  750. transform: translate3d(0, 0px, 0);
  751. opacity: 1;
  752. visibility: visible; }
  753. .lg-outer.lg-dropdown-active #lg-share {
  754. color: #FFF; }
  755. .lg-outer .lg-dropdown {
  756. background-color: #fff;
  757. border-radius: 2px;
  758. font-size: 14px;
  759. list-style-type: none;
  760. margin: 0;
  761. padding: 10px 0;
  762. position: absolute;
  763. right: 0;
  764. text-align: left;
  765. top: 50px;
  766. opacity: 0;
  767. visibility: hidden;
  768. -webkit-transform: translate3d(0, 5px, 0);
  769. transform: translate3d(0, 5px, 0);
  770. -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  771. -webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  772. transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  773. transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  774. transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s; }
  775. .lg-outer .lg-dropdown:after {
  776. content: "";
  777. display: block;
  778. height: 0;
  779. width: 0;
  780. position: absolute;
  781. border: 8px solid transparent;
  782. border-bottom-color: #FFF;
  783. right: 16px;
  784. top: -16px; }
  785. .lg-outer .lg-dropdown > li:last-child {
  786. margin-bottom: 0px; }
  787. .lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  788. color: #333; }
  789. .lg-outer .lg-dropdown a {
  790. color: #333;
  791. display: block;
  792. white-space: pre;
  793. padding: 4px 12px;
  794. font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  795. font-size: 12px; }
  796. .lg-outer .lg-dropdown a:hover {
  797. background-color: rgba(0, 0, 0, 0.07); }
  798. .lg-outer .lg-dropdown .lg-dropdown-text {
  799. display: inline-block;
  800. line-height: 1;
  801. margin-top: -3px;
  802. vertical-align: middle; }
  803. .lg-outer .lg-dropdown .lg-icon {
  804. color: #333;
  805. display: inline-block;
  806. float: none;
  807. font-size: 20px;
  808. height: auto;
  809. line-height: 1;
  810. margin-right: 8px;
  811. padding: 0;
  812. vertical-align: middle;
  813. width: auto; }
  814. .lg-outer #lg-share {
  815. position: relative; }
  816. .lg-outer #lg-share:after {
  817. content: "\e80d"; }
  818. .lg-outer #lg-share-facebook .lg-icon {
  819. color: #3b5998; }
  820. .lg-outer #lg-share-facebook .lg-icon:after {
  821. content: "\e901"; }
  822. .lg-outer #lg-share-twitter .lg-icon {
  823. color: #00aced; }
  824. .lg-outer #lg-share-twitter .lg-icon:after {
  825. content: "\e904"; }
  826. .lg-outer #lg-share-googleplus .lg-icon {
  827. color: #dd4b39; }
  828. .lg-outer #lg-share-googleplus .lg-icon:after {
  829. content: "\e902"; }
  830. .lg-outer #lg-share-pinterest .lg-icon {
  831. color: #cb2027; }
  832. .lg-outer #lg-share-pinterest .lg-icon:after {
  833. content: "\e903"; }
  834. .lg-group:after {
  835. content: "";
  836. display: table;
  837. clear: both; }
  838. .lg-outer {
  839. width: 100%;
  840. height: 100%;
  841. position: fixed;
  842. top: 0;
  843. left: 0;
  844. z-index: 2150;
  845. text-align: left;
  846. opacity: 0;
  847. -webkit-transition: opacity 0.15s ease 0s;
  848. transition: opacity 0.15s ease 0s; }
  849. .lg-outer * {
  850. -webkit-box-sizing: border-box;
  851. box-sizing: border-box; }
  852. .lg-outer.lg-visible {
  853. opacity: 1; }
  854. .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 {
  855. -webkit-transition-duration: inherit !important;
  856. transition-duration: inherit !important;
  857. -webkit-transition-timing-function: inherit !important;
  858. transition-timing-function: inherit !important; }
  859. .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 {
  860. -webkit-transition-duration: 0s !important;
  861. transition-duration: 0s !important;
  862. opacity: 1; }
  863. .lg-outer.lg-grab img.lg-object {
  864. cursor: -webkit-grab;
  865. cursor: -o-grab;
  866. cursor: -ms-grab;
  867. cursor: grab; }
  868. .lg-outer.lg-grabbing img.lg-object {
  869. cursor: move;
  870. cursor: -webkit-grabbing;
  871. cursor: -o-grabbing;
  872. cursor: -ms-grabbing;
  873. cursor: grabbing; }
  874. .lg-outer .lg {
  875. height: 100%;
  876. width: 100%;
  877. position: relative;
  878. overflow: hidden;
  879. margin-left: auto;
  880. margin-right: auto;
  881. max-width: 100%;
  882. max-height: 100%; }
  883. .lg-outer .lg-inner {
  884. width: 100%;
  885. height: 100%;
  886. position: absolute;
  887. left: 0;
  888. top: 0;
  889. white-space: nowrap; }
  890. .lg-outer .lg-item {
  891. background: url("../../../img/loading.gif") no-repeat scroll center center transparent;
  892. display: none !important; }
  893. .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  894. display: inline-block !important; }
  895. .lg-outer.lg-css .lg-current {
  896. display: inline-block !important; }
  897. .lg-outer .lg-item, .lg-outer .lg-img-wrap {
  898. display: inline-block;
  899. text-align: center;
  900. position: absolute;
  901. width: 100%;
  902. height: 100%; }
  903. .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  904. content: "";
  905. display: inline-block;
  906. height: 50%;
  907. width: 1px;
  908. margin-right: -1px; }
  909. .lg-outer .lg-img-wrap {
  910. position: absolute;
  911. padding: 0 5px;
  912. left: 0;
  913. right: 0;
  914. top: 0;
  915. bottom: 0; }
  916. .lg-outer .lg-item.lg-complete {
  917. background-image: none; }
  918. .lg-outer .lg-item.lg-current {
  919. z-index: 2160; }
  920. .lg-outer .lg-image {
  921. display: inline-block;
  922. vertical-align: middle;
  923. max-width: 100%;
  924. max-height: 100%;
  925. width: auto !important;
  926. height: auto !important; }
  927. .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  928. opacity: 0;
  929. -webkit-transition: opacity 0.15s ease 0s;
  930. transition: opacity 0.15s ease 0s; }
  931. .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 {
  932. opacity: 1; }
  933. .lg-outer .lg-empty-html {
  934. display: none; }
  935. .lg-outer.lg-hide-download #lg-download {
  936. display: none; }
  937. .lg-backdrop {
  938. position: fixed;
  939. top: 0;
  940. left: 0;
  941. right: 0;
  942. bottom: 0;
  943. z-index: 2140;
  944. background-color: #000;
  945. opacity: 0;
  946. -webkit-transition: opacity 0.15s ease 0s;
  947. transition: opacity 0.15s ease 0s; }
  948. .lg-backdrop.in {
  949. opacity: 0.9; }
  950. .lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  951. -webkit-transition: none 0s ease 0s !important;
  952. transition: none 0s ease 0s !important; }
  953. .lg-css3.lg-use-css3 .lg-item {
  954. -webkit-backface-visibility: hidden;
  955. backface-visibility: hidden; }
  956. .lg-css3.lg-use-left .lg-item {
  957. -webkit-backface-visibility: hidden;
  958. backface-visibility: hidden; }
  959. .lg-css3.lg-fade .lg-item {
  960. opacity: 0; }
  961. .lg-css3.lg-fade .lg-item.lg-current {
  962. opacity: 1; }
  963. .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 {
  964. -webkit-transition: opacity 0.1s ease 0s;
  965. transition: opacity 0.1s ease 0s; }
  966. .lg-css3.lg-slide.lg-use-css3 .lg-item {
  967. opacity: 0; }
  968. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  969. -webkit-transform: translate3d(-100%, 0, 0);
  970. transform: translate3d(-100%, 0, 0); }
  971. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  972. -webkit-transform: translate3d(100%, 0, 0);
  973. transform: translate3d(100%, 0, 0); }
  974. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  975. -webkit-transform: translate3d(0, 0, 0);
  976. transform: translate3d(0, 0, 0);
  977. opacity: 1; }
  978. .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 {
  979. -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  980. -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  981. transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  982. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  983. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s; }
  984. .lg-css3.lg-slide.lg-use-left .lg-item {
  985. opacity: 0;
  986. position: absolute;
  987. left: 0; }
  988. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  989. left: -100%; }
  990. .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  991. left: 100%; }
  992. .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  993. left: 0;
  994. opacity: 1; }
  995. .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 {
  996. -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  997. transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  998. .lg-icon {
  999. font-family: 'Font Awesome 5 Pro'; }
  1000. .lg-actions .lg-next:before {
  1001. content: "\f178"; }
  1002. .lg-actions .lg-prev:after {
  1003. content: "\f177"; }
  1004. .lg-outer .lg-toogle-thumb:after {
  1005. content: "\f07d"; }
  1006. .lg-toolbar .lg-close:after {
  1007. content: "\f00d"; }
  1008. .lg-toolbar .lg-download:after {
  1009. content: "\f33d"; }
  1010. .lg-toolbar .lg-fullscreen:after {
  1011. content: "\f320"; }
  1012. .lg-autoplay-button:after {
  1013. content: "\f144"; }
  1014. .lg-show-autoplay .lg-autoplay-button:after {
  1015. content: "\f28b"; }
  1016. #lg-zoom-in:after {
  1017. content: "\f00e"; }
  1018. #lg-zoom-out:after {
  1019. content: "\f010"; }
  1020. #lg-actual-size:after {
  1021. content: "\f002"; }
  1022. .lg-outer #lg-share:after {
  1023. content: "\f1e0"; }
  1024. #lg-download {
  1025. border-bottom: 0 !important; }
  1026. .lg-toolbar {
  1027. background: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0)));
  1028. background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
  1029. padding-right: 1rem; }
  1030. .lg-toolbar .lg-icon {
  1031. height: 5rem;
  1032. line-height: 5rem;
  1033. padding: 0; }
  1034. #lg-counter {
  1035. padding-top: 26px; }
  1036. .lg-outer .lg-toogle-thumb {
  1037. font-size: 21px;
  1038. height: 50px;
  1039. top: -50px;
  1040. line-height: 50px;
  1041. padding: 0;
  1042. border-radius: 50% 50% 0 0; }
  1043. .lg-outer .lg-toogle-thumb .lg-thumb {
  1044. padding: 1rem 0; }
  1045. .lg-actions .lg-next,
  1046. .lg-actions .lg-prev {
  1047. height: 50px;
  1048. width: 50px;
  1049. line-height: 50px;
  1050. padding: 0;
  1051. border-radius: 50%;
  1052. -webkit-transition: all 0.2s ease;
  1053. transition: all 0.2s ease; }
  1054. .lg-actions .lg-next:hover,
  1055. .lg-actions .lg-prev:hover {
  1056. background-color: #2196F3; }
  1057. .lg-actions .lg-next:active,
  1058. .lg-actions .lg-prev:active {
  1059. -webkit-transform: scale(0.95);
  1060. transform: scale(0.95); }
  1061. .lg-outer .lg-thumb-item.active,
  1062. .lg-outer .lg-thumb-item:hover {
  1063. border-color: #fd3995; }
  1064. .lg-toolbar .lg-icon {
  1065. font-size: 1.3rem; }
  1066. /*# sourceMappingURL=lightgallery.bundle.css.map */