lightgallery.bundle-rtl.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176
  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. right: 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. right: 0;
  45. left: 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-right: -24px;
  75. padding: 10px 0 10px 0;
  76. right: 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. @font-face {
  281. font-family: 'lg';
  282. src: url("./fonts/lg.eot?n1z373");
  283. 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");
  284. font-weight: normal;
  285. font-style: normal; }
  286. .lg-icon {
  287. font-family: 'lg';
  288. speak: none;
  289. font-style: normal;
  290. font-weight: normal;
  291. font-variant: normal;
  292. text-transform: none;
  293. line-height: 1;
  294. /* Better Font Rendering =========== */
  295. -webkit-font-smoothing: antialiased;
  296. -moz-osx-font-smoothing: grayscale; }
  297. .lg-actions .lg-next, .lg-actions .lg-prev {
  298. background-color: rgba(0, 0, 0, 0.45);
  299. border-radius: 2px;
  300. color: #999;
  301. cursor: pointer;
  302. display: block;
  303. font-size: 22px;
  304. margin-top: -10px;
  305. padding: 8px 10px 9px;
  306. position: absolute;
  307. top: 50%;
  308. z-index: 2180;
  309. border: none;
  310. outline: none; }
  311. .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  312. pointer-events: none;
  313. opacity: 0.5; }
  314. .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  315. color: #FFF; }
  316. .lg-actions .lg-next {
  317. left: 20px; }
  318. .lg-actions .lg-next:before {
  319. content: "\e095"; }
  320. .lg-actions .lg-prev {
  321. right: 20px; }
  322. .lg-actions .lg-prev:after {
  323. content: "\e094"; }
  324. @-webkit-keyframes lg-right-end {
  325. 0% {
  326. right: 0; }
  327. 50% {
  328. right: -30px; }
  329. 100% {
  330. right: 0; } }
  331. @keyframes lg-right-end {
  332. 0% {
  333. right: 0; }
  334. 50% {
  335. right: -30px; }
  336. 100% {
  337. right: 0; } }
  338. @-webkit-keyframes lg-left-end {
  339. 0% {
  340. right: 0; }
  341. 50% {
  342. right: 30px; }
  343. 100% {
  344. right: 0; } }
  345. @keyframes lg-left-end {
  346. 0% {
  347. right: 0; }
  348. 50% {
  349. right: 30px; }
  350. 100% {
  351. right: 0; } }
  352. .lg-outer.lg-right-end .lg-object {
  353. -webkit-animation: lg-right-end 0.3s;
  354. animation: lg-right-end 0.3s;
  355. position: relative; }
  356. .lg-outer.lg-left-end .lg-object {
  357. -webkit-animation: lg-left-end 0.3s;
  358. animation: lg-left-end 0.3s;
  359. position: relative; }
  360. .lg-toolbar {
  361. z-index: 2182;
  362. right: 0;
  363. position: absolute;
  364. top: 0;
  365. width: 100%;
  366. background-color: rgba(0, 0, 0, 0.45); }
  367. .lg-toolbar .lg-icon {
  368. color: #999;
  369. cursor: pointer;
  370. float: left;
  371. font-size: 24px;
  372. height: 47px;
  373. line-height: 27px;
  374. padding: 10px 0;
  375. text-align: center;
  376. width: 50px;
  377. text-decoration: none !important;
  378. outline: medium none;
  379. -webkit-transition: color 0.2s linear;
  380. transition: color 0.2s linear; }
  381. .lg-toolbar .lg-icon:hover {
  382. color: #FFF; }
  383. .lg-toolbar .lg-close:after {
  384. content: "\e070"; }
  385. .lg-toolbar .lg-download:after {
  386. content: "\e0f2"; }
  387. .lg-sub-html {
  388. background-color: transparent;
  389. bottom: 0;
  390. color: #EEE;
  391. font-size: 16px;
  392. right: 0;
  393. padding: 10px 40px;
  394. position: fixed;
  395. left: 0;
  396. text-align: center;
  397. z-index: 2180; }
  398. .lg-sub-html h4 {
  399. margin: 0;
  400. font-size: 13px;
  401. font-weight: bold; }
  402. .lg-sub-html p {
  403. font-size: 12px;
  404. margin: 5px 0 0; }
  405. #lg-counter {
  406. color: #999;
  407. display: inline-block;
  408. font-size: 1rem;
  409. padding-right: 20px;
  410. padding-top: 12px;
  411. vertical-align: middle; }
  412. .lg-toolbar, .lg-prev, .lg-next {
  413. opacity: 1;
  414. -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;
  415. -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;
  416. 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: 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;
  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, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s; }
  419. .lg-hide-items .lg-prev {
  420. opacity: 0;
  421. -webkit-transform: translate3d(10px, 0, 0);
  422. transform: translate3d(10px, 0, 0); }
  423. .lg-hide-items .lg-next {
  424. opacity: 0;
  425. -webkit-transform: translate3d(-10px, 0, 0);
  426. transform: translate3d(-10px, 0, 0); }
  427. .lg-hide-items .lg-toolbar {
  428. opacity: 0;
  429. -webkit-transform: translate3d(0, -10px, 0);
  430. transform: translate3d(0, -10px, 0); }
  431. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  432. -webkit-transform: scale3d(0.5, 0.5, 0.5);
  433. transform: scale3d(0.5, 0.5, 0.5);
  434. opacity: 0;
  435. -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  436. -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  437. transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  438. transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  439. 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;
  440. -webkit-transform-origin: 50% 50%;
  441. transform-origin: 50% 50%; }
  442. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  443. -webkit-transform: scale3d(1, 1, 1);
  444. transform: scale3d(1, 1, 1);
  445. opacity: 1; }
  446. .lg-outer .lg-thumb-outer {
  447. background-color: #232323;
  448. bottom: 0;
  449. position: absolute;
  450. width: 100%;
  451. z-index: 2180;
  452. max-height: 350px;
  453. -webkit-transform: translate3d(0, 100%, 0);
  454. transform: translate3d(0, 100%, 0);
  455. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  456. transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  457. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  458. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
  459. .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  460. cursor: -webkit-grab;
  461. cursor: -o-grab;
  462. cursor: -ms-grab;
  463. cursor: grab; }
  464. .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  465. cursor: move;
  466. cursor: -webkit-grabbing;
  467. cursor: -o-grabbing;
  468. cursor: -ms-grabbing;
  469. cursor: grabbing; }
  470. .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  471. -webkit-transition-duration: 0s !important;
  472. transition-duration: 0s !important; }
  473. .lg-outer.lg-thumb-open .lg-thumb-outer {
  474. -webkit-transform: translate3d(0, 0%, 0);
  475. transform: translate3d(0, 0%, 0); }
  476. .lg-outer .lg-thumb {
  477. padding: 10px 0;
  478. height: 100%;
  479. margin-bottom: -5px; }
  480. .lg-outer .lg-thumb-item {
  481. border-radius: 5px;
  482. cursor: pointer;
  483. float: right;
  484. overflow: hidden;
  485. height: 100%;
  486. border: 2px solid #FFF;
  487. border-radius: 4px;
  488. margin-bottom: 5px; }
  489. @media (min-width: 1025px) {
  490. .lg-outer .lg-thumb-item {
  491. -webkit-transition: border-color 0.25s ease;
  492. transition: border-color 0.25s ease; } }
  493. .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  494. border-color: #a90707; }
  495. .lg-outer .lg-thumb-item img {
  496. width: 100%;
  497. height: 100%;
  498. -o-object-fit: cover;
  499. object-fit: cover; }
  500. .lg-outer.lg-has-thumb .lg-item {
  501. padding-bottom: 120px; }
  502. .lg-outer.lg-can-toggle .lg-item {
  503. padding-bottom: 0; }
  504. .lg-outer.lg-pull-caption-up .lg-sub-html {
  505. -webkit-transition: bottom 0.25s ease;
  506. transition: bottom 0.25s ease; }
  507. .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  508. bottom: 100px; }
  509. .lg-outer .lg-toogle-thumb {
  510. background-color: #232323;
  511. border-radius: 2px 2px 0 0;
  512. color: #999;
  513. cursor: pointer;
  514. font-size: 24px;
  515. height: 39px;
  516. line-height: 27px;
  517. padding: 5px 0;
  518. position: absolute;
  519. left: 20px;
  520. text-align: center;
  521. top: -39px;
  522. width: 50px; }
  523. .lg-outer .lg-toogle-thumb:after {
  524. content: "\e1ff"; }
  525. .lg-outer .lg-toogle-thumb:hover {
  526. color: #FFF; }
  527. .lg-outer .lg-video-cont {
  528. display: inline-block;
  529. vertical-align: middle;
  530. max-width: 1140px;
  531. max-height: 100%;
  532. width: 100%;
  533. padding: 0 5px; }
  534. .lg-outer .lg-video {
  535. width: 100%;
  536. height: 0;
  537. padding-bottom: 56.25%;
  538. overflow: hidden;
  539. position: relative; }
  540. .lg-outer .lg-video .lg-object {
  541. display: inline-block;
  542. position: absolute;
  543. top: 0;
  544. right: 0;
  545. width: 100% !important;
  546. height: 100% !important; }
  547. .lg-outer .lg-video .lg-video-play {
  548. width: 84px;
  549. height: 59px;
  550. position: absolute;
  551. right: 50%;
  552. top: 50%;
  553. margin-right: -42px;
  554. margin-top: -30px;
  555. z-index: 2180;
  556. cursor: pointer; }
  557. .lg-outer .lg-has-iframe .lg-video {
  558. -webkit-overflow-scrolling: touch;
  559. overflow: auto; }
  560. .lg-outer .lg-has-vimeo .lg-video-play {
  561. background: url("../../../img/vimeo-play.png") no-repeat scroll 100% 0 transparent; }
  562. .lg-outer .lg-has-vimeo:hover .lg-video-play {
  563. background: url("../../../img/vimeo-play.png") no-repeat scroll 100% -58px transparent; }
  564. .lg-outer .lg-has-html5 .lg-video-play {
  565. background: transparent url("../../../img/video-play.png") no-repeat scroll 100% 0;
  566. height: 64px;
  567. margin-right: -32px;
  568. margin-top: -32px;
  569. width: 64px;
  570. opacity: 0.8; }
  571. .lg-outer .lg-has-html5:hover .lg-video-play {
  572. opacity: 1; }
  573. .lg-outer .lg-has-youtube .lg-video-play {
  574. background: url("../../../img/youtube-play.png") no-repeat scroll 100% 0 transparent; }
  575. .lg-outer .lg-has-youtube:hover .lg-video-play {
  576. background: url("../../../img/youtube-play.png") no-repeat scroll 100% -60px transparent; }
  577. .lg-outer .lg-video-object {
  578. width: 100% !important;
  579. height: 100% !important;
  580. position: absolute;
  581. top: 0;
  582. right: 0; }
  583. .lg-outer .lg-has-video .lg-video-object {
  584. visibility: hidden; }
  585. .lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  586. display: none; }
  587. .lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  588. visibility: visible; }
  589. .lg-progress-bar {
  590. background-color: #333;
  591. height: 5px;
  592. right: 0;
  593. position: absolute;
  594. top: 0;
  595. width: 100%;
  596. z-index: 2183;
  597. opacity: 0;
  598. -webkit-transition: opacity 0.08s ease 0s;
  599. transition: opacity 0.08s ease 0s; }
  600. .lg-progress-bar .lg-progress {
  601. background-color: #a90707;
  602. height: 5px;
  603. width: 0; }
  604. .lg-progress-bar.lg-start .lg-progress {
  605. width: 100%; }
  606. .lg-show-autoplay .lg-progress-bar {
  607. opacity: 1; }
  608. .lg-autoplay-button:after {
  609. content: "\e01d"; }
  610. .lg-show-autoplay .lg-autoplay-button:after {
  611. content: "\e01a"; }
  612. .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 {
  613. -webkit-transition-duration: 0s;
  614. transition-duration: 0s; }
  615. .lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  616. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  617. transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  618. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  619. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  620. .lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  621. -webkit-transition: right 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  622. transition: right 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  623. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  624. -webkit-transform: translate3d(0, 0, 0);
  625. transform: translate3d(0, 0, 0);
  626. -webkit-backface-visibility: hidden;
  627. backface-visibility: hidden; }
  628. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  629. -webkit-transform: scale3d(1, 1, 1);
  630. transform: scale3d(1, 1, 1);
  631. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  632. -webkit-transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  633. transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
  634. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  635. 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;
  636. -webkit-transform-origin: 100% 0;
  637. transform-origin: 100% 0;
  638. -webkit-backface-visibility: hidden;
  639. backface-visibility: hidden; }
  640. #lg-zoom-in:after {
  641. content: "\e311"; }
  642. #lg-actual-size {
  643. font-size: 20px; }
  644. #lg-actual-size:after {
  645. content: "\e033"; }
  646. #lg-zoom-out {
  647. opacity: 0.5;
  648. pointer-events: none; }
  649. #lg-zoom-out:after {
  650. content: "\e312"; }
  651. .lg-zoomed #lg-zoom-out {
  652. opacity: 1;
  653. pointer-events: auto; }
  654. .lg-outer .lg-pager-outer {
  655. bottom: 60px;
  656. right: 0;
  657. position: absolute;
  658. left: 0;
  659. text-align: center;
  660. z-index: 2180;
  661. height: 10px; }
  662. .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  663. overflow: visible; }
  664. .lg-outer .lg-pager-cont {
  665. cursor: pointer;
  666. display: inline-block;
  667. overflow: hidden;
  668. position: relative;
  669. vertical-align: top;
  670. margin: 0 5px; }
  671. .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  672. opacity: 1;
  673. -webkit-transform: translate3d(0, 0, 0);
  674. transform: translate3d(0, 0, 0); }
  675. .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  676. -webkit-box-shadow: 0 0 0 2px white inset;
  677. box-shadow: 0 0 0 2px white inset; }
  678. .lg-outer .lg-pager-thumb-cont {
  679. background-color: #fff;
  680. color: #FFF;
  681. bottom: 100%;
  682. height: 83px;
  683. right: 0;
  684. margin-bottom: 20px;
  685. margin-right: -60px;
  686. opacity: 0;
  687. padding: 5px;
  688. position: absolute;
  689. width: 120px;
  690. border-radius: 3px;
  691. -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  692. transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  693. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  694. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  695. -webkit-transform: translate3d(0, 5px, 0);
  696. transform: translate3d(0, 5px, 0); }
  697. .lg-outer .lg-pager-thumb-cont img {
  698. width: 100%;
  699. height: 100%; }
  700. .lg-outer .lg-pager {
  701. background-color: rgba(255, 255, 255, 0.5);
  702. border-radius: 50%;
  703. -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  704. box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  705. display: block;
  706. height: 12px;
  707. -webkit-transition: box-shadow 0.3s ease 0s;
  708. -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  709. transition: -webkit-box-shadow 0.3s ease 0s;
  710. transition: box-shadow 0.3s ease 0s;
  711. transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  712. width: 12px; }
  713. .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  714. -webkit-box-shadow: 0 0 0 8px white inset;
  715. box-shadow: 0 0 0 8px white inset; }
  716. .lg-outer .lg-caret {
  717. border-right: 10px solid transparent;
  718. border-left: 10px solid transparent;
  719. border-top: 10px dashed;
  720. bottom: -10px;
  721. display: inline-block;
  722. height: 0;
  723. right: 50%;
  724. margin-right: -5px;
  725. position: absolute;
  726. vertical-align: middle;
  727. width: 0; }
  728. .lg-fullscreen:after {
  729. content: "\e20c"; }
  730. .lg-fullscreen-on .lg-fullscreen:after {
  731. content: "\e20d"; }
  732. .lg-outer #lg-dropdown-overlay {
  733. background-color: rgba(0, 0, 0, 0.25);
  734. bottom: 0;
  735. cursor: default;
  736. right: 0;
  737. position: fixed;
  738. left: 0;
  739. top: 0;
  740. z-index: 2181;
  741. opacity: 0;
  742. visibility: hidden;
  743. -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  744. transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }
  745. .lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  746. -webkit-transition-delay: 0s;
  747. transition-delay: 0s;
  748. -webkit-transform: translate3d(0, 0px, 0);
  749. transform: translate3d(0, 0px, 0);
  750. opacity: 1;
  751. visibility: visible; }
  752. .lg-outer.lg-dropdown-active #lg-share {
  753. color: #FFF; }
  754. .lg-outer .lg-dropdown {
  755. background-color: #fff;
  756. border-radius: 2px;
  757. font-size: 14px;
  758. list-style-type: none;
  759. margin: 0;
  760. padding: 10px 0;
  761. position: absolute;
  762. left: 0;
  763. text-align: right;
  764. top: 50px;
  765. opacity: 0;
  766. visibility: hidden;
  767. -webkit-transform: translate3d(0, 5px, 0);
  768. transform: translate3d(0, 5px, 0);
  769. -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  770. -webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  771. transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  772. transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  773. transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s; }
  774. .lg-outer .lg-dropdown:after {
  775. content: "";
  776. display: block;
  777. height: 0;
  778. width: 0;
  779. position: absolute;
  780. border: 8px solid transparent;
  781. border-bottom-color: #FFF;
  782. left: 16px;
  783. top: -16px; }
  784. .lg-outer .lg-dropdown > li:last-child {
  785. margin-bottom: 0px; }
  786. .lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  787. color: #333; }
  788. .lg-outer .lg-dropdown a {
  789. color: #333;
  790. display: block;
  791. white-space: pre;
  792. padding: 4px 12px;
  793. font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  794. font-size: 12px; }
  795. .lg-outer .lg-dropdown a:hover {
  796. background-color: rgba(0, 0, 0, 0.07); }
  797. .lg-outer .lg-dropdown .lg-dropdown-text {
  798. display: inline-block;
  799. line-height: 1;
  800. margin-top: -3px;
  801. vertical-align: middle; }
  802. .lg-outer .lg-dropdown .lg-icon {
  803. color: #333;
  804. display: inline-block;
  805. float: none;
  806. font-size: 20px;
  807. height: auto;
  808. line-height: 1;
  809. margin-left: 8px;
  810. padding: 0;
  811. vertical-align: middle;
  812. width: auto; }
  813. .lg-outer #lg-share {
  814. position: relative; }
  815. .lg-outer #lg-share:after {
  816. content: "\e80d"; }
  817. .lg-outer #lg-share-facebook .lg-icon {
  818. color: #3b5998; }
  819. .lg-outer #lg-share-facebook .lg-icon:after {
  820. content: "\e901"; }
  821. .lg-outer #lg-share-twitter .lg-icon {
  822. color: #00aced; }
  823. .lg-outer #lg-share-twitter .lg-icon:after {
  824. content: "\e904"; }
  825. .lg-outer #lg-share-googleplus .lg-icon {
  826. color: #dd4b39; }
  827. .lg-outer #lg-share-googleplus .lg-icon:after {
  828. content: "\e902"; }
  829. .lg-outer #lg-share-pinterest .lg-icon {
  830. color: #cb2027; }
  831. .lg-outer #lg-share-pinterest .lg-icon:after {
  832. content: "\e903"; }
  833. .lg-group:after {
  834. content: "";
  835. display: table;
  836. clear: both; }
  837. .lg-outer {
  838. width: 100%;
  839. height: 100%;
  840. position: fixed;
  841. top: 0;
  842. right: 0;
  843. z-index: 2150;
  844. text-align: right;
  845. opacity: 0;
  846. -webkit-transition: opacity 0.15s ease 0s;
  847. transition: opacity 0.15s ease 0s; }
  848. .lg-outer * {
  849. -webkit-box-sizing: border-box;
  850. box-sizing: border-box; }
  851. .lg-outer.lg-visible {
  852. opacity: 1; }
  853. .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 {
  854. -webkit-transition-duration: inherit !important;
  855. transition-duration: inherit !important;
  856. -webkit-transition-timing-function: inherit !important;
  857. transition-timing-function: inherit !important; }
  858. .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 {
  859. -webkit-transition-duration: 0s !important;
  860. transition-duration: 0s !important;
  861. opacity: 1; }
  862. .lg-outer.lg-grab img.lg-object {
  863. cursor: -webkit-grab;
  864. cursor: -o-grab;
  865. cursor: -ms-grab;
  866. cursor: grab; }
  867. .lg-outer.lg-grabbing img.lg-object {
  868. cursor: move;
  869. cursor: -webkit-grabbing;
  870. cursor: -o-grabbing;
  871. cursor: -ms-grabbing;
  872. cursor: grabbing; }
  873. .lg-outer .lg {
  874. height: 100%;
  875. width: 100%;
  876. position: relative;
  877. overflow: hidden;
  878. margin-right: auto;
  879. margin-left: auto;
  880. max-width: 100%;
  881. max-height: 100%; }
  882. .lg-outer .lg-inner {
  883. width: 100%;
  884. height: 100%;
  885. position: absolute;
  886. right: 0;
  887. top: 0;
  888. white-space: nowrap; }
  889. .lg-outer .lg-item {
  890. background: url("../../../img/loading.gif") no-repeat scroll center center transparent;
  891. display: none !important; }
  892. .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  893. display: inline-block !important; }
  894. .lg-outer.lg-css .lg-current {
  895. display: inline-block !important; }
  896. .lg-outer .lg-item, .lg-outer .lg-img-wrap {
  897. display: inline-block;
  898. text-align: center;
  899. position: absolute;
  900. width: 100%;
  901. height: 100%; }
  902. .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  903. content: "";
  904. display: inline-block;
  905. height: 50%;
  906. width: 1px;
  907. margin-left: -1px; }
  908. .lg-outer .lg-img-wrap {
  909. position: absolute;
  910. padding: 0 5px;
  911. right: 0;
  912. left: 0;
  913. top: 0;
  914. bottom: 0; }
  915. .lg-outer .lg-item.lg-complete {
  916. background-image: none; }
  917. .lg-outer .lg-item.lg-current {
  918. z-index: 2160; }
  919. .lg-outer .lg-image {
  920. display: inline-block;
  921. vertical-align: middle;
  922. max-width: 100%;
  923. max-height: 100%;
  924. width: auto !important;
  925. height: auto !important; }
  926. .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  927. opacity: 0;
  928. -webkit-transition: opacity 0.15s ease 0s;
  929. transition: opacity 0.15s ease 0s; }
  930. .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 {
  931. opacity: 1; }
  932. .lg-outer .lg-empty-html {
  933. display: none; }
  934. .lg-outer.lg-hide-download #lg-download {
  935. display: none; }
  936. .lg-backdrop {
  937. position: fixed;
  938. top: 0;
  939. right: 0;
  940. left: 0;
  941. bottom: 0;
  942. z-index: 2140;
  943. background-color: #000;
  944. opacity: 0;
  945. -webkit-transition: opacity 0.15s ease 0s;
  946. transition: opacity 0.15s ease 0s; }
  947. .lg-backdrop.in {
  948. opacity: 0.9; }
  949. .lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  950. -webkit-transition: none 0s ease 0s !important;
  951. transition: none 0s ease 0s !important; }
  952. .lg-css3.lg-use-css3 .lg-item {
  953. -webkit-backface-visibility: hidden;
  954. backface-visibility: hidden; }
  955. .lg-css3.lg-use-left .lg-item {
  956. -webkit-backface-visibility: hidden;
  957. backface-visibility: hidden; }
  958. .lg-css3.lg-fade .lg-item {
  959. opacity: 0; }
  960. .lg-css3.lg-fade .lg-item.lg-current {
  961. opacity: 1; }
  962. .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 {
  963. -webkit-transition: opacity 0.1s ease 0s;
  964. transition: opacity 0.1s ease 0s; }
  965. .lg-css3.lg-slide.lg-use-css3 .lg-item {
  966. opacity: 0; }
  967. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  968. -webkit-transform: translate3d(100%, 0, 0);
  969. transform: translate3d(100%, 0, 0); }
  970. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  971. -webkit-transform: translate3d(-100%, 0, 0);
  972. transform: translate3d(-100%, 0, 0); }
  973. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  974. -webkit-transform: translate3d(0, 0, 0);
  975. transform: translate3d(0, 0, 0);
  976. opacity: 1; }
  977. .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 {
  978. -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  979. -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  980. transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  981. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  982. 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; }
  983. .lg-css3.lg-slide.lg-use-left .lg-item {
  984. opacity: 0;
  985. position: absolute;
  986. right: 0; }
  987. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  988. right: -100%; }
  989. .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  990. right: 100%; }
  991. .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  992. right: 0;
  993. opacity: 1; }
  994. .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 {
  995. -webkit-transition: right 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  996. transition: right 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  997. .lg-icon {
  998. font-family: 'Font Awesome 5 Pro'; }
  999. .lg-actions .lg-next:before {
  1000. content: "\f178"; }
  1001. .lg-actions .lg-prev:after {
  1002. content: "\f177"; }
  1003. .lg-outer .lg-toogle-thumb:after {
  1004. content: "\f07d"; }
  1005. .lg-toolbar .lg-close:after {
  1006. content: "\f00d"; }
  1007. .lg-toolbar .lg-download:after {
  1008. content: "\f33d"; }
  1009. .lg-toolbar .lg-fullscreen:after {
  1010. content: "\f320"; }
  1011. .lg-autoplay-button:after {
  1012. content: "\f144"; }
  1013. .lg-show-autoplay .lg-autoplay-button:after {
  1014. content: "\f28b"; }
  1015. #lg-zoom-in:after {
  1016. content: "\f00e"; }
  1017. #lg-zoom-out:after {
  1018. content: "\f010"; }
  1019. #lg-actual-size:after {
  1020. content: "\f002"; }
  1021. .lg-outer #lg-share:after {
  1022. content: "\f1e0"; }
  1023. #lg-download {
  1024. border-bottom: 0 !important; }
  1025. .lg-toolbar {
  1026. background: -webkit-gradient(linear, right top, right bottom, from(black), to(rgba(0, 0, 0, 0)));
  1027. background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
  1028. padding-left: 1rem; }
  1029. .lg-toolbar .lg-icon {
  1030. height: 5rem;
  1031. line-height: 5rem;
  1032. padding: 0; }
  1033. #lg-counter {
  1034. padding-top: 26px; }
  1035. .lg-outer .lg-toogle-thumb {
  1036. font-size: 21px;
  1037. height: 50px;
  1038. top: -50px;
  1039. line-height: 50px;
  1040. padding: 0;
  1041. border-radius: 50% 50% 0 0; }
  1042. .lg-outer .lg-toogle-thumb .lg-thumb {
  1043. padding: 1rem 0; }
  1044. .lg-actions .lg-next,
  1045. .lg-actions .lg-prev {
  1046. height: 50px;
  1047. width: 50px;
  1048. line-height: 50px;
  1049. padding: 0;
  1050. border-radius: 50%;
  1051. -webkit-transition: all 0.2s ease;
  1052. transition: all 0.2s ease; }
  1053. .lg-actions .lg-next:hover,
  1054. .lg-actions .lg-prev:hover {
  1055. background-color: #2196F3; }
  1056. .lg-actions .lg-next:active,
  1057. .lg-actions .lg-prev:active {
  1058. -webkit-transform: scale(0.95);
  1059. transform: scale(0.95); }
  1060. .lg-outer .lg-thumb-item.active,
  1061. .lg-outer .lg-thumb-item:hover {
  1062. border-color: #fd3995; }
  1063. .lg-toolbar .lg-icon {
  1064. font-size: 1.3rem; }