Advertisement
Guest User

Untitled

a guest
Dec 31st, 2016
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 183.71 KB | None | 0 0
  1. /*
  2. Theme Name: Streaming Everywhere
  3. Author: Prajwal Koirala
  4. Author URI: https://www.prajwalkoirala.com
  5. Version: 1.0.0
  6. */
  7.  
  8. /* Theme */
  9. .uk-panel {
  10. display: block;
  11. position: relative
  12. }
  13.  
  14. .uk-panel,.uk-panel:hover {
  15. text-decoration: none
  16. }
  17.  
  18. .uk-panel:after,.uk-panel:before {
  19. content: "";
  20. display: table
  21. }
  22.  
  23. .uk-panel:after {
  24. clear: both
  25. }
  26.  
  27. .uk-panel>:not(.uk-panel-title):last-child {
  28. margin-bottom: 0
  29. }
  30.  
  31. .uk-panel-title {
  32. margin-top: 0;
  33. margin-bottom: 15px;
  34. font-size: 19px;
  35. line-height: 25px;
  36. font-weight: 400;
  37. text-transform: none;
  38. color: #bebdbd
  39. }
  40.  
  41. .uk-panel-badge {
  42. position: absolute;
  43. top: 0;
  44. right: 0;
  45. z-index: 1
  46. }
  47.  
  48. .uk-panel-teaser {
  49. margin-bottom: 15px
  50. }
  51.  
  52. .uk-panel-body {
  53. padding: 15px
  54. }
  55.  
  56. .uk-panel-box {
  57. padding: 15px;
  58. background: #191818;
  59. color: #bebdbd
  60. }
  61.  
  62. .uk-panel-box .uk-panel-title,.uk-panel-box-hover:hover {
  63. color: #bebdbd
  64. }
  65.  
  66. .uk-panel-box .uk-panel-badge {
  67. top: 10px;
  68. right: 10px
  69. }
  70.  
  71. .uk-panel-box>.uk-panel-teaser {
  72. margin-top: -15px;
  73. margin-left: -15px;
  74. margin-right: -15px
  75. }
  76.  
  77. .uk-panel-box>.uk-nav-side {
  78. margin: 0 -15px
  79. }
  80.  
  81. .uk-panel-box-primary {
  82. background-color: #00a8e6
  83. }
  84.  
  85. .uk-panel-box-primary,.uk-panel-box-primary-hover:hover {
  86. color: rgba(255,255,255,.8)
  87. }
  88.  
  89. .uk-panel-box-primary .uk-panel-title {
  90. color: #fff
  91. }
  92.  
  93. .uk-panel-box-secondary {
  94. background-color: #222121
  95. }
  96.  
  97. .uk-panel-box-secondary,.uk-panel-box-secondary-hover:hover {
  98. color: rgba(255,255,255,.68)
  99. }
  100.  
  101. .uk-panel-box-secondary .uk-panel-title {
  102. color: #fff
  103. }
  104.  
  105. .uk-panel-hover {
  106. padding: 15px;
  107. color: #bebdbd
  108. }
  109.  
  110. .uk-panel-hover:hover {
  111. background: #f5f5f5;
  112. color: #bebdbd
  113. }
  114.  
  115. .uk-panel-hover .uk-panel-badge {
  116. top: 10px;
  117. right: 10px
  118. }
  119.  
  120. .uk-panel-hover>.uk-panel-teaser {
  121. margin-top: -15px;
  122. margin-left: -15px;
  123. margin-right: -15px
  124. }
  125.  
  126. .uk-panel-header .uk-panel-title {
  127. padding-bottom: 10px;
  128. border-bottom: 1px solid #434343;
  129. color: #bebdbd
  130. }
  131.  
  132. .uk-panel-space {
  133. padding: 30px
  134. }
  135.  
  136. .uk-panel-space .uk-panel-badge {
  137. top: 30px;
  138. right: 30px
  139. }
  140.  
  141. .uk-panel+.uk-panel-divider {
  142. margin-top: 50px!important
  143. }
  144.  
  145. .uk-panel+.uk-panel-divider:before {
  146. content: "";
  147. display: block;
  148. position: absolute;
  149. top: -25px;
  150. left: 0;
  151. right: 0;
  152. border-top: 1px solid #434343
  153. }
  154.  
  155. @media (min-width:1220px) {
  156. .uk-panel+.uk-panel-divider {
  157. margin-top: 70px!important
  158. }
  159.  
  160. .uk-panel+.uk-panel-divider:before {
  161. top: -35px
  162. }
  163. }
  164.  
  165. .uk-block {
  166. position: relative;
  167. box-sizing: border-box;
  168. padding-top: 20px;
  169. padding-bottom: 20px
  170. }
  171.  
  172. @media (min-width:768px) {
  173. .uk-block {
  174. padding-top: 50px;
  175. padding-bottom: 50px
  176. }
  177. }
  178.  
  179. .uk-block:after,.uk-block:before {
  180. content: "";
  181. display: table
  182. }
  183.  
  184. .uk-block:after {
  185. clear: both
  186. }
  187.  
  188. .uk-block>:last-child {
  189. margin-bottom: 0
  190. }
  191.  
  192. .uk-block-large {
  193. padding-top: 20px;
  194. padding-bottom: 20px
  195. }
  196.  
  197. @media (min-width:768px) {
  198. .uk-block-large {
  199. padding-top: 50px;
  200. padding-bottom: 50px
  201. }
  202. }
  203.  
  204. @media (min-width:960px) {
  205. .uk-block-large {
  206. padding-top: 100px;
  207. padding-bottom: 100px
  208. }
  209. }
  210.  
  211. .uk-block-default {
  212. background: #191818
  213. }
  214.  
  215. .uk-block-muted {
  216. background: #222121
  217. }
  218.  
  219. .uk-block-primary {
  220. background: #2197ef
  221. }
  222.  
  223. .uk-block-secondary {
  224. background: #222121
  225. }
  226.  
  227. .uk-block-default+.uk-block-default,.uk-block-muted+.uk-block-muted,.uk-block-primary+.uk-block-primary,.uk-block-secondary+.uk-block-secondary {
  228. padding-top: 0
  229. }
  230.  
  231. .uk-nav-offcanvas>.uk-open>a,html:not(.uk-touch) .uk-nav-offcanvas>li>a:focus,html:not(.uk-touch) .uk-nav-offcanvas>li>a:hover {
  232. background: #1d1b1b
  233. }
  234.  
  235. html .uk-nav.uk-nav-offcanvas>li.uk-active>a {
  236. background: #000
  237. }
  238.  
  239. .uk-nav-offcanvas .uk-nav-header {
  240. color: #777
  241. }
  242.  
  243. .uk-nav-offcanvas .uk-nav-divider {
  244. border-top: 1px solid #000
  245. }
  246.  
  247. .uk-nav-offcanvas ul a {
  248. color: #ccc
  249. }
  250.  
  251. .tm-navbar-contrast .uk-navbar-content>a:not([class]):hover,html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
  252. color: #fff
  253. }
  254.  
  255. .uk-navbar {
  256. background: #eee;
  257. color: #bebdbd
  258. }
  259.  
  260. .uk-navbar:after,.uk-navbar:before {
  261. content: "";
  262. display: table
  263. }
  264.  
  265. .uk-navbar:after {
  266. clear: both
  267. }
  268.  
  269. .uk-form input,.uk-form select,.uk-form textarea {
  270. box-sizing: border-box;
  271. margin: 0;
  272. border-radius: 0;
  273. font: inherit;
  274. color: inherit
  275. }
  276.  
  277. .uk-form select {
  278. text-transform: none
  279. }
  280.  
  281. .uk-form optgroup {
  282. font: inherit;
  283. font-weight: 700
  284. }
  285.  
  286. .uk-form input::-moz-focus-inner {
  287. border: 0;
  288. padding: 0
  289. }
  290.  
  291. .uk-form input[type=checkbox],.uk-form input[type=radio] {
  292. padding: 0
  293. }
  294.  
  295. .uk-form input[type=checkbox]:not(:disabled),.uk-form input[type=radio]:not(:disabled) {
  296. cursor: pointer
  297. }
  298.  
  299. .uk-form input:not([type]),.uk-form input[type=datetime],.uk-form input[type=email],.uk-form input[type=number],.uk-form input[type=password],.uk-form input[type=search],.uk-form input[type=tel],.uk-form input[type=text],.uk-form input[type=url],.uk-form textarea {
  300. -webkit-appearance: none
  301. }
  302.  
  303. .uk-form input[type=search]::-webkit-search-cancel-button,.uk-form input[type=search]::-webkit-search-decoration {
  304. -webkit-appearance: none
  305. }
  306.  
  307. .uk-form input[type=number]::-webkit-inner-spin-button,.uk-form input[type=number]::-webkit-outer-spin-button {
  308. height: auto
  309. }
  310.  
  311. .uk-form fieldset {
  312. border: none;
  313. margin: 0;
  314. padding: 0
  315. }
  316.  
  317. .uk-form textarea {
  318. overflow: auto;
  319. vertical-align: top
  320. }
  321.  
  322. .uk-form ::-moz-placeholder {
  323. opacity: 1;
  324. color: #999
  325. }
  326.  
  327. .uk-form :invalid {
  328. box-shadow: none
  329. }
  330.  
  331. .uk-form input:not([type=radio]):not([type=checkbox]),.uk-form select {
  332. vertical-align: middle
  333. }
  334.  
  335. .uk-form>:last-child {
  336. margin-bottom: 0
  337. }
  338.  
  339. .uk-form input:not([type]),.uk-form input[type=color],.uk-form input[type=date],.uk-form input[type=datetime-local],.uk-form input[type=datetime],.uk-form input[type=email],.uk-form input[type=month],.uk-form input[type=number],.uk-form input[type=password],.uk-form input[type=search],.uk-form input[type=tel],.uk-form input[type=text],.uk-form input[type=time],.uk-form input[type=url],.uk-form input[type=week],.uk-form select,.uk-form textarea {
  340. height: 35px;
  341. max-width: 100%;
  342. padding: 4px 10px;
  343. border: 1px solid #222121;
  344. background: #222121;
  345. color: #a5a5a5;
  346. -webkit-border-radius: 3px;
  347. -moz-border-radius: 3px;
  348. border-radius: 3px
  349. }
  350.  
  351. .uk-form input:not([type]):focus,.uk-form input[type=color]:focus,.uk-form input[type=date]:focus,.uk-form input[type=datetime-local]:focus,.uk-form input[type=datetime]:focus,.uk-form input[type=email]:focus,.uk-form input[type=month]:focus,.uk-form input[type=number]:focus,.uk-form input[type=password]:focus,.uk-form input[type=search]:focus,.uk-form input[type=tel]:focus,.uk-form input[type=text]:focus,.uk-form input[type=time]:focus,.uk-form input[type=url]:focus,.uk-form input[type=week]:focus,.uk-form select:focus,.uk-form textarea:focus {
  352. border-color: #2197ef;
  353. outline: 0;
  354. background: #222121;
  355. color: #bebdbd
  356. }
  357.  
  358. .uk-form input:not([type]):disabled,.uk-form input[type=color]:disabled,.uk-form input[type=date]:disabled,.uk-form input[type=datetime-local]:disabled,.uk-form input[type=datetime]:disabled,.uk-form input[type=email]:disabled,.uk-form input[type=month]:disabled,.uk-form input[type=number]:disabled,.uk-form input[type=password]:disabled,.uk-form input[type=search]:disabled,.uk-form input[type=tel]:disabled,.uk-form input[type=text]:disabled,.uk-form input[type=time]:disabled,.uk-form input[type=url]:disabled,.uk-form input[type=week]:disabled,.uk-form select:disabled,.uk-form textarea:disabled {
  359. border-color: #434343;
  360. background-color: #3a3a3a;
  361. color: #999
  362. }
  363.  
  364. .uk-form :-ms-input-placeholder {
  365. color: #999!important
  366. }
  367.  
  368. .uk-form ::-webkit-input-placeholder {
  369. color: #999
  370. }
  371.  
  372. .uk-form :disabled:-ms-input-placeholder {
  373. color: #999!important
  374. }
  375.  
  376. .uk-form :disabled::-moz-placeholder {
  377. color: #999
  378. }
  379.  
  380. .uk-form :disabled::-webkit-input-placeholder {
  381. color: #999
  382. }
  383.  
  384. .uk-form legend {
  385. width: 100%;
  386. border: 0;
  387. padding: 0 0 15px;
  388. font-size: 19px;
  389. line-height: 32px
  390. }
  391.  
  392. .uk-form legend:after {
  393. content: "";
  394. display: block;
  395. border-bottom: 1px solid #434343;
  396. width: 100%
  397. }
  398.  
  399. input:not([type]).uk-form-small,input[type].uk-form-small,select.uk-form-small,textarea.uk-form-small {
  400. height: 25px;
  401. padding: 3px;
  402. font-size: 13px
  403. }
  404.  
  405. input:not([type]).uk-form-large,input[type].uk-form-large,select.uk-form-large,textarea.uk-form-large {
  406. height: 40px;
  407. padding: 8px 6px;
  408. font-size: 17px
  409. }
  410.  
  411. .uk-form select[multiple],.uk-form select[size],.uk-form textarea {
  412. height: auto
  413. }
  414.  
  415. .uk-form-danger,.uk-form-success {
  416. border-color: #d65b49!important;
  417. background: #222121!important;
  418. color: #d85030!important
  419. }
  420.  
  421. .uk-form-success {
  422. border-color: #66b92d!important;
  423. color: #659f13!important
  424. }
  425.  
  426. .uk-form-blank {
  427. border-color: transparent!important;
  428. border-style: dashed!important;
  429. background: 0 0!important
  430. }
  431.  
  432. .uk-form-blank:focus {
  433. border-color: #434343!important
  434. }
  435.  
  436. input.uk-form-width-mini {
  437. width: 50px
  438. }
  439.  
  440. select.uk-form-width-mini {
  441. width: 75px
  442. }
  443.  
  444. .uk-form-width-small {
  445. width: 130px
  446. }
  447.  
  448. .uk-form-width-medium {
  449. width: 200px
  450. }
  451.  
  452. .uk-form-width-large {
  453. width: 500px
  454. }
  455.  
  456. .uk-form-row:after,.uk-form-row:before {
  457. content: "";
  458. display: table
  459. }
  460.  
  461. .uk-form-row:after {
  462. clear: both
  463. }
  464.  
  465. .uk-form-row+.uk-form-row {
  466. margin-top: 15px
  467. }
  468.  
  469. .uk-form-help-inline {
  470. display: inline-block;
  471. margin: 0 0 0 10px
  472. }
  473.  
  474. .uk-form-help-block {
  475. margin: 5px 0 0
  476. }
  477.  
  478. .uk-form-controls>:first-child {
  479. margin-top: 0
  480. }
  481.  
  482. .uk-form-controls>:last-child {
  483. margin-bottom: 0
  484. }
  485.  
  486. .uk-form-controls-condensed {
  487. margin: 5px 0
  488. }
  489.  
  490. .uk-form-stacked .uk-form-label {
  491. display: block;
  492. margin-bottom: 5px;
  493. font-weight: 700
  494. }
  495.  
  496. @media (max-width:959px) {
  497. .uk-form-horizontal .uk-form-label {
  498. display: block;
  499. margin-bottom: 5px;
  500. font-weight: 700
  501. }
  502. }
  503.  
  504. @media (min-width:960px) {
  505. .uk-form-horizontal .uk-form-label {
  506. width: 200px;
  507. margin-top: 5px;
  508. float: left
  509. }
  510.  
  511. .uk-form-horizontal .uk-form-controls {
  512. margin-left: 215px
  513. }
  514.  
  515. .uk-form-horizontal .uk-form-controls-text {
  516. padding-top: 5px
  517. }
  518. }
  519.  
  520. .uk-form-icon {
  521. display: inline-block;
  522. position: relative;
  523. max-width: 100%
  524. }
  525.  
  526. .uk-form-icon>[class*=uk-icon-] {
  527. position: absolute;
  528. top: 50%;
  529. width: 30px;
  530. margin-top: -8px;
  531. font-size: 15px;
  532. color: #999;
  533. text-align: center;
  534. pointer-events: none
  535. }
  536.  
  537. .uk-form-icon:not(.uk-form-icon-flip)>input {
  538. padding-left: 30px!important
  539. }
  540.  
  541. .uk-form-icon-flip>[class*=uk-icon-] {
  542. right: 0
  543. }
  544.  
  545. .uk-form-icon-flip>input {
  546. padding-right: 30px!important
  547. }
  548.  
  549. .uk-form input[type=checkbox],.uk-form input[type=radio] {
  550. height: 20px;
  551. width: 20px;
  552. border: 1px solid #339ae7;
  553. overflow: hidden;
  554. margin-top: -4px;
  555. vertical-align: middle;
  556. -webkit-appearance: none;
  557. outline: 0;
  558. background: #339ae7;
  559. margin-right: 5px
  560. }
  561.  
  562. .uk-form input[type=radio] {
  563. border-radius: 50%
  564. }
  565.  
  566. .uk-form input[type=checkbox]:before,.uk-form input[type=radio]:before {
  567. display: block
  568. }
  569.  
  570. .uk-form input[type=radio]:checked:before {
  571. content: '';
  572. width: 8px;
  573. height: 8px;
  574. margin: 2px auto 0;
  575. border-radius: 50%;
  576. background: #00a8e6
  577. }
  578.  
  579. .uk-form input[type=checkbox]:checked:before,.uk-form input[type=checkbox]:indeterminate:before {
  580. content: "\f00c";
  581. font-family: FontAwesome;
  582. font-size: 12px;
  583. -webkit-font-smoothing: antialiased;
  584. text-align: center;
  585. line-height: 18px;
  586. color: #fff
  587. }
  588.  
  589. .uk-form input[type=checkbox]:indeterminate:before {
  590. content: "\f068"
  591. }
  592.  
  593. .uk-form input[type=checkbox]:disabled,.uk-form input[type=radio]:disabled {
  594. border-color: #ddd
  595. }
  596.  
  597. .uk-form input[type=radio]:disabled:checked:before {
  598. background-color: #aaa
  599. }
  600.  
  601. .uk-form input[type=checkbox] {
  602. -webkit-border-radius: 2px;
  603. -moz-border-radius: 2px;
  604. border-radius: 2px
  605. }
  606.  
  607. .uk-form input[type=checkbox]:disabled:checked:before,.uk-form input[type=checkbox]:disabled:indeterminate:before {
  608. color: #aaa
  609. }
  610.  
  611. .uk-search {
  612. display: inline-block;
  613. position: relative;
  614. margin: 0
  615. }
  616.  
  617. .uk-search:before {
  618. content: "\f002";
  619. position: absolute;
  620. top: 0;
  621. left: 0;
  622. width: 30px;
  623. line-height: 30px;
  624. text-align: center;
  625. font-family: FontAwesome;
  626. font-size: 14px;
  627. color: #fff
  628. }
  629.  
  630. .uk-button::-moz-focus-inner,.uk-search-field::-moz-focus-inner {
  631. border: 0;
  632. padding: 0
  633. }
  634.  
  635. .uk-button {
  636. -webkit-border-radius: 3px;
  637. -moz-border-radius: 3px;
  638. border-radius: 3px;
  639. -webkit-appearance: none;
  640. margin: 0;
  641. border: none;
  642. overflow: visible;
  643. font: inherit;
  644. color: #bebdbd;
  645. text-transform: none;
  646. display: inline-block;
  647. box-sizing: border-box;
  648. padding: 0 13px;
  649. background: #222121;
  650. vertical-align: middle;
  651. line-height: 30px;
  652. min-height: 30px;
  653. font-size: 1rem;
  654. text-decoration: none;
  655. text-align: center
  656. }
  657.  
  658. .uk-button:not(:disabled) {
  659. cursor: pointer
  660. }
  661.  
  662. .uk-button:focus,.uk-button:hover {
  663. background-color: #393838;
  664. color: #bebdbd;
  665. outline: none;
  666. text-decoration: none
  667. }
  668.  
  669. .uk-button.uk-active,.uk-button:active {
  670. background-color: #323131;
  671. color: #bebdbd
  672. }
  673.  
  674. .uk-button-primary {
  675. background-color: #00a8e6;
  676. color: #fff
  677. }
  678.  
  679. .uk-button-primary:focus,.uk-button-primary:hover {
  680. background-color: #0091c7;
  681. color: #fff
  682. }
  683.  
  684. .uk-button-primary.uk-active,.uk-button-primary:active {
  685. background-color: #007dac;
  686. color: #fff
  687. }
  688.  
  689. .uk-button-success {
  690. background-color: #66b82f;
  691. color: #fff
  692. }
  693.  
  694. .uk-button-success:focus,.uk-button-success:hover {
  695. background-color: #589f28;
  696. color: #fff
  697. }
  698.  
  699. .uk-button-success.uk-active,.uk-button-success:active {
  700. background-color: #4c8922;
  701. color: #fff
  702. }
  703.  
  704. .uk-button-danger {
  705. background-color: #d65b49;
  706. color: #fff
  707. }
  708.  
  709. .uk-button-danger:focus,.uk-button-danger:hover {
  710. background-color: #ba4f3f;
  711. color: #fff
  712. }
  713.  
  714. .uk-button-danger.uk-active,.uk-button-danger:active {
  715. background-color: #a24436;
  716. color: #fff
  717. }
  718.  
  719. .uk-button:disabled {
  720. background-color: #131313;
  721. color: #999
  722. }
  723.  
  724. .uk-button-link,.uk-button-link.uk-active,.uk-button-link:active,.uk-button-link:disabled,.uk-button-link:focus,.uk-button-link:hover {
  725. border-color: transparent;
  726. background: 0 0
  727. }
  728.  
  729. .uk-button-link {
  730. color: #249af2
  731. }
  732.  
  733. .uk-button-link.uk-active,.uk-button-link:active,.uk-button-link:focus,.uk-button-link:hover {
  734. color: #fff;
  735. text-decoration: none
  736. }
  737.  
  738. .uk-button-link:disabled {
  739. color: #999
  740. }
  741.  
  742. .uk-button-link:focus {
  743. outline: 1px dotted
  744. }
  745.  
  746. .uk-button-mini {
  747. min-height: 20px;
  748. padding: 0 6px;
  749. line-height: 20px;
  750. font-size: 12px
  751. }
  752.  
  753. .uk-button-small {
  754. min-height: 25px;
  755. padding: 0 10px;
  756. line-height: 25px;
  757. font-size: 13px
  758. }
  759.  
  760. .uk-button-large {
  761. min-height: 40px;
  762. padding: 0 15px;
  763. line-height: 40px;
  764. font-size: 17px
  765. }
  766.  
  767. .uk-button-group {
  768. vertical-align: middle;
  769. position: relative;
  770. font-size: .001px;
  771. white-space: nowrap
  772. }
  773.  
  774. .uk-button-dropdown,.uk-button-group,.uk-button-group>* {
  775. display: inline-block
  776. }
  777.  
  778. .uk-button-group .uk-button {
  779. vertical-align: top
  780. }
  781.  
  782. .uk-button-dropdown {
  783. vertical-align: middle;
  784. position: relative
  785. }
  786.  
  787. .uk-button-social {
  788. height: 50px;
  789. line-height: 55px
  790. }
  791.  
  792. .uk-button-facebook {
  793. background-color: #3b5997;
  794. color: #fff
  795. }
  796.  
  797. .uk-button-facebook:focus,.uk-button-facebook:hover {
  798. background-color: #334d84;
  799. color: #fff
  800. }
  801.  
  802. .uk-button-facebook.uk-active,.uk-button-facebook:active {
  803. background-color: #5f739e;
  804. color: #fff
  805. }
  806. .current_page_item, .current-menu-item{
  807. background-color: #00A8E6;
  808. color: #fff
  809. }
  810.  
  811. .uk-button-twitter {
  812. background-color: #55acef;
  813. color: #fff
  814. }
  815.  
  816. .uk-button-twitter:focus,.uk-button-twitter:hover {
  817. background-color: #4994ce;
  818. color: #fff
  819. }
  820.  
  821. .uk-button-twitter.uk-active,.uk-button-twitter:active {
  822. background-color: #74acd9;
  823. color: #fff
  824. }
  825.  
  826. .uk-button-google {
  827. background-color: #df2f2f;
  828. color: #fff
  829. }
  830.  
  831. .uk-button-google:focus,.uk-button-google:hover {
  832. background-color: #c22929;
  833. color: #fff
  834. }
  835.  
  836. .uk-button-google.uk-active,.uk-button-google:active {
  837. background-color: #d36565;
  838. color: #fff
  839. }
  840.  
  841. .uk-badge {
  842. display: inline-block;
  843. padding: 0 8px;
  844. background: #00a8e6;
  845. font-size: 11px;
  846. font-weight: 400;
  847. line-height: 15px;
  848. text-align: center;
  849. vertical-align: middle;
  850. text-transform: uppercase
  851. }
  852.  
  853. .uk-badge,a.uk-badge:hover {
  854. color: #fff
  855. }
  856.  
  857. .uk-badge-notification {
  858. box-sizing: border-box;
  859. min-width: 19px;
  860. border-radius: 500px;
  861. font-size: 13px;
  862. line-height: 19px
  863. }
  864.  
  865. .uk-badge-success {
  866. background-color: #66b82f
  867. }
  868.  
  869. .uk-badge-warning {
  870. background-color: #da922c
  871. }
  872.  
  873. .uk-badge-danger {
  874. background-color: #d65b49
  875. }
  876.  
  877. .uk-alert {
  878. margin-bottom: 15px;
  879. padding: 10px;
  880. background: #2197ef;
  881. color: rgba(250,250,250,.79)
  882. }
  883.  
  884. *+.uk-alert {
  885. margin-top: 15px
  886. }
  887.  
  888. .uk-alert>:last-child {
  889. margin-bottom: 0
  890. }
  891.  
  892. .uk-alert h1,.uk-alert h2,.uk-alert h3,.uk-alert h4,.uk-alert h5,.uk-alert h6 {
  893. color: inherit
  894. }
  895.  
  896. .uk-alert>.uk-close:first-child {
  897. float: right
  898. }
  899.  
  900. .uk-alert>.uk-close:first-child+* {
  901. margin-top: 0
  902. }
  903.  
  904. .uk-alert-success {
  905. background: #66b92d;
  906. color: rgba(255,255,255,.81)
  907. }
  908.  
  909. .uk-alert-warning {
  910. background: #da932b;
  911. color: rgba(255,255,255,.81)
  912. }
  913.  
  914. .uk-alert-danger {
  915. background: #d65b49;
  916. color: rgba(255,255,255,.83)
  917. }
  918.  
  919. .uk-alert-large {
  920. padding: 20px
  921. }
  922.  
  923. .uk-alert-large>.uk-close:first-child {
  924. margin: -10px -10px 0 0
  925. }
  926.  
  927. .uk-text-muted {
  928. color: #999!important
  929. }
  930.  
  931. .uk-text-primary {
  932. color: #00a8e6!important
  933. }
  934.  
  935. .uk-text-success {
  936. color: #66b82f!important
  937. }
  938.  
  939. .uk-text-warning {
  940. color: #da922c!important
  941. }
  942.  
  943. .uk-text-danger {
  944. color: #d65b49!important
  945. }
  946.  
  947. .uk-text-contrast {
  948. color: #fff!important
  949. }
  950.  
  951. .uk-progress-success .uk-progress-bar {
  952. background-color: #66b82f
  953. }
  954.  
  955. .uk-progress-warning .uk-progress-bar {
  956. background-color: #da922c
  957. }
  958.  
  959. .uk-progress-danger .uk-progress-bar {
  960. background-color: #d65b49
  961. }
  962.  
  963. .uk-progress-striped .uk-progress-bar {
  964. background-image: -webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  965. background-image: linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  966. background-size: 30px 30px
  967. }
  968.  
  969. .uk-overlay-background-blue {
  970. padding: 5em 0;
  971. background: rgba(37,113,170,.89)
  972. }
  973.  
  974. .uk-pagination>li>a,.uk-pagination>li>span {
  975. display: inline-block;
  976. min-width: 40px;
  977. padding: 3px 5px;
  978. line-height: 40px;
  979. -webkit-border-radius: 3px;
  980. -moz-border-radius: 3px;
  981. border-radius: 3px;
  982. text-decoration: none;
  983. box-sizing: content-box;
  984. text-align: center
  985. }
  986.  
  987. .uk-pagination>li>a {
  988. background: #222121;
  989. color: #c7c7c7
  990. }
  991.  
  992. .uk-pagination>li>a:hover {
  993. background: #393838;
  994. color: #fff
  995. }
  996.  
  997. .uk-pagination>li>a:active,.uk-pagination>li>a:focus {
  998. background: #141313;
  999. color: #fff
  1000. }
  1001.  
  1002. .uk-pagination>.uk-active>span {
  1003. background: #339ae7!important;
  1004. color: #fff;
  1005. font-weight: 700
  1006. }
  1007.  
  1008. .uk-pagination>.uk-disabled>span {
  1009. background-color: transparent;
  1010. color: #999
  1011. }
  1012.  
  1013. .uk-nav-side>li>a:focus,.uk-nav-side>li>a:hover {
  1014. background: rgba(0,0,0,.08);
  1015. color: #fff;
  1016. outline: none
  1017. }
  1018.  
  1019. .uk-nav-side>li.uk-active>a {
  1020. background: 0 0;
  1021. border-right: 3px solid #339ae7;
  1022. color: #fff
  1023. }
  1024.  
  1025. .uk-nav-side>li>a {
  1026. font-size: 15px;
  1027. color: gray;
  1028. line-height: 30px
  1029. }
  1030.  
  1031. .uk-nav-side .uk-nav-divider {
  1032. border-top: 1px dotted #3a3a3a
  1033. }
  1034.  
  1035. .uk-nav-side ul a {
  1036. color: #b5b5b5;
  1037. font-size: 12px
  1038. }
  1039.  
  1040. .uk-nav-side ul a:active,.uk-nav-side ul a:hover {
  1041. color: #fff
  1042. }
  1043.  
  1044. .uk-nav-side .uk-nav-header {
  1045. color: #ececec
  1046. }
  1047.  
  1048. .uk-navbar li>a {
  1049. font-family: inherit
  1050. }
  1051.  
  1052. .uk-container {
  1053. max-width: 1400px
  1054. }
  1055.  
  1056. .uk-navbar-toggle {
  1057. color: #949393
  1058. }
  1059.  
  1060. .uk-navbar-toggle:active,.uk-navbar-toggle:hover {
  1061. color: gray
  1062. }
  1063.  
  1064. .uk-offcanvas-bar {
  1065. background: #100f0f
  1066. }
  1067.  
  1068. .uk-offcanvas-bar .uk-panel-title {
  1069. font-size: 12px
  1070. }
  1071.  
  1072. html .uk-nav.uk-nav-offcanvas>li.uk-active>a {
  1073. background: 0 0;
  1074. color: #fff;
  1075. border-right: 4px solid #339ae7;
  1076. font-weight: 700
  1077. }
  1078.  
  1079. .uk-nav-offcanvas>.uk-open>a,html:not(.uk-touch) .uk-nav-offcanvas>li>a:focus,html:not(.uk-touch) .uk-nav-offcanvas>li>a:hover {
  1080. background: #0e0d0d;
  1081. color: #fff;
  1082. outline: 0
  1083. }
  1084.  
  1085. .uk-overlay-background {
  1086. background: rgba(0,0,0,.91)
  1087. }
  1088.  
  1089. .tm-navbar {
  1090. position: relative;
  1091. background: #fff;
  1092. box-shadow: 0 3px 8px -4px rgba(0,0,0,.15);
  1093. z-index: 1
  1094. }
  1095.  
  1096. .tm-navbar-overlay:not(.uk-active) {
  1097. position: absolute;
  1098. z-index: 1;
  1099. width: 100%
  1100. }
  1101.  
  1102. .tm-navbar-transparent {
  1103. border-bottom-color: transparent;
  1104. background: 0 0;
  1105. box-shadow: none
  1106. }
  1107.  
  1108. .tm-logo-contrast {
  1109. display: none
  1110. }
  1111.  
  1112. .tm-navbar-contrast .uk-navbar {
  1113. color: #fff
  1114. }
  1115.  
  1116. .tm-navbar-contrast .uk-navbar-brand,.tm-navbar-contrast .uk-navbar-nav>li>a,.tm-navbar-contrast .uk-navbar-toggle {
  1117. color: rgba(255,255,255,.7)
  1118. }
  1119.  
  1120. .tm-navbar-contrast .uk-navbar-brand:focus,.tm-navbar-contrast .uk-navbar-brand:hover,.tm-navbar-contrast .uk-navbar-nav>li.uk-open>a,.tm-navbar-contrast .uk-navbar-nav>li:hover>a,.tm-navbar-contrast .uk-navbar-nav>li>a:focus,.tm-navbar-contrast .uk-navbar-toggle:focus,.tm-navbar-contrast .uk-navbar-toggle:hover {
  1121. color: #fff
  1122. }
  1123.  
  1124. .tm-navbar-contrast .uk-navbar-nav>li.uk-active>a,.tm-navbar-contrast .uk-navbar-nav>li>a:active {
  1125. color: #fff
  1126. }
  1127.  
  1128. .tm-navbar-contrast .uk-navbar-content>a:not([class]) {
  1129. color: rgba(255,255,255,.7)
  1130. }
  1131.  
  1132. .tm-navbar-contrast .tm-logo {
  1133. display: none
  1134. }
  1135.  
  1136. .tm-navbar-contrast .tm-logo-contrast {
  1137. display: inline-block
  1138. }
  1139.  
  1140. .uk-navbar-secondary {
  1141. background: #222121
  1142. }
  1143.  
  1144. .uk-navbar-secondary .uk-navbar-nav>li.uk-active>a {
  1145. background-color: transparent;
  1146. color: #fff;
  1147. font-weight: 700;
  1148. border-bottom: 3px solid #339ae7;
  1149. text-decoration: none
  1150. }
  1151.  
  1152. .uk-navbar-secondary .uk-navbar-nav>li>a {
  1153. height: 55px;
  1154. padding: 0 15px;
  1155. line-height: 55px;
  1156. font-size: 15px;
  1157. color: gray
  1158. }
  1159.  
  1160. .uk-navbar-nav>li>a:active,.uk-navbar-secondary .uk-navbar-nav>li>a:hover {
  1161. background: 0 0;
  1162. color: #fff;
  1163. text-decoration: none
  1164. }
  1165.  
  1166. .uk-navbar-nav>li:hover>a,.uk-navbar-nav>li>a:focus,.uk-navbar-secondary .uk-navbar-nav>li.uk-open>a {
  1167. background-color: transparent;
  1168. color: #fff!important
  1169. }
  1170.  
  1171. .uk-nav-navbar>li>a:hover,.uk-navbar-secondary .uk-nav-navbar>li>a:focus {
  1172. background: #339ae7
  1173. }
  1174.  
  1175. .tm-bg-cover {
  1176. width: 100%;
  1177. height: 100%
  1178. }
  1179.  
  1180. #tm-header {
  1181. background: #222121;
  1182. padding: 20px 0
  1183. }
  1184.  
  1185. #tm-header .uk-navbar-brand {
  1186. font-family: Montserrat,"Helvetica Neue",sans-serif;
  1187. font-size: 25px;
  1188. color: #fff;
  1189. text-decoration: none;
  1190. text-transform: uppercase;
  1191. font-weight: 700
  1192. }
  1193.  
  1194. #tm-media-section .uk-tab>li.uk-active>a {
  1195. border-bottom: 4px solid #249af2;
  1196. font-weight: 700;
  1197. color: #fff;
  1198. border-left: 0;
  1199. border-right: 0;
  1200. border-top: 0
  1201. }
  1202.  
  1203. #tm-media-section .uk-tab>li.uk-active>a:hover {
  1204. border-bottom: 4px solid #249af2;
  1205. font-weight: 700;
  1206. color: #fff;
  1207. background: inherit
  1208. }
  1209.  
  1210. #tm-media-section .uk-tab>li>a {
  1211. height: 40px;
  1212. margin-left: 0;
  1213. line-height: 40px;
  1214. font-size: 16px;
  1215. letter-spacing: .5px;
  1216. text-decoration: none;
  1217. text-transform: uppercase;
  1218. color: gray;
  1219. padding-bottom: 10px;
  1220. }
  1221.  
  1222. #tm-media-section .uk-tab>li>a:hover {
  1223. border: none;
  1224. background: #222121;
  1225. color: #fff;
  1226. border-bottom: 4px solid transparent
  1227. }
  1228.  
  1229. #tm-media-section .media-cover {
  1230. margin-top: -85px
  1231. }
  1232.  
  1233. #tm-media-section .uk-tab-grid ul {
  1234. border: 0
  1235. }
  1236.  
  1237. #tm-media-section .media-container {
  1238. padding-top: 0;
  1239. padding-bottom: 130px
  1240. }
  1241.  
  1242. #tm-right-section .uk-overlay img {
  1243. -webkit-border-radius: 3px;
  1244. -moz-border-radius: 3px;
  1245. border-radius: 3px
  1246. }
  1247.  
  1248. #tm-right-section .uk-panel-title {
  1249. padding-top: 10px;
  1250. color: #fff;
  1251. font-size: 15px;
  1252. margin-bottom: 5px
  1253. }
  1254.  
  1255. #tm-footer .uk-subnav {
  1256. margin: 0;
  1257. line-height: 40px
  1258. }
  1259.  
  1260. #tm-footer .copyright-text {
  1261. line-height: 60px
  1262. }
  1263.  
  1264. #tm-footer .uk-subnav>* {
  1265. padding: 0 15px
  1266. }
  1267.  
  1268. #tm-footer .uk-subnav>*>* {
  1269. display: inline-block;
  1270. color: #ececec
  1271. }
  1272.  
  1273. .uk-search-field::-webkit-search-cancel-button,.uk-search-field::-webkit-search-decoration {
  1274. -webkit-appearance: none
  1275. }
  1276.  
  1277. .uk-search-field::-ms-clear {
  1278. display: none
  1279. }
  1280.  
  1281. .uk-search-field::-moz-placeholder {
  1282. opacity: 1;
  1283. color: #999
  1284. }
  1285.  
  1286. .uk-search-field {
  1287. box-sizing: border-box;
  1288. margin: 0;
  1289. font: inherit;
  1290. color: #fff;
  1291. -webkit-appearance: none;
  1292. width: 120px;
  1293. height: 30px;
  1294. padding: 0 0 0 30px;
  1295. border: 1px solid rgba(0,0,0,0);
  1296. background: rgba(0,0,0,0);
  1297. -webkit-transition: all .2s linear;
  1298. transition: all .2s linear;
  1299. vertical-align: middle;
  1300. -webkit-border-radius: 4px;
  1301. -moz-border-radius: 4px;
  1302. border-radius: 4px
  1303. }
  1304.  
  1305. .uk-search-field:-ms-input-placeholder {
  1306. color: #999!important
  1307. }
  1308.  
  1309. .uk-search-field::-webkit-input-placeholder {
  1310. color: #999
  1311. }
  1312.  
  1313. .uk-search-field:focus {
  1314. outline: 0;
  1315. width: 180px
  1316. }
  1317.  
  1318. .uk-search.uk-active .uk-search-field {
  1319. width: 180px
  1320. }
  1321.  
  1322. .uk-dropdown-search {
  1323. width: 300px;
  1324. margin-top: 0;
  1325. background: #f5f5f5;
  1326. color: #444
  1327. }
  1328.  
  1329. .uk-open>.uk-dropdown-search {
  1330. -webkit-animation: uk-slide-top-fixed .2s ease-in-out;
  1331. animation: uk-slide-top-fixed .2s ease-in-out
  1332. }
  1333.  
  1334. .uk-navbar-flip .uk-dropdown-search {
  1335. margin-top: 5px;
  1336. margin-right: -15px
  1337. }
  1338.  
  1339. .uk-nav-search>li>a {
  1340. color: #444
  1341. }
  1342.  
  1343. .uk-nav-search>li.uk-active>a {
  1344. background: #00a8e6;
  1345. color: #fff;
  1346. outline: none
  1347. }
  1348.  
  1349. .uk-nav-search .uk-nav-header {
  1350. color: #999
  1351. }
  1352.  
  1353. .uk-nav-search .uk-nav-divider {
  1354. border-top: 1px solid #ddd
  1355. }
  1356.  
  1357. .uk-nav-search ul a {
  1358. color: #07d
  1359. }
  1360.  
  1361. .uk-nav-search ul a:hover {
  1362. color: #059
  1363. }
  1364.  
  1365. .uk-offcanvas .uk-search {
  1366. display: block;
  1367. margin: 20px 15px
  1368. }
  1369.  
  1370. .uk-offcanvas .uk-search:before {
  1371. color: #777
  1372. }
  1373.  
  1374. .uk-offcanvas .uk-search-field {
  1375. width: 100%;
  1376. border-color: rgba(0,0,0,0);
  1377. background: #1a1a1a;
  1378. color: #ccc
  1379. }
  1380.  
  1381. .uk-offcanvas .uk-search-field:-ms-input-placeholder {
  1382. color: #777!important
  1383. }
  1384.  
  1385. .uk-offcanvas .uk-search-field::-moz-placeholder {
  1386. color: #777
  1387. }
  1388.  
  1389. .uk-offcanvas .uk-search-field::-webkit-input-placeholder {
  1390. color: #777
  1391. }
  1392. /* Uikit */
  1393. html {
  1394. font: 15px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  1395. -webkit-text-size-adjust: 100%;
  1396. -ms-text-size-adjust: 100%;
  1397. background: #191818;
  1398. color: #bebdbd
  1399. }
  1400.  
  1401. body,ol>li>ol,ol>li>ul,ul>li>ol,ul>li>ul {
  1402. margin: 0
  1403. }
  1404.  
  1405. a {
  1406. background: 0 0
  1407. }
  1408.  
  1409. a:active,a:hover {
  1410. outline: 0
  1411. }
  1412.  
  1413. .uk-link,a {
  1414. color: #249af2;
  1415. text-decoration: none;
  1416. cursor: pointer
  1417. }
  1418.  
  1419. .uk-link:hover,a:hover {
  1420. color: #1f85d1;
  1421. text-decoration: underline
  1422. }
  1423.  
  1424. abbr[title] {
  1425. border-bottom: 1px dotted
  1426. }
  1427.  
  1428. b,dt,strong {
  1429. font-weight: 700
  1430. }
  1431.  
  1432. :not(pre)>code,:not(pre)>kbd,:not(pre)>samp {
  1433. font-size: 13px;
  1434. font-family: Consolas,monospace,serif;
  1435. color: #d05;
  1436. white-space: nowrap
  1437. }
  1438.  
  1439. em {
  1440. color: #d05
  1441. }
  1442.  
  1443. ins {
  1444. text-decoration: none
  1445. }
  1446.  
  1447. ins,mark {
  1448. background: #ffa;
  1449. color: #bebdbd
  1450. }
  1451.  
  1452. q {
  1453. font-style: italic
  1454. }
  1455.  
  1456. small {
  1457. font-size: 80%
  1458. }
  1459.  
  1460. sub,sup {
  1461. font-size: 75%;
  1462. line-height: 0;
  1463. position: relative;
  1464. vertical-align: baseline
  1465. }
  1466.  
  1467. sup {
  1468. top: -.5em
  1469. }
  1470.  
  1471. sub {
  1472. bottom: -.25em
  1473. }
  1474.  
  1475. audio,canvas,iframe,img,svg,video {
  1476. vertical-align: middle
  1477. }
  1478.  
  1479. audio,canvas,img,svg,video {
  1480. max-width: 100%;
  1481. height: auto;
  1482. box-sizing: border-box
  1483. }
  1484.  
  1485. .uk-img-preserve,.uk-img-preserve audio,.uk-img-preserve canvas,.uk-img-preserve img,.uk-img-preserve svg,.uk-img-preserve video {
  1486. max-width: none
  1487. }
  1488.  
  1489. iframe,img {
  1490. border: 0
  1491. }
  1492.  
  1493. svg:not(:root) {
  1494. overflow: hidden
  1495. }
  1496.  
  1497. address,blockquote,dl,fieldset,figure,ol,p,pre,ul {
  1498. margin: 0 0 15px
  1499. }
  1500.  
  1501. h1,h2,h3,h4,h5,h6 {
  1502. margin: 0 0 15px;
  1503. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  1504. font-weight: 400;
  1505. color: #bebdbd;
  1506. text-transform: none
  1507. }
  1508.  
  1509. *+h1,*+h2,*+h3,*+h4,*+h5,*+h6 {
  1510. margin-top: 25px
  1511. }
  1512.  
  1513. .uk-h1,h1 {
  1514. font-size: 39px;
  1515. line-height: 45px
  1516. }
  1517.  
  1518. .uk-h2,h2 {
  1519. font-size: 26px;
  1520. line-height: 33px
  1521. }
  1522.  
  1523. .uk-h3,h3 {
  1524. font-size: 19px;
  1525. line-height: 25px
  1526. }
  1527.  
  1528. .uk-h4,blockquote,h4 {
  1529. font-size: 17px;
  1530. line-height: 23px
  1531. }
  1532.  
  1533. .uk-h5,h5 {
  1534. font-size: 15px;
  1535. line-height: 20px
  1536. }
  1537.  
  1538. .uk-h6,.uk-nav li>a>div,h6 {
  1539. font-size: 13px;
  1540. line-height: 19px
  1541. }
  1542.  
  1543. ol,ul {
  1544. padding-left: 30px
  1545. }
  1546.  
  1547. dd {
  1548. margin-left: 0
  1549. }
  1550.  
  1551. hr {
  1552. box-sizing: content-box;
  1553. height: 0;
  1554. margin: 15px 0;
  1555. border: 0;
  1556. border-top: 1px solid #434343
  1557. }
  1558.  
  1559. address {
  1560. font-style: normal
  1561. }
  1562.  
  1563. blockquote {
  1564. padding-left: 15px;
  1565. border-left: 5px solid #434343;
  1566. font-style: italic
  1567. }
  1568.  
  1569. pre {
  1570. padding: 10px;
  1571. background: #f5f5f5;
  1572. font: 13px/19px Consolas,monospace,serif;
  1573. color: #bebdbd;
  1574. -moz-tab-size: 4;
  1575. tab-size: 4;
  1576. overflow: auto
  1577. }
  1578.  
  1579. ::-moz-selection {
  1580. background: #2197ef;
  1581. color: #fff;
  1582. text-shadow: none
  1583. }
  1584.  
  1585. ::selection {
  1586. background: #2197ef;
  1587. color: #fff;
  1588. text-shadow: none
  1589. }
  1590.  
  1591. article,aside,details,figcaption,figure,footer,header,main,nav,section,summary {
  1592. display: block
  1593. }
  1594.  
  1595. progress {
  1596. vertical-align: baseline
  1597. }
  1598.  
  1599. audio:not([controls]) {
  1600. display: none
  1601. }
  1602.  
  1603. [hidden],template {
  1604. display: none
  1605. }
  1606.  
  1607. @media screen and (max-width:400px) {
  1608. @ -ms-viewport {
  1609. width: device-width
  1610. }
  1611. }
  1612.  
  1613. .uk-grid {
  1614. display: -ms-flexbox;
  1615. display: -webkit-flex;
  1616. display: flex;
  1617. -ms-flex-wrap: wrap;
  1618. -webkit-flex-wrap: wrap;
  1619. flex-wrap: wrap;
  1620. padding: 0;
  1621. list-style: none
  1622. }
  1623.  
  1624. .uk-grid:after,.uk-grid:before {
  1625. content: "";
  1626. display: block;
  1627. overflow: hidden
  1628. }
  1629.  
  1630. .uk-grid:after {
  1631. clear: both
  1632. }
  1633.  
  1634. .uk-grid>* {
  1635. -ms-flex: none;
  1636. -webkit-flex: none;
  1637. flex: none;
  1638. margin: 0;
  1639. float: left
  1640. }
  1641.  
  1642. .uk-grid>*>:last-child {
  1643. margin-bottom: 0
  1644. }
  1645.  
  1646. .uk-grid {
  1647. margin: 0 0 0 -25px
  1648. }
  1649.  
  1650. .uk-grid>* {
  1651. padding-left: 25px
  1652. }
  1653.  
  1654. .uk-grid+.uk-grid,.uk-grid-margin,.uk-grid>*>.uk-panel+.uk-panel {
  1655. margin-top: 25px
  1656. }
  1657.  
  1658. @media (min-width:1220px) {
  1659. .uk-grid {
  1660. margin-left: -35px
  1661. }
  1662.  
  1663. .uk-grid>* {
  1664. padding-left: 35px
  1665. }
  1666.  
  1667. .uk-grid+.uk-grid,.uk-grid-margin,.uk-grid>*>.uk-panel+.uk-panel {
  1668. margin-top: 35px
  1669. }
  1670. }
  1671.  
  1672. .uk-grid-collapse {
  1673. margin-left: 0
  1674. }
  1675.  
  1676. .uk-grid-collapse>* {
  1677. padding-left: 0
  1678. }
  1679.  
  1680. .uk-grid-collapse+.uk-grid-collapse,.uk-grid-collapse>*>.uk-panel+.uk-panel,.uk-grid-collapse>.uk-grid-margin {
  1681. margin-top: 0
  1682. }
  1683.  
  1684. .uk-grid-small {
  1685. margin-left: -10px
  1686. }
  1687.  
  1688. .uk-grid-small>* {
  1689. padding-left: 10px
  1690. }
  1691.  
  1692. .uk-grid-small+.uk-grid-small,.uk-grid-small>*>.uk-panel+.uk-panel,.uk-grid-small>.uk-grid-margin {
  1693. margin-top: 10px
  1694. }
  1695.  
  1696. .uk-grid-medium {
  1697. margin-left: -25px
  1698. }
  1699.  
  1700. .uk-grid-medium>* {
  1701. padding-left: 25px
  1702. }
  1703.  
  1704. .uk-grid-medium+.uk-grid-medium,.uk-grid-medium>*>.uk-panel+.uk-panel,.uk-grid-medium>.uk-grid-margin {
  1705. margin-top: 25px
  1706. }
  1707.  
  1708. @media (min-width:960px) {
  1709. .uk-grid-large {
  1710. margin-left: -35px
  1711. }
  1712.  
  1713. .uk-grid-large>* {
  1714. padding-left: 35px
  1715. }
  1716.  
  1717. .uk-grid-large+.uk-grid-large,.uk-grid-large-margin,.uk-grid-large>*>.uk-panel+.uk-panel {
  1718. margin-top: 35px
  1719. }
  1720. }
  1721.  
  1722. @media (min-width:1220px) {
  1723. .uk-grid-large {
  1724. margin-left: -50px
  1725. }
  1726.  
  1727. .uk-grid-large>* {
  1728. padding-left: 50px
  1729. }
  1730.  
  1731. .uk-grid-large+.uk-grid-large,.uk-grid-large-margin,.uk-grid-large>*>.uk-panel+.uk-panel {
  1732. margin-top: 50px
  1733. }
  1734. }
  1735.  
  1736. .uk-grid-divider:not(:empty) {
  1737. margin-left: -25px;
  1738. margin-right: -25px
  1739. }
  1740.  
  1741. .uk-grid-divider>* {
  1742. padding-left: 25px;
  1743. padding-right: 25px
  1744. }
  1745.  
  1746. .uk-grid-divider>[class*=uk-width-1-]:not(.uk-width-1-1):nth-child(n+2),.uk-grid-divider>[class*=uk-width-2-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-3-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-4-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-5-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-6-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-7-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-8-]:nth-child(n+2),.uk-grid-divider>[class*=uk-width-9-]:nth-child(n+2) {
  1747. border-left: 1px solid #434343
  1748. }
  1749.  
  1750. @media (min-width:768px) {
  1751. .uk-grid-divider>[class*=uk-width-medium-]:not(.uk-width-medium-1-1):nth-child(n+2) {
  1752. border-left: 1px solid #434343
  1753. }
  1754. }
  1755.  
  1756. @media (min-width:960px) {
  1757. .uk-grid-divider>[class*=uk-width-large-]:not(.uk-width-large-1-1):nth-child(n+2) {
  1758. border-left: 1px solid #434343
  1759. }
  1760. }
  1761.  
  1762. @media (min-width:1220px) {
  1763. .uk-grid-divider:not(:empty) {
  1764. margin-left: -35px;
  1765. margin-right: -35px
  1766. }
  1767.  
  1768. .uk-grid-divider>* {
  1769. padding-left: 35px;
  1770. padding-right: 35px
  1771. }
  1772.  
  1773. .uk-grid-divider:empty {
  1774. margin-top: 35px;
  1775. margin-bottom: 35px
  1776. }
  1777. }
  1778.  
  1779. .uk-grid-divider:empty {
  1780. margin-top: 25px;
  1781. margin-bottom: 25px;
  1782. border-top: 1px solid #434343
  1783. }
  1784.  
  1785. .uk-grid-match>* {
  1786. display: -ms-flexbox;
  1787. display: -webkit-flex;
  1788. display: flex;
  1789. -ms-flex-wrap: wrap;
  1790. -webkit-flex-wrap: wrap;
  1791. flex-wrap: wrap
  1792. }
  1793.  
  1794. .uk-grid-match>*>* {
  1795. -ms-flex: none;
  1796. -webkit-flex: none;
  1797. flex: none
  1798. }
  1799.  
  1800. .uk-grid-match>*>*,[class*=uk-grid-width]>* {
  1801. box-sizing: border-box;
  1802. width: 100%
  1803. }
  1804.  
  1805. .uk-grid-width-1-2>* {
  1806. width: 50%
  1807. }
  1808.  
  1809. .uk-grid-width-1-3>* {
  1810. width: 33.333%
  1811. }
  1812.  
  1813. .uk-grid-width-1-4>* {
  1814. width: 25%
  1815. }
  1816.  
  1817. .uk-grid-width-1-5>* {
  1818. width: 20%
  1819. }
  1820.  
  1821. .uk-grid-width-1-6>* {
  1822. width: 16.666%
  1823. }
  1824.  
  1825. .uk-grid-width-1-10>* {
  1826. width: 10%
  1827. }
  1828.  
  1829. .uk-grid-width-auto>* {
  1830. width: auto
  1831. }
  1832.  
  1833. @media (min-width:480px) {
  1834. .uk-grid-width-small-1-1>* {
  1835. width: 100%
  1836. }
  1837.  
  1838. .uk-grid-width-small-1-2>* {
  1839. width: 50%
  1840. }
  1841.  
  1842. .uk-grid-width-small-1-3>* {
  1843. width: 33.333%
  1844. }
  1845.  
  1846. .uk-grid-width-small-1-4>* {
  1847. width: 25%
  1848. }
  1849.  
  1850. .uk-grid-width-small-1-5>* {
  1851. width: 20%
  1852. }
  1853.  
  1854. .uk-grid-width-small-1-6>* {
  1855. width: 16.666%
  1856. }
  1857.  
  1858. .uk-grid-width-small-1-10>* {
  1859. width: 10%
  1860. }
  1861. }
  1862.  
  1863. @media (min-width:768px) {
  1864. .uk-grid-width-medium-1-1>* {
  1865. width: 100%
  1866. }
  1867.  
  1868. .uk-grid-width-medium-1-2>* {
  1869. width: 50%
  1870. }
  1871.  
  1872. .uk-grid-width-medium-1-3>* {
  1873. width: 33.333%
  1874. }
  1875.  
  1876. .uk-grid-width-medium-1-4>* {
  1877. width: 25%
  1878. }
  1879.  
  1880. .uk-grid-width-medium-1-5>* {
  1881. width: 20%
  1882. }
  1883.  
  1884. .uk-grid-width-medium-1-6>* {
  1885. width: 16.666%
  1886. }
  1887.  
  1888. .uk-grid-width-medium-1-10>* {
  1889. width: 10%
  1890. }
  1891. }
  1892.  
  1893. @media (min-width:960px) {
  1894. .uk-grid-width-large-1-1>* {
  1895. width: 100%
  1896. }
  1897.  
  1898. .uk-grid-width-large-1-2>* {
  1899. width: 50%
  1900. }
  1901.  
  1902. .uk-grid-width-large-1-3>* {
  1903. width: 33.333%
  1904. }
  1905.  
  1906. .uk-grid-width-large-1-4>* {
  1907. width: 25%
  1908. }
  1909.  
  1910. .uk-grid-width-large-1-5>* {
  1911. width: 20%
  1912. }
  1913.  
  1914. .uk-grid-width-large-1-6>* {
  1915. width: 16.666%
  1916. }
  1917.  
  1918. .uk-grid-width-large-1-10>* {
  1919. width: 10%
  1920. }
  1921. }
  1922.  
  1923. @media (min-width:1220px) {
  1924. .uk-grid-width-xlarge-1-1>* {
  1925. width: 100%
  1926. }
  1927.  
  1928. .uk-grid-width-xlarge-1-2>* {
  1929. width: 50%
  1930. }
  1931.  
  1932. .uk-grid-width-xlarge-1-3>* {
  1933. width: 33.333%
  1934. }
  1935.  
  1936. .uk-grid-width-xlarge-1-4>* {
  1937. width: 25%
  1938. }
  1939.  
  1940. .uk-grid-width-xlarge-1-5>* {
  1941. width: 20%
  1942. }
  1943.  
  1944. .uk-grid-width-xlarge-1-6>* {
  1945. width: 16.666%
  1946. }
  1947.  
  1948. .uk-grid-width-xlarge-1-10>* {
  1949. width: 10%
  1950. }
  1951. }
  1952.  
  1953. [class*=uk-width] {
  1954. box-sizing: border-box;
  1955. width: 100%
  1956. }
  1957.  
  1958. .uk-width-1-1 {
  1959. width: 100%
  1960. }
  1961.  
  1962. .uk-width-1-2,.uk-width-2-4,.uk-width-3-6,.uk-width-5-10 {
  1963. width: 50%
  1964. }
  1965.  
  1966. .uk-width-1-3,.uk-width-2-6 {
  1967. width: 33.333%
  1968. }
  1969.  
  1970. .uk-width-2-3,.uk-width-4-6 {
  1971. width: 66.666%
  1972. }
  1973.  
  1974. .uk-width-1-4 {
  1975. width: 25%
  1976. }
  1977.  
  1978. .uk-width-3-4 {
  1979. width: 75%
  1980. }
  1981.  
  1982. .uk-width-1-5,.uk-width-2-10 {
  1983. width: 20%
  1984. }
  1985.  
  1986. .uk-width-2-5,.uk-width-4-10 {
  1987. width: 40%
  1988. }
  1989.  
  1990. .uk-width-3-5,.uk-width-6-10 {
  1991. width: 60%
  1992. }
  1993.  
  1994. .uk-width-4-5,.uk-width-8-10 {
  1995. width: 80%
  1996. }
  1997.  
  1998. .uk-width-1-6 {
  1999. width: 16.666%
  2000. }
  2001.  
  2002. .uk-width-5-6 {
  2003. width: 83.333%
  2004. }
  2005.  
  2006. .uk-width-1-10 {
  2007. width: 10%
  2008. }
  2009.  
  2010. .uk-width-3-10 {
  2011. width: 30%
  2012. }
  2013.  
  2014. .uk-width-7-10 {
  2015. width: 70%
  2016. }
  2017.  
  2018. .uk-width-9-10 {
  2019. width: 90%
  2020. }
  2021.  
  2022. @media (min-width:480px) {
  2023. .uk-width-small-1-1 {
  2024. width: 100%
  2025. }
  2026.  
  2027. .uk-width-small-1-2,.uk-width-small-2-4,.uk-width-small-3-6,.uk-width-small-5-10 {
  2028. width: 50%
  2029. }
  2030.  
  2031. .uk-width-small-1-3,.uk-width-small-2-6 {
  2032. width: 33.333%
  2033. }
  2034.  
  2035. .uk-width-small-2-3,.uk-width-small-4-6 {
  2036. width: 66.666%
  2037. }
  2038.  
  2039. .uk-width-small-1-4 {
  2040. width: 25%
  2041. }
  2042.  
  2043. .uk-width-small-3-4 {
  2044. width: 75%
  2045. }
  2046.  
  2047. .uk-width-small-1-5,.uk-width-small-2-10 {
  2048. width: 20%
  2049. }
  2050.  
  2051. .uk-width-small-2-5,.uk-width-small-4-10 {
  2052. width: 40%
  2053. }
  2054.  
  2055. .uk-width-small-3-5,.uk-width-small-6-10 {
  2056. width: 60%
  2057. }
  2058.  
  2059. .uk-width-small-4-5,.uk-width-small-8-10 {
  2060. width: 80%
  2061. }
  2062.  
  2063. .uk-width-small-1-6 {
  2064. width: 16.666%
  2065. }
  2066.  
  2067. .uk-width-small-5-6 {
  2068. width: 83.333%
  2069. }
  2070.  
  2071. .uk-width-small-1-10 {
  2072. width: 10%
  2073. }
  2074.  
  2075. .uk-width-small-3-10 {
  2076. width: 30%
  2077. }
  2078.  
  2079. .uk-width-small-7-10 {
  2080. width: 70%
  2081. }
  2082.  
  2083. .uk-width-small-9-10 {
  2084. width: 90%
  2085. }
  2086. }
  2087.  
  2088. @media (min-width:768px) {
  2089. .uk-width-medium-1-1 {
  2090. width: 100%
  2091. }
  2092.  
  2093. .uk-width-medium-1-2,.uk-width-medium-2-4,.uk-width-medium-3-6,.uk-width-medium-5-10 {
  2094. width: 50%
  2095. }
  2096.  
  2097. .uk-width-medium-1-3,.uk-width-medium-2-6 {
  2098. width: 33.333%
  2099. }
  2100.  
  2101. .uk-width-medium-2-3,.uk-width-medium-4-6 {
  2102. width: 66.666%
  2103. }
  2104.  
  2105. .uk-width-medium-1-4 {
  2106. width: 25%
  2107. }
  2108.  
  2109. .uk-width-medium-3-4 {
  2110. width: 75%
  2111. }
  2112.  
  2113. .uk-width-medium-1-5,.uk-width-medium-2-10 {
  2114. width: 20%
  2115. }
  2116.  
  2117. .uk-width-medium-2-5,.uk-width-medium-4-10 {
  2118. width: 40%
  2119. }
  2120.  
  2121. .uk-width-medium-3-5,.uk-width-medium-6-10 {
  2122. width: 60%
  2123. }
  2124.  
  2125. .uk-width-medium-4-5,.uk-width-medium-8-10 {
  2126. width: 80%
  2127. }
  2128.  
  2129. .uk-width-medium-1-6 {
  2130. width: 16.666%
  2131. }
  2132.  
  2133. .uk-width-medium-5-6 {
  2134. width: 83.333%
  2135. }
  2136.  
  2137. .uk-width-medium-1-10 {
  2138. width: 10%
  2139. }
  2140.  
  2141. .uk-width-medium-3-10 {
  2142. width: 30%
  2143. }
  2144.  
  2145. .uk-width-medium-7-10 {
  2146. width: 70%;
  2147. margin-top: -85px
  2148. }
  2149.  
  2150. .uk-width-medium-9-10 {
  2151. width: 90%
  2152. }
  2153. }
  2154.  
  2155. @media (min-width:960px) {
  2156. .uk-width-large-1-1 {
  2157. width: 100%
  2158. }
  2159.  
  2160. .uk-width-large-1-2,.uk-width-large-2-4,.uk-width-large-3-6,.uk-width-large-5-10 {
  2161. width: 50%
  2162. }
  2163.  
  2164. .uk-width-large-1-3,.uk-width-large-2-6 {
  2165. width: 33.333%
  2166. }
  2167.  
  2168. .uk-width-large-2-3,.uk-width-large-4-6 {
  2169. width: 66.666%
  2170. }
  2171.  
  2172. .uk-width-large-1-4 {
  2173. width: 25%
  2174. }
  2175.  
  2176. .uk-width-large-3-4 {
  2177. width: 75%
  2178. }
  2179.  
  2180. .uk-width-large-1-5,.uk-width-large-2-10 {
  2181. width: 20%
  2182. }
  2183.  
  2184. .uk-width-large-2-5,.uk-width-large-4-10 {
  2185. width: 40%
  2186. }
  2187.  
  2188. .uk-width-large-3-5,.uk-width-large-6-10 {
  2189. width: 60%
  2190. }
  2191.  
  2192. .uk-width-large-4-5,.uk-width-large-8-10 {
  2193. width: 80%
  2194. }
  2195.  
  2196. .uk-width-large-1-6 {
  2197. width: 16.666%
  2198. }
  2199.  
  2200. .uk-width-large-5-6 {
  2201. width: 83.333%
  2202. }
  2203.  
  2204. .uk-width-large-1-10 {
  2205. width: 10%
  2206. }
  2207.  
  2208. .uk-width-large-3-10 {
  2209. width: 30%
  2210. }
  2211.  
  2212. .uk-width-large-7-10 {
  2213. width: 70%
  2214. }
  2215.  
  2216. .uk-width-large-9-10 {
  2217. width: 90%
  2218. }
  2219. }
  2220.  
  2221. @media (min-width:1220px) {
  2222. .uk-width-xlarge-1-1 {
  2223. width: 100%
  2224. }
  2225.  
  2226. .uk-width-xlarge-1-2,.uk-width-xlarge-2-4,.uk-width-xlarge-3-6,.uk-width-xlarge-5-10 {
  2227. width: 50%
  2228. }
  2229.  
  2230. .uk-width-xlarge-1-3,.uk-width-xlarge-2-6 {
  2231. width: 33.333%
  2232. }
  2233.  
  2234. .uk-width-xlarge-2-3,.uk-width-xlarge-4-6 {
  2235. width: 66.666%
  2236. }
  2237.  
  2238. .uk-width-xlarge-1-4 {
  2239. width: 25%
  2240. }
  2241.  
  2242. .uk-width-xlarge-3-4 {
  2243. width: 75%
  2244. }
  2245.  
  2246. .uk-width-xlarge-1-5,.uk-width-xlarge-2-10 {
  2247. width: 20%
  2248. }
  2249.  
  2250. .uk-width-xlarge-2-5,.uk-width-xlarge-4-10 {
  2251. width: 40%
  2252. }
  2253.  
  2254. .uk-width-xlarge-3-5,.uk-width-xlarge-6-10 {
  2255. width: 60%
  2256. }
  2257.  
  2258. .uk-width-xlarge-4-5,.uk-width-xlarge-8-10 {
  2259. width: 80%
  2260. }
  2261.  
  2262. .uk-width-xlarge-1-6 {
  2263. width: 16.666%
  2264. }
  2265.  
  2266. .uk-width-xlarge-5-6 {
  2267. width: 83.333%
  2268. }
  2269.  
  2270. .uk-width-xlarge-1-10 {
  2271. width: 10%
  2272. }
  2273.  
  2274. .uk-width-xlarge-3-10 {
  2275. width: 30%
  2276. }
  2277.  
  2278. .uk-width-xlarge-7-10 {
  2279. width: 70%
  2280. }
  2281.  
  2282. .uk-width-xlarge-9-10 {
  2283. width: 90%
  2284. }
  2285. }
  2286.  
  2287. @media (min-width:768px) {
  2288. [class*=uk-pull-],[class*=uk-push-] {
  2289. position: relative
  2290. }
  2291.  
  2292. .uk-push-1-2,.uk-push-2-4,.uk-push-3-6,.uk-push-5-10 {
  2293. left: 50%
  2294. }
  2295.  
  2296. .uk-push-1-3,.uk-push-2-6 {
  2297. left: 33.333%
  2298. }
  2299.  
  2300. .uk-push-2-3,.uk-push-4-6 {
  2301. left: 66.666%
  2302. }
  2303.  
  2304. .uk-push-1-4 {
  2305. left: 25%
  2306. }
  2307.  
  2308. .uk-push-3-4 {
  2309. left: 75%
  2310. }
  2311.  
  2312. .uk-push-1-5,.uk-push-2-10 {
  2313. left: 20%
  2314. }
  2315.  
  2316. .uk-push-2-5,.uk-push-4-10 {
  2317. left: 40%
  2318. }
  2319.  
  2320. .uk-push-3-5,.uk-push-6-10 {
  2321. left: 60%
  2322. }
  2323.  
  2324. .uk-push-4-5,.uk-push-8-10 {
  2325. left: 80%
  2326. }
  2327.  
  2328. .uk-push-1-6 {
  2329. left: 16.666%
  2330. }
  2331.  
  2332. .uk-push-5-6 {
  2333. left: 83.333%
  2334. }
  2335.  
  2336. .uk-push-1-10 {
  2337. left: 10%
  2338. }
  2339.  
  2340. .uk-push-3-10 {
  2341. left: 30%
  2342. }
  2343.  
  2344. .uk-push-7-10 {
  2345. left: 70%
  2346. }
  2347.  
  2348. .uk-push-9-10 {
  2349. left: 90%
  2350. }
  2351.  
  2352. .uk-pull-1-2,.uk-pull-2-4,.uk-pull-3-6,.uk-pull-5-10 {
  2353. left: -50%
  2354. }
  2355.  
  2356. .uk-pull-1-3,.uk-pull-2-6 {
  2357. left: -33.333%
  2358. }
  2359.  
  2360. .uk-pull-2-3,.uk-pull-4-6 {
  2361. left: -66.666%
  2362. }
  2363.  
  2364. .uk-pull-1-4 {
  2365. left: -25%
  2366. }
  2367.  
  2368. .uk-pull-3-4 {
  2369. left: -75%
  2370. }
  2371.  
  2372. .uk-pull-1-5,.uk-pull-2-10 {
  2373. left: -20%
  2374. }
  2375.  
  2376. .uk-pull-2-5,.uk-pull-4-10 {
  2377. left: -40%
  2378. }
  2379.  
  2380. .uk-pull-3-5,.uk-pull-6-10 {
  2381. left: -60%
  2382. }
  2383.  
  2384. .uk-pull-4-5,.uk-pull-8-10 {
  2385. left: -80%
  2386. }
  2387.  
  2388. .uk-pull-1-6 {
  2389. left: -16.666%
  2390. }
  2391.  
  2392. .uk-pull-5-6 {
  2393. left: -83.333%
  2394. }
  2395.  
  2396. .uk-pull-1-10 {
  2397. left: -10%
  2398. }
  2399.  
  2400. .uk-pull-3-10 {
  2401. left: -30%
  2402. }
  2403.  
  2404. .uk-pull-7-10 {
  2405. left: -70%
  2406. }
  2407.  
  2408. .uk-pull-9-10 {
  2409. left: -90%
  2410. }
  2411. }
  2412.  
  2413. .uk-panel {
  2414. display: block;
  2415. position: relative
  2416. }
  2417.  
  2418. .uk-panel,.uk-panel:hover {
  2419. text-decoration: none
  2420. }
  2421.  
  2422. .uk-panel:after,.uk-panel:before {
  2423. content: "";
  2424. display: table
  2425. }
  2426.  
  2427. .uk-panel:after {
  2428. clear: both
  2429. }
  2430.  
  2431. .uk-panel>:not(.uk-panel-title):last-child {
  2432. margin-bottom: 0
  2433. }
  2434.  
  2435. .uk-panel-title {
  2436. margin-top: 0;
  2437. margin-bottom: 15px;
  2438. font-size: 19px;
  2439. line-height: 25px;
  2440. font-weight: 400;
  2441. text-transform: none;
  2442. color: #bebdbd
  2443. }
  2444.  
  2445. .uk-panel-badge {
  2446. position: absolute;
  2447. top: 0;
  2448. right: 0;
  2449. z-index: 1
  2450. }
  2451.  
  2452. .uk-panel-teaser {
  2453. margin-bottom: 15px
  2454. }
  2455.  
  2456. .uk-panel-body {
  2457. padding: 15px
  2458. }
  2459.  
  2460. .uk-panel-box {
  2461. padding: 15px;
  2462. background: #191818;
  2463. color: #bebdbd
  2464. }
  2465.  
  2466. .uk-panel-box .uk-panel-title,.uk-panel-box-hover:hover {
  2467. color: #bebdbd
  2468. }
  2469.  
  2470. .uk-panel-box .uk-panel-badge {
  2471. top: 10px;
  2472. right: 10px
  2473. }
  2474.  
  2475. .uk-panel-box>.uk-panel-teaser {
  2476. margin-top: -15px;
  2477. margin-left: -15px;
  2478. margin-right: -15px
  2479. }
  2480.  
  2481. .uk-panel-box>.uk-nav-side {
  2482. margin: 0 -15px
  2483. }
  2484.  
  2485. .uk-panel-box-primary {
  2486. background-color: #00a8e6
  2487. }
  2488.  
  2489. .uk-panel-box-primary,.uk-panel-box-primary-hover:hover {
  2490. color: rgba(255,255,255,.8)
  2491. }
  2492.  
  2493. .uk-panel-box-primary .uk-panel-title {
  2494. color: #fff
  2495. }
  2496.  
  2497. .uk-panel-box-secondary {
  2498. background-color: #222121
  2499. }
  2500.  
  2501. .uk-panel-box-secondary,.uk-panel-box-secondary-hover:hover {
  2502. color: rgba(255,255,255,.68)
  2503. }
  2504.  
  2505. .uk-panel-box-secondary .uk-panel-title {
  2506. color: #fff
  2507. }
  2508.  
  2509. .uk-panel-hover {
  2510. padding: 15px;
  2511. color: #bebdbd
  2512. }
  2513.  
  2514. .uk-panel-hover:hover {
  2515. background: #f5f5f5;
  2516. color: #bebdbd
  2517. }
  2518.  
  2519. .uk-panel-hover .uk-panel-badge {
  2520. top: 10px;
  2521. right: 10px
  2522. }
  2523.  
  2524. .uk-panel-hover>.uk-panel-teaser {
  2525. margin-top: -15px;
  2526. margin-left: -15px;
  2527. margin-right: -15px
  2528. }
  2529.  
  2530. .uk-panel-header .uk-panel-title {
  2531. padding-bottom: 10px;
  2532. border-bottom: 1px solid #434343;
  2533. color: #bebdbd
  2534. }
  2535.  
  2536. .uk-panel-space {
  2537. padding: 30px
  2538. }
  2539.  
  2540. .uk-panel-space .uk-panel-badge {
  2541. top: 30px;
  2542. right: 30px
  2543. }
  2544.  
  2545. .uk-panel+.uk-panel-divider {
  2546. margin-top: 50px!important
  2547. }
  2548.  
  2549. .uk-panel+.uk-panel-divider:before {
  2550. content: "";
  2551. display: block;
  2552. position: absolute;
  2553. top: -25px;
  2554. left: 0;
  2555. right: 0;
  2556. border-top: 1px solid #434343
  2557. }
  2558.  
  2559. @media (min-width:1220px) {
  2560. .uk-panel+.uk-panel-divider {
  2561. margin-top: 70px!important
  2562. }
  2563.  
  2564. .uk-panel+.uk-panel-divider:before {
  2565. top: -35px
  2566. }
  2567. }
  2568.  
  2569. .uk-block {
  2570. position: relative;
  2571. box-sizing: border-box;
  2572. padding-top: 20px;
  2573. padding-bottom: 20px
  2574. }
  2575.  
  2576. @media (min-width:768px) {
  2577. .uk-block {
  2578. padding-top: 50px;
  2579. padding-bottom: 50px
  2580. }
  2581. }
  2582.  
  2583. .uk-block:after,.uk-block:before {
  2584. content: "";
  2585. display: table
  2586. }
  2587.  
  2588. .uk-block:after {
  2589. clear: both
  2590. }
  2591.  
  2592. .uk-block>:last-child {
  2593. margin-bottom: 0
  2594. }
  2595.  
  2596. .uk-block-large {
  2597. padding-top: 20px;
  2598. padding-bottom: 20px
  2599. }
  2600.  
  2601. @media (min-width:768px) {
  2602. .uk-block-large {
  2603. padding-top: 50px;
  2604. padding-bottom: 50px
  2605. }
  2606. }
  2607.  
  2608. @media (min-width:960px) {
  2609. .uk-block-large {
  2610. padding-top: 100px;
  2611. padding-bottom: 100px
  2612. }
  2613. }
  2614.  
  2615. .uk-block-default {
  2616. background: #191818
  2617. }
  2618.  
  2619. .uk-block-muted {
  2620. background: #222121
  2621. }
  2622.  
  2623. .uk-block-primary {
  2624. background: #2197ef
  2625. }
  2626.  
  2627. .uk-block-secondary,.uk-table tbody tr.uk-active {
  2628. background: #222121
  2629. }
  2630.  
  2631. .uk-block-default+.uk-block-default,.uk-block-muted+.uk-block-muted,.uk-block-primary+.uk-block-primary,.uk-block-secondary+.uk-block-secondary {
  2632. padding-top: 0
  2633. }
  2634.  
  2635. .uk-article:after,.uk-article:before {
  2636. content: "";
  2637. display: table
  2638. }
  2639.  
  2640. .uk-article:after {
  2641. clear: both
  2642. }
  2643.  
  2644. .uk-article>:last-child {
  2645. margin-bottom: 0
  2646. }
  2647.  
  2648. .uk-article+.uk-article {
  2649. margin-top: 25px
  2650. }
  2651.  
  2652. .uk-article-title {
  2653. font-size: 39px;
  2654. line-height: 45px;
  2655. font-weight: 400;
  2656. text-transform: none
  2657. }
  2658.  
  2659. .uk-article-title a {
  2660. color: inherit;
  2661. text-decoration: none
  2662. }
  2663.  
  2664. .uk-article-meta {
  2665. font-size: 13px;
  2666. line-height: 19px;
  2667. color: #999
  2668. }
  2669.  
  2670. .uk-article-lead {
  2671. color: #bebdbd;
  2672. font-size: 19px;
  2673. line-height: 25px;
  2674. font-weight: 400
  2675. }
  2676.  
  2677. .uk-article-divider {
  2678. margin-bottom: 25px;
  2679. border-color: #434343
  2680. }
  2681.  
  2682. .uk-comment-header {
  2683. margin-bottom: 15px
  2684. }
  2685.  
  2686. .uk-comment-header:after,.uk-comment-header:before {
  2687. content: "";
  2688. display: table
  2689. }
  2690.  
  2691. .uk-comment-header:after {
  2692. clear: both
  2693. }
  2694.  
  2695. .uk-comment-avatar {
  2696. margin-right: 15px;
  2697. float: left
  2698. }
  2699.  
  2700. .uk-comment-title {
  2701. margin: 5px 0 0;
  2702. font-size: 17px;
  2703. line-height: 23px
  2704. }
  2705.  
  2706. .uk-comment-meta {
  2707. margin: 2px 0 0;
  2708. font-size: 12px;
  2709. line-height: 18px;
  2710. color: #999
  2711. }
  2712.  
  2713. .uk-comment-body>:last-child {
  2714. margin-bottom: 0
  2715. }
  2716.  
  2717. .uk-comment-list {
  2718. padding: 0;
  2719. list-style: none
  2720. }
  2721.  
  2722. .uk-comment-list .uk-comment+ul {
  2723. margin: 15px 0 0;
  2724. list-style: none
  2725. }
  2726.  
  2727. .uk-comment-list .uk-comment+ul>li:nth-child(n+2),.uk-comment-list>li:nth-child(n+2) {
  2728. margin-top: 15px
  2729. }
  2730.  
  2731. @media (min-width:768px) {
  2732. .uk-comment-list .uk-comment+ul {
  2733. padding-left: 100px
  2734. }
  2735. }
  2736.  
  2737. .uk-cover-background {
  2738. background-position: 50% 50%;
  2739. background-size: cover;
  2740. background-repeat: no-repeat
  2741. }
  2742.  
  2743. .uk-cover {
  2744. overflow: hidden
  2745. }
  2746.  
  2747. .uk-cover-object {
  2748. width: auto;
  2749. height: auto;
  2750. min-width: 100%;
  2751. min-height: 100%;
  2752. max-width: none
  2753. }
  2754.  
  2755. .uk-cover-object,[data-uk-cover] {
  2756. position: relative;
  2757. left: 50%;
  2758. top: 50%;
  2759. -webkit-transform: translate(-50%,-50%);
  2760. transform: translate(-50%,-50%)
  2761. }
  2762.  
  2763. .uk-nav,.uk-nav ul {
  2764. margin: 0;
  2765. padding: 0;
  2766. list-style: none
  2767. }
  2768.  
  2769. .uk-nav li>a {
  2770. display: block;
  2771. text-decoration: none
  2772. }
  2773.  
  2774. .uk-nav-header,.uk-nav>li>a {
  2775. padding: 5px 15px
  2776. }
  2777.  
  2778. .uk-nav ul {
  2779. padding-left: 15px
  2780. }
  2781.  
  2782. .uk-nav ul a {
  2783. padding: 2px 0
  2784. }
  2785.  
  2786. .uk-nav-header {
  2787. text-transform: uppercase;
  2788. font-weight: 700;
  2789. font-size: 13px
  2790. }
  2791.  
  2792. .uk-nav-header:not(:first-child) {
  2793. margin-top: 15px
  2794. }
  2795.  
  2796. .uk-nav-divider {
  2797. margin: 9px 15px
  2798. }
  2799.  
  2800. ul.uk-nav-sub {
  2801. padding: 5px 0 5px 15px
  2802. }
  2803.  
  2804. .uk-nav-parent-icon>.uk-parent>a:after {
  2805. content: "\f104";
  2806. width: 20px;
  2807. margin-right: -10px;
  2808. float: right;
  2809. font-family: FontAwesome;
  2810. text-align: center
  2811. }
  2812.  
  2813. .uk-nav-parent-icon>.uk-parent.uk-open>a:after {
  2814. content: "\f107"
  2815. }
  2816.  
  2817. .uk-nav-side .uk-nav-header,.uk-nav-side>li>a {
  2818. color: #bebdbd
  2819. }
  2820.  
  2821. .uk-nav-side>li>a:focus,.uk-nav-side>li>a:hover {
  2822. background: rgba(0,0,0,.05);
  2823. color: #bebdbd;
  2824. outline: none
  2825. }
  2826.  
  2827. .uk-nav-side>li.uk-active>a {
  2828. background: #00a8e6;
  2829. color: #fff
  2830. }
  2831.  
  2832. .uk-nav-side .uk-nav-divider {
  2833. border-top: 1px solid #434343
  2834. }
  2835.  
  2836. .uk-nav-side ul a {
  2837. color: #249af2
  2838. }
  2839.  
  2840. .uk-nav-side ul a:hover {
  2841. color: #1f85d1
  2842. }
  2843.  
  2844. .uk-nav-dropdown>li>a {
  2845. color: #bebdbd
  2846. }
  2847.  
  2848. .uk-nav-dropdown>li>a:focus,.uk-nav-dropdown>li>a:hover {
  2849. background: #00a8e6;
  2850. color: #fff;
  2851. outline: none
  2852. }
  2853.  
  2854. .uk-nav-dropdown .uk-nav-header {
  2855. color: #999
  2856. }
  2857.  
  2858. .uk-nav-dropdown .uk-nav-divider {
  2859. border-top: 1px solid #434343
  2860. }
  2861.  
  2862. .uk-nav-dropdown ul a {
  2863. color: #249af2
  2864. }
  2865.  
  2866. .uk-nav-dropdown ul a:hover {
  2867. color: #1f85d1
  2868. }
  2869.  
  2870. .uk-nav-navbar>li>a {
  2871. color: #bebdbd
  2872. }
  2873.  
  2874. .uk-nav-navbar>li>a:focus,.uk-nav-navbar>li>a:hover {
  2875. background: #00a8e6;
  2876. color: #fff;
  2877. outline: none
  2878. }
  2879.  
  2880. .uk-nav-navbar .uk-nav-header {
  2881. color: #999
  2882. }
  2883.  
  2884. .uk-nav-navbar .uk-nav-divider {
  2885. border-top: 1px solid #434343
  2886. }
  2887.  
  2888. .uk-nav-navbar ul a {
  2889. color: #249af2
  2890. }
  2891.  
  2892. .uk-nav-navbar ul a:hover {
  2893. color: #1f85d1
  2894. }
  2895.  
  2896. .uk-nav-offcanvas>li>a {
  2897. color: #ccc;
  2898. padding: 10px 15px
  2899. }
  2900.  
  2901. .uk-nav-offcanvas>.uk-open>a,html:not(.uk-touch) .uk-nav-offcanvas>li>a:focus,html:not(.uk-touch) .uk-nav-offcanvas>li>a:hover {
  2902. background: #1d1b1b;
  2903. color: #fff;
  2904. outline: none
  2905. }
  2906.  
  2907. html .uk-nav.uk-nav-offcanvas>li.uk-active>a {
  2908. background: #000;
  2909. color: #fff
  2910. }
  2911.  
  2912. .uk-nav-offcanvas .uk-nav-header {
  2913. color: #777
  2914. }
  2915.  
  2916. .uk-nav-offcanvas .uk-nav-divider {
  2917. border-top: 1px solid #000
  2918. }
  2919.  
  2920. .uk-nav-offcanvas ul a {
  2921. color: #ccc
  2922. }
  2923.  
  2924. .uk-contrast :not(pre)>code,.uk-contrast :not(pre)>kbd,.uk-contrast :not(pre)>samp,.uk-offcanvas .uk-panel a:not([class]):hover,html:not(.uk-touch) .uk-nav-offcanvas ul a:hover {
  2925. color: #fff
  2926. }
  2927.  
  2928. .uk-navbar {
  2929. background: #eee;
  2930. color: #bebdbd
  2931. }
  2932.  
  2933. .uk-navbar:after,.uk-navbar:before {
  2934. content: "";
  2935. display: table
  2936. }
  2937.  
  2938. .uk-navbar:after {
  2939. clear: both
  2940. }
  2941.  
  2942. .uk-navbar-nav {
  2943. margin: 0;
  2944. padding: 0;
  2945. list-style: none;
  2946. float: left
  2947. }
  2948.  
  2949. .uk-navbar-nav>li {
  2950. float: left;
  2951. position: relative
  2952. }
  2953.  
  2954. .uk-navbar-nav>li>a {
  2955. display: block;
  2956. box-sizing: border-box;
  2957. text-decoration: none;
  2958. height: 40px;
  2959. padding: 0 15px;
  2960. line-height: 40px;
  2961. color: #bebdbd;
  2962. font-size: 15px;
  2963. font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  2964. font-weight: 400
  2965. }
  2966.  
  2967. .uk-navbar-nav>li>a[href='#'] {
  2968. cursor: text
  2969. }
  2970.  
  2971. .uk-navbar-nav>li.uk-open>a,.uk-navbar-nav>li:hover>a,.uk-navbar-nav>li>a:focus {
  2972. background-color: #f5f5f5;
  2973. color: #bebdbd;
  2974. outline: none
  2975. }
  2976.  
  2977. .uk-navbar-nav>li>a:active {
  2978. background-color: #ddd;
  2979. color: #bebdbd
  2980. }
  2981.  
  2982. .uk-navbar-nav>li.uk-active>a {
  2983. background-color: #f5f5f5;
  2984. color: #bebdbd
  2985. }
  2986.  
  2987. .uk-navbar-nav .uk-navbar-nav-subtitle {
  2988. line-height: 28px
  2989. }
  2990.  
  2991. .uk-navbar-nav-subtitle>div {
  2992. margin-top: -5.5px;
  2993. font-size: 10px;
  2994. line-height: 12px
  2995. }
  2996.  
  2997. .uk-navbar-brand,.uk-navbar-content,.uk-navbar-toggle {
  2998. box-sizing: border-box;
  2999. display: block;
  3000. height: 40px;
  3001. padding: 0 15px;
  3002. float: left
  3003. }
  3004.  
  3005. .uk-navbar-brand:before,.uk-navbar-content:before,.uk-navbar-toggle:before {
  3006. content: '';
  3007. display: inline-block;
  3008. height: 100%;
  3009. vertical-align: middle
  3010. }
  3011.  
  3012. .uk-navbar-content+.uk-navbar-content:not(.uk-navbar-center) {
  3013. padding-left: 0
  3014. }
  3015.  
  3016. .uk-navbar-content>a:not([class]) {
  3017. color: #249af2
  3018. }
  3019.  
  3020. .uk-navbar-content>a:not([class]):hover {
  3021. color: #1f85d1
  3022. }
  3023.  
  3024. .uk-navbar-brand,.uk-navbar-toggle {
  3025. font-size: 19px;
  3026. color: #bebdbd;
  3027. text-decoration: none
  3028. }
  3029.  
  3030. .uk-navbar-brand:focus,.uk-navbar-brand:hover,.uk-navbar-toggle:focus,.uk-navbar-toggle:hover {
  3031. color: #bebdbd;
  3032. text-decoration: none;
  3033. outline: none
  3034. }
  3035.  
  3036. .uk-navbar-toggle:after {
  3037. content: "";
  3038. font-family: FontAwesome;
  3039. vertical-align: middle
  3040. }
  3041.  
  3042. .uk-navbar-toggle-alt:after {
  3043. content: "\f002"
  3044. }
  3045.  
  3046. .uk-navbar-center {
  3047. float: none;
  3048. text-align: center;
  3049. max-width: 50%;
  3050. margin-left: auto;
  3051. margin-right: auto
  3052. }
  3053.  
  3054. .uk-navbar-flip {
  3055. float: right
  3056. }
  3057.  
  3058. .uk-subnav {
  3059. display: -ms-flexbox;
  3060. display: -webkit-flex;
  3061. display: flex;
  3062. -ms-flex-wrap: wrap;
  3063. -webkit-flex-wrap: wrap;
  3064. flex-wrap: wrap;
  3065. margin-left: -10px;
  3066. margin-top: -10px;
  3067. padding: 0;
  3068. list-style: none
  3069. }
  3070.  
  3071. .uk-subnav>* {
  3072. -ms-flex: none;
  3073. -webkit-flex: none;
  3074. flex: none;
  3075. padding-left: 10px;
  3076. margin-top: 10px;
  3077. position: relative;
  3078. float: left
  3079. }
  3080.  
  3081. .uk-subnav:after,.uk-subnav:before {
  3082. content: "";
  3083. display: block;
  3084. overflow: hidden
  3085. }
  3086.  
  3087. .uk-subnav:after {
  3088. clear: both
  3089. }
  3090.  
  3091. .uk-subnav>*>* {
  3092. display: inline-block;
  3093. color: #bebdbd
  3094. }
  3095.  
  3096. .uk-subnav>*>:focus,.uk-subnav>*>:hover {
  3097. color: #249af2;
  3098. text-decoration: none
  3099. }
  3100.  
  3101. .uk-subnav>.uk-active>* {
  3102. color: #249af2
  3103. }
  3104.  
  3105. .uk-subnav-line>:before {
  3106. content: "";
  3107. display: inline-block;
  3108. height: 30px;
  3109. vertical-align: middle
  3110. }
  3111.  
  3112. .uk-subnav-line>:nth-child(n+2):before {
  3113. margin-right: 10px;
  3114. border-left: 1px solid #434343
  3115. }
  3116.  
  3117. .uk-subnav-pill>*>* {
  3118. padding: 3px 9px
  3119. }
  3120.  
  3121. .uk-subnav-pill>*>:focus,.uk-subnav-pill>*>:hover {
  3122. background: #eee;
  3123. color: #bebdbd;
  3124. text-decoration: none;
  3125. outline: none
  3126. }
  3127.  
  3128. .uk-pagination>.uk-active>span,.uk-subnav-pill>.uk-active>* {
  3129. background: #00a8e6;
  3130. color: #fff
  3131. }
  3132.  
  3133. .uk-subnav>.uk-disabled>* {
  3134. background: 0 0;
  3135. color: #999;
  3136. text-decoration: none;
  3137. cursor: text
  3138. }
  3139.  
  3140. .uk-breadcrumb {
  3141. padding: 0;
  3142. list-style: none;
  3143. font-size: .001px
  3144. }
  3145.  
  3146. .uk-breadcrumb>li {
  3147. font-size: 1rem;
  3148. vertical-align: top
  3149. }
  3150.  
  3151. .uk-breadcrumb>li,.uk-breadcrumb>li>a,.uk-breadcrumb>li>span {
  3152. display: inline-block
  3153. }
  3154.  
  3155. .uk-breadcrumb>li:nth-child(n+2):before {
  3156. content: "/";
  3157. display: inline-block;
  3158. margin: 0 8px
  3159. }
  3160.  
  3161. .uk-breadcrumb>li:not(.uk-active)>span {
  3162. color: #999
  3163. }
  3164.  
  3165. .uk-pagination {
  3166. padding: 0;
  3167. list-style: none;
  3168. text-align: center;
  3169. font-size: .001px
  3170. }
  3171.  
  3172. .uk-pagination:after,.uk-pagination:before {
  3173. content: "";
  3174. display: table
  3175. }
  3176.  
  3177. .uk-pagination:after {
  3178. clear: both
  3179. }
  3180.  
  3181. .uk-pagination>li {
  3182. display: inline-block;
  3183. font-size: 1rem;
  3184. vertical-align: top
  3185. }
  3186.  
  3187. .uk-pagination>li:nth-child(n+2) {
  3188. margin-left: 5px
  3189. }
  3190.  
  3191. .uk-pagination>li>a,.uk-pagination>li>span {
  3192. display: inline-block;
  3193. min-width: 16px;
  3194. padding: 3px 5px;
  3195. line-height: 20px;
  3196. text-decoration: none;
  3197. box-sizing: content-box;
  3198. text-align: center
  3199. }
  3200.  
  3201. .uk-pagination>li>a {
  3202. background: #222121;
  3203. color: #bebdbd
  3204. }
  3205.  
  3206. .uk-pagination>li>a:focus,.uk-pagination>li>a:hover {
  3207. background-color: #3a3a3a;
  3208. color: #bebdbd;
  3209. outline: none
  3210. }
  3211.  
  3212. .uk-pagination>li>a:active {
  3213. background-color: #161515;
  3214. color: #bebdbd
  3215. }
  3216.  
  3217. .uk-pagination>.uk-disabled>span {
  3218. background-color: #191818;
  3219. color: #999
  3220. }
  3221.  
  3222. .uk-pagination-previous {
  3223. float: left
  3224. }
  3225.  
  3226. .uk-pagination-next {
  3227. float: right
  3228. }
  3229.  
  3230. .uk-pagination-left {
  3231. text-align: left
  3232. }
  3233.  
  3234. .uk-pagination-right {
  3235. text-align: right
  3236. }
  3237.  
  3238. .uk-tab {
  3239. margin: 0;
  3240. padding: 0;
  3241. list-style: none;
  3242. border-bottom: 1px solid #434343
  3243. }
  3244.  
  3245. .uk-tab:after,.uk-tab:before {
  3246. content: "";
  3247. display: table
  3248. }
  3249.  
  3250. .uk-tab:after {
  3251. clear: both
  3252. }
  3253.  
  3254. .uk-tab>li {
  3255. margin-bottom: -1px;
  3256. float: left;
  3257. position: relative
  3258. }
  3259.  
  3260. .uk-tab>li>a {
  3261. display: block;
  3262. padding: 8px 12px;
  3263. border: 1px solid transparent;
  3264. border-bottom-width: 0;
  3265. color: #249af2;
  3266. text-decoration: none
  3267. }
  3268.  
  3269. .uk-tab>li:nth-child(n+2)>a {
  3270. margin-left: 5px
  3271. }
  3272.  
  3273. .uk-tab>li.uk-open>a,.uk-tab>li>a:focus,.uk-tab>li>a:hover {
  3274. border-color: #f5f5f5;
  3275. background: #f5f5f5;
  3276. color: #1f85d1;
  3277. outline: none
  3278. }
  3279.  
  3280. .uk-tab>li.uk-open:not(.uk-active)>a,.uk-tab>li:not(.uk-active)>a:focus,.uk-tab>li:not(.uk-active)>a:hover {
  3281. margin-bottom: 1px;
  3282. padding-bottom: 7px
  3283. }
  3284.  
  3285. .uk-tab>li.uk-active>a {
  3286. border-color: #434343 #434343 transparent;
  3287. background: #191818;
  3288. color: #bebdbd
  3289. }
  3290.  
  3291. .uk-tab>li.uk-disabled>a {
  3292. color: #999;
  3293. cursor: text
  3294. }
  3295.  
  3296. .uk-tab>li.uk-disabled.uk-active>a,.uk-tab>li.uk-disabled>a:focus,.uk-tab>li.uk-disabled>a:hover {
  3297. background: 0 0;
  3298. border-color: transparent
  3299. }
  3300.  
  3301. .uk-tab-flip>li {
  3302. float: right
  3303. }
  3304.  
  3305. .uk-tab-flip>li:nth-child(n+2)>a {
  3306. margin-left: 0;
  3307. margin-right: 5px
  3308. }
  3309.  
  3310. .uk-tab>li.uk-tab-responsive>a {
  3311. margin-left: 0;
  3312. margin-right: 0
  3313. }
  3314.  
  3315. .uk-tab-responsive>a:before {
  3316. content: "\f0c9\00a0";
  3317. font-family: FontAwesome
  3318. }
  3319.  
  3320. .uk-tab-center {
  3321. border-bottom: 1px solid #434343
  3322. }
  3323.  
  3324. .uk-list>li:after,.uk-list>li:before,.uk-tab-center:after,.uk-tab-center:before {
  3325. content: "";
  3326. display: table
  3327. }
  3328.  
  3329. .uk-tab-center:after {
  3330. clear: both
  3331. }
  3332.  
  3333. .uk-tab-center .uk-tab {
  3334. position: relative;
  3335. right: 50%;
  3336. border: none;
  3337. float: right
  3338. }
  3339.  
  3340. .uk-tab-center .uk-tab>li {
  3341. position: relative;
  3342. right: -50%
  3343. }
  3344.  
  3345. .uk-tab-center .uk-tab>li>a {
  3346. text-align: center
  3347. }
  3348.  
  3349. .uk-tab-bottom,.uk-tab-center-bottom {
  3350. border-top: 1px solid #434343;
  3351. border-bottom: none
  3352. }
  3353.  
  3354. .uk-tab-bottom>li {
  3355. margin-top: -1px;
  3356. margin-bottom: 0
  3357. }
  3358.  
  3359. .uk-tab-bottom>li>a {
  3360. padding-top: 8px;
  3361. padding-bottom: 8px;
  3362. border-bottom-width: 1px;
  3363. border-top-width: 0
  3364. }
  3365.  
  3366. .uk-tab-bottom>li.uk-open:not(.uk-active)>a,.uk-tab-bottom>li:not(.uk-active)>a:focus,.uk-tab-bottom>li:not(.uk-active)>a:hover {
  3367. margin-bottom: 0;
  3368. margin-top: 1px;
  3369. padding-bottom: 8px;
  3370. padding-top: 7px
  3371. }
  3372.  
  3373. .uk-tab-bottom>li.uk-active>a {
  3374. border-top-color: transparent;
  3375. border-bottom-color: #434343
  3376. }
  3377.  
  3378. .uk-tab-grid {
  3379. margin-left: -5px;
  3380. border-bottom: none;
  3381. position: relative;
  3382. z-index: 0
  3383. }
  3384.  
  3385. .uk-tab-grid:before {
  3386. display: block;
  3387. position: absolute;
  3388. left: 5px;
  3389. right: 0;
  3390. bottom: -1px;
  3391. border-top: 1px solid #434343;
  3392. z-index: -1
  3393. }
  3394.  
  3395. .uk-tab-grid>li:first-child>a {
  3396. margin-left: 5px
  3397. }
  3398.  
  3399. .uk-tab-grid>li>a {
  3400. text-align: center
  3401. }
  3402.  
  3403. .uk-tab-grid.uk-tab-bottom {
  3404. border-top: none
  3405. }
  3406.  
  3407. .uk-tab-grid.uk-tab-bottom:before {
  3408. top: -1px;
  3409. bottom: auto
  3410. }
  3411.  
  3412. @media (min-width:768px) {
  3413. .uk-tab-left,.uk-tab-right {
  3414. border-bottom: none
  3415. }
  3416.  
  3417. .uk-tab-left>li,.uk-tab-right>li {
  3418. margin-bottom: 0;
  3419. float: none
  3420. }
  3421.  
  3422. .uk-tab-left>li>a,.uk-tab-right>li>a {
  3423. padding-top: 8px;
  3424. padding-bottom: 8px
  3425. }
  3426.  
  3427. .uk-tab-left>li:nth-child(n+2)>a,.uk-tab-right>li:nth-child(n+2)>a {
  3428. margin-left: 0;
  3429. margin-top: 5px
  3430. }
  3431.  
  3432. .uk-tab-left>li.uk-active>a,.uk-tab-right>li.uk-active>a {
  3433. border-color: #434343
  3434. }
  3435.  
  3436. .uk-tab-left {
  3437. border-right: 1px solid #434343
  3438. }
  3439.  
  3440. .uk-tab-left>li {
  3441. margin-right: -1px
  3442. }
  3443.  
  3444. .uk-tab-left>li>a {
  3445. border-bottom-width: 1px;
  3446. border-right-width: 0
  3447. }
  3448.  
  3449. .uk-tab-left>li:not(.uk-active)>a:focus,.uk-tab-left>li:not(.uk-active)>a:hover {
  3450. margin-bottom: 0;
  3451. margin-right: 1px;
  3452. padding-bottom: 8px;
  3453. padding-right: 11px
  3454. }
  3455.  
  3456. .uk-tab-left>li.uk-active>a {
  3457. border-right-color: transparent
  3458. }
  3459.  
  3460. .uk-tab-right {
  3461. border-left: 1px solid #434343
  3462. }
  3463.  
  3464. .uk-tab-right>li {
  3465. margin-left: -1px
  3466. }
  3467.  
  3468. .uk-tab-right>li>a {
  3469. border-bottom-width: 1px;
  3470. border-left-width: 0
  3471. }
  3472.  
  3473. .uk-tab-right>li:not(.uk-active)>a:focus,.uk-tab-right>li:not(.uk-active)>a:hover {
  3474. margin-bottom: 0;
  3475. margin-left: 1px;
  3476. padding-bottom: 8px;
  3477. padding-left: 11px
  3478. }
  3479.  
  3480. .uk-tab-right>li.uk-active>a {
  3481. border-left-color: transparent
  3482. }
  3483. }
  3484.  
  3485. .uk-thumbnav {
  3486. display: -ms-flexbox;
  3487. display: -webkit-flex;
  3488. display: flex;
  3489. -ms-flex-wrap: wrap;
  3490. -webkit-flex-wrap: wrap;
  3491. flex-wrap: wrap;
  3492. margin-left: -10px;
  3493. margin-top: -10px;
  3494. padding: 0;
  3495. list-style: none
  3496. }
  3497.  
  3498. .uk-thumbnav>* {
  3499. -ms-flex: none;
  3500. -webkit-flex: none;
  3501. flex: none;
  3502. padding-left: 10px;
  3503. margin-top: 10px;
  3504. float: left
  3505. }
  3506.  
  3507. .uk-thumbnav:after,.uk-thumbnav:before {
  3508. content: "";
  3509. display: block;
  3510. overflow: hidden
  3511. }
  3512.  
  3513. .uk-list>li:after,.uk-thumbnav:after {
  3514. clear: both
  3515. }
  3516.  
  3517. .uk-thumbnav>*>* {
  3518. display: block;
  3519. background: #fff
  3520. }
  3521.  
  3522. .uk-thumbnav>*>*>img {
  3523. opacity: .7;
  3524. -webkit-transition: opacity .15s linear;
  3525. transition: opacity .15s linear
  3526. }
  3527.  
  3528. .uk-thumbnav>*>:focus>img,.uk-thumbnav>*>:hover>img {
  3529. opacity: 1
  3530. }
  3531.  
  3532. .uk-thumbnav>.uk-active>*>img {
  3533. opacity: 1
  3534. }
  3535.  
  3536. .uk-list {
  3537. padding: 0;
  3538. list-style: none
  3539. }
  3540.  
  3541. .uk-list>li>:last-child {
  3542. margin-bottom: 0
  3543. }
  3544.  
  3545. .uk-list ul {
  3546. margin: 0;
  3547. padding-left: 20px;
  3548. list-style: none
  3549. }
  3550.  
  3551. .uk-description-list-line>dt:nth-child(n+2),.uk-list-line>li:nth-child(n+2) {
  3552. margin-top: 5px;
  3553. padding-top: 5px;
  3554. border-top: 1px solid #434343
  3555. }
  3556.  
  3557. .uk-list-striped>li {
  3558. padding: 5px
  3559. }
  3560.  
  3561. .uk-list-striped>li:nth-of-type(odd) {
  3562. background: #f5f5f5
  3563. }
  3564.  
  3565. .uk-list-space>li:nth-child(n+2) {
  3566. margin-top: 10px
  3567. }
  3568.  
  3569. @media (min-width:768px) {
  3570. .uk-description-list-horizontal {
  3571. overflow: hidden
  3572. }
  3573.  
  3574. .uk-description-list-horizontal>dt {
  3575. width: 160px;
  3576. float: left;
  3577. clear: both;
  3578. overflow: hidden;
  3579. text-overflow: ellipsis;
  3580. white-space: nowrap
  3581. }
  3582.  
  3583. .uk-description-list-horizontal>dd {
  3584. margin-left: 180px
  3585. }
  3586. }
  3587.  
  3588. .uk-description-list-line>dt {
  3589. font-weight: 400
  3590. }
  3591.  
  3592. .uk-description-list-line>dd {
  3593. color: #999
  3594. }
  3595.  
  3596. .uk-table {
  3597. border-collapse: collapse;
  3598. border-spacing: 0;
  3599. width: 100%;
  3600. margin-bottom: 15px
  3601. }
  3602.  
  3603. .uk-table td,.uk-table th {
  3604. padding: 8px
  3605. }
  3606.  
  3607. .uk-table th {
  3608. text-align: left
  3609. }
  3610.  
  3611. .uk-table td {
  3612. vertical-align: top
  3613. }
  3614.  
  3615. .uk-table thead th {
  3616. vertical-align: bottom
  3617. }
  3618.  
  3619. .uk-table caption,.uk-table tfoot {
  3620. font-size: 13px;
  3621. font-style: italic
  3622. }
  3623.  
  3624. .uk-table caption {
  3625. text-align: left;
  3626. color: #999
  3627. }
  3628.  
  3629. .uk-table-middle,.uk-table-middle td {
  3630. vertical-align: middle!important
  3631. }
  3632.  
  3633. .uk-table-striped tbody tr:nth-of-type(odd) {
  3634. background: #222121
  3635. }
  3636.  
  3637. .uk-table-condensed td {
  3638. padding: 4px 8px
  3639. }
  3640.  
  3641. .uk-table-hover tbody tr:hover {
  3642. background: #222121
  3643. }
  3644.  
  3645. .uk-form input,.uk-form select,.uk-form textarea {
  3646. box-sizing: border-box;
  3647. margin: 0;
  3648. border-radius: 0;
  3649. font: inherit;
  3650. color: inherit
  3651. }
  3652.  
  3653. .uk-form select {
  3654. text-transform: none
  3655. }
  3656.  
  3657. .uk-form optgroup {
  3658. font: inherit;
  3659. font-weight: 700
  3660. }
  3661.  
  3662. .uk-form input::-moz-focus-inner {
  3663. border: 0;
  3664. padding: 0
  3665. }
  3666.  
  3667. .uk-form input[type=checkbox],.uk-form input[type=radio] {
  3668. padding: 0
  3669. }
  3670.  
  3671. .uk-form input[type=checkbox]:not(:disabled),.uk-form input[type=radio]:not(:disabled) {
  3672. cursor: pointer
  3673. }
  3674.  
  3675. .uk-form input:not([type]),.uk-form input[type=datetime],.uk-form input[type=email],.uk-form input[type=number],.uk-form input[type=password],.uk-form input[type=search],.uk-form input[type=tel],.uk-form input[type=text],.uk-form input[type=url],.uk-form textarea {
  3676. -webkit-appearance: none
  3677. }
  3678.  
  3679. .uk-form input[type=search]::-webkit-search-cancel-button,.uk-form input[type=search]::-webkit-search-decoration {
  3680. -webkit-appearance: none
  3681. }
  3682.  
  3683. .uk-form input[type=number]::-webkit-inner-spin-button,.uk-form input[type=number]::-webkit-outer-spin-button {
  3684. height: auto
  3685. }
  3686.  
  3687. .uk-form fieldset {
  3688. border: none;
  3689. margin: 0;
  3690. padding: 0
  3691. }
  3692.  
  3693. .uk-form textarea {
  3694. overflow: auto;
  3695. vertical-align: top
  3696. }
  3697.  
  3698. .uk-form ::-moz-placeholder {
  3699. opacity: 1;
  3700. color: #999
  3701. }
  3702.  
  3703. .uk-form :invalid {
  3704. box-shadow: none
  3705. }
  3706.  
  3707. .uk-form input:not([type=radio]):not([type=checkbox]),.uk-form select {
  3708. vertical-align: middle
  3709. }
  3710.  
  3711. .uk-form>:last-child {
  3712. margin-bottom: 0
  3713. }
  3714.  
  3715. .uk-form input:not([type]),.uk-form input[type=color],.uk-form input[type=date],.uk-form input[type=datetime-local],.uk-form input[type=datetime],.uk-form input[type=email],.uk-form input[type=month],.uk-form input[type=number],.uk-form input[type=password],.uk-form input[type=search],.uk-form input[type=tel],.uk-form input[type=text],.uk-form input[type=time],.uk-form input[type=url],.uk-form input[type=week],.uk-form select,.uk-form textarea {
  3716. height: 30px;
  3717. max-width: 100%;
  3718. padding: 6px;
  3719. border: 1px solid #434343;
  3720. background: #191818;
  3721. color: #bebdbd;
  3722. -webkit-transition: all .2s linear;
  3723. -webkit-transition-property: border,background,color,box-shadow,padding;
  3724. transition: all .2s linear;
  3725. transition-property: border,background,color,box-shadow,padding
  3726. }
  3727.  
  3728. .uk-form input:not([type]):focus,.uk-form input[type=color]:focus,.uk-form input[type=date]:focus,.uk-form input[type=datetime-local]:focus,.uk-form input[type=datetime]:focus,.uk-form input[type=email]:focus,.uk-form input[type=month]:focus,.uk-form input[type=number]:focus,.uk-form input[type=password]:focus,.uk-form input[type=search]:focus,.uk-form input[type=tel]:focus,.uk-form input[type=text]:focus,.uk-form input[type=time]:focus,.uk-form input[type=url]:focus,.uk-form input[type=week]:focus,.uk-form select:focus,.uk-form textarea:focus {
  3729. border-color: #2197ef;
  3730. outline: 0;
  3731. background: #222121;
  3732. color: #bebdbd
  3733. }
  3734.  
  3735. .uk-form input:not([type]):disabled,.uk-form input[type=color]:disabled,.uk-form input[type=date]:disabled,.uk-form input[type=datetime-local]:disabled,.uk-form input[type=datetime]:disabled,.uk-form input[type=email]:disabled,.uk-form input[type=month]:disabled,.uk-form input[type=number]:disabled,.uk-form input[type=password]:disabled,.uk-form input[type=search]:disabled,.uk-form input[type=tel]:disabled,.uk-form input[type=text]:disabled,.uk-form input[type=time]:disabled,.uk-form input[type=url]:disabled,.uk-form input[type=week]:disabled,.uk-form select:disabled,.uk-form textarea:disabled {
  3736. border-color: #434343;
  3737. background-color: #3a3a3a;
  3738. color: #999
  3739. }
  3740.  
  3741. .uk-form :-ms-input-placeholder {
  3742. color: #999!important
  3743. }
  3744.  
  3745. .uk-form ::-webkit-input-placeholder {
  3746. color: #999
  3747. }
  3748.  
  3749. .uk-form :disabled:-ms-input-placeholder {
  3750. color: #999!important
  3751. }
  3752.  
  3753. .uk-form :disabled::-moz-placeholder {
  3754. color: #999
  3755. }
  3756.  
  3757. .uk-form :disabled::-webkit-input-placeholder {
  3758. color: #999
  3759. }
  3760.  
  3761. .uk-form legend {
  3762. width: 100%;
  3763. border: 0;
  3764. padding: 0 0 15px;
  3765. font-size: 19px;
  3766. line-height: 32px
  3767. }
  3768.  
  3769. .uk-form legend:after {
  3770. content: "";
  3771. display: block;
  3772. border-bottom: 1px solid #434343;
  3773. width: 100%
  3774. }
  3775.  
  3776. input:not([type]).uk-form-small,input[type].uk-form-small,select.uk-form-small,textarea.uk-form-small {
  3777. height: 25px;
  3778. padding: 3px;
  3779. font-size: 13px
  3780. }
  3781.  
  3782. input:not([type]).uk-form-large,input[type].uk-form-large,select.uk-form-large,textarea.uk-form-large {
  3783. height: 40px;
  3784. padding: 8px 6px;
  3785. font-size: 17px
  3786. }
  3787.  
  3788. .uk-form select[multiple],.uk-form select[size],.uk-form textarea {
  3789. height: auto
  3790. }
  3791.  
  3792. .uk-form-danger,.uk-form-success {
  3793. border-color: #d65b49!important;
  3794. background: #222121!important;
  3795. color: #d85030!important
  3796. }
  3797.  
  3798. .uk-form-success {
  3799. border-color: #66b92d!important;
  3800. color: #659f13!important
  3801. }
  3802.  
  3803. .uk-form-blank {
  3804. border-color: transparent!important;
  3805. border-style: dashed!important;
  3806. background: 0 0!important
  3807. }
  3808.  
  3809. .uk-form-blank:focus {
  3810. border-color: #434343!important
  3811. }
  3812.  
  3813. input.uk-form-width-mini {
  3814. width: 50px
  3815. }
  3816.  
  3817. select.uk-form-width-mini {
  3818. width: 75px
  3819. }
  3820.  
  3821. .uk-form-width-small {
  3822. width: 130px
  3823. }
  3824.  
  3825. .uk-form-width-medium {
  3826. width: 200px
  3827. }
  3828.  
  3829. .uk-form-width-large {
  3830. width: 500px
  3831. }
  3832.  
  3833. .uk-form-row:after,.uk-form-row:before {
  3834. content: "";
  3835. display: table
  3836. }
  3837.  
  3838. .uk-form-row:after {
  3839. clear: both
  3840. }
  3841.  
  3842. .uk-form-row+.uk-form-row {
  3843. margin-top: 15px
  3844. }
  3845.  
  3846. .uk-form-help-inline {
  3847. display: inline-block;
  3848. margin: 0 0 0 10px
  3849. }
  3850.  
  3851. .uk-form-help-block {
  3852. margin: 5px 0 0
  3853. }
  3854.  
  3855. .uk-form-controls>:first-child {
  3856. margin-top: 0
  3857. }
  3858.  
  3859. .uk-form-controls>:last-child {
  3860. margin-bottom: 0
  3861. }
  3862.  
  3863. .uk-form-controls-condensed {
  3864. margin: 5px 0
  3865. }
  3866.  
  3867. .uk-form-stacked .uk-form-label {
  3868. display: block;
  3869. margin-bottom: 5px;
  3870. font-weight: 700
  3871. }
  3872.  
  3873. @media (max-width:959px) {
  3874. .uk-form-horizontal .uk-form-label {
  3875. display: block;
  3876. margin-bottom: 5px;
  3877. font-weight: 700
  3878. }
  3879. }
  3880.  
  3881. @media (min-width:960px) {
  3882. .uk-form-horizontal .uk-form-label {
  3883. width: 200px;
  3884. margin-top: 5px;
  3885. float: left
  3886. }
  3887.  
  3888. .uk-form-horizontal .uk-form-controls {
  3889. margin-left: 215px
  3890. }
  3891.  
  3892. .uk-form-horizontal .uk-form-controls-text {
  3893. padding-top: 5px
  3894. }
  3895. }
  3896.  
  3897. .uk-form-icon {
  3898. display: inline-block;
  3899. position: relative;
  3900. max-width: 100%
  3901. }
  3902.  
  3903. .uk-form-icon>[class*=uk-icon-] {
  3904. position: absolute;
  3905. top: 50%;
  3906. width: 30px;
  3907. margin-top: -8px;
  3908. font-size: 15px;
  3909. color: #999;
  3910. text-align: center;
  3911. pointer-events: none
  3912. }
  3913.  
  3914. .uk-form-icon:not(.uk-form-icon-flip)>input {
  3915. padding-left: 30px!important
  3916. }
  3917.  
  3918. .uk-form-icon-flip>[class*=uk-icon-] {
  3919. right: 0
  3920. }
  3921.  
  3922. .uk-form-icon-flip>input {
  3923. padding-right: 30px!important
  3924. }
  3925.  
  3926. .uk-button::-moz-focus-inner {
  3927. border: 0;
  3928. padding: 0
  3929. }
  3930.  
  3931. .uk-button {
  3932. -webkit-appearance: none;
  3933. margin: 0;
  3934. border: none;
  3935. overflow: visible;
  3936. font: inherit;
  3937. color: #bebdbd;
  3938. text-transform: none;
  3939. display: inline-block;
  3940. box-sizing: border-box;
  3941. padding: 0 13px;
  3942. background: #222121;
  3943. vertical-align: middle;
  3944. line-height: 30px;
  3945. min-height: 30px;
  3946. font-size: 1rem;
  3947. text-decoration: none;
  3948. text-align: center
  3949. }
  3950.  
  3951. .uk-button:not(:disabled) {
  3952. cursor: pointer
  3953. }
  3954.  
  3955. .uk-button:focus,.uk-button:hover {
  3956. background-color: #393838;
  3957. color: #bebdbd;
  3958. outline: none;
  3959. text-decoration: none
  3960. }
  3961.  
  3962. .uk-button.uk-active,.uk-button:active {
  3963. background-color: #323131;
  3964. color: #bebdbd
  3965. }
  3966.  
  3967. .uk-button-primary {
  3968. background-color: #00a8e6;
  3969. color: #fff
  3970. }
  3971.  
  3972. .uk-button-primary:focus,.uk-button-primary:hover {
  3973. background-color: #0091c7;
  3974. color: #fff
  3975. }
  3976.  
  3977. .uk-button-primary.uk-active,.uk-button-primary:active {
  3978. background-color: #007dac;
  3979. color: #fff
  3980. }
  3981.  
  3982. .uk-button-success {
  3983. background-color: #66b82f;
  3984. color: #fff
  3985. }
  3986.  
  3987. .uk-button-success:focus,.uk-button-success:hover {
  3988. background-color: #589f28;
  3989. color: #fff
  3990. }
  3991.  
  3992. .uk-button-success.uk-active,.uk-button-success:active {
  3993. background-color: #4c8922;
  3994. color: #fff
  3995. }
  3996.  
  3997. .uk-button-danger {
  3998. background-color: #d65b49;
  3999. color: #fff
  4000. }
  4001.  
  4002. .uk-button-danger:focus,.uk-button-danger:hover {
  4003. background-color: #ba4f3f;
  4004. color: #fff
  4005. }
  4006.  
  4007. .uk-button-danger.uk-active,.uk-button-danger:active {
  4008. background-color: #a24436;
  4009. color: #fff
  4010. }
  4011.  
  4012. .uk-button:disabled {
  4013. background-color: #131313;
  4014. color: #999
  4015. }
  4016.  
  4017. .uk-button-link,.uk-button-link.uk-active,.uk-button-link:active,.uk-button-link:disabled,.uk-button-link:focus,.uk-button-link:hover {
  4018. border-color: transparent;
  4019. background: 0 0
  4020. }
  4021.  
  4022. .uk-button-link {
  4023. color: #249af2
  4024. }
  4025.  
  4026. .uk-button-link.uk-active,.uk-button-link:active,.uk-button-link:focus,.uk-button-link:hover {
  4027. color: #1f85d1;
  4028. text-decoration: underline
  4029. }
  4030.  
  4031. .uk-button-link:disabled {
  4032. color: #999
  4033. }
  4034.  
  4035. .uk-button-link:focus {
  4036. outline: 1px dotted
  4037. }
  4038.  
  4039. .uk-button-mini {
  4040. min-height: 20px;
  4041. padding: 0 6px;
  4042. line-height: 20px;
  4043. font-size: 12px
  4044. }
  4045.  
  4046. .uk-button-small {
  4047. min-height: 25px;
  4048. padding: 0 10px;
  4049. line-height: 25px;
  4050. font-size: 13px
  4051. }
  4052.  
  4053. .uk-button-large {
  4054. min-height: 40px;
  4055. padding: 0 15px;
  4056. line-height: 40px;
  4057. font-size: 17px
  4058. }
  4059.  
  4060. .uk-button-group {
  4061. vertical-align: middle;
  4062. position: relative;
  4063. font-size: .001px;
  4064. white-space: nowrap
  4065. }
  4066.  
  4067. .uk-button-dropdown,.uk-button-group,.uk-button-group>* {
  4068. display: inline-block
  4069. }
  4070.  
  4071. .uk-button-group .uk-button {
  4072. vertical-align: top
  4073. }
  4074.  
  4075. .uk-button-dropdown {
  4076. vertical-align: middle;
  4077. position: relative
  4078. }
  4079.  
  4080. [class*=uk-icon-] {
  4081. font-family: FontAwesome;
  4082. display: inline-block;
  4083. font-weight: 400;
  4084. font-style: normal;
  4085. line-height: 1;
  4086. -webkit-font-smoothing: antialiased;
  4087. -moz-osx-font-smoothing: grayscale
  4088. }
  4089.  
  4090. [class*=uk-icon-],[class*=uk-icon-]:focus,[class*=uk-icon-]:hover {
  4091. text-decoration: none
  4092. }
  4093.  
  4094. .uk-icon-small {
  4095. font-size: 150%;
  4096. vertical-align: -10%
  4097. }
  4098.  
  4099. .uk-icon-medium {
  4100. font-size: 200%;
  4101. vertical-align: -16%
  4102. }
  4103.  
  4104. .uk-icon-large {
  4105. font-size: 250%;
  4106. vertical-align: -22%
  4107. }
  4108.  
  4109. .uk-icon-justify {
  4110. width: 1em;
  4111. text-align: center
  4112. }
  4113.  
  4114. .uk-icon-spin {
  4115. display: inline-block;
  4116. -webkit-animation: uk-rotate 2s infinite linear;
  4117. animation: uk-rotate 2s infinite linear
  4118. }
  4119.  
  4120. .uk-icon-hover {
  4121. color: #999
  4122. }
  4123.  
  4124. .uk-icon-hover:hover {
  4125. color: #bebdbd
  4126. }
  4127.  
  4128. .uk-icon-button {
  4129. box-sizing: border-box;
  4130. display: inline-block;
  4131. width: 35px;
  4132. height: 35px;
  4133. border-radius: 100%;
  4134. background: #eee;
  4135. line-height: 35px;
  4136. color: #bebdbd;
  4137. font-size: 18px;
  4138. text-align: center
  4139. }
  4140.  
  4141. .uk-icon-button:focus,.uk-icon-button:hover {
  4142. background-color: #f5f5f5;
  4143. color: #bebdbd;
  4144. outline: none
  4145. }
  4146.  
  4147. .uk-icon-button:active {
  4148. background-color: #ddd;
  4149. color: #bebdbd
  4150. }
  4151.  
  4152. .uk-icon-glass:before {
  4153. content: "\f000"
  4154. }
  4155.  
  4156. .uk-icon-music:before {
  4157. content: "\f001"
  4158. }
  4159.  
  4160. .uk-icon-search:before {
  4161. content: "\f002"
  4162. }
  4163.  
  4164. .uk-icon-envelope-o:before {
  4165. content: "\f003"
  4166. }
  4167.  
  4168. .uk-icon-heart:before {
  4169. content: "\f004"
  4170. }
  4171.  
  4172. .uk-icon-star:before {
  4173. content: "\f005"
  4174. }
  4175.  
  4176. .uk-icon-star-o:before {
  4177. content: "\f006"
  4178. }
  4179.  
  4180. .uk-icon-user:before {
  4181. content: "\f007"
  4182. }
  4183.  
  4184. .uk-icon-film:before {
  4185. content: "\f008"
  4186. }
  4187.  
  4188. .uk-icon-th-large:before {
  4189. content: "\f009"
  4190. }
  4191.  
  4192. .uk-icon-th:before {
  4193. content: "\f00a"
  4194. }
  4195.  
  4196. .uk-icon-th-list:before {
  4197. content: "\f00b"
  4198. }
  4199.  
  4200. .uk-icon-check:before {
  4201. content: "\f00c"
  4202. }
  4203.  
  4204. .uk-icon-close:before,.uk-icon-remove:before,.uk-icon-times:before {
  4205. content: "\f00d"
  4206. }
  4207.  
  4208. .uk-icon-search-plus:before {
  4209. content: "\f00e"
  4210. }
  4211.  
  4212. .uk-icon-search-minus:before {
  4213. content: "\f010"
  4214. }
  4215.  
  4216. .uk-icon-power-off:before {
  4217. content: "\f011"
  4218. }
  4219.  
  4220. .uk-icon-signal:before {
  4221. content: "\f012"
  4222. }
  4223.  
  4224. .uk-icon-cog:before,.uk-icon-gear:before {
  4225. content: "\f013"
  4226. }
  4227.  
  4228. .uk-icon-trash-o:before {
  4229. content: "\f014"
  4230. }
  4231.  
  4232. .uk-icon-home:before {
  4233. content: "\f015"
  4234. }
  4235.  
  4236. .uk-icon-file-o:before {
  4237. content: "\f016"
  4238. }
  4239.  
  4240. .uk-icon-clock-o:before {
  4241. content: "\f017"
  4242. }
  4243.  
  4244. .uk-icon-road:before {
  4245. content: "\f018"
  4246. }
  4247.  
  4248. .uk-icon-download:before {
  4249. content: "\f019"
  4250. }
  4251.  
  4252. .uk-icon-arrow-circle-o-down:before {
  4253. content: "\f01a"
  4254. }
  4255.  
  4256. .uk-icon-arrow-circle-o-up:before {
  4257. content: "\f01b"
  4258. }
  4259.  
  4260. .uk-icon-inbox:before {
  4261. content: "\f01c"
  4262. }
  4263.  
  4264. .uk-icon-play-circle-o:before {
  4265. content: "\f01d"
  4266. }
  4267.  
  4268. .uk-icon-repeat:before,.uk-icon-rotate-right:before {
  4269. content: "\f01e"
  4270. }
  4271.  
  4272. .uk-icon-refresh:before {
  4273. content: "\f021"
  4274. }
  4275.  
  4276. .uk-icon-list-alt:before {
  4277. content: "\f022"
  4278. }
  4279.  
  4280. .uk-icon-lock:before {
  4281. content: "\f023"
  4282. }
  4283.  
  4284. .uk-icon-flag:before {
  4285. content: "\f024"
  4286. }
  4287.  
  4288. .uk-icon-headphones:before {
  4289. content: "\f025"
  4290. }
  4291.  
  4292. .uk-icon-volume-off:before {
  4293. content: "\f026"
  4294. }
  4295.  
  4296. .uk-icon-volume-down:before {
  4297. content: "\f027"
  4298. }
  4299.  
  4300. .uk-icon-volume-up:before {
  4301. content: "\f028"
  4302. }
  4303.  
  4304. .uk-icon-qrcode:before {
  4305. content: "\f029"
  4306. }
  4307.  
  4308. .uk-icon-barcode:before {
  4309. content: "\f02a"
  4310. }
  4311.  
  4312. .uk-icon-tag:before {
  4313. content: "\f02b"
  4314. }
  4315.  
  4316. .uk-icon-tags:before {
  4317. content: "\f02c"
  4318. }
  4319.  
  4320. .uk-icon-book:before {
  4321. content: "\f02d"
  4322. }
  4323.  
  4324. .uk-icon-bookmark:before {
  4325. content: "\f02e"
  4326. }
  4327.  
  4328. .uk-icon-print:before {
  4329. content: "\f02f"
  4330. }
  4331.  
  4332. .uk-icon-camera:before {
  4333. content: "\f030"
  4334. }
  4335.  
  4336. .uk-icon-font:before {
  4337. content: "\f031"
  4338. }
  4339.  
  4340. .uk-icon-bold:before {
  4341. content: "\f032"
  4342. }
  4343.  
  4344. .uk-icon-italic:before {
  4345. content: "\f033"
  4346. }
  4347.  
  4348. .uk-icon-text-height:before {
  4349. content: "\f034"
  4350. }
  4351.  
  4352. .uk-icon-text-width:before {
  4353. content: "\f035"
  4354. }
  4355.  
  4356. .uk-icon-align-left:before {
  4357. content: "\f036"
  4358. }
  4359.  
  4360. .uk-icon-align-center:before {
  4361. content: "\f037"
  4362. }
  4363.  
  4364. .uk-icon-align-right:before {
  4365. content: "\f038"
  4366. }
  4367.  
  4368. .uk-icon-align-justify:before {
  4369. content: "\f039"
  4370. }
  4371.  
  4372. .uk-icon-list:before {
  4373. content: "\f03a"
  4374. }
  4375.  
  4376. .uk-icon-dedent:before,.uk-icon-outdent:before {
  4377. content: "\f03b"
  4378. }
  4379.  
  4380. .uk-icon-indent:before {
  4381. content: "\f03c"
  4382. }
  4383.  
  4384. .uk-icon-video-camera:before {
  4385. content: "\f03d"
  4386. }
  4387.  
  4388. .uk-icon-image:before,.uk-icon-photo:before,.uk-icon-picture-o:before {
  4389. content: "\f03e"
  4390. }
  4391.  
  4392. .uk-icon-pencil:before {
  4393. content: "\f040"
  4394. }
  4395.  
  4396. .uk-icon-map-marker:before {
  4397. content: "\f041"
  4398. }
  4399.  
  4400. .uk-icon-adjust:before {
  4401. content: "\f042"
  4402. }
  4403.  
  4404. .uk-icon-tint:before {
  4405. content: "\f043"
  4406. }
  4407.  
  4408. .uk-icon-edit:before,.uk-icon-pencil-square-o:before {
  4409. content: "\f044"
  4410. }
  4411.  
  4412. .uk-icon-share-square-o:before {
  4413. content: "\f045"
  4414. }
  4415.  
  4416. .uk-icon-check-square-o:before {
  4417. content: "\f046"
  4418. }
  4419.  
  4420. .uk-icon-arrows:before {
  4421. content: "\f047"
  4422. }
  4423.  
  4424. .uk-icon-step-backward:before {
  4425. content: "\f048"
  4426. }
  4427.  
  4428. .uk-icon-fast-backward:before {
  4429. content: "\f049"
  4430. }
  4431.  
  4432. .uk-icon-backward:before {
  4433. content: "\f04a"
  4434. }
  4435.  
  4436. .uk-icon-play:before {
  4437. content: "\f04b"
  4438. }
  4439.  
  4440. .uk-icon-pause:before {
  4441. content: "\f04c"
  4442. }
  4443.  
  4444. .uk-icon-stop:before {
  4445. content: "\f04d"
  4446. }
  4447.  
  4448. .uk-icon-forward:before {
  4449. content: "\f04e"
  4450. }
  4451.  
  4452. .uk-icon-fast-forward:before {
  4453. content: "\f050"
  4454. }
  4455.  
  4456. .uk-icon-step-forward:before {
  4457. content: "\f051"
  4458. }
  4459.  
  4460. .uk-icon-eject:before {
  4461. content: "\f052"
  4462. }
  4463.  
  4464. .uk-icon-chevron-left:before {
  4465. content: "\f053"
  4466. }
  4467.  
  4468. .uk-icon-chevron-right:before {
  4469. content: "\f054"
  4470. }
  4471.  
  4472. .uk-icon-plus-circle:before {
  4473. content: "\f055"
  4474. }
  4475.  
  4476. .uk-icon-minus-circle:before {
  4477. content: "\f056"
  4478. }
  4479.  
  4480. .uk-icon-times-circle:before {
  4481. content: "\f057"
  4482. }
  4483.  
  4484. .uk-icon-check-circle:before {
  4485. content: "\f058"
  4486. }
  4487.  
  4488. .uk-icon-question-circle:before {
  4489. content: "\f059"
  4490. }
  4491.  
  4492. .uk-icon-info-circle:before {
  4493. content: "\f05a"
  4494. }
  4495.  
  4496. .uk-icon-crosshairs:before {
  4497. content: "\f05b"
  4498. }
  4499.  
  4500. .uk-icon-times-circle-o:before {
  4501. content: "\f05c"
  4502. }
  4503.  
  4504. .uk-icon-check-circle-o:before {
  4505. content: "\f05d"
  4506. }
  4507.  
  4508. .uk-icon-ban:before {
  4509. content: "\f05e"
  4510. }
  4511.  
  4512. .uk-icon-arrow-left:before {
  4513. content: "\f060"
  4514. }
  4515.  
  4516. .uk-icon-arrow-right:before {
  4517. content: "\f061"
  4518. }
  4519.  
  4520. .uk-icon-arrow-up:before {
  4521. content: "\f062"
  4522. }
  4523.  
  4524. .uk-icon-arrow-down:before {
  4525. content: "\f063"
  4526. }
  4527.  
  4528. .uk-icon-mail-forward:before,.uk-icon-share:before {
  4529. content: "\f064"
  4530. }
  4531.  
  4532. .uk-icon-expand:before {
  4533. content: "\f065"
  4534. }
  4535.  
  4536. .uk-icon-compress:before {
  4537. content: "\f066"
  4538. }
  4539.  
  4540. .uk-icon-plus:before {
  4541. content: "\f067"
  4542. }
  4543.  
  4544. .uk-icon-minus:before {
  4545. content: "\f068"
  4546. }
  4547.  
  4548. .uk-icon-asterisk:before {
  4549. content: "\f069"
  4550. }
  4551.  
  4552. .uk-icon-exclamation-circle:before {
  4553. content: "\f06a"
  4554. }
  4555.  
  4556. .uk-icon-gift:before {
  4557. content: "\f06b"
  4558. }
  4559.  
  4560. .uk-icon-leaf:before {
  4561. content: "\f06c"
  4562. }
  4563.  
  4564. .uk-icon-fire:before {
  4565. content: "\f06d"
  4566. }
  4567.  
  4568. .uk-icon-eye:before {
  4569. content: "\f06e"
  4570. }
  4571.  
  4572. .uk-icon-eye-slash:before {
  4573. content: "\f070"
  4574. }
  4575.  
  4576. .uk-icon-exclamation-triangle:before,.uk-icon-warning:before {
  4577. content: "\f071"
  4578. }
  4579.  
  4580. .uk-icon-plane:before {
  4581. content: "\f072"
  4582. }
  4583.  
  4584. .uk-icon-calendar:before {
  4585. content: "\f073"
  4586. }
  4587.  
  4588. .uk-icon-random:before {
  4589. content: "\f074"
  4590. }
  4591.  
  4592. .uk-icon-comment:before {
  4593. content: "\f075"
  4594. }
  4595.  
  4596. .uk-icon-magnet:before {
  4597. content: "\f076"
  4598. }
  4599.  
  4600. .uk-icon-chevron-up:before {
  4601. content: "\f077"
  4602. }
  4603.  
  4604. .uk-icon-chevron-down:before {
  4605. content: "\f078"
  4606. }
  4607.  
  4608. .uk-icon-retweet:before {
  4609. content: "\f079"
  4610. }
  4611.  
  4612. .uk-icon-shopping-cart:before {
  4613. content: "\f07a"
  4614. }
  4615.  
  4616. .uk-icon-folder:before {
  4617. content: "\f07b"
  4618. }
  4619.  
  4620. .uk-icon-folder-open:before {
  4621. content: "\f07c"
  4622. }
  4623.  
  4624. .uk-icon-arrows-v:before {
  4625. content: "\f07d"
  4626. }
  4627.  
  4628. .uk-icon-arrows-h:before {
  4629. content: "\f07e"
  4630. }
  4631.  
  4632. .uk-icon-bar-chart-o:before,.uk-icon-bar-chart:before {
  4633. content: "\f080"
  4634. }
  4635.  
  4636. .uk-icon-twitter-square:before {
  4637. content: "\f081"
  4638. }
  4639.  
  4640. .uk-icon-facebook-square:before {
  4641. content: "\f082"
  4642. }
  4643.  
  4644. .uk-icon-camera-retro:before {
  4645. content: "\f083"
  4646. }
  4647.  
  4648. .uk-icon-key:before {
  4649. content: "\f084"
  4650. }
  4651.  
  4652. .uk-icon-cogs:before,.uk-icon-gears:before {
  4653. content: "\f085"
  4654. }
  4655.  
  4656. .uk-icon-comments:before {
  4657. content: "\f086"
  4658. }
  4659.  
  4660. .uk-icon-thumbs-o-up:before {
  4661. content: "\f087"
  4662. }
  4663.  
  4664. .uk-icon-thumbs-o-down:before {
  4665. content: "\f088"
  4666. }
  4667.  
  4668. .uk-icon-star-half:before {
  4669. content: "\f089"
  4670. }
  4671.  
  4672. .uk-icon-heart-o:before {
  4673. content: "\f08a"
  4674. }
  4675.  
  4676. .uk-icon-sign-out:before {
  4677. content: "\f08b"
  4678. }
  4679.  
  4680. .uk-icon-linkedin-square:before {
  4681. content: "\f08c"
  4682. }
  4683.  
  4684. .uk-icon-thumb-tack:before {
  4685. content: "\f08d"
  4686. }
  4687.  
  4688. .uk-icon-external-link:before {
  4689. content: "\f08e"
  4690. }
  4691.  
  4692. .uk-icon-sign-in:before {
  4693. content: "\f090"
  4694. }
  4695.  
  4696. .uk-icon-trophy:before {
  4697. content: "\f091"
  4698. }
  4699.  
  4700. .uk-icon-github-square:before {
  4701. content: "\f092"
  4702. }
  4703.  
  4704. .uk-icon-upload:before {
  4705. content: "\f093"
  4706. }
  4707.  
  4708. .uk-icon-lemon-o:before {
  4709. content: "\f094"
  4710. }
  4711.  
  4712. .uk-icon-phone:before {
  4713. content: "\f095"
  4714. }
  4715.  
  4716. .uk-icon-square-o:before {
  4717. content: "\f096"
  4718. }
  4719.  
  4720. .uk-icon-bookmark-o:before {
  4721. content: "\f097"
  4722. }
  4723.  
  4724. .uk-icon-phone-square:before {
  4725. content: "\f098"
  4726. }
  4727.  
  4728. .uk-icon-twitter:before {
  4729. content: "\f099"
  4730. }
  4731.  
  4732. .uk-icon-facebook-f:before,.uk-icon-facebook:before {
  4733. content: "\f09a"
  4734. }
  4735.  
  4736. .uk-icon-github:before {
  4737. content: "\f09b"
  4738. }
  4739.  
  4740. .uk-icon-unlock:before {
  4741. content: "\f09c"
  4742. }
  4743.  
  4744. .uk-icon-credit-card:before {
  4745. content: "\f09d"
  4746. }
  4747.  
  4748. .uk-icon-rss:before {
  4749. content: "\f09e"
  4750. }
  4751.  
  4752. .uk-icon-hdd-o:before {
  4753. content: "\f0a0"
  4754. }
  4755.  
  4756. .uk-icon-bullhorn:before {
  4757. content: "\f0a1"
  4758. }
  4759.  
  4760. .uk-icon-bell:before {
  4761. content: "\f0f3"
  4762. }
  4763.  
  4764. .uk-icon-certificate:before {
  4765. content: "\f0a3"
  4766. }
  4767.  
  4768. .uk-icon-hand-o-right:before {
  4769. content: "\f0a4"
  4770. }
  4771.  
  4772. .uk-icon-hand-o-left:before {
  4773. content: "\f0a5"
  4774. }
  4775.  
  4776. .uk-icon-hand-o-up:before {
  4777. content: "\f0a6"
  4778. }
  4779.  
  4780. .uk-icon-hand-o-down:before {
  4781. content: "\f0a7"
  4782. }
  4783.  
  4784. .uk-icon-arrow-circle-left:before {
  4785. content: "\f0a8"
  4786. }
  4787.  
  4788. .uk-icon-arrow-circle-right:before {
  4789. content: "\f0a9"
  4790. }
  4791.  
  4792. .uk-icon-arrow-circle-up:before {
  4793. content: "\f0aa"
  4794. }
  4795.  
  4796. .uk-icon-arrow-circle-down:before {
  4797. content: "\f0ab"
  4798. }
  4799.  
  4800. .uk-icon-globe:before {
  4801. content: "\f0ac"
  4802. }
  4803.  
  4804. .uk-icon-wrench:before {
  4805. content: "\f0ad"
  4806. }
  4807.  
  4808. .uk-icon-tasks:before {
  4809. content: "\f0ae"
  4810. }
  4811.  
  4812. .uk-icon-filter:before {
  4813. content: "\f0b0"
  4814. }
  4815.  
  4816. .uk-icon-briefcase:before {
  4817. content: "\f0b1"
  4818. }
  4819.  
  4820. .uk-icon-arrows-alt:before {
  4821. content: "\f0b2"
  4822. }
  4823.  
  4824. .uk-icon-group:before,.uk-icon-users:before {
  4825. content: "\f0c0"
  4826. }
  4827.  
  4828. .uk-icon-chain:before,.uk-icon-link:before {
  4829. content: "\f0c1"
  4830. }
  4831.  
  4832. .uk-icon-cloud:before {
  4833. content: "\f0c2"
  4834. }
  4835.  
  4836. .uk-icon-flask:before {
  4837. content: "\f0c3"
  4838. }
  4839.  
  4840. .uk-icon-cut:before,.uk-icon-scissors:before {
  4841. content: "\f0c4"
  4842. }
  4843.  
  4844. .uk-icon-copy:before,.uk-icon-files-o:before {
  4845. content: "\f0c5"
  4846. }
  4847.  
  4848. .uk-icon-paperclip:before {
  4849. content: "\f0c6"
  4850. }
  4851.  
  4852. .uk-icon-floppy-o:before,.uk-icon-save:before {
  4853. content: "\f0c7"
  4854. }
  4855.  
  4856. .uk-icon-square:before {
  4857. content: "\f0c8"
  4858. }
  4859.  
  4860. .uk-icon-bars:before,.uk-icon-navicon:before,.uk-icon-reorder:before {
  4861. content: "\f0c9"
  4862. }
  4863.  
  4864. .uk-icon-list-ul:before {
  4865. content: "\f0ca"
  4866. }
  4867.  
  4868. .uk-icon-list-ol:before {
  4869. content: "\f0cb"
  4870. }
  4871.  
  4872. .uk-icon-strikethrough:before {
  4873. content: "\f0cc"
  4874. }
  4875.  
  4876. .uk-icon-underline:before {
  4877. content: "\f0cd"
  4878. }
  4879.  
  4880. .uk-icon-table:before {
  4881. content: "\f0ce"
  4882. }
  4883.  
  4884. .uk-icon-magic:before {
  4885. content: "\f0d0"
  4886. }
  4887.  
  4888. .uk-icon-truck:before {
  4889. content: "\f0d1"
  4890. }
  4891.  
  4892. .uk-icon-pinterest:before {
  4893. content: "\f0d2"
  4894. }
  4895.  
  4896. .uk-icon-pinterest-square:before {
  4897. content: "\f0d3"
  4898. }
  4899.  
  4900. .uk-icon-google-plus-square:before {
  4901. content: "\f0d4"
  4902. }
  4903.  
  4904. .uk-icon-google-plus:before {
  4905. content: "\f0d5"
  4906. }
  4907.  
  4908. .uk-icon-money:before {
  4909. content: "\f0d6"
  4910. }
  4911.  
  4912. .uk-icon-caret-down:before {
  4913. content: "\f0d7"
  4914. }
  4915.  
  4916. .uk-icon-caret-up:before {
  4917. content: "\f0d8"
  4918. }
  4919.  
  4920. .uk-icon-caret-left:before {
  4921. content: "\f0d9"
  4922. }
  4923.  
  4924. .uk-icon-caret-right:before {
  4925. content: "\f0da"
  4926. }
  4927.  
  4928. .uk-icon-columns:before {
  4929. content: "\f0db"
  4930. }
  4931.  
  4932. .uk-icon-sort:before,.uk-icon-unsorted:before {
  4933. content: "\f0dc"
  4934. }
  4935.  
  4936. .uk-icon-sort-desc:before,.uk-icon-sort-down:before {
  4937. content: "\f0dd"
  4938. }
  4939.  
  4940. .uk-icon-sort-asc:before,.uk-icon-sort-up:before {
  4941. content: "\f0de"
  4942. }
  4943.  
  4944. .uk-icon-envelope:before {
  4945. content: "\f0e0"
  4946. }
  4947.  
  4948. .uk-icon-linkedin:before {
  4949. content: "\f0e1"
  4950. }
  4951.  
  4952. .uk-icon-rotate-left:before,.uk-icon-undo:before {
  4953. content: "\f0e2"
  4954. }
  4955.  
  4956. .uk-icon-gavel:before,.uk-icon-legal:before {
  4957. content: "\f0e3"
  4958. }
  4959.  
  4960. .uk-icon-dashboard:before,.uk-icon-tachometer:before {
  4961. content: "\f0e4"
  4962. }
  4963.  
  4964. .uk-icon-comment-o:before {
  4965. content: "\f0e5"
  4966. }
  4967.  
  4968. .uk-icon-comments-o:before {
  4969. content: "\f0e6"
  4970. }
  4971.  
  4972. .uk-icon-bolt:before,.uk-icon-flash:before {
  4973. content: "\f0e7"
  4974. }
  4975.  
  4976. .uk-icon-sitemap:before {
  4977. content: "\f0e8"
  4978. }
  4979.  
  4980. .uk-icon-umbrella:before {
  4981. content: "\f0e9"
  4982. }
  4983.  
  4984. .uk-icon-clipboard:before,.uk-icon-paste:before {
  4985. content: "\f0ea"
  4986. }
  4987.  
  4988. .uk-icon-lightbulb-o:before {
  4989. content: "\f0eb"
  4990. }
  4991.  
  4992. .uk-icon-exchange:before {
  4993. content: "\f0ec"
  4994. }
  4995.  
  4996. .uk-icon-cloud-download:before {
  4997. content: "\f0ed"
  4998. }
  4999.  
  5000. .uk-icon-cloud-upload:before {
  5001. content: "\f0ee"
  5002. }
  5003.  
  5004. .uk-icon-user-md:before {
  5005. content: "\f0f0"
  5006. }
  5007.  
  5008. .uk-icon-stethoscope:before {
  5009. content: "\f0f1"
  5010. }
  5011.  
  5012. .uk-icon-suitcase:before {
  5013. content: "\f0f2"
  5014. }
  5015.  
  5016. .uk-icon-bell-o:before {
  5017. content: "\f0a2"
  5018. }
  5019.  
  5020. .uk-icon-coffee:before {
  5021. content: "\f0f4"
  5022. }
  5023.  
  5024. .uk-icon-cutlery:before {
  5025. content: "\f0f5"
  5026. }
  5027.  
  5028. .uk-icon-file-text-o:before {
  5029. content: "\f0f6"
  5030. }
  5031.  
  5032. .uk-icon-building-o:before {
  5033. content: "\f0f7"
  5034. }
  5035.  
  5036. .uk-icon-hospital-o:before {
  5037. content: "\f0f8"
  5038. }
  5039.  
  5040. .uk-icon-ambulance:before {
  5041. content: "\f0f9"
  5042. }
  5043.  
  5044. .uk-icon-medkit:before {
  5045. content: "\f0fa"
  5046. }
  5047.  
  5048. .uk-icon-fighter-jet:before {
  5049. content: "\f0fb"
  5050. }
  5051.  
  5052. .uk-icon-beer:before {
  5053. content: "\f0fc"
  5054. }
  5055.  
  5056. .uk-icon-h-square:before {
  5057. content: "\f0fd"
  5058. }
  5059.  
  5060. .uk-icon-plus-square:before {
  5061. content: "\f0fe"
  5062. }
  5063.  
  5064. .uk-icon-angle-double-left:before {
  5065. content: "\f100"
  5066. }
  5067.  
  5068. .uk-icon-angle-double-right:before {
  5069. content: "\f101"
  5070. }
  5071.  
  5072. .uk-icon-angle-double-up:before {
  5073. content: "\f102"
  5074. }
  5075.  
  5076. .uk-icon-angle-double-down:before {
  5077. content: "\f103"
  5078. }
  5079.  
  5080. .uk-icon-angle-left:before {
  5081. content: "\f104"
  5082. }
  5083.  
  5084. .uk-icon-angle-right:before {
  5085. content: "\f105"
  5086. }
  5087.  
  5088. .uk-icon-angle-up:before {
  5089. content: "\f106"
  5090. }
  5091.  
  5092. .uk-icon-angle-down:before {
  5093. content: "\f107"
  5094. }
  5095.  
  5096. .uk-icon-desktop:before {
  5097. content: "\f108"
  5098. }
  5099.  
  5100. .uk-icon-laptop:before {
  5101. content: "\f109"
  5102. }
  5103.  
  5104. .uk-icon-tablet:before {
  5105. content: "\f10a"
  5106. }
  5107.  
  5108. .uk-icon-mobile-phone:before,.uk-icon-mobile:before {
  5109. content: "\f10b"
  5110. }
  5111.  
  5112. .uk-icon-circle-o:before {
  5113. content: "\f10c"
  5114. }
  5115.  
  5116. .uk-icon-quote-left:before {
  5117. content: "\f10d"
  5118. }
  5119.  
  5120. .uk-icon-quote-right:before {
  5121. content: "\f10e"
  5122. }
  5123.  
  5124. .uk-icon-spinner:before {
  5125. content: "\f110"
  5126. }
  5127.  
  5128. .uk-icon-circle:before {
  5129. content: "\f111"
  5130. }
  5131.  
  5132. .uk-icon-mail-reply:before,.uk-icon-reply:before {
  5133. content: "\f112"
  5134. }
  5135.  
  5136. .uk-icon-github-alt:before {
  5137. content: "\f113"
  5138. }
  5139.  
  5140. .uk-icon-folder-o:before {
  5141. content: "\f114"
  5142. }
  5143.  
  5144. .uk-icon-folder-open-o:before {
  5145. content: "\f115"
  5146. }
  5147.  
  5148. .uk-icon-smile-o:before {
  5149. content: "\f118"
  5150. }
  5151.  
  5152. .uk-icon-frown-o:before {
  5153. content: "\f119"
  5154. }
  5155.  
  5156. .uk-icon-meh-o:before {
  5157. content: "\f11a"
  5158. }
  5159.  
  5160. .uk-icon-gamepad:before {
  5161. content: "\f11b"
  5162. }
  5163.  
  5164. .uk-icon-keyboard-o:before {
  5165. content: "\f11c"
  5166. }
  5167.  
  5168. .uk-icon-flag-o:before {
  5169. content: "\f11d"
  5170. }
  5171.  
  5172. .uk-icon-flag-checkered:before {
  5173. content: "\f11e"
  5174. }
  5175.  
  5176. .uk-icon-terminal:before {
  5177. content: "\f120"
  5178. }
  5179.  
  5180. .uk-icon-code:before {
  5181. content: "\f121"
  5182. }
  5183.  
  5184. .uk-icon-mail-reply-all:before,.uk-icon-reply-all:before {
  5185. content: "\f122"
  5186. }
  5187.  
  5188. .uk-icon-star-half-empty:before,.uk-icon-star-half-full:before,.uk-icon-star-half-o:before {
  5189. content: "\f123"
  5190. }
  5191.  
  5192. .uk-icon-location-arrow:before {
  5193. content: "\f124"
  5194. }
  5195.  
  5196. .uk-icon-crop:before {
  5197. content: "\f125"
  5198. }
  5199.  
  5200. .uk-icon-code-fork:before {
  5201. content: "\f126"
  5202. }
  5203.  
  5204. .uk-icon-chain-broken:before,.uk-icon-unlink:before {
  5205. content: "\f127"
  5206. }
  5207.  
  5208. .uk-icon-question:before {
  5209. content: "\f128"
  5210. }
  5211.  
  5212. .uk-icon-info:before {
  5213. content: "\f129"
  5214. }
  5215.  
  5216. .uk-icon-exclamation:before {
  5217. content: "\f12a"
  5218. }
  5219.  
  5220. .uk-icon-superscript:before {
  5221. content: "\f12b"
  5222. }
  5223.  
  5224. .uk-icon-subscript:before {
  5225. content: "\f12c"
  5226. }
  5227.  
  5228. .uk-icon-eraser:before {
  5229. content: "\f12d"
  5230. }
  5231.  
  5232. .uk-icon-puzzle-piece:before {
  5233. content: "\f12e"
  5234. }
  5235.  
  5236. .uk-icon-microphone:before {
  5237. content: "\f130"
  5238. }
  5239.  
  5240. .uk-icon-microphone-slash:before {
  5241. content: "\f131"
  5242. }
  5243.  
  5244. .uk-icon-shield:before {
  5245. content: "\f132"
  5246. }
  5247.  
  5248. .uk-icon-calendar-o:before {
  5249. content: "\f133"
  5250. }
  5251.  
  5252. .uk-icon-fire-extinguisher:before {
  5253. content: "\f134"
  5254. }
  5255.  
  5256. .uk-icon-rocket:before {
  5257. content: "\f135"
  5258. }
  5259.  
  5260. .uk-icon-maxcdn:before {
  5261. content: "\f136"
  5262. }
  5263.  
  5264. .uk-icon-chevron-circle-left:before {
  5265. content: "\f137"
  5266. }
  5267.  
  5268. .uk-icon-chevron-circle-right:before {
  5269. content: "\f138"
  5270. }
  5271.  
  5272. .uk-icon-chevron-circle-up:before {
  5273. content: "\f139"
  5274. }
  5275.  
  5276. .uk-icon-chevron-circle-down:before {
  5277. content: "\f13a"
  5278. }
  5279.  
  5280. .uk-icon-html5:before {
  5281. content: "\f13b"
  5282. }
  5283.  
  5284. .uk-icon-css3:before {
  5285. content: "\f13c"
  5286. }
  5287.  
  5288. .uk-icon-anchor:before {
  5289. content: "\f13d"
  5290. }
  5291.  
  5292. .uk-icon-unlock-alt:before {
  5293. content: "\f13e"
  5294. }
  5295.  
  5296. .uk-icon-bullseye:before {
  5297. content: "\f140"
  5298. }
  5299.  
  5300. .uk-icon-ellipsis-h:before {
  5301. content: "\f141"
  5302. }
  5303.  
  5304. .uk-icon-ellipsis-v:before {
  5305. content: "\f142"
  5306. }
  5307.  
  5308. .uk-icon-rss-square:before {
  5309. content: "\f143"
  5310. }
  5311.  
  5312. .uk-icon-play-circle:before {
  5313. content: "\f144"
  5314. }
  5315.  
  5316. .uk-icon-ticket:before {
  5317. content: "\f145"
  5318. }
  5319.  
  5320. .uk-icon-minus-square:before {
  5321. content: "\f146"
  5322. }
  5323.  
  5324. .uk-icon-minus-square-o:before {
  5325. content: "\f147"
  5326. }
  5327.  
  5328. .uk-icon-level-up:before {
  5329. content: "\f148"
  5330. }
  5331.  
  5332. .uk-icon-level-down:before {
  5333. content: "\f149"
  5334. }
  5335.  
  5336. .uk-icon-check-square:before {
  5337. content: "\f14a"
  5338. }
  5339.  
  5340. .uk-icon-pencil-square:before {
  5341. content: "\f14b"
  5342. }
  5343.  
  5344. .uk-icon-external-link-square:before {
  5345. content: "\f14c"
  5346. }
  5347.  
  5348. .uk-icon-share-square:before {
  5349. content: "\f14d"
  5350. }
  5351.  
  5352. .uk-icon-compass:before {
  5353. content: "\f14e"
  5354. }
  5355.  
  5356. .uk-icon-caret-square-o-down:before,.uk-icon-toggle-down:before {
  5357. content: "\f150"
  5358. }
  5359.  
  5360. .uk-icon-caret-square-o-up:before,.uk-icon-toggle-up:before {
  5361. content: "\f151"
  5362. }
  5363.  
  5364. .uk-icon-caret-square-o-right:before,.uk-icon-toggle-right:before {
  5365. content: "\f152"
  5366. }
  5367.  
  5368. .uk-icon-eur:before,.uk-icon-euro:before {
  5369. content: "\f153"
  5370. }
  5371.  
  5372. .uk-icon-gbp:before {
  5373. content: "\f154"
  5374. }
  5375.  
  5376. .uk-icon-dollar:before,.uk-icon-usd:before {
  5377. content: "\f155"
  5378. }
  5379.  
  5380. .uk-icon-inr:before,.uk-icon-rupee:before {
  5381. content: "\f156"
  5382. }
  5383.  
  5384. .uk-icon-cny:before,.uk-icon-jpy:before,.uk-icon-rmb:before,.uk-icon-yen:before {
  5385. content: "\f157"
  5386. }
  5387.  
  5388. .uk-icon-rouble:before,.uk-icon-rub:before,.uk-icon-ruble:before {
  5389. content: "\f158"
  5390. }
  5391.  
  5392. .uk-icon-krw:before,.uk-icon-won:before {
  5393. content: "\f159"
  5394. }
  5395.  
  5396. .uk-icon-bitcoin:before,.uk-icon-btc:before {
  5397. content: "\f15a"
  5398. }
  5399.  
  5400. .uk-icon-file:before {
  5401. content: "\f15b"
  5402. }
  5403.  
  5404. .uk-icon-file-text:before {
  5405. content: "\f15c"
  5406. }
  5407.  
  5408. .uk-icon-sort-alpha-asc:before {
  5409. content: "\f15d"
  5410. }
  5411.  
  5412. .uk-icon-sort-alpha-desc:before {
  5413. content: "\f15e"
  5414. }
  5415.  
  5416. .uk-icon-sort-amount-asc:before {
  5417. content: "\f160"
  5418. }
  5419.  
  5420. .uk-icon-sort-amount-desc:before {
  5421. content: "\f161"
  5422. }
  5423.  
  5424. .uk-icon-sort-numeric-asc:before {
  5425. content: "\f162"
  5426. }
  5427.  
  5428. .uk-icon-sort-numeric-desc:before {
  5429. content: "\f163"
  5430. }
  5431.  
  5432. .uk-icon-thumbs-up:before {
  5433. content: "\f164"
  5434. }
  5435.  
  5436. .uk-icon-thumbs-down:before {
  5437. content: "\f165"
  5438. }
  5439.  
  5440. .uk-icon-youtube-square:before {
  5441. content: "\f166"
  5442. }
  5443.  
  5444. .uk-icon-youtube:before {
  5445. content: "\f167"
  5446. }
  5447.  
  5448. .uk-icon-xing:before {
  5449. content: "\f168"
  5450. }
  5451.  
  5452. .uk-icon-xing-square:before {
  5453. content: "\f169"
  5454. }
  5455.  
  5456. .uk-icon-youtube-play:before {
  5457. content: "\f16a"
  5458. }
  5459.  
  5460. .uk-icon-dropbox:before {
  5461. content: "\f16b"
  5462. }
  5463.  
  5464. .uk-icon-stack-overflow:before {
  5465. content: "\f16c"
  5466. }
  5467.  
  5468. .uk-icon-instagram:before {
  5469. content: "\f16d"
  5470. }
  5471.  
  5472. .uk-icon-flickr:before {
  5473. content: "\f16e"
  5474. }
  5475.  
  5476. .uk-icon-adn:before {
  5477. content: "\f170"
  5478. }
  5479.  
  5480. .uk-icon-bitbucket:before {
  5481. content: "\f171"
  5482. }
  5483.  
  5484. .uk-icon-bitbucket-square:before {
  5485. content: "\f172"
  5486. }
  5487.  
  5488. .uk-icon-tumblr:before {
  5489. content: "\f173"
  5490. }
  5491.  
  5492. .uk-icon-tumblr-square:before {
  5493. content: "\f174"
  5494. }
  5495.  
  5496. .uk-icon-long-arrow-down:before {
  5497. content: "\f175"
  5498. }
  5499.  
  5500. .uk-icon-long-arrow-up:before {
  5501. content: "\f176"
  5502. }
  5503.  
  5504. .uk-icon-long-arrow-left:before {
  5505. content: "\f177"
  5506. }
  5507.  
  5508. .uk-icon-long-arrow-right:before {
  5509. content: "\f178"
  5510. }
  5511.  
  5512. .uk-icon-apple:before {
  5513. content: "\f179"
  5514. }
  5515.  
  5516. .uk-icon-windows:before {
  5517. content: "\f17a"
  5518. }
  5519.  
  5520. .uk-icon-android:before {
  5521. content: "\f17b"
  5522. }
  5523.  
  5524. .uk-icon-linux:before {
  5525. content: "\f17c"
  5526. }
  5527.  
  5528. .uk-icon-dribbble:before {
  5529. content: "\f17d"
  5530. }
  5531.  
  5532. .uk-icon-skype:before {
  5533. content: "\f17e"
  5534. }
  5535.  
  5536. .uk-icon-foursquare:before {
  5537. content: "\f180"
  5538. }
  5539.  
  5540. .uk-icon-trello:before {
  5541. content: "\f181"
  5542. }
  5543.  
  5544. .uk-icon-female:before {
  5545. content: "\f182"
  5546. }
  5547.  
  5548. .uk-icon-male:before {
  5549. content: "\f183"
  5550. }
  5551.  
  5552. .uk-icon-gittip:before,.uk-icon-gratipay:before {
  5553. content: "\f184"
  5554. }
  5555.  
  5556. .uk-icon-sun-o:before {
  5557. content: "\f185"
  5558. }
  5559.  
  5560. .uk-icon-moon-o:before {
  5561. content: "\f186"
  5562. }
  5563.  
  5564. .uk-icon-archive:before {
  5565. content: "\f187"
  5566. }
  5567.  
  5568. .uk-icon-bug:before {
  5569. content: "\f188"
  5570. }
  5571.  
  5572. .uk-icon-vk:before {
  5573. content: "\f189"
  5574. }
  5575.  
  5576. .uk-icon-weibo:before {
  5577. content: "\f18a"
  5578. }
  5579.  
  5580. .uk-icon-renren:before {
  5581. content: "\f18b"
  5582. }
  5583.  
  5584. .uk-icon-pagelines:before {
  5585. content: "\f18c"
  5586. }
  5587.  
  5588. .uk-icon-stack-exchange:before {
  5589. content: "\f18d"
  5590. }
  5591.  
  5592. .uk-icon-arrow-circle-o-right:before {
  5593. content: "\f18e"
  5594. }
  5595.  
  5596. .uk-icon-arrow-circle-o-left:before {
  5597. content: "\f190"
  5598. }
  5599.  
  5600. .uk-icon-caret-square-o-left:before,.uk-icon-toggle-left:before {
  5601. content: "\f191"
  5602. }
  5603.  
  5604. .uk-icon-dot-circle-o:before {
  5605. content: "\f192"
  5606. }
  5607.  
  5608. .uk-icon-wheelchair:before {
  5609. content: "\f193"
  5610. }
  5611.  
  5612. .uk-icon-vimeo-square:before {
  5613. content: "\f194"
  5614. }
  5615.  
  5616. .uk-icon-try:before,.uk-icon-turkish-lira:before {
  5617. content: "\f195"
  5618. }
  5619.  
  5620. .uk-icon-plus-square-o:before {
  5621. content: "\f196"
  5622. }
  5623.  
  5624. .uk-icon-space-shuttle:before {
  5625. content: "\f197"
  5626. }
  5627.  
  5628. .uk-icon-slack:before {
  5629. content: "\f198"
  5630. }
  5631.  
  5632. .uk-icon-envelope-square:before {
  5633. content: "\f199"
  5634. }
  5635.  
  5636. .uk-icon-wordpress:before {
  5637. content: "\f19a"
  5638. }
  5639.  
  5640. .uk-icon-openid:before {
  5641. content: "\f19b"
  5642. }
  5643.  
  5644. .uk-icon-bank:before,.uk-icon-institution:before,.uk-icon-university:before {
  5645. content: "\f19c"
  5646. }
  5647.  
  5648. .uk-icon-graduation-cap:before,.uk-icon-mortar-board:before {
  5649. content: "\f19d"
  5650. }
  5651.  
  5652. .uk-icon-yahoo:before {
  5653. content: "\f19e"
  5654. }
  5655.  
  5656. .uk-icon-google:before {
  5657. content: "\f1a0"
  5658. }
  5659.  
  5660. .uk-icon-reddit:before {
  5661. content: "\f1a1"
  5662. }
  5663.  
  5664. .uk-icon-reddit-square:before {
  5665. content: "\f1a2"
  5666. }
  5667.  
  5668. .uk-icon-stumbleupon-circle:before {
  5669. content: "\f1a3"
  5670. }
  5671.  
  5672. .uk-icon-stumbleupon:before {
  5673. content: "\f1a4"
  5674. }
  5675.  
  5676. .uk-icon-delicious:before {
  5677. content: "\f1a5"
  5678. }
  5679.  
  5680. .uk-icon-digg:before {
  5681. content: "\f1a6"
  5682. }
  5683.  
  5684. .uk-icon-pied-piper:before {
  5685. content: "\f1a7"
  5686. }
  5687.  
  5688. .uk-icon-pied-piper-alt:before {
  5689. content: "\f1a8"
  5690. }
  5691.  
  5692. .uk-icon-drupal:before {
  5693. content: "\f1a9"
  5694. }
  5695.  
  5696. .uk-icon-joomla:before {
  5697. content: "\f1aa"
  5698. }
  5699.  
  5700. .uk-icon-language:before {
  5701. content: "\f1ab"
  5702. }
  5703.  
  5704. .uk-icon-fax:before {
  5705. content: "\f1ac"
  5706. }
  5707.  
  5708. .uk-icon-building:before {
  5709. content: "\f1ad"
  5710. }
  5711.  
  5712. .uk-icon-child:before {
  5713. content: "\f1ae"
  5714. }
  5715.  
  5716. .uk-icon-paw:before {
  5717. content: "\f1b0"
  5718. }
  5719.  
  5720. .uk-icon-spoon:before {
  5721. content: "\f1b1"
  5722. }
  5723.  
  5724. .uk-icon-cube:before {
  5725. content: "\f1b2"
  5726. }
  5727.  
  5728. .uk-icon-cubes:before {
  5729. content: "\f1b3"
  5730. }
  5731.  
  5732. .uk-icon-behance:before {
  5733. content: "\f1b4"
  5734. }
  5735.  
  5736. .uk-icon-behance-square:before {
  5737. content: "\f1b5"
  5738. }
  5739.  
  5740. .uk-icon-steam:before {
  5741. content: "\f1b6"
  5742. }
  5743.  
  5744. .uk-icon-steam-square:before {
  5745. content: "\f1b7"
  5746. }
  5747.  
  5748. .uk-icon-recycle:before {
  5749. content: "\f1b8"
  5750. }
  5751.  
  5752. .uk-icon-automobile:before,.uk-icon-car:before {
  5753. content: "\f1b9"
  5754. }
  5755.  
  5756. .uk-icon-cab:before,.uk-icon-taxi:before {
  5757. content: "\f1ba"
  5758. }
  5759.  
  5760. .uk-icon-tree:before {
  5761. content: "\f1bb"
  5762. }
  5763.  
  5764. .uk-icon-spotify:before {
  5765. content: "\f1bc"
  5766. }
  5767.  
  5768. .uk-icon-deviantart:before {
  5769. content: "\f1bd"
  5770. }
  5771.  
  5772. .uk-icon-soundcloud:before {
  5773. content: "\f1be"
  5774. }
  5775.  
  5776. .uk-icon-database:before {
  5777. content: "\f1c0"
  5778. }
  5779.  
  5780. .uk-icon-file-pdf-o:before {
  5781. content: "\f1c1"
  5782. }
  5783.  
  5784. .uk-icon-file-word-o:before {
  5785. content: "\f1c2"
  5786. }
  5787.  
  5788. .uk-icon-file-excel-o:before {
  5789. content: "\f1c3"
  5790. }
  5791.  
  5792. .uk-icon-file-powerpoint-o:before {
  5793. content: "\f1c4"
  5794. }
  5795.  
  5796. .uk-icon-file-image-o:before,.uk-icon-file-photo-o:before,.uk-icon-file-picture-o:before {
  5797. content: "\f1c5"
  5798. }
  5799.  
  5800. .uk-icon-file-archive-o:before,.uk-icon-file-zip-o:before {
  5801. content: "\f1c6"
  5802. }
  5803.  
  5804. .uk-icon-file-audio-o:before,.uk-icon-file-sound-o:before {
  5805. content: "\f1c7"
  5806. }
  5807.  
  5808. .uk-icon-file-movie-o:before,.uk-icon-file-video-o:before {
  5809. content: "\f1c8"
  5810. }
  5811.  
  5812. .uk-icon-file-code-o:before {
  5813. content: "\f1c9"
  5814. }
  5815.  
  5816. .uk-icon-vine:before {
  5817. content: "\f1ca"
  5818. }
  5819.  
  5820. .uk-icon-codepen:before {
  5821. content: "\f1cb"
  5822. }
  5823.  
  5824. .uk-icon-jsfiddle:before {
  5825. content: "\f1cc"
  5826. }
  5827.  
  5828. .uk-icon-life-bouy:before,.uk-icon-life-buoy:before,.uk-icon-life-ring:before,.uk-icon-life-saver:before,.uk-icon-support:before {
  5829. content: "\f1cd"
  5830. }
  5831.  
  5832. .uk-icon-circle-o-notch:before {
  5833. content: "\f1ce"
  5834. }
  5835.  
  5836. .uk-icon-ra:before,.uk-icon-rebel:before {
  5837. content: "\f1d0"
  5838. }
  5839.  
  5840. .uk-icon-empire:before,.uk-icon-ge:before {
  5841. content: "\f1d1"
  5842. }
  5843.  
  5844. .uk-icon-git-square:before {
  5845. content: "\f1d2"
  5846. }
  5847.  
  5848. .uk-icon-git:before {
  5849. content: "\f1d3"
  5850. }
  5851.  
  5852. .uk-icon-hacker-news:before {
  5853. content: "\f1d4"
  5854. }
  5855.  
  5856. .uk-icon-tencent-weibo:before {
  5857. content: "\f1d5"
  5858. }
  5859.  
  5860. .uk-icon-qq:before {
  5861. content: "\f1d6"
  5862. }
  5863.  
  5864. .uk-icon-wechat:before,.uk-icon-weixin:before {
  5865. content: "\f1d7"
  5866. }
  5867.  
  5868. .uk-icon-paper-plane:before,.uk-icon-send:before {
  5869. content: "\f1d8"
  5870. }
  5871.  
  5872. .uk-icon-paper-plane-o:before,.uk-icon-send-o:before {
  5873. content: "\f1d9"
  5874. }
  5875.  
  5876. .uk-icon-history:before {
  5877. content: "\f1da"
  5878. }
  5879.  
  5880. .uk-icon-circle-thin:before,.uk-icon-genderless:before {
  5881. content: "\f1db"
  5882. }
  5883.  
  5884. .uk-icon-header:before {
  5885. content: "\f1dc"
  5886. }
  5887.  
  5888. .uk-icon-paragraph:before {
  5889. content: "\f1dd"
  5890. }
  5891.  
  5892. .uk-icon-sliders:before {
  5893. content: "\f1de"
  5894. }
  5895.  
  5896. .uk-icon-share-alt:before {
  5897. content: "\f1e0"
  5898. }
  5899.  
  5900. .uk-icon-share-alt-square:before {
  5901. content: "\f1e1"
  5902. }
  5903.  
  5904. .uk-icon-bomb:before {
  5905. content: "\f1e2"
  5906. }
  5907.  
  5908. .uk-icon-futbol-o:before,.uk-icon-soccer-ball-o:before {
  5909. content: "\f1e3"
  5910. }
  5911.  
  5912. .uk-icon-tty:before {
  5913. content: "\f1e4"
  5914. }
  5915.  
  5916. .uk-icon-binoculars:before {
  5917. content: "\f1e5"
  5918. }
  5919.  
  5920. .uk-icon-plug:before {
  5921. content: "\f1e6"
  5922. }
  5923.  
  5924. .uk-icon-slideshare:before {
  5925. content: "\f1e7"
  5926. }
  5927.  
  5928. .uk-icon-twitch:before {
  5929. content: "\f1e8"
  5930. }
  5931.  
  5932. .uk-icon-yelp:before {
  5933. content: "\f1e9"
  5934. }
  5935.  
  5936. .uk-icon-newspaper-o:before {
  5937. content: "\f1ea"
  5938. }
  5939.  
  5940. .uk-icon-wifi:before {
  5941. content: "\f1eb"
  5942. }
  5943.  
  5944. .uk-icon-calculator:before {
  5945. content: "\f1ec"
  5946. }
  5947.  
  5948. .uk-icon-paypal:before {
  5949. content: "\f1ed"
  5950. }
  5951.  
  5952. .uk-icon-google-wallet:before {
  5953. content: "\f1ee"
  5954. }
  5955.  
  5956. .uk-icon-cc-visa:before {
  5957. content: "\f1f0"
  5958. }
  5959.  
  5960. .uk-icon-cc-mastercard:before {
  5961. content: "\f1f1"
  5962. }
  5963.  
  5964. .uk-icon-cc-discover:before {
  5965. content: "\f1f2"
  5966. }
  5967.  
  5968. .uk-icon-cc-amex:before {
  5969. content: "\f1f3"
  5970. }
  5971.  
  5972. .uk-icon-cc-paypal:before {
  5973. content: "\f1f4"
  5974. }
  5975.  
  5976. .uk-icon-cc-stripe:before {
  5977. content: "\f1f5"
  5978. }
  5979.  
  5980. .uk-icon-bell-slash:before {
  5981. content: "\f1f6"
  5982. }
  5983.  
  5984. .uk-icon-bell-slash-o:before {
  5985. content: "\f1f7"
  5986. }
  5987.  
  5988. .uk-icon-trash:before {
  5989. content: "\f1f8"
  5990. }
  5991.  
  5992. .uk-icon-copyright:before {
  5993. content: "\f1f9"
  5994. }
  5995.  
  5996. .uk-icon-at:before {
  5997. content: "\f1fa"
  5998. }
  5999.  
  6000. .uk-icon-eyedropper:before {
  6001. content: "\f1fb"
  6002. }
  6003.  
  6004. .uk-icon-paint-brush:before {
  6005. content: "\f1fc"
  6006. }
  6007.  
  6008. .uk-icon-birthday-cake:before {
  6009. content: "\f1fd"
  6010. }
  6011.  
  6012. .uk-icon-area-chart:before {
  6013. content: "\f1fe"
  6014. }
  6015.  
  6016. .uk-icon-pie-chart:before {
  6017. content: "\f200"
  6018. }
  6019.  
  6020. .uk-icon-line-chart:before {
  6021. content: "\f201"
  6022. }
  6023.  
  6024. .uk-icon-lastfm:before {
  6025. content: "\f202"
  6026. }
  6027.  
  6028. .uk-icon-lastfm-square:before {
  6029. content: "\f203"
  6030. }
  6031.  
  6032. .uk-icon-toggle-off:before {
  6033. content: "\f204"
  6034. }
  6035.  
  6036. .uk-icon-toggle-on:before {
  6037. content: "\f205"
  6038. }
  6039.  
  6040. .uk-icon-bicycle:before {
  6041. content: "\f206"
  6042. }
  6043.  
  6044. .uk-icon-bus:before {
  6045. content: "\f207"
  6046. }
  6047.  
  6048. .uk-icon-ioxhost:before {
  6049. content: "\f208"
  6050. }
  6051.  
  6052. .uk-icon-angellist:before {
  6053. content: "\f209"
  6054. }
  6055.  
  6056. .uk-icon-cc:before {
  6057. content: "\f20a"
  6058. }
  6059.  
  6060. .uk-icon-ils:before,.uk-icon-shekel:before,.uk-icon-sheqel:before {
  6061. content: "\f20b"
  6062. }
  6063.  
  6064. .uk-icon-meanpath:before {
  6065. content: "\f20c"
  6066. }
  6067.  
  6068. .uk-icon-buysellads:before {
  6069. content: "\f20d"
  6070. }
  6071.  
  6072. .uk-icon-connectdevelop:before {
  6073. content: "\f20e"
  6074. }
  6075.  
  6076. .uk-icon-dashcube:before {
  6077. content: "\f210"
  6078. }
  6079.  
  6080. .uk-icon-forumbee:before {
  6081. content: "\f211"
  6082. }
  6083.  
  6084. .uk-icon-leanpub:before {
  6085. content: "\f212"
  6086. }
  6087.  
  6088. .uk-icon-sellsy:before {
  6089. content: "\f213"
  6090. }
  6091.  
  6092. .uk-icon-shirtsinbulk:before {
  6093. content: "\f214"
  6094. }
  6095.  
  6096. .uk-icon-simplybuilt:before {
  6097. content: "\f215"
  6098. }
  6099.  
  6100. .uk-icon-skyatlas:before {
  6101. content: "\f216"
  6102. }
  6103.  
  6104. .uk-icon-cart-plus:before {
  6105. content: "\f217"
  6106. }
  6107.  
  6108. .uk-icon-cart-arrow-down:before {
  6109. content: "\f218"
  6110. }
  6111.  
  6112. .uk-icon-diamond:before {
  6113. content: "\f219"
  6114. }
  6115.  
  6116. .uk-icon-ship:before {
  6117. content: "\f21a"
  6118. }
  6119.  
  6120. .uk-icon-user-secret:before {
  6121. content: "\f21b"
  6122. }
  6123.  
  6124. .uk-icon-motorcycle:before {
  6125. content: "\f21c"
  6126. }
  6127.  
  6128. .uk-icon-street-view:before {
  6129. content: "\f21d"
  6130. }
  6131.  
  6132. .uk-icon-heartbeat:before {
  6133. content: "\f21e"
  6134. }
  6135.  
  6136. .uk-icon-venus:before {
  6137. content: "\f221"
  6138. }
  6139.  
  6140. .uk-icon-mars:before {
  6141. content: "\f222"
  6142. }
  6143.  
  6144. .uk-icon-mercury:before {
  6145. content: "\f223"
  6146. }
  6147.  
  6148. .uk-icon-transgender:before {
  6149. content: "\f224"
  6150. }
  6151.  
  6152. .uk-icon-transgender-alt:before {
  6153. content: "\f225"
  6154. }
  6155.  
  6156. .uk-icon-venus-double:before {
  6157. content: "\f226"
  6158. }
  6159.  
  6160. .uk-icon-mars-double:before {
  6161. content: "\f227"
  6162. }
  6163.  
  6164. .uk-icon-venus-mars:before {
  6165. content: "\f228"
  6166. }
  6167.  
  6168. .uk-icon-mars-stroke:before {
  6169. content: "\f229"
  6170. }
  6171.  
  6172. .uk-icon-mars-stroke-v:before {
  6173. content: "\f22a"
  6174. }
  6175.  
  6176. .uk-icon-mars-stroke-h:before {
  6177. content: "\f22b"
  6178. }
  6179.  
  6180. .uk-icon-neuter:before {
  6181. content: "\f22c"
  6182. }
  6183.  
  6184. .uk-icon-facebook-official:before {
  6185. content: "\f230"
  6186. }
  6187.  
  6188. .uk-icon-pinterest-p:before {
  6189. content: "\f231"
  6190. }
  6191.  
  6192. .uk-icon-whatsapp:before {
  6193. content: "\f232"
  6194. }
  6195.  
  6196. .uk-icon-server:before {
  6197. content: "\f233"
  6198. }
  6199.  
  6200. .uk-icon-user-plus:before {
  6201. content: "\f234"
  6202. }
  6203.  
  6204. .uk-icon-user-times:before {
  6205. content: "\f235"
  6206. }
  6207.  
  6208. .uk-icon-bed:before,.uk-icon-hotel:before {
  6209. content: "\f236"
  6210. }
  6211.  
  6212. .uk-icon-viacoin:before {
  6213. content: "\f237"
  6214. }
  6215.  
  6216. .uk-icon-train:before {
  6217. content: "\f238"
  6218. }
  6219.  
  6220. .uk-icon-subway:before {
  6221. content: "\f239"
  6222. }
  6223.  
  6224. .uk-icon-medium-logo:before {
  6225. content: "\f23a"
  6226. }
  6227.  
  6228. .uk-icon-500px:before {
  6229. content: "\f26e"
  6230. }
  6231.  
  6232. .uk-icon-amazon:before {
  6233. content: "\f270"
  6234. }
  6235.  
  6236. .uk-icon-balance-scale:before {
  6237. content: "\f24e"
  6238. }
  6239.  
  6240. .uk-icon-battery-0:before,.uk-icon-battery-empty:before {
  6241. content: "\f244"
  6242. }
  6243.  
  6244. .uk-icon-battery-1:before,.uk-icon-battery-quarter:before {
  6245. content: "\f243"
  6246. }
  6247.  
  6248. .uk-icon-battery-2:before,.uk-icon-battery-half:before {
  6249. content: "\f242"
  6250. }
  6251.  
  6252. .uk-icon-battery-3:before,.uk-icon-battery-three-quarters:before {
  6253. content: "\f241"
  6254. }
  6255.  
  6256. .uk-icon-battery-4:before,.uk-icon-battery-full:before {
  6257. content: "\f240"
  6258. }
  6259.  
  6260. .uk-icon-black-tie:before {
  6261. content: "\f27e"
  6262. }
  6263.  
  6264. .uk-icon-calendar-check-o:before {
  6265. content: "\f274"
  6266. }
  6267.  
  6268. .uk-icon-calendar-minus-o:before {
  6269. content: "\f272"
  6270. }
  6271.  
  6272. .uk-icon-calendar-plus-o:before {
  6273. content: "\f271"
  6274. }
  6275.  
  6276. .uk-icon-calendar-times-o:before {
  6277. content: "\f273"
  6278. }
  6279.  
  6280. .uk-icon-cc-diners-club:before {
  6281. content: "\f24c"
  6282. }
  6283.  
  6284. .uk-icon-cc-jcb:before {
  6285. content: "\f24b"
  6286. }
  6287.  
  6288. .uk-icon-chrome:before {
  6289. content: "\f268"
  6290. }
  6291.  
  6292. .uk-icon-clone:before {
  6293. content: "\f24d"
  6294. }
  6295.  
  6296. .uk-icon-commenting:before {
  6297. content: "\f27a"
  6298. }
  6299.  
  6300. .uk-icon-commenting-o:before {
  6301. content: "\f27b"
  6302. }
  6303.  
  6304. .uk-icon-contao:before {
  6305. content: "\f26d"
  6306. }
  6307.  
  6308. .uk-icon-creative-commons:before {
  6309. content: "\f25e"
  6310. }
  6311.  
  6312. .uk-icon-expeditedssl:before {
  6313. content: "\f23e"
  6314. }
  6315.  
  6316. .uk-icon-firefox:before {
  6317. content: "\f269"
  6318. }
  6319.  
  6320. .uk-icon-fonticons:before {
  6321. content: "\f280"
  6322. }
  6323.  
  6324. .uk-icon-get-pocket:before {
  6325. content: "\f265"
  6326. }
  6327.  
  6328. .uk-icon-gg:before {
  6329. content: "\f260"
  6330. }
  6331.  
  6332. .uk-icon-gg-circle:before {
  6333. content: "\f261"
  6334. }
  6335.  
  6336. .uk-icon-hand-lizard-o:before {
  6337. content: "\f258"
  6338. }
  6339.  
  6340. .uk-icon-hand-paper-o:before,.uk-icon-hand-stop-o:before {
  6341. content: "\f256"
  6342. }
  6343.  
  6344. .uk-icon-hand-peace-o:before {
  6345. content: "\f25b"
  6346. }
  6347.  
  6348. .uk-icon-hand-pointer-o:before {
  6349. content: "\f25a"
  6350. }
  6351.  
  6352. .uk-icon-hand-grab-o:before,.uk-icon-hand-rock-o:before {
  6353. content: "\f255"
  6354. }
  6355.  
  6356. .uk-icon-hand-scissors-o:before {
  6357. content: "\f257"
  6358. }
  6359.  
  6360. .uk-icon-hand-spock-o:before {
  6361. content: "\f259"
  6362. }
  6363.  
  6364. .uk-icon-hourglass:before {
  6365. content: "\f254"
  6366. }
  6367.  
  6368. .uk-icon-hourglass-o:before {
  6369. content: "\f250"
  6370. }
  6371.  
  6372. .uk-icon-hourglass-1:before,.uk-icon-hourglass-start:before {
  6373. content: "\f251"
  6374. }
  6375.  
  6376. .uk-icon-hourglass-2:before,.uk-icon-hourglass-half:before {
  6377. content: "\f252"
  6378. }
  6379.  
  6380. .uk-icon-hourglass-3:before,.uk-icon-hourglass-end:before {
  6381. content: "\f253"
  6382. }
  6383.  
  6384. .uk-icon-houzz:before {
  6385. content: "\f27c"
  6386. }
  6387.  
  6388. .uk-icon-i-cursor:before {
  6389. content: "\f246"
  6390. }
  6391.  
  6392. .uk-icon-industry:before {
  6393. content: "\f275"
  6394. }
  6395.  
  6396. .uk-icon-internet-explorer:before {
  6397. content: "\f26b"
  6398. }
  6399.  
  6400. .uk-icon-map:before {
  6401. content: "\f279"
  6402. }
  6403.  
  6404. .uk-icon-map-o:before {
  6405. content: "\f278"
  6406. }
  6407.  
  6408. .uk-icon-map-pin:before {
  6409. content: "\f276"
  6410. }
  6411.  
  6412. .uk-icon-map-signs:before {
  6413. content: "\f277"
  6414. }
  6415.  
  6416. .uk-icon-mouse-pointer:before {
  6417. content: "\f245"
  6418. }
  6419.  
  6420. .uk-icon-object-group:before {
  6421. content: "\f247"
  6422. }
  6423.  
  6424. .uk-icon-object-ungroup:before {
  6425. content: "\f248"
  6426. }
  6427.  
  6428. .uk-icon-odnoklassniki:before {
  6429. content: "\f263"
  6430. }
  6431.  
  6432. .uk-icon-odnoklassniki-square:before {
  6433. content: "\f264"
  6434. }
  6435.  
  6436. .uk-icon-opencart:before {
  6437. content: "\f23d"
  6438. }
  6439.  
  6440. .uk-icon-opera:before {
  6441. content: "\f26a"
  6442. }
  6443.  
  6444. .uk-icon-optin-monster:before {
  6445. content: "\f23c"
  6446. }
  6447.  
  6448. .uk-icon-registered:before {
  6449. content: "\f25d"
  6450. }
  6451.  
  6452. .uk-icon-safari:before {
  6453. content: "\f267"
  6454. }
  6455.  
  6456. .uk-icon-sticky-note:before {
  6457. content: "\f249"
  6458. }
  6459.  
  6460. .uk-icon-sticky-note-o:before {
  6461. content: "\f24a"
  6462. }
  6463.  
  6464. .uk-icon-television:before,.uk-icon-tv:before {
  6465. content: "\f26c"
  6466. }
  6467.  
  6468. .uk-icon-trademark:before {
  6469. content: "\f25c"
  6470. }
  6471.  
  6472. .uk-icon-tripadvisor:before {
  6473. content: "\f262"
  6474. }
  6475.  
  6476. .uk-icon-vimeo:before {
  6477. content: "\f27d"
  6478. }
  6479.  
  6480. .uk-icon-wikipedia-w:before {
  6481. content: "\f266"
  6482. }
  6483.  
  6484. .uk-icon-y-combinator:before,.uk-icon-yc:before {
  6485. content: "\f23b"
  6486. }
  6487.  
  6488. .uk-icon-y-combinator-square:before,.uk-icon-yc-square:before {
  6489. content: "\f1d4"
  6490. }
  6491.  
  6492. .uk-icon-bluetooth:before {
  6493. content: "\f293"
  6494. }
  6495.  
  6496. .uk-icon-bluetooth-b:before {
  6497. content: "\f294"
  6498. }
  6499.  
  6500. .uk-icon-codiepie:before {
  6501. content: "\f284"
  6502. }
  6503.  
  6504. .uk-icon-credit-card-alt:before {
  6505. content: "\f283"
  6506. }
  6507.  
  6508. .uk-icon-edge:before {
  6509. content: "\f282"
  6510. }
  6511.  
  6512. .uk-icon-fort-awesome:before {
  6513. content: "\f286"
  6514. }
  6515.  
  6516. .uk-icon-hashtag:before {
  6517. content: "\f292"
  6518. }
  6519.  
  6520. .uk-icon-mixcloud:before {
  6521. content: "\f289"
  6522. }
  6523.  
  6524. .uk-icon-modx:before {
  6525. content: "\f285"
  6526. }
  6527.  
  6528. .uk-icon-pause-circle:before {
  6529. content: "\f28b"
  6530. }
  6531.  
  6532. .uk-icon-pause-circle-o:before {
  6533. content: "\f28c"
  6534. }
  6535.  
  6536. .uk-icon-percent:before {
  6537. content: "\f295"
  6538. }
  6539.  
  6540. .uk-icon-product-hunt:before {
  6541. content: "\f288"
  6542. }
  6543.  
  6544. .uk-icon-reddit-alien:before {
  6545. content: "\f281"
  6546. }
  6547.  
  6548. .uk-icon-scribd:before {
  6549. content: "\f28a"
  6550. }
  6551.  
  6552. .uk-icon-shopping-bag:before {
  6553. content: "\f290"
  6554. }
  6555.  
  6556. .uk-icon-shopping-basket:before {
  6557. content: "\f291"
  6558. }
  6559.  
  6560. .uk-icon-stop-circle:before {
  6561. content: "\f28d"
  6562. }
  6563.  
  6564. .uk-icon-stop-circle-o:before {
  6565. content: "\f28e"
  6566. }
  6567.  
  6568. .uk-icon-usb:before {
  6569. content: "\f287"
  6570. }
  6571.  
  6572. .uk-icon-american-sign-language-interpreting:before,.uk-icon-asl-interpreting:before {
  6573. content: "\f2a3"
  6574. }
  6575.  
  6576. .uk-icon-assistive-listening-systems:before {
  6577. content: "\f2a2"
  6578. }
  6579.  
  6580. .uk-icon-audio-description:before {
  6581. content: "\f29e"
  6582. }
  6583.  
  6584. .uk-icon-blind:before {
  6585. content: "\f29d"
  6586. }
  6587.  
  6588. .uk-icon-braille:before {
  6589. content: "\f2a1"
  6590. }
  6591.  
  6592. .uk-icon-deaf:before,.uk-icon-deafness:before {
  6593. content: "\f2a4"
  6594. }
  6595.  
  6596. .uk-icon-envira:before {
  6597. content: "\f299"
  6598. }
  6599.  
  6600. .uk-icon-gitlab:before {
  6601. content: "\f296"
  6602. }
  6603.  
  6604. .uk-icon-glide:before {
  6605. content: "\f2a5"
  6606. }
  6607.  
  6608. .uk-icon-glide-g:before {
  6609. content: "\f2a6"
  6610. }
  6611.  
  6612. .uk-icon-hard-of-hearing:before {
  6613. content: "\f2a4"
  6614. }
  6615.  
  6616. .uk-icon-low-vision:before {
  6617. content: "\f2a8"
  6618. }
  6619.  
  6620. .uk-icon-question-circle-o:before {
  6621. content: "\f29c"
  6622. }
  6623.  
  6624. .uk-icon-sign-language:before,.uk-icon-signing:before {
  6625. content: "\f2a7"
  6626. }
  6627.  
  6628. .uk-icon-snapchat:before {
  6629. content: "\f2ab"
  6630. }
  6631.  
  6632. .uk-icon-snapchat-ghost:before {
  6633. content: "\f2ac"
  6634. }
  6635.  
  6636. .uk-icon-snapchat-square:before {
  6637. content: "\f2ad"
  6638. }
  6639.  
  6640. .uk-icon-universal-access:before {
  6641. content: "\f29a"
  6642. }
  6643.  
  6644. .uk-icon-viadeo:before {
  6645. content: "\f2a9"
  6646. }
  6647.  
  6648. .uk-icon-viadeo-square:before {
  6649. content: "\f2aa"
  6650. }
  6651.  
  6652. .uk-icon-volume-control-phone:before {
  6653. content: "\f2a0"
  6654. }
  6655.  
  6656. .uk-icon-wheelchair-alt:before {
  6657. content: "\f29b"
  6658. }
  6659.  
  6660. .uk-icon-wpbeginner:before {
  6661. content: "\f297"
  6662. }
  6663.  
  6664. .uk-icon-wpforms:before {
  6665. content: "\f298"
  6666. }
  6667.  
  6668. .uk-close::-moz-focus-inner {
  6669. border: 0;
  6670. padding: 0
  6671. }
  6672.  
  6673. .uk-close {
  6674. -webkit-appearance: none;
  6675. margin: 0;
  6676. border: none;
  6677. overflow: visible;
  6678. font: inherit;
  6679. color: inherit;
  6680. text-transform: none;
  6681. padding: 0;
  6682. background: 0 0;
  6683. display: inline-block;
  6684. box-sizing: content-box;
  6685. width: 20px;
  6686. line-height: 20px;
  6687. text-align: center;
  6688. vertical-align: middle;
  6689. opacity: .3
  6690. }
  6691.  
  6692. .uk-close:after {
  6693. display: block;
  6694. content: "\f00d";
  6695. font-family: FontAwesome
  6696. }
  6697.  
  6698. .uk-close:focus,.uk-close:hover {
  6699. opacity: .5;
  6700. outline: none;
  6701. color: inherit;
  6702. text-decoration: none;
  6703. cursor: pointer
  6704. }
  6705.  
  6706. .uk-close-alt {
  6707. padding: 2px;
  6708. border-radius: 50%;
  6709. background: #eee;
  6710. opacity: 1
  6711. }
  6712.  
  6713. .uk-close-alt:focus,.uk-close-alt:hover {
  6714. opacity: 1
  6715. }
  6716.  
  6717. .uk-close-alt:after {
  6718. opacity: .5
  6719. }
  6720.  
  6721. .uk-close-alt:focus:after,.uk-close-alt:hover:after {
  6722. opacity: .8
  6723. }
  6724.  
  6725. .uk-badge {
  6726. display: inline-block;
  6727. padding: 0 8px;
  6728. background: #00a8e6;
  6729. font-size: 11px;
  6730. font-weight: 400;
  6731. line-height: 15px;
  6732. text-align: center;
  6733. vertical-align: middle;
  6734. text-transform: uppercase
  6735. }
  6736.  
  6737. .uk-badge,a.uk-badge:hover {
  6738. color: #fff
  6739. }
  6740.  
  6741. .uk-badge-notification {
  6742. box-sizing: border-box;
  6743. min-width: 19px;
  6744. border-radius: 500px;
  6745. font-size: 13px;
  6746. line-height: 19px
  6747. }
  6748.  
  6749. .uk-badge-success {
  6750. background-color: #66b82f
  6751. }
  6752.  
  6753. .uk-badge-warning {
  6754. background-color: #da922c
  6755. }
  6756.  
  6757. .uk-badge-danger {
  6758. background-color: #d65b49
  6759. }
  6760.  
  6761. .uk-alert {
  6762. margin-bottom: 15px;
  6763. padding: 10px;
  6764. background: #2197ef;
  6765. color: rgba(250,250,250,.79)
  6766. }
  6767.  
  6768. .uk-alert>:last-child {
  6769. margin-bottom: 0
  6770. }
  6771.  
  6772. .uk-alert h1,.uk-alert h2,.uk-alert h3,.uk-alert h4,.uk-alert h5,.uk-alert h6,.uk-overlay-panel h1,.uk-overlay-panel h2,.uk-overlay-panel h3,.uk-overlay-panel h4,.uk-overlay-panel h5,.uk-overlay-panel h6 {
  6773. color: inherit
  6774. }
  6775.  
  6776. .uk-alert>.uk-close:first-child {
  6777. float: right
  6778. }
  6779.  
  6780. .uk-alert>.uk-close:first-child+* {
  6781. margin-top: 0
  6782. }
  6783.  
  6784. .uk-alert-success {
  6785. background: #66b92d;
  6786. color: rgba(255,255,255,.81)
  6787. }
  6788.  
  6789. .uk-alert-warning {
  6790. background: #da932b;
  6791. color: rgba(255,255,255,.81)
  6792. }
  6793.  
  6794. .uk-alert-danger {
  6795. background: #d65b49;
  6796. color: rgba(255,255,255,.83)
  6797. }
  6798.  
  6799. .uk-alert-large {
  6800. padding: 20px
  6801. }
  6802.  
  6803. .uk-alert-large>.uk-close:first-child {
  6804. margin: -10px -10px 0 0
  6805. }
  6806.  
  6807. .uk-thumbnail {
  6808. display: inline-block;
  6809. max-width: 100%;
  6810. box-sizing: border-box;
  6811. margin: 0;
  6812. padding: 4px;
  6813. border: 1px solid #434343;
  6814. background: #191818
  6815. }
  6816.  
  6817. a.uk-thumbnail:focus,a.uk-thumbnail:hover {
  6818. border-color: #101010;
  6819. background-color: #191818;
  6820. text-decoration: none;
  6821. outline: none
  6822. }
  6823.  
  6824. .uk-thumbnail-caption {
  6825. padding-top: 4px;
  6826. text-align: center;
  6827. color: #bebdbd
  6828. }
  6829.  
  6830. .uk-thumbnail-mini {
  6831. width: 150px
  6832. }
  6833.  
  6834. .uk-thumbnail-small {
  6835. width: 200px
  6836. }
  6837.  
  6838. .uk-thumbnail-medium {
  6839. width: 300px
  6840. }
  6841.  
  6842. .uk-thumbnail-large {
  6843. width: 400px
  6844. }
  6845.  
  6846. .uk-thumbnail-expand,.uk-thumbnail-expand>img {
  6847. width: 100%
  6848. }
  6849.  
  6850. .uk-overlay {
  6851. display: inline-block;
  6852. position: relative;
  6853. max-width: 100%;
  6854. vertical-align: middle;
  6855. overflow: hidden;
  6856. -webkit-transform: translateZ(0);
  6857. margin: 0
  6858. }
  6859.  
  6860. .uk-overlay.uk-border-circle {
  6861. -webkit-mask-image: -webkit-radial-gradient(circle,#fff 100%,#000 100%)
  6862. }
  6863.  
  6864. .uk-overlay>:first-child {
  6865. margin-bottom: 0
  6866. }
  6867.  
  6868. .uk-overlay-panel {
  6869. position: absolute;
  6870. top: 0;
  6871. bottom: 0;
  6872. left: 0;
  6873. right: 0;
  6874. padding: 20px;
  6875. color: #fff
  6876. }
  6877.  
  6878. .uk-overlay-panel.uk-flex>*>:last-child,.uk-overlay-panel>:last-child {
  6879. margin-bottom: 0
  6880. }
  6881.  
  6882. .uk-overlay-panel a:not([class]) {
  6883. color: inherit;
  6884. text-decoration: underline
  6885. }
  6886.  
  6887. .uk-overlay-area-content a:not([class]),.uk-overlay-area-content a:not([class]):hover,.uk-overlay-panel a[class*=uk-icon-]:not(.uk-icon-button) {
  6888. color: inherit
  6889. }
  6890.  
  6891. .uk-overlay-active :not(.uk-active)>.uk-overlay-panel:not(.uk-ignore),.uk-overlay-hover:not(:hover):not(.uk-hover) .uk-overlay-panel:not(.uk-ignore) {
  6892. opacity: 0
  6893. }
  6894.  
  6895. .uk-overlay-background {
  6896. background: rgba(82,82,82,.56)
  6897. }
  6898.  
  6899. .uk-overlay-image {
  6900. padding: 0
  6901. }
  6902.  
  6903. .uk-overlay-top {
  6904. bottom: auto
  6905. }
  6906.  
  6907. .uk-overlay-bottom {
  6908. top: auto
  6909. }
  6910.  
  6911. .uk-overlay-left {
  6912. right: auto
  6913. }
  6914.  
  6915. .uk-overlay-right {
  6916. left: auto
  6917. }
  6918.  
  6919. .uk-overlay-icon:before {
  6920. content: "\f002";
  6921. position: absolute;
  6922. top: 50%;
  6923. left: 50%;
  6924. width: 50px;
  6925. height: 50px;
  6926. margin-top: -25px;
  6927. margin-left: -25px;
  6928. font-size: 50px;
  6929. line-height: 1;
  6930. font-family: FontAwesome;
  6931. text-align: center;
  6932. color: #fff
  6933. }
  6934.  
  6935. .uk-overlay-blur,.uk-overlay-fade,.uk-overlay-grayscale,.uk-overlay-scale,.uk-overlay-spin,[class*=uk-overlay-slide] {
  6936. transition-duration: .3s;
  6937. transition-timing-function: ease-out;
  6938. transition-property: opacity,transform,filter
  6939. }
  6940.  
  6941. .uk-overlay-active .uk-overlay-fade,.uk-overlay-active .uk-overlay-scale,.uk-overlay-active .uk-overlay-spin,.uk-overlay-active [class*=uk-overlay-slide] {
  6942. transition-duration: .8s
  6943. }
  6944.  
  6945. .uk-overlay-fade {
  6946. opacity: .7
  6947. }
  6948.  
  6949. .uk-overlay-active .uk-active>.uk-overlay-fade,.uk-overlay-hover.uk-hover .uk-overlay-fade,.uk-overlay-hover:hover .uk-overlay-fade {
  6950. opacity: 1
  6951. }
  6952.  
  6953. .uk-overlay-scale {
  6954. -webkit-transform: scale(1);
  6955. transform: scale(1)
  6956. }
  6957.  
  6958. .uk-overlay-active .uk-active>.uk-overlay-scale,.uk-overlay-hover.uk-hover .uk-overlay-scale,.uk-overlay-hover:hover .uk-overlay-scale {
  6959. -webkit-transform: scale(1.1);
  6960. transform: scale(1.1)
  6961. }
  6962.  
  6963. .uk-overlay-spin {
  6964. -webkit-transform: scale(1) rotate(0deg);
  6965. transform: scale(1) rotate(0deg)
  6966. }
  6967.  
  6968. .uk-overlay-active .uk-active>.uk-overlay-spin,.uk-overlay-hover.uk-hover .uk-overlay-spin,.uk-overlay-hover:hover .uk-overlay-spin {
  6969. -webkit-transform: scale(1.1) rotate(3deg);
  6970. transform: scale(1.1) rotate(3deg)
  6971. }
  6972.  
  6973. .uk-overlay-grayscale {
  6974. -webkit-filter: grayscale(100%);
  6975. filter: grayscale(100%)
  6976. }
  6977.  
  6978. .uk-overlay-active .uk-active>.uk-overlay-grayscale,.uk-overlay-hover.uk-hover .uk-overlay-grayscale,.uk-overlay-hover:hover .uk-overlay-grayscale {
  6979. -webkit-filter: grayscale(0);
  6980. filter: grayscale(0)
  6981. }
  6982.  
  6983. [class*=uk-overlay-slide] {
  6984. opacity: 0
  6985. }
  6986.  
  6987. .uk-overlay-slide-top {
  6988. -webkit-transform: translateY(-100%);
  6989. transform: translateY(-100%)
  6990. }
  6991.  
  6992. .uk-overlay-slide-bottom {
  6993. -webkit-transform: translateY(100%);
  6994. transform: translateY(100%)
  6995. }
  6996.  
  6997. .uk-overlay-slide-left {
  6998. -webkit-transform: translateX(-100%);
  6999. transform: translateX(-100%)
  7000. }
  7001.  
  7002. .uk-overlay-slide-right {
  7003. -webkit-transform: translateX(100%);
  7004. transform: translateX(100%)
  7005. }
  7006.  
  7007. .uk-overlay-active .uk-active>[class*=uk-overlay-slide],.uk-overlay-hover.uk-hover [class*=uk-overlay-slide],.uk-overlay-hover:hover [class*=uk-overlay-slide] {
  7008. opacity: 1;
  7009. -webkit-transform: translateX(0) translateY(0);
  7010. transform: translateX(0) translateY(0)
  7011. }
  7012.  
  7013. .uk-overlay-area {
  7014. position: absolute;
  7015. top: 0;
  7016. bottom: 0;
  7017. left: 0;
  7018. right: 0;
  7019. background: rgba(0,0,0,.3);
  7020. opacity: 0;
  7021. -webkit-transition: opacity .15s linear;
  7022. transition: opacity .15s linear;
  7023. -webkit-transform: translate3d(0,0,0)
  7024. }
  7025.  
  7026. .uk-overlay-toggle.uk-hover .uk-overlay-area,.uk-overlay-toggle.uk-hover .uk-overlay-caption,.uk-overlay-toggle:hover .uk-overlay-area,.uk-overlay-toggle:hover .uk-overlay-caption,.uk-overlay.uk-hover .uk-overlay-area,.uk-overlay.uk-hover .uk-overlay-caption,.uk-overlay:hover .uk-overlay-area,.uk-overlay:hover .uk-overlay-caption {
  7027. opacity: 1
  7028. }
  7029.  
  7030. .uk-overlay-area:empty:before {
  7031. content: "\f002";
  7032. position: absolute;
  7033. top: 50%;
  7034. left: 50%;
  7035. width: 50px;
  7036. height: 50px;
  7037. margin-top: -25px;
  7038. margin-left: -25px;
  7039. font-size: 50px;
  7040. line-height: 1;
  7041. font-family: FontAwesome;
  7042. text-align: center;
  7043. color: #fff
  7044. }
  7045.  
  7046. .uk-overlay-area:not(:empty) {
  7047. font-size: .001px
  7048. }
  7049.  
  7050. .uk-overlay-area:not(:empty):before {
  7051. content: '';
  7052. display: inline-block;
  7053. height: 100%;
  7054. vertical-align: middle
  7055. }
  7056.  
  7057. .uk-overlay-area-content {
  7058. display: inline-block;
  7059. box-sizing: border-box;
  7060. width: 100%;
  7061. vertical-align: middle;
  7062. font-size: 1rem;
  7063. text-align: center;
  7064. padding: 0 15px;
  7065. color: #fff
  7066. }
  7067.  
  7068. .uk-overlay-area-content>:last-child {
  7069. margin-bottom: 0
  7070. }
  7071.  
  7072. .uk-overlay-caption {
  7073. position: absolute;
  7074. bottom: 0;
  7075. left: 0;
  7076. right: 0;
  7077. padding: 15px;
  7078. background: rgba(0,0,0,.5);
  7079. color: #fff;
  7080. opacity: 0;
  7081. -webkit-transition: opacity .15s linear;
  7082. transition: opacity .15s linear;
  7083. -webkit-transform: translate3d(0,0,0)
  7084. }
  7085.  
  7086. [class*=uk-column-] {
  7087. -webkit-column-gap: 25px;
  7088. -moz-column-gap: 25px;
  7089. column-gap: 25px
  7090. }
  7091.  
  7092. .uk-column-1-2 {
  7093. -webkit-column-count: 2;
  7094. -moz-column-count: 2;
  7095. column-count: 2
  7096. }
  7097.  
  7098. .uk-column-1-3 {
  7099. -webkit-column-count: 3;
  7100. -moz-column-count: 3;
  7101. column-count: 3
  7102. }
  7103.  
  7104. .uk-column-1-4 {
  7105. -webkit-column-count: 4;
  7106. -moz-column-count: 4;
  7107. column-count: 4
  7108. }
  7109.  
  7110. .uk-column-1-5 {
  7111. -webkit-column-count: 5;
  7112. -moz-column-count: 5;
  7113. column-count: 5
  7114. }
  7115.  
  7116. .uk-column-1-6 {
  7117. -webkit-column-count: 6;
  7118. -moz-column-count: 6;
  7119. column-count: 6
  7120. }
  7121.  
  7122. @media (min-width:480px) {
  7123. .uk-column-small-1-2 {
  7124. -webkit-column-count: 2;
  7125. -moz-column-count: 2;
  7126. column-count: 2
  7127. }
  7128.  
  7129. .uk-column-small-1-3 {
  7130. -webkit-column-count: 3;
  7131. -moz-column-count: 3;
  7132. column-count: 3
  7133. }
  7134.  
  7135. .uk-column-small-1-4 {
  7136. -webkit-column-count: 4;
  7137. -moz-column-count: 4;
  7138. column-count: 4
  7139. }
  7140.  
  7141. .uk-column-small-1-5 {
  7142. -webkit-column-count: 5;
  7143. -moz-column-count: 5;
  7144. column-count: 5
  7145. }
  7146.  
  7147. .uk-column-small-1-6 {
  7148. -webkit-column-count: 6;
  7149. -moz-column-count: 6;
  7150. column-count: 6
  7151. }
  7152. }
  7153.  
  7154. @media (min-width:768px) {
  7155. .uk-column-medium-1-2 {
  7156. -webkit-column-count: 2;
  7157. -moz-column-count: 2;
  7158. column-count: 2
  7159. }
  7160.  
  7161. .uk-column-medium-1-3 {
  7162. -webkit-column-count: 3;
  7163. -moz-column-count: 3;
  7164. column-count: 3
  7165. }
  7166.  
  7167. .uk-column-medium-1-4 {
  7168. -webkit-column-count: 4;
  7169. -moz-column-count: 4;
  7170. column-count: 4
  7171. }
  7172.  
  7173. .uk-column-medium-1-5 {
  7174. -webkit-column-count: 5;
  7175. -moz-column-count: 5;
  7176. column-count: 5
  7177. }
  7178.  
  7179. .uk-column-medium-1-6 {
  7180. -webkit-column-count: 6;
  7181. -moz-column-count: 6;
  7182. column-count: 6
  7183. }
  7184. }
  7185.  
  7186. @media (min-width:960px) {
  7187. .uk-column-large-1-2 {
  7188. -webkit-column-count: 2;
  7189. -moz-column-count: 2;
  7190. column-count: 2
  7191. }
  7192.  
  7193. .uk-column-large-1-3 {
  7194. -webkit-column-count: 3;
  7195. -moz-column-count: 3;
  7196. column-count: 3
  7197. }
  7198.  
  7199. .uk-column-large-1-4 {
  7200. -webkit-column-count: 4;
  7201. -moz-column-count: 4;
  7202. column-count: 4
  7203. }
  7204.  
  7205. .uk-column-large-1-5 {
  7206. -webkit-column-count: 5;
  7207. -moz-column-count: 5;
  7208. column-count: 5
  7209. }
  7210.  
  7211. .uk-column-large-1-6 {
  7212. -webkit-column-count: 6;
  7213. -moz-column-count: 6;
  7214. column-count: 6
  7215. }
  7216. }
  7217.  
  7218. @media (min-width:1220px) {
  7219. .uk-column-xlarge-1-2 {
  7220. -webkit-column-count: 2;
  7221. -moz-column-count: 2;
  7222. column-count: 2
  7223. }
  7224.  
  7225. .uk-column-xlarge-1-3 {
  7226. -webkit-column-count: 3;
  7227. -moz-column-count: 3;
  7228. column-count: 3
  7229. }
  7230.  
  7231. .uk-column-xlarge-1-4 {
  7232. -webkit-column-count: 4;
  7233. -moz-column-count: 4;
  7234. column-count: 4
  7235. }
  7236.  
  7237. .uk-column-xlarge-1-5 {
  7238. -webkit-column-count: 5;
  7239. -moz-column-count: 5;
  7240. column-count: 5
  7241. }
  7242.  
  7243. .uk-column-xlarge-1-6 {
  7244. -webkit-column-count: 6;
  7245. -moz-column-count: 6;
  7246. column-count: 6
  7247. }
  7248. }
  7249.  
  7250. [class*=uk-animation-] {
  7251. -webkit-animation-duration: .5s;
  7252. animation-duration: .5s;
  7253. -webkit-animation-timing-function: ease-out;
  7254. animation-timing-function: ease-out;
  7255. -webkit-animation-fill-mode: both;
  7256. animation-fill-mode: both
  7257. }
  7258.  
  7259. @media screen {
  7260. [data-uk-scrollspy*=uk-animation-]:not([data-uk-scrollspy*=target]) {
  7261. opacity: 0
  7262. }
  7263. }
  7264.  
  7265. .uk-animation-fade {
  7266. -webkit-animation-name: uk-fade;
  7267. animation-name: uk-fade;
  7268. -webkit-animation-duration: .8s;
  7269. animation-duration: .8s;
  7270. -webkit-animation-timing-function: linear!important;
  7271. animation-timing-function: linear!important
  7272. }
  7273.  
  7274. .uk-animation-scale-up {
  7275. -webkit-animation-name: uk-fade-scale-02;
  7276. animation-name: uk-fade-scale-02
  7277. }
  7278.  
  7279. .uk-animation-scale-down {
  7280. -webkit-animation-name: uk-fade-scale-18;
  7281. animation-name: uk-fade-scale-18
  7282. }
  7283.  
  7284. .uk-animation-slide-top {
  7285. -webkit-animation-name: uk-fade-top;
  7286. animation-name: uk-fade-top
  7287. }
  7288.  
  7289. .uk-animation-slide-bottom {
  7290. -webkit-animation-name: uk-fade-bottom;
  7291. animation-name: uk-fade-bottom
  7292. }
  7293.  
  7294. .uk-animation-slide-left {
  7295. -webkit-animation-name: uk-fade-left;
  7296. animation-name: uk-fade-left
  7297. }
  7298.  
  7299. .uk-animation-slide-right {
  7300. -webkit-animation-name: uk-fade-right;
  7301. animation-name: uk-fade-right
  7302. }
  7303.  
  7304. .uk-animation-scale {
  7305. -webkit-animation-name: uk-scale-12;
  7306. animation-name: uk-scale-12
  7307. }
  7308.  
  7309. .uk-animation-shake {
  7310. -webkit-animation-name: uk-shake;
  7311. animation-name: uk-shake
  7312. }
  7313.  
  7314. .uk-animation-reverse {
  7315. -webkit-animation-direction: reverse;
  7316. animation-direction: reverse;
  7317. -webkit-animation-timing-function: ease-in;
  7318. animation-timing-function: ease-in
  7319. }
  7320.  
  7321. .uk-animation-15 {
  7322. -webkit-animation-duration: 15s;
  7323. animation-duration: 15s
  7324. }
  7325.  
  7326. .uk-animation-top-left {
  7327. -webkit-transform-origin: 0 0;
  7328. transform-origin: 0 0
  7329. }
  7330.  
  7331. .uk-animation-top-center {
  7332. -webkit-transform-origin: 50% 0;
  7333. transform-origin: 50% 0
  7334. }
  7335.  
  7336. .uk-animation-top-right {
  7337. -webkit-transform-origin: 100% 0;
  7338. transform-origin: 100% 0
  7339. }
  7340.  
  7341. .uk-animation-middle-left {
  7342. -webkit-transform-origin: 0 50%;
  7343. transform-origin: 0 50%
  7344. }
  7345.  
  7346. .uk-animation-middle-right {
  7347. -webkit-transform-origin: 100% 50%;
  7348. transform-origin: 100% 50%
  7349. }
  7350.  
  7351. .uk-animation-bottom-left {
  7352. -webkit-transform-origin: 0 100%;
  7353. transform-origin: 0 100%
  7354. }
  7355.  
  7356. .uk-animation-bottom-center {
  7357. -webkit-transform-origin: 50% 100%;
  7358. transform-origin: 50% 100%
  7359. }
  7360.  
  7361. .uk-animation-bottom-right {
  7362. -webkit-transform-origin: 100% 100%;
  7363. transform-origin: 100% 100%
  7364. }
  7365.  
  7366. .uk-animation-hover:not(:hover),.uk-animation-hover:not(:hover) [class*=uk-animation-],.uk-touch .uk-animation-hover:not(.uk-hover),.uk-touch .uk-animation-hover:not(.uk-hover) [class*=uk-animation-] {
  7367. -webkit-animation-name: none;
  7368. animation-name: none
  7369. }
  7370.  
  7371. @-webkit-keyframes uk-fade {
  7372. 0% {
  7373. opacity: 0
  7374. }
  7375.  
  7376. to {
  7377. opacity: 1
  7378. }
  7379. }
  7380.  
  7381. @keyframes uk-fade {
  7382. 0% {
  7383. opacity: 0
  7384. }
  7385.  
  7386. to {
  7387. opacity: 1
  7388. }
  7389. }
  7390.  
  7391. @-webkit-keyframes uk-fade-top {
  7392. 0% {
  7393. opacity: 0;
  7394. -webkit-transform: translateY(-100%)
  7395. }
  7396.  
  7397. to {
  7398. opacity: 1;
  7399. -webkit-transform: translateY(0)
  7400. }
  7401. }
  7402.  
  7403. @keyframes uk-fade-top {
  7404. 0% {
  7405. opacity: 0;
  7406. transform: translateY(-100%)
  7407. }
  7408.  
  7409. to {
  7410. opacity: 1;
  7411. transform: translateY(0)
  7412. }
  7413. }
  7414.  
  7415. @-webkit-keyframes uk-fade-bottom {
  7416. 0% {
  7417. opacity: 0;
  7418. -webkit-transform: translateY(100%)
  7419. }
  7420.  
  7421. to {
  7422. opacity: 1;
  7423. -webkit-transform: translateY(0)
  7424. }
  7425. }
  7426.  
  7427. @keyframes uk-fade-bottom {
  7428. 0% {
  7429. opacity: 0;
  7430. transform: translateY(100%)
  7431. }
  7432.  
  7433. to {
  7434. opacity: 1;
  7435. transform: translateY(0)
  7436. }
  7437. }
  7438.  
  7439. @-webkit-keyframes uk-fade-left {
  7440. 0% {
  7441. opacity: 0;
  7442. -webkit-transform: translateX(-100%)
  7443. }
  7444.  
  7445. to {
  7446. opacity: 1;
  7447. -webkit-transform: translateX(0)
  7448. }
  7449. }
  7450.  
  7451. @keyframes uk-fade-left {
  7452. 0% {
  7453. opacity: 0;
  7454. transform: translateX(-100%)
  7455. }
  7456.  
  7457. to {
  7458. opacity: 1;
  7459. transform: translateX(0)
  7460. }
  7461. }
  7462.  
  7463. @-webkit-keyframes uk-fade-right {
  7464. 0% {
  7465. opacity: 0;
  7466. -webkit-transform: translateX(100%)
  7467. }
  7468.  
  7469. to {
  7470. opacity: 1;
  7471. -webkit-transform: translateX(0)
  7472. }
  7473. }
  7474.  
  7475. @keyframes uk-fade-right {
  7476. 0% {
  7477. opacity: 0;
  7478. transform: translateX(100%)
  7479. }
  7480.  
  7481. to {
  7482. opacity: 1;
  7483. transform: translateX(0)
  7484. }
  7485. }
  7486.  
  7487. @-webkit-keyframes uk-fade-scale-02 {
  7488. 0% {
  7489. opacity: 0;
  7490. -webkit-transform: scale(.2)
  7491. }
  7492.  
  7493. to {
  7494. opacity: 1;
  7495. -webkit-transform: scale(1)
  7496. }
  7497. }
  7498.  
  7499. @keyframes uk-fade-scale-02 {
  7500. 0% {
  7501. opacity: 0;
  7502. transform: scale(.2)
  7503. }
  7504.  
  7505. to {
  7506. opacity: 1;
  7507. transform: scale(1)
  7508. }
  7509. }
  7510.  
  7511. @-webkit-keyframes uk-fade-scale-15 {
  7512. 0% {
  7513. opacity: 0;
  7514. -webkit-transform: scale(1.5)
  7515. }
  7516.  
  7517. to {
  7518. opacity: 1;
  7519. -webkit-transform: scale(1)
  7520. }
  7521. }
  7522.  
  7523. @keyframes uk-fade-scale-15 {
  7524. 0% {
  7525. opacity: 0;
  7526. transform: scale(1.5)
  7527. }
  7528.  
  7529. to {
  7530. opacity: 1;
  7531. transform: scale(1)
  7532. }
  7533. }
  7534.  
  7535. @-webkit-keyframes uk-fade-scale-18 {
  7536. 0% {
  7537. opacity: 0;
  7538. -webkit-transform: scale(1.8)
  7539. }
  7540.  
  7541. to {
  7542. opacity: 1;
  7543. -webkit-transform: scale(1)
  7544. }
  7545. }
  7546.  
  7547. @keyframes uk-fade-scale-18 {
  7548. 0% {
  7549. opacity: 0;
  7550. transform: scale(1.8)
  7551. }
  7552.  
  7553. to {
  7554. opacity: 1;
  7555. transform: scale(1)
  7556. }
  7557. }
  7558.  
  7559. @-webkit-keyframes uk-slide-left {
  7560. 0% {
  7561. -webkit-transform: translateX(-100%)
  7562. }
  7563.  
  7564. to {
  7565. -webkit-transform: translateX(0)
  7566. }
  7567. }
  7568.  
  7569. @keyframes uk-slide-left {
  7570. 0% {
  7571. transform: translateX(-100%)
  7572. }
  7573.  
  7574. to {
  7575. transform: translateX(0)
  7576. }
  7577. }
  7578.  
  7579. @-webkit-keyframes uk-slide-right {
  7580. 0% {
  7581. -webkit-transform: translateX(100%)
  7582. }
  7583.  
  7584. to {
  7585. -webkit-transform: translateX(0)
  7586. }
  7587. }
  7588.  
  7589. @keyframes uk-slide-right {
  7590. 0% {
  7591. transform: translateX(100%)
  7592. }
  7593.  
  7594. to {
  7595. transform: translateX(0)
  7596. }
  7597. }
  7598.  
  7599. @-webkit-keyframes uk-slide-left-33 {
  7600. 0% {
  7601. -webkit-transform: translateX(33%)
  7602. }
  7603.  
  7604. to {
  7605. -webkit-transform: translateX(0)
  7606. }
  7607. }
  7608.  
  7609. @keyframes uk-slide-left-33 {
  7610. 0% {
  7611. transform: translateX(33%)
  7612. }
  7613.  
  7614. to {
  7615. transform: translateX(0)
  7616. }
  7617. }
  7618.  
  7619. @-webkit-keyframes uk-slide-right-33 {
  7620. 0% {
  7621. -webkit-transform: translateX(-33%)
  7622. }
  7623.  
  7624. to {
  7625. -webkit-transform: translateX(0)
  7626. }
  7627. }
  7628.  
  7629. @keyframes uk-slide-right-33 {
  7630. 0% {
  7631. transform: translateX(-33%)
  7632. }
  7633.  
  7634. to {
  7635. transform: translateX(0)
  7636. }
  7637. }
  7638.  
  7639. @-webkit-keyframes uk-scale-12 {
  7640. 0% {
  7641. -webkit-transform: scale(1.2)
  7642. }
  7643.  
  7644. to {
  7645. -webkit-transform: scale(1)
  7646. }
  7647. }
  7648.  
  7649. @keyframes uk-scale-12 {
  7650. 0% {
  7651. transform: scale(1.2)
  7652. }
  7653.  
  7654. to {
  7655. transform: scale(1)
  7656. }
  7657. }
  7658.  
  7659. @-webkit-keyframes uk-rotate {
  7660. 0% {
  7661. -webkit-transform: rotate(0deg)
  7662. }
  7663.  
  7664. to {
  7665. -webkit-transform: rotate(359deg)
  7666. }
  7667. }
  7668.  
  7669. @keyframes uk-rotate {
  7670. 0% {
  7671. transform: rotate(0deg)
  7672. }
  7673.  
  7674. to {
  7675. transform: rotate(359deg)
  7676. }
  7677. }
  7678.  
  7679. @-webkit-keyframes uk-shake {
  7680. 0%,to {
  7681. -webkit-transform: translateX(0)
  7682. }
  7683.  
  7684. 10% {
  7685. -webkit-transform: translateX(-9px)
  7686. }
  7687.  
  7688. 20% {
  7689. -webkit-transform: translateX(8px)
  7690. }
  7691.  
  7692. 30% {
  7693. -webkit-transform: translateX(-7px)
  7694. }
  7695.  
  7696. 40% {
  7697. -webkit-transform: translateX(6px)
  7698. }
  7699.  
  7700. 50% {
  7701. -webkit-transform: translateX(-5px)
  7702. }
  7703.  
  7704. 60% {
  7705. -webkit-transform: translateX(4px)
  7706. }
  7707.  
  7708. 70% {
  7709. -webkit-transform: translateX(-3px)
  7710. }
  7711.  
  7712. 80% {
  7713. -webkit-transform: translateX(2px)
  7714. }
  7715.  
  7716. 90% {
  7717. -webkit-transform: translateX(-1px)
  7718. }
  7719. }
  7720.  
  7721. @keyframes uk-shake {
  7722. 0%,to {
  7723. transform: translateX(0)
  7724. }
  7725.  
  7726. 10% {
  7727. transform: translateX(-9px)
  7728. }
  7729.  
  7730. 20% {
  7731. transform: translateX(8px)
  7732. }
  7733.  
  7734. 30% {
  7735. transform: translateX(-7px)
  7736. }
  7737.  
  7738. 40% {
  7739. transform: translateX(6px)
  7740. }
  7741.  
  7742. 50% {
  7743. transform: translateX(-5px)
  7744. }
  7745.  
  7746. 60% {
  7747. transform: translateX(4px)
  7748. }
  7749.  
  7750. 70% {
  7751. transform: translateX(-3px)
  7752. }
  7753.  
  7754. 80% {
  7755. transform: translateX(2px)
  7756. }
  7757.  
  7758. 90% {
  7759. transform: translateX(-1px)
  7760. }
  7761. }
  7762.  
  7763. @-webkit-keyframes uk-slide-top-fixed {
  7764. 0% {
  7765. opacity: 0;
  7766. -webkit-transform: translateY(-10px)
  7767. }
  7768.  
  7769. to {
  7770. opacity: 1;
  7771. -webkit-transform: translateY(0)
  7772. }
  7773. }
  7774.  
  7775. @keyframes uk-slide-top-fixed {
  7776. 0% {
  7777. opacity: 0;
  7778. transform: translateY(-10px)
  7779. }
  7780.  
  7781. to {
  7782. opacity: 1;
  7783. transform: translateY(0)
  7784. }
  7785. }
  7786.  
  7787. @-webkit-keyframes uk-slide-bottom-fixed {
  7788. 0% {
  7789. opacity: 0;
  7790. -webkit-transform: translateY(10px)
  7791. }
  7792.  
  7793. to {
  7794. opacity: 1;
  7795. -webkit-transform: translateY(0)
  7796. }
  7797. }
  7798.  
  7799. @keyframes uk-slide-bottom-fixed {
  7800. 0% {
  7801. opacity: 0;
  7802. transform: translateY(10px)
  7803. }
  7804.  
  7805. to {
  7806. opacity: 1;
  7807. transform: translateY(0)
  7808. }
  7809. }
  7810.  
  7811. .uk-dropdown,.uk-dropdown-blank {
  7812. display: none;
  7813. position: absolute;
  7814. z-index: 1020;
  7815. box-sizing: border-box;
  7816. width: 200px
  7817. }
  7818.  
  7819. .uk-dropdown {
  7820. padding: 15px;
  7821. background: #222121;
  7822. color: #bebdbd;
  7823. font-size: 1rem;
  7824. vertical-align: top
  7825. }
  7826.  
  7827. .uk-open>.uk-dropdown,.uk-open>.uk-dropdown-blank {
  7828. display: block;
  7829. -webkit-animation: uk-slide-top-fixed .2s ease-in-out;
  7830. animation: uk-slide-top-fixed .2s ease-in-out;
  7831. -webkit-transform-origin: 0 0;
  7832. transform-origin: 0 0
  7833. }
  7834.  
  7835. .uk-dropdown-bottom,.uk-dropdown-top {
  7836. margin-top: 0
  7837. }
  7838.  
  7839. .uk-dropdown-left,.uk-dropdown-right {
  7840. margin-left: 0
  7841. }
  7842.  
  7843. .uk-dropdown .uk-nav {
  7844. margin: 0 -15px
  7845. }
  7846.  
  7847. .uk-dropdown-grid>[class*=uk-width-]>.uk-panel+.uk-panel,.uk-grid .uk-dropdown-grid+.uk-dropdown-grid {
  7848. margin-top: 15px
  7849. }
  7850.  
  7851. @media (min-width:768px) {
  7852. .uk-dropdown:not(.uk-dropdown-stack)>.uk-dropdown-grid {
  7853. margin-left: -15px;
  7854. margin-right: -15px
  7855. }
  7856.  
  7857. .uk-dropdown:not(.uk-dropdown-stack)>.uk-dropdown-grid>[class*=uk-width-] {
  7858. padding-left: 15px;
  7859. padding-right: 15px
  7860. }
  7861.  
  7862. .uk-dropdown:not(.uk-dropdown-stack)>.uk-dropdown-grid>[class*=uk-width-]:nth-child(n+2) {
  7863. border-left: 1px solid #434343
  7864. }
  7865.  
  7866. .uk-dropdown-width-2:not(.uk-dropdown-stack) {
  7867. width: 400px
  7868. }
  7869.  
  7870. .uk-dropdown-width-3:not(.uk-dropdown-stack) {
  7871. width: 600px
  7872. }
  7873.  
  7874. .uk-dropdown-width-4:not(.uk-dropdown-stack) {
  7875. width: 800px
  7876. }
  7877.  
  7878. .uk-dropdown-width-5:not(.uk-dropdown-stack) {
  7879. width: 1000px
  7880. }
  7881. }
  7882.  
  7883. @media (max-width:767px) {
  7884. .uk-dropdown-grid>[class*=uk-width-] {
  7885. width: 100%
  7886. }
  7887.  
  7888. .uk-dropdown-grid>[class*=uk-width-]:nth-child(n+2) {
  7889. margin-top: 15px
  7890. }
  7891. }
  7892.  
  7893. .uk-dropdown-stack>.uk-dropdown-grid>[class*=uk-width-] {
  7894. width: 100%
  7895. }
  7896.  
  7897. .uk-dropdown-stack>.uk-dropdown-grid>[class*=uk-width-]:nth-child(n+2) {
  7898. margin-top: 15px
  7899. }
  7900.  
  7901. .uk-dropdown-small {
  7902. min-width: 150px;
  7903. width: auto;
  7904. padding: 5px;
  7905. white-space: nowrap
  7906. }
  7907.  
  7908. .uk-dropdown-small .uk-nav {
  7909. margin: 0 -5px
  7910. }
  7911.  
  7912. .uk-dropdown-navbar {
  7913. margin-top: 0;
  7914. background: #222121;
  7915. color: #bebdbd
  7916. }
  7917.  
  7918. .uk-open>.uk-dropdown-navbar {
  7919. -webkit-animation: uk-slide-top-fixed .2s ease-in-out;
  7920. animation: uk-slide-top-fixed .2s ease-in-out
  7921. }
  7922.  
  7923. .uk-dropdown-scrollable {
  7924. overflow-y: auto;
  7925. max-height: 200px
  7926. }
  7927.  
  7928. .uk-modal {
  7929. display: none;
  7930. position: fixed;
  7931. top: 0;
  7932. right: 0;
  7933. bottom: 0;
  7934. left: 0;
  7935. z-index: 1010;
  7936. overflow-y: auto;
  7937. -webkit-overflow-scrolling: touch;
  7938. background: rgba(0,0,0,.6);
  7939. opacity: 0;
  7940. -webkit-transition: opacity .15s linear;
  7941. transition: opacity .15s linear;
  7942. touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  7943. -webkit-transform: translateZ(0);
  7944. transform: translateZ(0)
  7945. }
  7946.  
  7947. .uk-modal.uk-open {
  7948. opacity: 1
  7949. }
  7950.  
  7951. .uk-modal-page,.uk-modal-page body {
  7952. overflow: hidden
  7953. }
  7954.  
  7955. .uk-modal-dialog {
  7956. position: relative;
  7957. box-sizing: border-box;
  7958. margin: 50px auto;
  7959. padding: 20px;
  7960. width: 600px;
  7961. max-width: 100%;
  7962. max-width: calc(100% - 20px);
  7963. background: #191818;
  7964. opacity: 0;
  7965. -webkit-transform: translateY(-100px);
  7966. transform: translateY(-100px);
  7967. -webkit-transition: opacity .3s linear,-webkit-transform .3s ease-out;
  7968. transition: opacity .3s linear,transform .3s ease-out
  7969. }
  7970.  
  7971. @media (max-width:767px) {
  7972. .uk-modal-dialog {
  7973. width: auto;
  7974. margin: 10px auto
  7975. }
  7976. }
  7977.  
  7978. .uk-open .uk-modal-dialog {
  7979. opacity: 1;
  7980. -webkit-transform: translateY(0);
  7981. transform: translateY(0)
  7982. }
  7983.  
  7984. .uk-modal-dialog>:not([class*=uk-modal-]):last-child {
  7985. margin-bottom: 0
  7986. }
  7987.  
  7988. .uk-modal-dialog>.uk-close:first-child {
  7989. margin: -10px -10px 0 0;
  7990. float: right
  7991. }
  7992.  
  7993. .uk-modal-dialog>.uk-close:first-child+:not([class*=uk-modal-]) {
  7994. margin-top: 0
  7995. }
  7996.  
  7997. .uk-modal-dialog-lightbox {
  7998. margin: 15px auto;
  7999. padding: 0;
  8000. max-width: 95%;
  8001. max-width: calc(100% - 30px);
  8002. min-height: 50px
  8003. }
  8004.  
  8005. .uk-modal-dialog-lightbox>.uk-close:first-child {
  8006. position: absolute;
  8007. top: -12px;
  8008. right: -12px;
  8009. margin: 0;
  8010. float: none
  8011. }
  8012.  
  8013. @media (max-width:767px) {
  8014. .uk-modal-dialog-lightbox>.uk-close:first-child {
  8015. top: -7px;
  8016. right: -7px
  8017. }
  8018. }
  8019.  
  8020. .uk-modal-dialog-blank {
  8021. margin: 0;
  8022. padding: 0;
  8023. width: 100%;
  8024. max-width: 100%;
  8025. -webkit-transition: opacity .3s linear;
  8026. transition: opacity .3s linear
  8027. }
  8028.  
  8029. .uk-modal-dialog-blank>.uk-close:first-child {
  8030. position: absolute;
  8031. top: 20px;
  8032. right: 20px;
  8033. z-index: 1;
  8034. margin: 0;
  8035. float: none
  8036. }
  8037.  
  8038. @media (min-width:768px) {
  8039. .uk-modal-dialog-large {
  8040. width: 930px
  8041. }
  8042. }
  8043.  
  8044. @media (min-width:1220px) {
  8045. .uk-modal-dialog-large {
  8046. width: 1130px
  8047. }
  8048. }
  8049.  
  8050. .uk-modal-header {
  8051. margin-bottom: 15px
  8052. }
  8053.  
  8054. .uk-modal-footer {
  8055. margin-top: 15px
  8056. }
  8057.  
  8058. .uk-modal-footer>:last-child,.uk-modal-header>:last-child {
  8059. margin-bottom: 0
  8060. }
  8061.  
  8062. .uk-modal-caption {
  8063. position: absolute;
  8064. left: 0;
  8065. right: 0;
  8066. bottom: -20px;
  8067. margin-bottom: -10px;
  8068. color: #fff;
  8069. text-align: center;
  8070. overflow: hidden;
  8071. text-overflow: ellipsis;
  8072. white-space: nowrap
  8073. }
  8074.  
  8075. .uk-modal-spinner {
  8076. position: absolute;
  8077. top: 50%;
  8078. left: 50%;
  8079. -webkit-transform: translate(-50%,-50%);
  8080. transform: translate(-50%,-50%);
  8081. font-size: 25px;
  8082. color: #ddd
  8083. }
  8084.  
  8085. .uk-modal-spinner:after {
  8086. content: "\f110";
  8087. display: block;
  8088. font-family: FontAwesome;
  8089. -webkit-animation: uk-rotate 2s infinite linear;
  8090. animation: uk-rotate 2s infinite linear
  8091. }
  8092.  
  8093. .uk-offcanvas {
  8094. display: none;
  8095. position: fixed;
  8096. top: 0;
  8097. right: 0;
  8098. bottom: 0;
  8099. left: 0;
  8100. z-index: 1000;
  8101. touch-action: none;
  8102. background: rgba(0,0,0,.1)
  8103. }
  8104.  
  8105. .uk-offcanvas.uk-active {
  8106. display: block
  8107. }
  8108.  
  8109. .uk-offcanvas-page {
  8110. position: fixed;
  8111. -webkit-transition: margin-left .3s ease-in-out;
  8112. transition: margin-left .3s ease-in-out
  8113. }
  8114.  
  8115. .uk-offcanvas-bar {
  8116. position: fixed;
  8117. top: 0;
  8118. bottom: 0;
  8119. left: 0;
  8120. -webkit-transform: translateX(-100%);
  8121. transform: translateX(-100%);
  8122. z-index: 1001;
  8123. width: 270px;
  8124. max-width: 100%;
  8125. background: #100f0f;
  8126. overflow-y: auto;
  8127. -webkit-overflow-scrolling: touch;
  8128. -webkit-transition: -webkit-transform .3s ease-in-out;
  8129. transition: transform .3s ease-in-out;
  8130. -ms-scroll-chaining: none
  8131. }
  8132.  
  8133. .uk-offcanvas.uk-active .uk-offcanvas-bar.uk-offcanvas-bar-show {
  8134. -webkit-transform: translateX(0);
  8135. transform: translateX(0)
  8136. }
  8137.  
  8138. .uk-offcanvas-bar-flip {
  8139. left: auto;
  8140. right: 0;
  8141. -webkit-transform: translateX(100%);
  8142. transform: translateX(100%)
  8143. }
  8144.  
  8145. .uk-offcanvas .uk-panel {
  8146. margin: 20px 15px;
  8147. color: #777
  8148. }
  8149.  
  8150. .uk-offcanvas .uk-panel-title {
  8151. color: #ccc
  8152. }
  8153.  
  8154. .uk-offcanvas .uk-panel a:not([class]) {
  8155. color: #ccc
  8156. }
  8157.  
  8158. .uk-switcher {
  8159. margin: 0;
  8160. padding: 0;
  8161. list-style: none;
  8162. touch-action: cross-slide-y pinch-zoom double-tap-zoom
  8163. }
  8164.  
  8165. .uk-switcher>:not(.uk-active) {
  8166. display: none
  8167. }
  8168.  
  8169. .uk-text-small {
  8170. font-size: 12px;
  8171. line-height: 18px
  8172. }
  8173.  
  8174. .uk-text-large {
  8175. font-size: 19px;
  8176. line-height: 25px;
  8177. font-weight: 400
  8178. }
  8179.  
  8180. .uk-text-bold {
  8181. font-weight: 700
  8182. }
  8183.  
  8184. .uk-text-muted {
  8185. color: #999!important
  8186. }
  8187.  
  8188. .uk-text-primary {
  8189. color: #00a8e6!important
  8190. }
  8191.  
  8192. .uk-text-success {
  8193. color: #66b82f!important
  8194. }
  8195.  
  8196. .uk-text-warning {
  8197. color: #da922c!important
  8198. }
  8199.  
  8200. .uk-text-danger {
  8201. color: #d65b49!important
  8202. }
  8203.  
  8204. .uk-text-contrast {
  8205. color: #fff!important
  8206. }
  8207.  
  8208. .uk-text-left {
  8209. text-align: left!important
  8210. }
  8211.  
  8212. .uk-text-right {
  8213. text-align: right!important
  8214. }
  8215.  
  8216. .uk-text-center {
  8217. text-align: center!important
  8218. }
  8219.  
  8220. .uk-text-justify {
  8221. text-align: justify!important
  8222. }
  8223.  
  8224. .uk-text-top {
  8225. vertical-align: top!important
  8226. }
  8227.  
  8228. .uk-text-middle {
  8229. vertical-align: middle!important
  8230. }
  8231.  
  8232. .uk-text-bottom {
  8233. vertical-align: bottom!important
  8234. }
  8235.  
  8236. @media (max-width:959px) {
  8237. .uk-text-center-medium {
  8238. text-align: center!important
  8239. }
  8240.  
  8241. .uk-text-left-medium {
  8242. text-align: left!important
  8243. }
  8244. }
  8245.  
  8246. @media (max-width:767px) {
  8247. .uk-text-center-small {
  8248. text-align: center!important
  8249. }
  8250.  
  8251. .uk-text-left-small {
  8252. text-align: left!important
  8253. }
  8254. }
  8255.  
  8256. .uk-text-nowrap,.uk-text-truncate {
  8257. white-space: nowrap
  8258. }
  8259.  
  8260. .uk-text-truncate {
  8261. overflow: hidden;
  8262. text-overflow: ellipsis
  8263. }
  8264.  
  8265. .uk-text-break {
  8266. word-wrap: break-word;
  8267. -webkit-hyphens: auto;
  8268. -ms-hyphens: auto;
  8269. -moz-hyphens: auto;
  8270. hyphens: auto
  8271. }
  8272.  
  8273. .uk-container {
  8274. box-sizing: border-box;
  8275. max-width: 1400;
  8276. padding: 0 25px
  8277. }
  8278.  
  8279. @media (min-width:1220px) {
  8280. .uk-container {
  8281. max-width: 1200px;
  8282. padding: 0 35px
  8283. }
  8284. }
  8285.  
  8286. .uk-container:after,.uk-container:before {
  8287. content: "";
  8288. display: table
  8289. }
  8290.  
  8291. .uk-container:after {
  8292. clear: both
  8293. }
  8294.  
  8295. .uk-container-center {
  8296. margin-left: auto;
  8297. margin-right: auto
  8298. }
  8299.  
  8300. .uk-clearfix:before {
  8301. content: "";
  8302. display: table-cell
  8303. }
  8304.  
  8305. .uk-clearfix:after {
  8306. content: "";
  8307. display: table;
  8308. clear: both
  8309. }
  8310.  
  8311. .uk-nbfc {
  8312. overflow: hidden
  8313. }
  8314.  
  8315. .uk-nbfc-alt {
  8316. display: table-cell;
  8317. width: 10000px
  8318. }
  8319.  
  8320. .uk-float-left {
  8321. float: left
  8322. }
  8323.  
  8324. .uk-float-right {
  8325. float: right
  8326. }
  8327.  
  8328. [class*=uk-float-] {
  8329. max-width: 100%
  8330. }
  8331.  
  8332. [class*=uk-align-] {
  8333. display: block;
  8334. margin-bottom: 15px
  8335. }
  8336.  
  8337. .uk-align-left {
  8338. margin-right: 15px;
  8339. float: left
  8340. }
  8341.  
  8342. .uk-align-right {
  8343. margin-left: 15px;
  8344. float: right
  8345. }
  8346.  
  8347. @media (min-width:768px) {
  8348. .uk-align-medium-left {
  8349. margin-right: 15px;
  8350. float: left
  8351. }
  8352.  
  8353. .uk-align-medium-right {
  8354. margin-left: 15px;
  8355. float: right
  8356. }
  8357. }
  8358.  
  8359. .uk-align-center {
  8360. margin-left: auto;
  8361. margin-right: auto
  8362. }
  8363.  
  8364. .uk-vertical-align {
  8365. font-size: .001px
  8366. }
  8367.  
  8368. .uk-vertical-align:before {
  8369. content: '';
  8370. display: inline-block;
  8371. height: 100%;
  8372. vertical-align: middle
  8373. }
  8374.  
  8375. .uk-vertical-align-bottom,.uk-vertical-align-middle {
  8376. display: inline-block;
  8377. max-width: 100%;
  8378. font-size: 1rem
  8379. }
  8380.  
  8381. .uk-vertical-align-middle {
  8382. vertical-align: middle
  8383. }
  8384.  
  8385. .uk-vertical-align-bottom {
  8386. vertical-align: bottom
  8387. }
  8388.  
  8389. [class*=uk-height] {
  8390. box-sizing: border-box
  8391. }
  8392.  
  8393. .uk-height-1-1 {
  8394. height: 100%
  8395. }
  8396.  
  8397. .uk-height-viewport {
  8398. height: 100vh;
  8399. min-height: 600px
  8400. }
  8401.  
  8402. .uk-responsive-height,.uk-responsive-width {
  8403. box-sizing: border-box
  8404. }
  8405.  
  8406. .uk-responsive-width {
  8407. max-width: 100%!important;
  8408. height: auto
  8409. }
  8410.  
  8411. .uk-responsive-height {
  8412. max-height: 100%;
  8413. width: auto
  8414. }
  8415.  
  8416. .uk-margin {
  8417. margin-bottom: 15px
  8418. }
  8419.  
  8420. *+.uk-margin {
  8421. margin-top: 15px
  8422. }
  8423.  
  8424. .uk-margin-top {
  8425. margin-top: 15px!important
  8426. }
  8427.  
  8428. .uk-margin-bottom {
  8429. margin-bottom: 15px!important
  8430. }
  8431.  
  8432. .uk-margin-left {
  8433. margin-left: 15px!important
  8434. }
  8435.  
  8436. .uk-margin-right {
  8437. margin-right: 15px!important
  8438. }
  8439.  
  8440. .uk-margin-large {
  8441. margin-bottom: 50px
  8442. }
  8443.  
  8444. .uk-margin-large-top {
  8445. margin-top: 50px!important
  8446. }
  8447.  
  8448. .uk-margin-large-bottom {
  8449. margin-bottom: 50px!important
  8450. }
  8451.  
  8452. .uk-margin-large-left {
  8453. margin-left: 50px!important
  8454. }
  8455.  
  8456. .uk-margin-large-right {
  8457. margin-right: 50px!important
  8458. }
  8459.  
  8460. .uk-margin-small {
  8461. margin-bottom: 5px
  8462. }
  8463.  
  8464. .uk-margin-small-top {
  8465. margin-top: 5px!important
  8466. }
  8467.  
  8468. .uk-margin-small-bottom {
  8469. margin-bottom: 5px!important
  8470. }
  8471.  
  8472. .uk-margin-small-left {
  8473. margin-left: 5px!important
  8474. }
  8475.  
  8476. .uk-margin-small-right {
  8477. margin-right: 5px!important
  8478. }
  8479.  
  8480. .uk-margin-remove {
  8481. margin: 0!important
  8482. }
  8483.  
  8484. .uk-margin-top-remove {
  8485. margin-top: 0!important
  8486. }
  8487.  
  8488. .uk-margin-bottom-remove {
  8489. margin-bottom: 0!important
  8490. }
  8491.  
  8492. .uk-padding-remove {
  8493. padding: 0!important
  8494. }
  8495.  
  8496. .uk-padding-top-remove {
  8497. padding-top: 0!important
  8498. }
  8499.  
  8500. .uk-padding-bottom-remove {
  8501. padding-bottom: 0!important
  8502. }
  8503.  
  8504. .uk-padding-vertical-remove {
  8505. padding-top: 0!important;
  8506. padding-bottom: 0!important
  8507. }
  8508.  
  8509. .uk-border-circle {
  8510. border-radius: 50%
  8511. }
  8512.  
  8513. .uk-border-rounded {
  8514. border-radius: 5px
  8515. }
  8516.  
  8517. .uk-heading-large {
  8518. font-size: 39px;
  8519. line-height: 45px
  8520. }
  8521.  
  8522. @media (min-width:768px) {
  8523. .uk-heading-large {
  8524. font-size: 56px;
  8525. line-height: 69px
  8526. }
  8527. }
  8528.  
  8529. .uk-link-muted,.uk-link-muted a,.uk-link-muted a:hover,.uk-link-muted:hover,.uk-nav-autocomplete>li>a {
  8530. color: #bebdbd
  8531. }
  8532.  
  8533. .uk-link-reset,.uk-link-reset a,.uk-link-reset a:focus,.uk-link-reset a:hover,.uk-link-reset:focus,.uk-link-reset:hover {
  8534. color: inherit;
  8535. text-decoration: none
  8536. }
  8537.  
  8538. .uk-scrollable-box,.uk-scrollable-text {
  8539. -webkit-overflow-scrolling: touch;
  8540. resize: both
  8541. }
  8542.  
  8543. .uk-scrollable-text {
  8544. overflow-y: scroll;
  8545. height: 300px
  8546. }
  8547.  
  8548. .uk-scrollable-box {
  8549. box-sizing: border-box;
  8550. height: 170px;
  8551. padding: 10px;
  8552. border: 1px solid #434343;
  8553. overflow: auto
  8554. }
  8555.  
  8556. .uk-overflow-container>:last-child,.uk-scrollable-box>:last-child {
  8557. margin-bottom: 0
  8558. }
  8559.  
  8560. .uk-overflow-hidden {
  8561. overflow: hidden
  8562. }
  8563.  
  8564. .uk-overflow-container {
  8565. overflow: auto;
  8566. -webkit-overflow-scrolling: touch
  8567. }
  8568.  
  8569. .uk-position-absolute,[class*=uk-position-bottom],[class*=uk-position-top] {
  8570. position: absolute!important
  8571. }
  8572.  
  8573. .uk-position-top {
  8574. top: 0;
  8575. left: 0;
  8576. right: 0
  8577. }
  8578.  
  8579. .uk-position-bottom {
  8580. bottom: 0;
  8581. left: 0;
  8582. right: 0
  8583. }
  8584.  
  8585. .uk-position-top-left {
  8586. top: 0;
  8587. left: 0
  8588. }
  8589.  
  8590. .uk-position-top-right {
  8591. top: 0;
  8592. right: 0
  8593. }
  8594.  
  8595. .uk-position-bottom-left {
  8596. bottom: 0;
  8597. left: 0
  8598. }
  8599.  
  8600. .uk-position-bottom-right {
  8601. bottom: 0;
  8602. right: 0
  8603. }
  8604.  
  8605. .uk-position-cover {
  8606. position: absolute;
  8607. top: 0;
  8608. bottom: 0;
  8609. left: 0;
  8610. right: 0
  8611. }
  8612.  
  8613. .uk-position-relative {
  8614. position: relative!important
  8615. }
  8616.  
  8617. .uk-position-z-index {
  8618. z-index: 1
  8619. }
  8620.  
  8621. .uk-display-block {
  8622. display: block!important
  8623. }
  8624.  
  8625. .uk-display-inline {
  8626. display: inline!important
  8627. }
  8628.  
  8629. .uk-display-inline-block {
  8630. display: inline-block!important;
  8631. max-width: 100%
  8632. }
  8633.  
  8634. @media (min-width:960px) {
  8635. .uk-hidden-large,.uk-visible-medium,.uk-visible-small {
  8636. display: none!important
  8637. }
  8638. }
  8639.  
  8640. @media (min-width:768px) and (max-width:959px) {
  8641. .uk-hidden-medium,.uk-visible-large,.uk-visible-small {
  8642. display: none!important
  8643. }
  8644. }
  8645.  
  8646. @media (max-width:767px) {
  8647. .uk-hidden-small,.uk-visible-large,.uk-visible-medium {
  8648. display: none!important
  8649. }
  8650. }
  8651.  
  8652. .uk-hidden,.uk-notouch .uk-hidden-notouch,.uk-touch .uk-hidden-touch {
  8653. display: none!important
  8654. }
  8655.  
  8656. .uk-hidden,.uk-invisible {
  8657. visibility: hidden!important
  8658. }
  8659.  
  8660. .uk-visible-hover:hover .uk-hidden,.uk-visible-hover:hover .uk-invisible {
  8661. display: block!important;
  8662. visibility: visible!important
  8663. }
  8664.  
  8665. .uk-visible-hover-inline:hover .uk-hidden,.uk-visible-hover-inline:hover .uk-invisible {
  8666. display: inline-block!important;
  8667. visibility: visible!important
  8668. }
  8669.  
  8670. .uk-flex {
  8671. display: -ms-flexbox;
  8672. display: -webkit-flex;
  8673. display: flex
  8674. }
  8675.  
  8676. .uk-flex-inline {
  8677. display: -ms-inline-flexbox;
  8678. display: -webkit-inline-flex;
  8679. display: inline-flex
  8680. }
  8681.  
  8682. .uk-flex-inline>*,.uk-flex>* {
  8683. -ms-flex-negative: 1
  8684. }
  8685.  
  8686. .uk-flex-top {
  8687. -ms-flex-align: start;
  8688. -webkit-align-items: flex-start;
  8689. align-items: flex-start
  8690. }
  8691.  
  8692. .uk-flex-middle {
  8693. -ms-flex-align: center;
  8694. -webkit-align-items: center;
  8695. align-items: center
  8696. }
  8697.  
  8698. .uk-flex-bottom {
  8699. -ms-flex-align: end;
  8700. -webkit-align-items: flex-end;
  8701. align-items: flex-end
  8702. }
  8703.  
  8704. .uk-flex-center {
  8705. -ms-flex-pack: center;
  8706. -webkit-justify-content: center;
  8707. justify-content: center
  8708. }
  8709.  
  8710. .uk-flex-right {
  8711. -ms-flex-pack: end;
  8712. -webkit-justify-content: flex-end;
  8713. justify-content: flex-end
  8714. }
  8715.  
  8716. .uk-flex-space-between {
  8717. -ms-flex-pack: justify;
  8718. -webkit-justify-content: space-between;
  8719. justify-content: space-between
  8720. }
  8721.  
  8722. .uk-flex-space-around {
  8723. -ms-flex-pack: distribute;
  8724. -webkit-justify-content: space-around;
  8725. justify-content: space-around
  8726. }
  8727.  
  8728. .uk-flex-row-reverse {
  8729. -ms-flex-direction: row-reverse;
  8730. -webkit-flex-direction: row-reverse;
  8731. flex-direction: row-reverse
  8732. }
  8733.  
  8734. .uk-flex-column {
  8735. -ms-flex-direction: column;
  8736. -webkit-flex-direction: column;
  8737. flex-direction: column
  8738. }
  8739.  
  8740. .uk-flex-column-reverse {
  8741. -ms-flex-direction: column-reverse;
  8742. -webkit-flex-direction: column-reverse;
  8743. flex-direction: column-reverse
  8744. }
  8745.  
  8746. .uk-flex-nowrap {
  8747. -ms-flex-wrap: nowrap;
  8748. -webkit-flex-wrap: nowrap;
  8749. flex-wrap: nowrap
  8750. }
  8751.  
  8752. .uk-flex-wrap {
  8753. -ms-flex-wrap: wrap;
  8754. -webkit-flex-wrap: wrap;
  8755. flex-wrap: wrap
  8756. }
  8757.  
  8758. .uk-flex-wrap-reverse {
  8759. -ms-flex-wrap: wrap-reverse;
  8760. -webkit-flex-wrap: wrap-reverse;
  8761. flex-wrap: wrap-reverse
  8762. }
  8763.  
  8764. .uk-flex-wrap-top {
  8765. -ms-flex-line-pack: start;
  8766. -webkit-align-content: flex-start;
  8767. align-content: flex-start
  8768. }
  8769.  
  8770. .uk-flex-wrap-middle {
  8771. -ms-flex-line-pack: center;
  8772. -webkit-align-content: center;
  8773. align-content: center
  8774. }
  8775.  
  8776. .uk-flex-wrap-bottom {
  8777. -ms-flex-line-pack: end;
  8778. -webkit-align-content: flex-end;
  8779. align-content: flex-end
  8780. }
  8781.  
  8782. .uk-flex-wrap-space-between {
  8783. -ms-flex-line-pack: justify;
  8784. -webkit-align-content: space-between;
  8785. align-content: space-between
  8786. }
  8787.  
  8788. .uk-flex-wrap-space-around {
  8789. -ms-flex-line-pack: distribute;
  8790. -webkit-align-content: space-around;
  8791. align-content: space-around
  8792. }
  8793.  
  8794. .uk-flex-order-first {
  8795. -ms-flex-order: -1;
  8796. -webkit-order: -1;
  8797. order: -1
  8798. }
  8799.  
  8800. .uk-flex-order-last {
  8801. -ms-flex-order: 99;
  8802. -webkit-order: 99;
  8803. order: 99
  8804. }
  8805.  
  8806. @media (min-width:480px) {
  8807. .uk-flex-order-first-small {
  8808. -ms-flex-order: -1;
  8809. -webkit-order: -1;
  8810. order: -1
  8811. }
  8812.  
  8813. .uk-flex-order-last-small {
  8814. -ms-flex-order: 99;
  8815. -webkit-order: 99;
  8816. order: 99
  8817. }
  8818. }
  8819.  
  8820. @media (min-width:768px) {
  8821. .uk-flex-order-first-medium {
  8822. -ms-flex-order: -1;
  8823. -webkit-order: -1;
  8824. order: -1
  8825. }
  8826.  
  8827. .uk-flex-order-last-medium {
  8828. -ms-flex-order: 99;
  8829. -webkit-order: 99;
  8830. order: 99
  8831. }
  8832. }
  8833.  
  8834. @media (min-width:960px) {
  8835. .uk-flex-order-first-large {
  8836. -ms-flex-order: -1;
  8837. -webkit-order: -1;
  8838. order: -1
  8839. }
  8840.  
  8841. .uk-flex-order-last-large {
  8842. -ms-flex-order: 99;
  8843. -webkit-order: 99;
  8844. order: 99
  8845. }
  8846. }
  8847.  
  8848. @media (min-width:1220px) {
  8849. .uk-flex-order-first-xlarge {
  8850. -ms-flex-order: -1;
  8851. -webkit-order: -1;
  8852. order: -1
  8853. }
  8854.  
  8855. .uk-flex-order-last-xlarge {
  8856. -ms-flex-order: 99;
  8857. -webkit-order: 99;
  8858. order: 99
  8859. }
  8860. }
  8861.  
  8862. .uk-flex-item-none {
  8863. -ms-flex: none;
  8864. -webkit-flex: none;
  8865. flex: none
  8866. }
  8867.  
  8868. .uk-flex-item-auto {
  8869. -ms-flex: auto;
  8870. -webkit-flex: auto;
  8871. flex: auto;
  8872. -ms-flex-negative: 1
  8873. }
  8874.  
  8875. .uk-flex-item-1 {
  8876. -ms-flex: 1;
  8877. -webkit-flex: 1;
  8878. flex: 1
  8879. }
  8880.  
  8881. .uk-contrast,.uk-contrast em,.uk-contrast h1,.uk-contrast h2,.uk-contrast h3,.uk-contrast h4,.uk-contrast h5,.uk-contrast h6 {
  8882. color: #fff
  8883. }
  8884.  
  8885. .uk-contrast .uk-link,.uk-contrast a:not([class]) {
  8886. color: rgba(255,255,255,.7);
  8887. text-decoration: none
  8888. }
  8889.  
  8890. .uk-contrast .uk-link:hover,.uk-contrast a:not([class]):hover {
  8891. color: #fff;
  8892. text-decoration: underline
  8893. }
  8894.  
  8895. .uk-contrast hr {
  8896. border-top-color: rgba(255,255,255,.2)
  8897. }
  8898.  
  8899. .uk-contrast .uk-nav li>a,.uk-contrast .uk-nav li>a:hover {
  8900. text-decoration: none
  8901. }
  8902.  
  8903. .uk-contrast .uk-nav-side .uk-nav-header,.uk-contrast .uk-nav-side>li>a {
  8904. color: #fff
  8905. }
  8906.  
  8907. .uk-contrast .uk-nav-side>li>a:focus,.uk-contrast .uk-nav-side>li>a:hover {
  8908. background: rgba(255,255,255,.1);
  8909. color: #fff
  8910. }
  8911.  
  8912. .uk-contrast .uk-nav-side>li.uk-active>a {
  8913. background: #fff;
  8914. color: #222121
  8915. }
  8916.  
  8917. .uk-contrast .uk-nav-side .uk-nav-divider,.uk-contrast .uk-tab-grid:before {
  8918. border-top-color: rgba(255,255,255,.2)
  8919. }
  8920.  
  8921. .uk-contrast .uk-nav-side ul a {
  8922. color: rgba(255,255,255,.7)
  8923. }
  8924.  
  8925. .uk-contrast .uk-nav-side ul a:hover {
  8926. color: #fff
  8927. }
  8928.  
  8929. .uk-contrast .uk-subnav>*>a {
  8930. color: rgba(255,255,255,.7);
  8931. text-decoration: none
  8932. }
  8933.  
  8934. .uk-contrast .uk-subnav>*>a:focus,.uk-contrast .uk-subnav>*>a:hover {
  8935. color: #fff;
  8936. text-decoration: none
  8937. }
  8938.  
  8939. .uk-contrast .uk-subnav>.uk-active>a {
  8940. color: #fff
  8941. }
  8942.  
  8943. .uk-contrast .uk-subnav-line>:nth-child(n+2):before {
  8944. border-left-color: rgba(255,255,255,.2)
  8945. }
  8946.  
  8947. .uk-contrast .uk-subnav-pill>*>a:focus,.uk-contrast .uk-subnav-pill>*>a:hover {
  8948. background: rgba(255,255,255,.7);
  8949. color: #222121;
  8950. text-decoration: none
  8951. }
  8952.  
  8953. .uk-contrast .uk-subnav-pill>.uk-active>a {
  8954. background: #fff;
  8955. color: #222121
  8956. }
  8957.  
  8958. .uk-contrast .uk-tab,.uk-contrast .uk-tab-center {
  8959. border-bottom-color: rgba(255,255,255,.2)
  8960. }
  8961.  
  8962. .uk-contrast .uk-tab>li>a {
  8963. border-color: transparent;
  8964. color: rgba(255,255,255,.7)
  8965. }
  8966.  
  8967. .uk-contrast .uk-tab>li.uk-open>a,.uk-contrast .uk-tab>li>a:focus,.uk-contrast .uk-tab>li>a:hover {
  8968. border-color: rgba(255,255,255,.7);
  8969. background: rgba(255,255,255,.7);
  8970. color: #222121;
  8971. text-decoration: none
  8972. }
  8973.  
  8974. .uk-contrast .uk-tab>li.uk-active>a {
  8975. border-color: rgba(255,255,255,.2);
  8976. border-bottom-color: transparent;
  8977. background: #fff;
  8978. color: #222121
  8979. }
  8980.  
  8981. .uk-contrast .uk-list-line>li:nth-child(n+2) {
  8982. border-top-color: rgba(255,255,255,.2)
  8983. }
  8984.  
  8985. .uk-contrast .uk-form input:not([type]),.uk-contrast .uk-form input[type=color],.uk-contrast .uk-form input[type=date],.uk-contrast .uk-form input[type=datetime-local],.uk-contrast .uk-form input[type=datetime],.uk-contrast .uk-form input[type=email],.uk-contrast .uk-form input[type=month],.uk-contrast .uk-form input[type=number],.uk-contrast .uk-form input[type=password],.uk-contrast .uk-form input[type=search],.uk-contrast .uk-form input[type=tel],.uk-contrast .uk-form input[type=text],.uk-contrast .uk-form input[type=time],.uk-contrast .uk-form input[type=url],.uk-contrast .uk-form input[type=week],.uk-contrast .uk-form select,.uk-contrast .uk-form textarea {
  8986. border-color: rgba(255,255,255,.8);
  8987. background: rgba(255,255,255,.8);
  8988. color: #222121;
  8989. background-clip: padding-box
  8990. }
  8991.  
  8992. .uk-contrast .uk-form input:not([type]):focus,.uk-contrast .uk-form input[type=color]:focus,.uk-contrast .uk-form input[type=date]:focus,.uk-contrast .uk-form input[type=datetime-local]:focus,.uk-contrast .uk-form input[type=datetime]:focus,.uk-contrast .uk-form input[type=email]:focus,.uk-contrast .uk-form input[type=month]:focus,.uk-contrast .uk-form input[type=number]:focus,.uk-contrast .uk-form input[type=password]:focus,.uk-contrast .uk-form input[type=search]:focus,.uk-contrast .uk-form input[type=tel]:focus,.uk-contrast .uk-form input[type=text]:focus,.uk-contrast .uk-form input[type=time]:focus,.uk-contrast .uk-form input[type=url]:focus,.uk-contrast .uk-form input[type=week]:focus,.uk-contrast .uk-form select:focus,.uk-contrast .uk-form textarea:focus {
  8993. border-color: #fff;
  8994. background: #fff;
  8995. color: #222121
  8996. }
  8997.  
  8998. .uk-contrast .uk-form :-ms-input-placeholder {
  8999. color: rgba(34,33,33,.7)!important
  9000. }
  9001.  
  9002. .uk-contrast .uk-form ::-moz-placeholder {
  9003. color: rgba(34,33,33,.7)
  9004. }
  9005.  
  9006. .uk-contrast .uk-form ::-webkit-input-placeholder {
  9007. color: rgba(34,33,33,.7)
  9008. }
  9009.  
  9010. .uk-contrast .uk-button {
  9011. color: #222121;
  9012. background: #fff
  9013. }
  9014.  
  9015. .uk-contrast .uk-button:focus,.uk-contrast .uk-button:hover {
  9016. background-color: rgba(255,255,255,.8);
  9017. color: #222121
  9018. }
  9019.  
  9020. .uk-contrast .uk-button.uk-active,.uk-contrast .uk-button:active {
  9021. background-color: rgba(255,255,255,.7);
  9022. color: #222121
  9023. }
  9024.  
  9025. .uk-contrast .uk-button-primary {
  9026. background-color: #00a8e6;
  9027. color: #fff
  9028. }
  9029.  
  9030. .uk-contrast .uk-button-primary:focus,.uk-contrast .uk-button-primary:hover {
  9031. background-color: #0091c7;
  9032. color: #fff
  9033. }
  9034.  
  9035. .uk-contrast .uk-button-primary.uk-active,.uk-contrast .uk-button-primary:active {
  9036. background-color: #007dac;
  9037. color: #fff
  9038. }
  9039.  
  9040. .uk-contrast .uk-icon-hover {
  9041. color: rgba(255,255,255,.7)
  9042. }
  9043.  
  9044. .uk-contrast .uk-icon-hover:hover {
  9045. color: #fff
  9046. }
  9047.  
  9048. .uk-contrast .uk-icon-button {
  9049. background: #fff;
  9050. color: #222121
  9051. }
  9052.  
  9053. .uk-contrast .uk-icon-button:focus,.uk-contrast .uk-icon-button:hover {
  9054. background-color: rgba(255,255,255,.8);
  9055. color: #222121
  9056. }
  9057.  
  9058. .uk-contrast .uk-icon-button:active {
  9059. background-color: rgba(255,255,255,.7);
  9060. color: #222121
  9061. }
  9062.  
  9063. .uk-contrast .uk-text-muted {
  9064. color: rgba(255,255,255,.6)!important
  9065. }
  9066.  
  9067. .uk-contrast .uk-text-primary {
  9068. color: #00a8e6!important
  9069. }
  9070.  
  9071. @media print {
  9072. *,:after,:before {
  9073. background: 0 0!important;
  9074. color: #000!important;
  9075. box-shadow: none!important;
  9076. text-shadow: none!important
  9077. }
  9078.  
  9079. a,a:visited {
  9080. text-decoration: underline
  9081. }
  9082.  
  9083. blockquote,pre {
  9084. border: 1px solid #999
  9085. }
  9086.  
  9087. thead {
  9088. display: table-header-group
  9089. }
  9090.  
  9091. blockquote,img,pre,tr {
  9092. page-break-inside: avoid
  9093. }
  9094.  
  9095. img {
  9096. max-width: 100%!important
  9097. }@ page {
  9098. margin: .5cm
  9099. }
  9100.  
  9101. h2,h3,p {
  9102. orphans: 3;
  9103. widows: 3
  9104. }
  9105.  
  9106. h2,h3 {
  9107. page-break-after: avoid
  9108. }
  9109. }
  9110.  
  9111. .uk-dotnav {
  9112. display: -ms-flexbox;
  9113. display: -webkit-flex;
  9114. display: flex;
  9115. -ms-flex-wrap: wrap;
  9116. -webkit-flex-wrap: wrap;
  9117. flex-wrap: wrap;
  9118. margin-left: -15px;
  9119. margin-top: -15px;
  9120. padding: 0;
  9121. list-style: none
  9122. }
  9123.  
  9124. .uk-dotnav>* {
  9125. -ms-flex: none;
  9126. -webkit-flex: none;
  9127. flex: none;
  9128. padding-left: 15px;
  9129. margin-top: 15px;
  9130. float: left
  9131. }
  9132.  
  9133. .uk-dotnav:after,.uk-dotnav:before {
  9134. content: "";
  9135. display: block;
  9136. overflow: hidden
  9137. }
  9138.  
  9139. .uk-dotnav:after {
  9140. clear: both
  9141. }
  9142.  
  9143. .uk-dotnav>*>* {
  9144. display: block;
  9145. box-sizing: content-box;
  9146. width: 20px;
  9147. height: 20px;
  9148. border-radius: 50%;
  9149. background: rgba(50,50,50,.1);
  9150. text-indent: 100%;
  9151. overflow: hidden;
  9152. white-space: nowrap
  9153. }
  9154.  
  9155. .uk-dotnav>*>:focus,.uk-dotnav>*>:hover {
  9156. background: rgba(50,50,50,.4);
  9157. outline: none
  9158. }
  9159.  
  9160. .uk-dotnav>*>:active {
  9161. background: rgba(50,50,50,.6)
  9162. }
  9163.  
  9164. .uk-dotnav>.uk-active>* {
  9165. background: rgba(50,50,50,.4)
  9166. }
  9167.  
  9168. .uk-dotnav-contrast>*>* {
  9169. background: rgba(255,255,255,.4)
  9170. }
  9171.  
  9172. .uk-dotnav-contrast>*>:focus,.uk-dotnav-contrast>*>:hover {
  9173. background: rgba(255,255,255,.7)
  9174. }
  9175.  
  9176. .uk-dotnav-contrast>*>:active,.uk-dotnav-contrast>.uk-active>* {
  9177. background: rgba(255,255,255,.9)
  9178. }
  9179.  
  9180. .uk-dotnav-vertical {
  9181. -ms-flex-direction: column;
  9182. -webkit-flex-direction: column;
  9183. flex-direction: column
  9184. }
  9185.  
  9186. .uk-dotnav-vertical>* {
  9187. float: none
  9188. }
  9189.  
  9190. .uk-slidenav {
  9191. display: inline-block;
  9192. box-sizing: border-box;
  9193. width: 60px;
  9194. height: 60px;
  9195. line-height: 60px;
  9196. color: rgba(50,50,50,.4);
  9197. font-size: 60px;
  9198. text-align: center
  9199. }
  9200.  
  9201. .uk-slidenav:focus,.uk-slidenav:hover {
  9202. outline: none;
  9203. text-decoration: none;
  9204. color: rgba(50,50,50,.7);
  9205. cursor: pointer
  9206. }
  9207.  
  9208. .uk-slidenav:active {
  9209. color: rgba(50,50,50,.9)
  9210. }
  9211.  
  9212. .uk-slidenav-previous:before {
  9213. content: "\f104";
  9214. font-family: FontAwesome
  9215. }
  9216.  
  9217. .uk-slidenav-next:before {
  9218. content: "\f105";
  9219. font-family: FontAwesome
  9220. }
  9221.  
  9222. .uk-slidenav-position {
  9223. position: relative
  9224. }
  9225.  
  9226. .uk-slidenav-position .uk-slidenav {
  9227. display: none;
  9228. position: absolute;
  9229. top: 50%;
  9230. z-index: 1;
  9231. margin-top: -30px
  9232. }
  9233.  
  9234. .uk-form input[type=checkbox]:before,.uk-form input[type=radio]:before,.uk-slidenav-position:hover .uk-slidenav {
  9235. display: block
  9236. }
  9237.  
  9238. .uk-slidenav-position .uk-slidenav-previous {
  9239. left: 20px
  9240. }
  9241.  
  9242. .uk-slidenav-position .uk-slidenav-next {
  9243. right: 20px
  9244. }
  9245.  
  9246. .uk-slidenav-contrast {
  9247. color: rgba(255,255,255,.5)
  9248. }
  9249.  
  9250. .uk-slidenav-contrast:focus,.uk-slidenav-contrast:hover {
  9251. color: rgba(255,255,255,.7)
  9252. }
  9253.  
  9254. .uk-slidenav-contrast:active {
  9255. color: rgba(255,255,255,.9)
  9256. }
  9257.  
  9258. .uk-form input[type=checkbox],.uk-form input[type=radio] {
  9259. display: inline-block;
  9260. height: 14px;
  9261. width: 14px;
  9262. border: 1px solid rgba(170,170,170,.42);
  9263. overflow: hidden;
  9264. margin-top: -4px;
  9265. vertical-align: middle;
  9266. -webkit-appearance: none;
  9267. outline: 0;
  9268. background: 0 0
  9269. }
  9270.  
  9271. .uk-form input[type=radio] {
  9272. border-radius: 50%
  9273. }
  9274.  
  9275. .uk-form input[type=radio]:checked:before {
  9276. content: '';
  9277. width: 8px;
  9278. height: 8px;
  9279. margin: 2px auto 0;
  9280. border-radius: 50%;
  9281. background: #2197ef
  9282. }
  9283.  
  9284. .uk-form input[type=checkbox]:checked:before,.uk-form input[type=checkbox]:indeterminate:before {
  9285. content: "\f00c";
  9286. font-family: FontAwesome;
  9287. font-size: 13px;
  9288. -webkit-font-smoothing: antialiased;
  9289. text-align: center;
  9290. line-height: 12px;
  9291. color: #2197ef
  9292. }
  9293.  
  9294. .uk-form input[type=checkbox]:indeterminate:before {
  9295. content: "\f068"
  9296. }
  9297.  
  9298. .uk-form input[type=checkbox]:disabled,.uk-form input[type=radio]:disabled {
  9299. border-color: #ddd
  9300. }
  9301.  
  9302. .uk-form input[type=radio]:disabled:checked:before {
  9303. background-color: #aaa
  9304. }
  9305.  
  9306. .uk-form input[type=checkbox]:disabled:checked:before,.uk-form input[type=checkbox]:disabled:indeterminate:before {
  9307. color: #aaa
  9308. }
  9309.  
  9310. .uk-form-file,.uk-form-password {
  9311. display: inline-block;
  9312. position: relative
  9313. }
  9314.  
  9315. .uk-form-file {
  9316. vertical-align: middle;
  9317. overflow: hidden
  9318. }
  9319.  
  9320. .uk-form-file input[type=file],.uk-form-select select {
  9321. position: absolute;
  9322. top: 0;
  9323. z-index: 1;
  9324. width: 100%;
  9325. opacity: 0;
  9326. cursor: pointer;
  9327. left: 0
  9328. }
  9329.  
  9330. .uk-form-file input[type=file] {
  9331. font-size: 500px
  9332. }
  9333.  
  9334. .uk-form-password {
  9335. max-width: 100%
  9336. }
  9337.  
  9338. .uk-form-password-toggle {
  9339. display: block;
  9340. position: absolute;
  9341. top: 50%;
  9342. right: 10px;
  9343. margin-top: -7px;
  9344. font-size: 14px;
  9345. line-height: 14px;
  9346. color: #999
  9347. }
  9348.  
  9349. .uk-form-password-toggle:hover {
  9350. color: #999;
  9351. text-decoration: none
  9352. }
  9353.  
  9354. .uk-form-password>input {
  9355. padding-right: 50px!important
  9356. }
  9357.  
  9358. .uk-form-select {
  9359. display: inline-block;
  9360. vertical-align: middle;
  9361. position: relative;
  9362. overflow: hidden
  9363. }
  9364.  
  9365. .uk-form-select select {
  9366. height: 100%;
  9367. -webkit-appearance: none
  9368. }
  9369.  
  9370. .uk-placeholder {
  9371. margin-bottom: 15px;
  9372. padding: 15px;
  9373. border: 1px dashed #434343;
  9374. background: #fafafa;
  9375. color: #bebdbd
  9376. }
  9377.  
  9378. .uk-placeholder>:last-child {
  9379. margin-bottom: 0
  9380. }
  9381.  
  9382. .uk-placeholder-large {
  9383. padding-top: 80px;
  9384. padding-bottom: 80px
  9385. }
  9386.  
  9387. .uk-progress {
  9388. box-sizing: border-box;
  9389. height: 20px;
  9390. margin-bottom: 15px;
  9391. background: #eee;
  9392. overflow: hidden;
  9393. line-height: 20px
  9394. }
  9395.  
  9396. .uk-progress-bar {
  9397. width: 0;
  9398. height: 100%;
  9399. background: #00a8e6;
  9400. float: left;
  9401. -webkit-transition: width .6s ease;
  9402. transition: width .6s ease;
  9403. font-size: 13px;
  9404. color: #fff;
  9405. text-align: center
  9406. }
  9407.  
  9408. .uk-progress-mini {
  9409. height: 6px
  9410. }
  9411.  
  9412. .uk-progress-small {
  9413. height: 12px
  9414. }
  9415.  
  9416. .uk-progress-success .uk-progress-bar {
  9417. background-color: #66b82f
  9418. }
  9419.  
  9420. .uk-progress-warning .uk-progress-bar {
  9421. background-color: #da922c
  9422. }
  9423.  
  9424. .uk-progress-danger .uk-progress-bar {
  9425. background-color: #d65b49
  9426. }
  9427.  
  9428. .uk-progress-striped .uk-progress-bar {
  9429. background-image: -webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  9430. background-image: linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  9431. background-size: 30px 30px
  9432. }
  9433.  
  9434. .uk-progress-striped.uk-active .uk-progress-bar {
  9435. -webkit-animation: uk-progress-bar-stripes 2s linear infinite;
  9436. animation: uk-progress-bar-stripes 2s linear infinite
  9437. }
  9438.  
  9439. @-webkit-keyframes uk-progress-bar-stripes {
  9440. 0% {
  9441. background-position: 0 0
  9442. }
  9443.  
  9444. to {
  9445. background-position: 30px 0
  9446. }
  9447. }
  9448.  
  9449. @keyframes uk-progress-bar-stripes {
  9450. 0% {
  9451. background-position: 0 0
  9452. }
  9453.  
  9454. to {
  9455. background-position: 30px 0
  9456. }
  9457. }
  9458.  
  9459. .uk-accordion-title {
  9460. margin-top: 0;
  9461. margin-bottom: 15px;
  9462. padding: 5px 15px;
  9463. background: #eee;
  9464. font-size: 19px;
  9465. line-height: 25px;
  9466. cursor: pointer
  9467. }
  9468.  
  9469. .uk-accordion-content {
  9470. padding: 0 15px 15px
  9471. }
  9472.  
  9473. .uk-accordion-content:after,.uk-accordion-content:before {
  9474. content: "";
  9475. display: table
  9476. }
  9477.  
  9478. .uk-accordion-content:after {
  9479. clear: both
  9480. }
  9481.  
  9482. .uk-accordion-content>:last-child {
  9483. margin-bottom: 0
  9484. }
  9485.  
  9486. .uk-autocomplete {
  9487. display: inline-block;
  9488. position: relative;
  9489. max-width: 100%;
  9490. vertical-align: middle
  9491. }
  9492.  
  9493. .uk-dropdown-flip {
  9494. left: auto;
  9495. right: 0
  9496. }
  9497.  
  9498. .uk-nav-autocomplete>li.uk-active>a {
  9499. background: #00a8e6;
  9500. color: #fff;
  9501. outline: none
  9502. }
  9503.  
  9504. .uk-nav-autocomplete .uk-nav-header {
  9505. color: #999
  9506. }
  9507.  
  9508. .uk-nav-autocomplete .uk-nav-divider {
  9509. border-top: 1px solid #434343
  9510. }
  9511.  
  9512. .uk-datepicker {
  9513. z-index: 1050;
  9514. width: auto;
  9515. -webkit-animation: uk-fade .2s ease-in-out;
  9516. animation: uk-fade .2s ease-in-out;
  9517. -webkit-transform-origin: 0 0;
  9518. transform-origin: 0 0
  9519. }
  9520.  
  9521. .uk-datepicker-nav {
  9522. margin-bottom: 15px;
  9523. text-align: center;
  9524. line-height: 20px
  9525. }
  9526.  
  9527. .uk-datepicker-nav:after,.uk-datepicker-nav:before {
  9528. content: "";
  9529. display: table
  9530. }
  9531.  
  9532. .uk-datepicker-nav:after {
  9533. clear: both
  9534. }
  9535.  
  9536. .uk-datepicker-nav a,.uk-datepicker-table a {
  9537. color: #bebdbd;
  9538. text-decoration: none
  9539. }
  9540.  
  9541. .uk-datepicker-nav a:hover {
  9542. color: #bebdbd
  9543. }
  9544.  
  9545. .uk-datepicker-previous,.uk-htmleditor-navbar-nav>li {
  9546. float: left
  9547. }
  9548.  
  9549. .uk-datepicker-next {
  9550. float: right
  9551. }
  9552.  
  9553. .uk-datepicker-next:after,.uk-datepicker-previous:after {
  9554. width: 20px;
  9555. font-family: FontAwesome
  9556. }
  9557.  
  9558. .uk-datepicker-previous:after {
  9559. content: "\f053"
  9560. }
  9561.  
  9562. .uk-datepicker-next:after {
  9563. content: "\f054"
  9564. }
  9565.  
  9566. .uk-datepicker-table {
  9567. width: 100%
  9568. }
  9569.  
  9570. .uk-datepicker-table td,.uk-datepicker-table th {
  9571. padding: 2px
  9572. }
  9573.  
  9574. .uk-datepicker-table th {
  9575. font-size: 12px
  9576. }
  9577.  
  9578. .uk-datepicker-table a {
  9579. display: block;
  9580. width: 26px;
  9581. line-height: 24px;
  9582. text-align: center
  9583. }
  9584.  
  9585. a.uk-datepicker-table-muted {
  9586. color: #999
  9587. }
  9588.  
  9589. .uk-datepicker-table a:focus,.uk-datepicker-table a:hover {
  9590. background-color: #ddd;
  9591. color: #bebdbd;
  9592. outline: none
  9593. }
  9594.  
  9595. .uk-datepicker-table a:active {
  9596. background-color: #ccc;
  9597. color: #bebdbd
  9598. }
  9599.  
  9600. .uk-datepicker-table a.uk-active {
  9601. background: #00a8e6;
  9602. color: #fff
  9603. }
  9604.  
  9605. .uk-htmleditor-navbar {
  9606. background: #eee
  9607. }
  9608.  
  9609. .uk-htmleditor-navbar:after,.uk-htmleditor-navbar:before {
  9610. content: "";
  9611. display: table
  9612. }
  9613.  
  9614. .uk-htmleditor-navbar:after {
  9615. clear: both
  9616. }
  9617.  
  9618. .uk-htmleditor-navbar-nav {
  9619. margin: 0;
  9620. padding: 0;
  9621. list-style: none;
  9622. float: left
  9623. }
  9624.  
  9625. .uk-htmleditor-navbar-nav>li>a {
  9626. display: block;
  9627. box-sizing: border-box;
  9628. text-decoration: none;
  9629. height: 40px;
  9630. padding: 0 15px;
  9631. line-height: 40px;
  9632. color: #bebdbd;
  9633. font-size: 11px;
  9634. cursor: pointer
  9635. }
  9636.  
  9637. .uk-htmleditor-navbar-nav>li:hover>a,.uk-htmleditor-navbar-nav>li>a:focus {
  9638. background-color: #f5f5f5;
  9639. color: #bebdbd;
  9640. outline: none
  9641. }
  9642.  
  9643. .uk-htmleditor-navbar-nav>li>a:active {
  9644. background-color: #ddd;
  9645. color: #bebdbd
  9646. }
  9647.  
  9648. .uk-htmleditor-navbar-nav>li.uk-active>a {
  9649. background-color: #f5f5f5;
  9650. color: #bebdbd
  9651. }
  9652.  
  9653. .uk-htmleditor-navbar-flip {
  9654. float: right
  9655. }
  9656.  
  9657. [data-mode=split] .uk-htmleditor-button-code,[data-mode=split] .uk-htmleditor-button-preview,[data-mode=tab][data-active-tab=code] .uk-htmleditor-preview,[data-mode=tab][data-active-tab=preview] .uk-htmleditor-code {
  9658. display: none
  9659. }
  9660.  
  9661. .uk-htmleditor-content {
  9662. border-left: 1px solid #434343;
  9663. border-right: 1px solid #434343;
  9664. border-bottom: 1px solid #434343;
  9665. background: #191818
  9666. }
  9667.  
  9668. .uk-htmleditor-content:after,.uk-htmleditor-content:before {
  9669. content: "";
  9670. display: table
  9671. }
  9672.  
  9673. .uk-htmleditor-content:after {
  9674. clear: both
  9675. }
  9676.  
  9677. .uk-htmleditor-fullscreen {
  9678. position: fixed;
  9679. top: 0;
  9680. left: 0;
  9681. right: 0;
  9682. bottom: 0;
  9683. z-index: 990
  9684. }
  9685.  
  9686. .uk-htmleditor-fullscreen .uk-htmleditor-content {
  9687. position: absolute;
  9688. top: 40px;
  9689. left: 0;
  9690. right: 0;
  9691. bottom: 0
  9692. }
  9693.  
  9694. .uk-htmleditor-fullscreen .uk-icon-expand:before {
  9695. content: "\f066"
  9696. }
  9697.  
  9698. .uk-htmleditor-code,.uk-htmleditor-preview {
  9699. box-sizing: border-box
  9700. }
  9701.  
  9702. .uk-htmleditor-preview {
  9703. padding: 20px;
  9704. overflow-y: scroll;
  9705. position: relative
  9706. }
  9707.  
  9708. [data-mode=split] .uk-htmleditor-code,[data-mode=split] .uk-htmleditor-preview {
  9709. float: left;
  9710. width: 50%
  9711. }
  9712.  
  9713. [data-mode=split] .uk-htmleditor-code {
  9714. border-right: 1px solid #eee
  9715. }
  9716.  
  9717. .uk-htmleditor-iframe {
  9718. position: absolute;
  9719. top: 0;
  9720. left: 0;
  9721. width: 100%;
  9722. height: 100%
  9723. }
  9724.  
  9725. .uk-htmleditor .CodeMirror {
  9726. padding: 10px;
  9727. box-sizing: border-box
  9728. }
  9729.  
  9730. .uk-slider {
  9731. position: relative;
  9732. z-index: 0;
  9733. touch-action: pan-y
  9734. }
  9735.  
  9736. .uk-slider:not(.uk-grid) {
  9737. margin: 0;
  9738. padding: 0;
  9739. list-style: none
  9740. }
  9741.  
  9742. .uk-slider>* {
  9743. position: absolute;
  9744. top: 0;
  9745. left: 0
  9746. }
  9747.  
  9748. .uk-slider-container {
  9749. overflow: hidden
  9750. }
  9751.  
  9752. .uk-slider:not(.uk-drag) {
  9753. -webkit-transition: -webkit-transform 200ms linear;
  9754. transition: transform 200ms linear
  9755. }
  9756.  
  9757. .uk-slider.uk-drag {
  9758. cursor: col-resize;
  9759. -moz-user-select: none;
  9760. -webkit-user-select: none;
  9761. -ms-user-select: none;
  9762. user-select: none
  9763. }
  9764.  
  9765. .uk-slider a,.uk-slider img {
  9766. -webkit-user-drag: none;
  9767. user-drag: none;
  9768. -webkit-touch-callout: none
  9769. }
  9770.  
  9771. .uk-slider img {
  9772. pointer-events: none
  9773. }
  9774.  
  9775. .uk-slider-fullscreen,.uk-slider-fullscreen>li {
  9776. height: 100vh
  9777. }
  9778.  
  9779. .uk-slideshow {
  9780. position: relative;
  9781. z-index: 0;
  9782. width: 100%;
  9783. margin: 0;
  9784. padding: 0;
  9785. list-style: none;
  9786. overflow: hidden;
  9787. touch-action: pan-y
  9788. }
  9789.  
  9790. .uk-slideshow>li {
  9791. position: absolute;
  9792. top: 0;
  9793. left: 0;
  9794. width: 100%;
  9795. opacity: 0
  9796. }
  9797.  
  9798. .uk-slideshow>.uk-active {
  9799. z-index: 10;
  9800. opacity: 1
  9801. }
  9802.  
  9803. .uk-slideshow>li>img {
  9804. visibility: hidden
  9805. }
  9806.  
  9807. [data-uk-slideshow-slide] {
  9808. cursor: pointer
  9809. }
  9810.  
  9811. .uk-slideshow-fullscreen,.uk-slideshow-fullscreen>li {
  9812. height: 100vh
  9813. }
  9814.  
  9815. .uk-slideshow-fade-in {
  9816. -webkit-animation: uk-fade .5s linear;
  9817. animation: uk-fade .5s linear
  9818. }
  9819.  
  9820. .uk-slideshow-fade-out {
  9821. -webkit-animation: uk-fade .5s linear reverse;
  9822. animation: uk-fade .5s linear reverse
  9823. }
  9824.  
  9825. .uk-slideshow-scroll-forward-in {
  9826. -webkit-animation: uk-slide-right .5s ease-in-out;
  9827. animation: uk-slide-right .5s ease-in-out
  9828. }
  9829.  
  9830. .uk-slideshow-scroll-forward-out {
  9831. -webkit-animation: uk-slide-left .5s ease-in-out reverse;
  9832. animation: uk-slide-left .5s ease-in-out reverse
  9833. }
  9834.  
  9835. .uk-slideshow-scroll-backward-in {
  9836. -webkit-animation: uk-slide-left .5s ease-in-out;
  9837. animation: uk-slide-left .5s ease-in-out
  9838. }
  9839.  
  9840. .uk-slideshow-scroll-backward-out {
  9841. -webkit-animation: uk-slide-right .5s ease-in-out reverse;
  9842. animation: uk-slide-right .5s ease-in-out reverse
  9843. }
  9844.  
  9845. .uk-slideshow-scale-out {
  9846. -webkit-animation: uk-fade-scale-15 .5s ease-in-out reverse;
  9847. animation: uk-fade-scale-15 .5s ease-in-out reverse
  9848. }
  9849.  
  9850. .uk-slideshow-swipe-forward-in {
  9851. -webkit-animation: uk-slide-left-33 .5s ease-in-out;
  9852. animation: uk-slide-left-33 .5s ease-in-out
  9853. }
  9854.  
  9855. .uk-slideshow-swipe-forward-out {
  9856. -webkit-animation: uk-slide-left .5s ease-in-out reverse;
  9857. animation: uk-slide-left .5s ease-in-out reverse
  9858. }
  9859.  
  9860. .uk-slideshow-swipe-backward-in {
  9861. -webkit-animation: uk-slide-right-33 .5s ease-in-out;
  9862. animation: uk-slide-right-33 .5s ease-in-out
  9863. }
  9864.  
  9865. .uk-slideshow-swipe-backward-out {
  9866. -webkit-animation: uk-slide-right .5s ease-in-out reverse;
  9867. animation: uk-slide-right .5s ease-in-out reverse
  9868. }
  9869.  
  9870. .uk-slideshow-swipe-backward-in:before,.uk-slideshow-swipe-forward-in:before {
  9871. content: '';
  9872. position: absolute;
  9873. top: 0;
  9874. bottom: 0;
  9875. left: 0;
  9876. right: 0;
  9877. z-index: 1;
  9878. background: rgba(0,0,0,.6);
  9879. -webkit-animation: uk-fade .5s ease-in-out reverse;
  9880. animation: uk-fade .5s ease-in-out reverse
  9881. }
  9882.  
  9883. .uk-notify {
  9884. position: fixed;
  9885. top: 10px;
  9886. left: 10px;
  9887. z-index: 1040;
  9888. box-sizing: border-box;
  9889. width: 350px
  9890. }
  9891.  
  9892. .uk-notify-bottom-right,.uk-notify-top-right {
  9893. left: auto;
  9894. right: 10px
  9895. }
  9896.  
  9897. .uk-notify-bottom-center,.uk-notify-top-center {
  9898. left: 50%;
  9899. margin-left: -175px
  9900. }
  9901.  
  9902. .uk-notify-bottom-center,.uk-notify-bottom-left,.uk-notify-bottom-right {
  9903. top: auto;
  9904. bottom: 10px
  9905. }
  9906.  
  9907. @media (max-width:479px) {
  9908. .uk-notify {
  9909. left: 10px;
  9910. right: 10px;
  9911. width: auto;
  9912. margin: 0
  9913. }
  9914. }
  9915.  
  9916. .uk-notify-message {
  9917. position: relative;
  9918. margin-bottom: 10px;
  9919. padding: 15px;
  9920. background: #444;
  9921. color: #fff;
  9922. font-size: 17px;
  9923. line-height: 23px;
  9924. cursor: pointer
  9925. }
  9926.  
  9927. .uk-notify-message>.uk-close {
  9928. visibility: hidden;
  9929. float: right
  9930. }
  9931.  
  9932. .uk-notify-message:hover>.uk-close {
  9933. visibility: visible
  9934. }
  9935.  
  9936. .uk-notify-message-primary {
  9937. background: #ebf7fd;
  9938. color: #2d7091
  9939. }
  9940.  
  9941. .uk-notify-message-success {
  9942. background: #f2fae3;
  9943. color: #659f13
  9944. }
  9945.  
  9946. .uk-notify-message-warning {
  9947. background: #fffceb;
  9948. color: #e28327
  9949. }
  9950.  
  9951. .uk-notify-message-danger {
  9952. background: #fff1f0;
  9953. color: #d85030
  9954. }
  9955.  
  9956. .uk-search {
  9957. display: inline-block;
  9958. position: relative;
  9959. margin: 0
  9960. }
  9961.  
  9962. .uk-search:before {
  9963. content: "\f002";
  9964. position: absolute;
  9965. top: 0;
  9966. left: 0;
  9967. width: 30px;
  9968. line-height: 30px;
  9969. text-align: center;
  9970. font-family: FontAwesome;
  9971. font-size: 14px;
  9972. color: rgba(0,0,0,.2)
  9973. }
  9974.  
  9975. .uk-search-field::-moz-focus-inner {
  9976. border: 0;
  9977. padding: 0
  9978. }
  9979.  
  9980. .uk-search-field::-webkit-search-cancel-button,.uk-search-field::-webkit-search-decoration {
  9981. -webkit-appearance: none
  9982. }
  9983.  
  9984. .uk-search-field::-ms-clear {
  9985. display: none
  9986. }
  9987.  
  9988. .uk-search-field::-moz-placeholder {
  9989. opacity: 1;
  9990. color: #999
  9991. }
  9992.  
  9993. .uk-search-field {
  9994. box-sizing: border-box;
  9995. margin: 0;
  9996. border-radius: 0;
  9997. font: inherit;
  9998. color: #bebdbd;
  9999. -webkit-appearance: none;
  10000. width: 120px;
  10001. height: 30px;
  10002. padding: 0 0 0 30px;
  10003. border: 1px solid rgba(0,0,0,0);
  10004. background: rgba(0,0,0,0);
  10005. -webkit-transition: all .2s linear;
  10006. transition: all .2s linear;
  10007. vertical-align: middle
  10008. }
  10009.  
  10010. .uk-search-field:-ms-input-placeholder {
  10011. color: #999!important
  10012. }
  10013.  
  10014. .uk-search-field::-webkit-input-placeholder {
  10015. color: #999
  10016. }
  10017.  
  10018. .uk-search-field:focus {
  10019. outline: 0;
  10020. width: 180px
  10021. }
  10022.  
  10023. .uk-search.uk-active .uk-search-field {
  10024. width: 180px
  10025. }
  10026.  
  10027. .uk-dropdown-search {
  10028. width: 300px;
  10029. margin-top: 0;
  10030. background: rgba(245,245,245,0);
  10031. color: #bebdbd
  10032. }
  10033.  
  10034. .uk-open>.uk-dropdown-search {
  10035. -webkit-animation: uk-slide-top-fixed .2s ease-in-out;
  10036. animation: uk-slide-top-fixed .2s ease-in-out
  10037. }
  10038.  
  10039. .uk-navbar-flip .uk-dropdown-search {
  10040. margin-top: 5px;
  10041. margin-right: -15px
  10042. }
  10043.  
  10044. .uk-nav-search>li>a {
  10045. color: #bebdbd
  10046. }
  10047.  
  10048. .uk-nav-search>li.uk-active>a {
  10049. background: #00a8e6;
  10050. color: #fff;
  10051. outline: none
  10052. }
  10053.  
  10054. .uk-nav-search .uk-nav-header {
  10055. color: #999
  10056. }
  10057.  
  10058. .uk-nav-search .uk-nav-divider {
  10059. border-top: 1px solid #434343
  10060. }
  10061.  
  10062. .uk-nav-search ul a {
  10063. color: #249af2
  10064. }
  10065.  
  10066. .uk-nav-search ul a:hover {
  10067. color: #1f85d1
  10068. }
  10069.  
  10070. .uk-offcanvas .uk-search {
  10071. display: block;
  10072. margin: 15px
  10073. }
  10074.  
  10075. .uk-offcanvas .uk-search:before {
  10076. color: #777
  10077. }
  10078.  
  10079. .uk-offcanvas .uk-search-field {
  10080. width: 100%;
  10081. border-color: rgba(0,0,0,0);
  10082. background: #100f0f;
  10083. color: #ccc
  10084. }
  10085.  
  10086. .uk-offcanvas .uk-search-field:-ms-input-placeholder {
  10087. color: #777!important
  10088. }
  10089.  
  10090. .uk-offcanvas .uk-search-field::-moz-placeholder {
  10091. color: #777
  10092. }
  10093.  
  10094. .uk-offcanvas .uk-search-field::-webkit-input-placeholder {
  10095. color: #777
  10096. }
  10097.  
  10098. .uk-nestable {
  10099. padding: 0;
  10100. list-style: none
  10101. }
  10102.  
  10103. .uk-nestable a,.uk-nestable img,.uk-sortable a,.uk-sortable img {
  10104. -webkit-touch-callout: none
  10105. }
  10106.  
  10107. .uk-nestable-list {
  10108. margin: 0;
  10109. padding-left: 40px;
  10110. list-style: none
  10111. }
  10112.  
  10113. .uk-nestable-item {
  10114. touch-action: none
  10115. }
  10116.  
  10117. .uk-nestable-item+.uk-nestable-item {
  10118. margin-top: 10px
  10119. }
  10120.  
  10121. .uk-nestable-list:not(.uk-nestable-dragged)>.uk-nestable-item:first-child {
  10122. margin-top: 10px
  10123. }
  10124.  
  10125. .uk-nestable-dragged {
  10126. position: absolute;
  10127. z-index: 1050;
  10128. pointer-events: none;
  10129. padding-left: 0
  10130. }
  10131.  
  10132. .uk-nestable-placeholder {
  10133. position: relative
  10134. }
  10135.  
  10136. .uk-nestable-placeholder>* {
  10137. opacity: 0
  10138. }
  10139.  
  10140. .uk-nestable-placeholder:after {
  10141. content: '';
  10142. position: absolute;
  10143. top: 0;
  10144. bottom: 0;
  10145. left: 0;
  10146. right: 0;
  10147. border: 1px dashed #434343;
  10148. opacity: 1
  10149. }
  10150.  
  10151. .uk-nestable-empty {
  10152. min-height: 30px
  10153. }
  10154.  
  10155. .uk-nestable-handle {
  10156. touch-action: none
  10157. }
  10158.  
  10159. .uk-nestable-handle:hover,.uk-nestable-moving,.uk-nestable-moving * {
  10160. cursor: move
  10161. }
  10162.  
  10163. [data-nestable-action=toggle] {
  10164. cursor: pointer;
  10165. -moz-user-select: none;
  10166. -webkit-user-select: none;
  10167. -ms-user-select: none;
  10168. user-select: none
  10169. }
  10170.  
  10171. .uk-nestable-toggle {
  10172. display: inline-block;
  10173. visibility: hidden
  10174. }
  10175.  
  10176. .uk-nestable-toggle:after {
  10177. content: "\f147";
  10178. font-family: FontAwesome
  10179. }
  10180.  
  10181. .uk-parent>:not(.uk-nestable-list) .uk-nestable-toggle {
  10182. visibility: visible
  10183. }
  10184.  
  10185. .uk-collapsed .uk-nestable-list {
  10186. display: none
  10187. }
  10188.  
  10189. .uk-collapsed .uk-nestable-toggle:after {
  10190. content: "\f196"
  10191. }
  10192.  
  10193. .uk-nestable-panel {
  10194. padding: 5px;
  10195. background: #f5f5f5
  10196. }
  10197.  
  10198. .uk-sortable {
  10199. position: relative
  10200. }
  10201.  
  10202. .uk-sortable>* {
  10203. touch-action: none
  10204. }
  10205.  
  10206. .uk-sortable>:last-child {
  10207. margin-bottom: 0
  10208. }
  10209.  
  10210. .uk-sortable-dragged {
  10211. position: absolute;
  10212. z-index: 1050;
  10213. pointer-events: none
  10214. }
  10215.  
  10216. .uk-sortable-placeholder {
  10217. opacity: 0
  10218. }
  10219.  
  10220. .uk-sortable-empty {
  10221. min-height: 30px
  10222. }
  10223.  
  10224. .uk-sortable-handle {
  10225. touch-action: none
  10226. }
  10227.  
  10228. .uk-sortable-handle:hover,.uk-sortable-moving,.uk-sortable-moving * {
  10229. cursor: move
  10230. }
  10231.  
  10232. [data-uk-sticky].uk-active {
  10233. z-index: 980;
  10234. box-sizing: border-box
  10235. }
  10236.  
  10237. [data-uk-sticky].uk-animation-reverse,[data-uk-sticky][class*=uk-animation-] {
  10238. -webkit-animation-duration: .2s;
  10239. animation-duration: .2s
  10240. }
  10241.  
  10242. .uk-dragover {
  10243. box-shadow: 0 0 20px rgba(100,100,100,.3)
  10244. }
  10245.  
  10246. .uk-tooltip {
  10247. display: none;
  10248. position: absolute;
  10249. z-index: 1030;
  10250. box-sizing: border-box;
  10251. max-width: 200px;
  10252. padding: 5px 8px;
  10253. background: #333;
  10254. color: rgba(255,255,255,.7);
  10255. font-size: 13px;
  10256. line-height: 19px
  10257. }
  10258.  
  10259. .uk-tooltip:after {
  10260. content: "";
  10261. display: block;
  10262. position: absolute;
  10263. width: 0;
  10264. height: 0;
  10265. border: 5px dashed #333
  10266. }
  10267.  
  10268. .uk-tooltip-top-left:after,.uk-tooltip-top-right:after,.uk-tooltip-top:after {
  10269. bottom: -5px;
  10270. border-top-style: solid;
  10271. border-bottom: none;
  10272. border-left-color: transparent;
  10273. border-right-color: transparent;
  10274. border-top-color: #333
  10275. }
  10276.  
  10277. .uk-tooltip-bottom-left:after,.uk-tooltip-bottom-right:after,.uk-tooltip-bottom:after {
  10278. top: -5px;
  10279. border-bottom-style: solid;
  10280. border-top: none;
  10281. border-left-color: transparent;
  10282. border-right-color: transparent;
  10283. border-bottom-color: #333
  10284. }
  10285.  
  10286. .uk-tooltip-bottom:after,.uk-tooltip-top:after {
  10287. left: 50%;
  10288. margin-left: -5px
  10289. }
  10290.  
  10291. .uk-tooltip-bottom-left:after,.uk-tooltip-top-left:after {
  10292. left: 10px
  10293. }
  10294.  
  10295. .uk-tooltip-bottom-right:after,.uk-tooltip-top-right:after {
  10296. right: 10px
  10297. }
  10298.  
  10299. .uk-tooltip-left:after,.uk-tooltip-right:after {
  10300. top: 50%;
  10301. margin-top: -5px;
  10302. border-top-color: transparent;
  10303. border-bottom-color: transparent
  10304. }
  10305.  
  10306. .uk-tooltip-left:after {
  10307. right: -5px;
  10308. border-left-style: solid;
  10309. border-right: none;
  10310. border-left-color: #333
  10311. }
  10312.  
  10313. .uk-tooltip-right:after {
  10314. left: -5px;
  10315. border-right-style: solid;
  10316. border-left: none;
  10317. border-right-color: #333
  10318. }
  10319. /* Accordion */
  10320.  
  10321. #myInput {
  10322. background-position: 10px 12px;
  10323. background-repeat: no-repeat;
  10324. width: 100%;
  10325. font-size: 16px;
  10326. padding: 12px 20px 12px 40px;
  10327. border: 1px solid #ddd;
  10328. margin-bottom: 12px
  10329. }
  10330.  
  10331. #myUL {
  10332. list-style-type: none;
  10333. padding: 0;
  10334. margin: 0
  10335. }
  10336.  
  10337. #myUL li a {
  10338. border: 1px solid #ddd;
  10339. margin-top: -1px;
  10340. background-color: #f6f6f6;
  10341. padding: 12px;
  10342. text-decoration: none;
  10343. font-size: 18px;
  10344. color: #000;
  10345. display: block
  10346. }
  10347.  
  10348. button.accordion {
  10349. background-color: #eee;
  10350. color: #444;
  10351. cursor: pointer;
  10352. padding: 18px;
  10353. width: 100%;
  10354. border: none;
  10355. text-align: left;
  10356. outline: none;
  10357. font-size: 15px;
  10358. transition: .4s
  10359. }
  10360.  
  10361. button.accordion.active,button.accordion:hover {
  10362. background-color: #ddd
  10363. }
  10364.  
  10365. button.accordion:after {
  10366. content: '\002B';
  10367. color: #777;
  10368. font-weight: 700;
  10369. float: right;
  10370. margin-left: 5px
  10371. }
  10372.  
  10373. button.accordion.active:after {
  10374. content: "\2212"
  10375. }
  10376.  
  10377. div.panel {
  10378. padding: 0 18px;
  10379. background-color: #fff;
  10380. max-height: 0;
  10381. overflow: hidden;
  10382. transition: .6s ease-in-out;
  10383. opacity: 0
  10384. }
  10385.  
  10386. div.panel.show {
  10387. opacity: 1;
  10388. max-height: 500px
  10389. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement