Advertisement
Guest User

Untitled

a guest
Feb 12th, 2018
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 69.35 KB | None | 0 0
  1. /*!
  2.  * # Semantic UI 2.2.14 - Icon
  3.  * http://github.com/semantic-org/semantic-ui/
  4.  *
  5.  *
  6.  * Released under the MIT license
  7.  * http://opensource.org/licenses/MIT
  8.  *
  9.  */
  10. /*******************************
  11.              Icon
  12. *******************************/
  13. @font-face {
  14.   font-family: 'Icons';
  15.   src: url("vendor/semantic-ui/dist/themes/default/assets/fonts/icons.eot");
  16.   src: url("vendor/semantic-ui/dist/themes/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("vendor/semantic-ui/dist/themes/default/assets/fonts/icons.woff2") format('woff2'), url("vendor/semantic-ui/dist/themes/default/assets/fonts/icons.woff") format('woff'), url("vendor/semantic-ui/dist/themes/default/assets/fonts/icons.ttf") format('truetype'), url("vendor/semantic-ui/dist/themes/default/assets/fonts/icons.svg#icons") format('svg');
  17.   font-style: normal;
  18.   font-weight: normal;
  19.   font-variant: normal;
  20.   text-decoration: inherit;
  21.   text-transform: none;
  22. }
  23. i.icon {
  24.   display: inline-block;
  25.   opacity: 1;
  26.   margin: 0em 0.25rem 0em 0em;
  27.   width: 1.18em;
  28.   height: 1em;
  29.   font-family: 'Icons';
  30.   font-style: normal;
  31.   font-weight: normal;
  32.   text-decoration: inherit;
  33.   text-align: center;
  34.   speak: none;
  35.   font-smoothing: antialiased;
  36.   -moz-osx-font-smoothing: grayscale;
  37.   -webkit-font-smoothing: antialiased;
  38.   -webkit-backface-visibility: hidden;
  39.   backface-visibility: hidden;
  40. }
  41. i.icon:before {
  42.   background: none !important;
  43. }
  44. /*******************************
  45.              Types
  46. *******************************/
  47. /*--------------
  48.     Loading
  49. ---------------*/
  50. i.icon.loading {
  51.   height: 1em;
  52.   line-height: 1;
  53.   -webkit-animation: icon-loading 2s linear infinite;
  54.   animation: icon-loading 2s linear infinite;
  55. }
  56. @-webkit-keyframes icon-loading {
  57.   from {
  58.     -webkit-transform: rotate(0deg);
  59.     transform: rotate(0deg);
  60.   }
  61.  
  62.   to {
  63.     -webkit-transform: rotate(360deg);
  64.     transform: rotate(360deg);
  65.   }
  66. }
  67. @keyframes icon-loading {
  68.   from {
  69.     -webkit-transform: rotate(0deg);
  70.     transform: rotate(0deg);
  71.   }
  72.  
  73.   to {
  74.     -webkit-transform: rotate(360deg);
  75.     transform: rotate(360deg);
  76.   }
  77. }
  78. /*******************************
  79.              States
  80. *******************************/
  81. i.icon.hover {
  82.   opacity: 1 !important;
  83. }
  84. i.icon.active {
  85.   opacity: 1 !important;
  86. }
  87. i.emphasized.icon {
  88.   opacity: 1 !important;
  89. }
  90. i.disabled.icon {
  91.   opacity: 0.45 !important;
  92. }
  93. /*******************************
  94.            Variations
  95. *******************************/
  96. /*-------------------
  97.         Fitted
  98. --------------------*/
  99. i.fitted.icon {
  100.   width: auto;
  101.   margin: 0em;
  102. }
  103. /*-------------------
  104.          Link
  105. --------------------*/
  106. i.link.icon,
  107. i.link.icons {
  108.   cursor: pointer;
  109.   opacity: 0.8;
  110.   -webkit-transition: opacity 0.1s ease;
  111.   transition: opacity 0.1s ease;
  112. }
  113. i.link.icon:hover,
  114. i.link.icons:hover {
  115.   opacity: 1 !important;
  116. }
  117. /*-------------------
  118.       Circular
  119. --------------------*/
  120. i.circular.icon {
  121.   border-radius: 500em !important;
  122.   line-height: 1 !important;
  123.   padding: 0.5em 0.5em !important;
  124.   -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  125.   box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  126.   width: 2em !important;
  127.   height: 2em !important;
  128. }
  129. i.circular.inverted.icon {
  130.   border: none;
  131.   -webkit-box-shadow: none;
  132.   box-shadow: none;
  133. }
  134. /*-------------------
  135.       Flipped
  136. --------------------*/
  137. i.flipped.icon,
  138. i.horizontally.flipped.icon {
  139.   -webkit-transform: scale(-1, 1);
  140.   transform: scale(-1, 1);
  141. }
  142. i.vertically.flipped.icon {
  143.   -webkit-transform: scale(1, -1);
  144.   transform: scale(1, -1);
  145. }
  146. /*-------------------
  147.       Rotated
  148. --------------------*/
  149. i.rotated.icon,
  150. i.right.rotated.icon,
  151. i.clockwise.rotated.icon {
  152.   -webkit-transform: rotate(90deg);
  153.   transform: rotate(90deg);
  154. }
  155. i.left.rotated.icon,
  156. i.counterclockwise.rotated.icon {
  157.   -webkit-transform: rotate(-90deg);
  158.   transform: rotate(-90deg);
  159. }
  160. /*-------------------
  161.       Bordered
  162. --------------------*/
  163. i.bordered.icon {
  164.   line-height: 1;
  165.   vertical-align: baseline;
  166.   width: 2em;
  167.   height: 2em;
  168.   padding: 0.5em 0.41em !important;
  169.   -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  170.   box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  171. }
  172. i.bordered.inverted.icon {
  173.   border: none;
  174.   -webkit-box-shadow: none;
  175.   box-shadow: none;
  176. }
  177. /*-------------------
  178.       Inverted
  179. --------------------*/
  180. /* Inverted Shapes */
  181. i.inverted.bordered.icon,
  182. i.inverted.circular.icon {
  183.   background-color: #1B1C1D !important;
  184.   color: #FFFFFF !important;
  185. }
  186. i.inverted.icon {
  187.   color: #FFFFFF;
  188. }
  189. /*-------------------
  190.        Colors
  191. --------------------*/
  192. /* Red */
  193. i.red.icon {
  194.   color: #DB2828 !important;
  195. }
  196. i.inverted.red.icon {
  197.   color: #FF695E !important;
  198. }
  199. i.inverted.bordered.red.icon,
  200. i.inverted.circular.red.icon {
  201.   background-color: #DB2828 !important;
  202.   color: #FFFFFF !important;
  203. }
  204. /* Orange */
  205. i.orange.icon {
  206.   color: #F2711C !important;
  207. }
  208. i.inverted.orange.icon {
  209.   color: #FF851B !important;
  210. }
  211. i.inverted.bordered.orange.icon,
  212. i.inverted.circular.orange.icon {
  213.   background-color: #F2711C !important;
  214.   color: #FFFFFF !important;
  215. }
  216. /* Yellow */
  217. i.yellow.icon {
  218.   color: #FBBD08 !important;
  219. }
  220. i.inverted.yellow.icon {
  221.   color: #FFE21F !important;
  222. }
  223. i.inverted.bordered.yellow.icon,
  224. i.inverted.circular.yellow.icon {
  225.   background-color: #FBBD08 !important;
  226.   color: #FFFFFF !important;
  227. }
  228. /* Olive */
  229. i.olive.icon {
  230.   color: #B5CC18 !important;
  231. }
  232. i.inverted.olive.icon {
  233.   color: #D9E778 !important;
  234. }
  235. i.inverted.bordered.olive.icon,
  236. i.inverted.circular.olive.icon {
  237.   background-color: #B5CC18 !important;
  238.   color: #FFFFFF !important;
  239. }
  240. /* Green */
  241. i.green.icon {
  242.   color: #21BA45 !important;
  243. }
  244. i.inverted.green.icon {
  245.   color: #2ECC40 !important;
  246. }
  247. i.inverted.bordered.green.icon,
  248. i.inverted.circular.green.icon {
  249.   background-color: #21BA45 !important;
  250.   color: #FFFFFF !important;
  251. }
  252. /* Teal */
  253. i.teal.icon {
  254.   color: #00B5AD !important;
  255. }
  256. i.inverted.teal.icon {
  257.   color: #6DFFFF !important;
  258. }
  259. i.inverted.bordered.teal.icon,
  260. i.inverted.circular.teal.icon {
  261.   background-color: #00B5AD !important;
  262.   color: #FFFFFF !important;
  263. }
  264. /* Blue */
  265. i.blue.icon {
  266.   color: #2185D0 !important;
  267. }
  268. i.inverted.blue.icon {
  269.   color: #54C8FF !important;
  270. }
  271. i.inverted.bordered.blue.icon,
  272. i.inverted.circular.blue.icon {
  273.   background-color: #2185D0 !important;
  274.   color: #FFFFFF !important;
  275. }
  276. /* Violet */
  277. i.violet.icon {
  278.   color: #6435C9 !important;
  279. }
  280. i.inverted.violet.icon {
  281.   color: #A291FB !important;
  282. }
  283. i.inverted.bordered.violet.icon,
  284. i.inverted.circular.violet.icon {
  285.   background-color: #6435C9 !important;
  286.   color: #FFFFFF !important;
  287. }
  288. /* Purple */
  289. i.purple.icon {
  290.   color: #A333C8 !important;
  291. }
  292. i.inverted.purple.icon {
  293.   color: #DC73FF !important;
  294. }
  295. i.inverted.bordered.purple.icon,
  296. i.inverted.circular.purple.icon {
  297.   background-color: #A333C8 !important;
  298.   color: #FFFFFF !important;
  299. }
  300. /* Pink */
  301. i.pink.icon {
  302.   color: #E03997 !important;
  303. }
  304. i.inverted.pink.icon {
  305.   color: #FF8EDF !important;
  306. }
  307. i.inverted.bordered.pink.icon,
  308. i.inverted.circular.pink.icon {
  309.   background-color: #E03997 !important;
  310.   color: #FFFFFF !important;
  311. }
  312. /* Brown */
  313. i.brown.icon {
  314.   color: #A5673F !important;
  315. }
  316. i.inverted.brown.icon {
  317.   color: #D67C1C !important;
  318. }
  319. i.inverted.bordered.brown.icon,
  320. i.inverted.circular.brown.icon {
  321.   background-color: #A5673F !important;
  322.   color: #FFFFFF !important;
  323. }
  324. /* Grey */
  325. i.grey.icon {
  326.   color: #767676 !important;
  327. }
  328. i.inverted.grey.icon {
  329.   color: #DCDDDE !important;
  330. }
  331. i.inverted.bordered.grey.icon,
  332. i.inverted.circular.grey.icon {
  333.   background-color: #767676 !important;
  334.   color: #FFFFFF !important;
  335. }
  336. /* Black */
  337. i.black.icon {
  338.   color: #1B1C1D !important;
  339. }
  340. i.inverted.black.icon {
  341.   color: #545454 !important;
  342. }
  343. i.inverted.bordered.black.icon,
  344. i.inverted.circular.black.icon {
  345.   background-color: #1B1C1D !important;
  346.   color: #FFFFFF !important;
  347. }
  348. /*-------------------
  349.         Sizes
  350. --------------------*/
  351. i.mini.icon,
  352. i.mini.icons {
  353.   line-height: 1;
  354.   font-size: 0.4em;
  355. }
  356. i.tiny.icon,
  357. i.tiny.icons {
  358.   line-height: 1;
  359.   font-size: 0.5em;
  360. }
  361. i.small.icon,
  362. i.small.icons {
  363.   line-height: 1;
  364.   font-size: 0.75em;
  365. }
  366. i.icon,
  367. i.icons {
  368.   font-size: 1em;
  369. }
  370. i.large.icon,
  371. i.large.icons {
  372.   line-height: 1;
  373.   vertical-align: middle;
  374.   font-size: 1.5em;
  375. }
  376. i.big.icon,
  377. i.big.icons {
  378.   line-height: 1;
  379.   vertical-align: middle;
  380.   font-size: 2em;
  381. }
  382. i.huge.icon,
  383. i.huge.icons {
  384.   line-height: 1;
  385.   vertical-align: middle;
  386.   font-size: 4em;
  387. }
  388. i.massive.icon,
  389. i.massive.icons {
  390.   line-height: 1;
  391.   vertical-align: middle;
  392.   font-size: 8em;
  393. }
  394. /*******************************
  395.             Groups
  396. *******************************/
  397. i.icons {
  398.   display: inline-block;
  399.   position: relative;
  400.   line-height: 1;
  401. }
  402. i.icons .icon {
  403.   position: absolute;
  404.   top: 50%;
  405.   left: 50%;
  406.   -webkit-transform: translateX(-50%) translateY(-50%);
  407.   transform: translateX(-50%) translateY(-50%);
  408.   margin: 0em;
  409.   margin: 0;
  410. }
  411. i.icons .icon:first-child {
  412.   position: static;
  413.   width: auto;
  414.   height: auto;
  415.   vertical-align: top;
  416.   -webkit-transform: none;
  417.   transform: none;
  418.   margin-right: 0.25rem;
  419. }
  420. /* Corner Icon */
  421. i.icons .corner.icon {
  422.   top: auto;
  423.   left: auto;
  424.   right: 0;
  425.   bottom: 0;
  426.   -webkit-transform: none;
  427.   transform: none;
  428.   font-size: 0.45em;
  429.   text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
  430. }
  431. i.icons .top.right.corner.icon {
  432.   top: 0;
  433.   left: auto;
  434.   right: 0;
  435.   bottom: auto;
  436. }
  437. i.icons .top.left.corner.icon {
  438.   top: 0;
  439.   left: 0;
  440.   right: auto;
  441.   bottom: auto;
  442. }
  443. i.icons .bottom.left.corner.icon {
  444.   top: auto;
  445.   left: 0;
  446.   right: auto;
  447.   bottom: 0;
  448. }
  449. i.icons .bottom.right.corner.icon {
  450.   top: auto;
  451.   left: auto;
  452.   right: 0;
  453.   bottom: 0;
  454. }
  455. i.icons .inverted.corner.icon {
  456.   text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D;
  457. }
  458. /*
  459.  * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  460.  * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  461.  */
  462. /*******************************
  463.  
  464. Semantic-UI integration of font-awesome :
  465.  
  466. ///class names are separated
  467. i.icon.circle => i.icon.circle
  468. i.icon.circle-o => i.icon.circle.outline
  469.  
  470. //abbreviation are replaced by full letters:
  471. i.icon.ellipsis-h => i.icon.ellipsis.horizontal
  472. i.icon.ellipsis-v => i.icon.ellipsis.vertical
  473. .alpha => .i.icon.alphabet
  474. .asc => .i.icon.ascending
  475. .desc => .i.icon.descending
  476. .alt =>.alternate
  477.  
  478. ASCII order is conserved for easier maintenance.
  479.  
  480. Icons that only have one style 'outline', 'square' etc do not require this class
  481. for instance `lemon icon` not `lemon outline icon` since there is only one lemon
  482.  
  483. *******************************/
  484. /*******************************
  485.             Icons
  486. *******************************/
  487. /* Web Content */
  488. i.icon.search:before {
  489.   content: "\f002";
  490. }
  491. i.icon.mail.outline:before {
  492.   content: "\f003";
  493. }
  494. i.icon.signal:before {
  495.   content: "\f012";
  496. }
  497. i.icon.setting:before {
  498.   content: "\f013";
  499. }
  500. i.icon.home:before {
  501.   content: "\f015";
  502. }
  503. i.icon.inbox:before {
  504.   content: "\f01c";
  505. }
  506. i.icon.browser:before {
  507.   content: "\f022";
  508. }
  509. i.icon.tag:before {
  510.   content: "\f02b";
  511. }
  512. i.icon.tags:before {
  513.   content: "\f02c";
  514. }
  515. i.icon.image:before {
  516.   content: "\f03e";
  517. }
  518. i.icon.calendar:before {
  519.   content: "\f073";
  520. }
  521. i.icon.comment:before {
  522.   content: "\f075";
  523. }
  524. i.icon.shop:before {
  525.   content: "\f07a";
  526. }
  527. i.icon.comments:before {
  528.   content: "\f086";
  529. }
  530. i.icon.external:before {
  531.   content: "\f08e";
  532. }
  533. i.icon.privacy:before {
  534.   content: "\f084";
  535. }
  536. i.icon.settings:before {
  537.   content: "\f085";
  538. }
  539. i.icon.comments:before {
  540.   content: "\f086";
  541. }
  542. i.icon.external:before {
  543.   content: "\f08e";
  544. }
  545. i.icon.trophy:before {
  546.   content: "\f091";
  547. }
  548. i.icon.payment:before {
  549.   content: "\f09d";
  550. }
  551. i.icon.feed:before {
  552.   content: "\f09e";
  553. }
  554. i.icon.alarm.outline:before {
  555.   content: "\f0a2";
  556. }
  557. i.icon.tasks:before {
  558.   content: "\f0ae";
  559. }
  560. i.icon.cloud:before {
  561.   content: "\f0c2";
  562. }
  563. i.icon.lab:before {
  564.   content: "\f0c3";
  565. }
  566. i.icon.mail:before {
  567.   content: "\f0e0";
  568. }
  569. i.icon.dashboard:before {
  570.   content: "\f0e4";
  571. }
  572. i.icon.comment.outline:before {
  573.   content: "\f0e5";
  574. }
  575. i.icon.comments.outline:before {
  576.   content: "\f0e6";
  577. }
  578. i.icon.sitemap:before {
  579.   content: "\f0e8";
  580. }
  581. i.icon.idea:before {
  582.   content: "\f0eb";
  583. }
  584. i.icon.alarm:before {
  585.   content: "\f0f3";
  586. }
  587. i.icon.terminal:before {
  588.   content: "\f120";
  589. }
  590. i.icon.code:before {
  591.   content: "\f121";
  592. }
  593. i.icon.protect:before {
  594.   content: "\f132";
  595. }
  596. i.icon.calendar.outline:before {
  597.   content: "\f133";
  598. }
  599. i.icon.ticket:before {
  600.   content: "\f145";
  601. }
  602. i.icon.external.square:before {
  603.   content: "\f14c";
  604. }
  605. i.icon.bug:before {
  606.   content: "\f188";
  607. }
  608. i.icon.mail.square:before {
  609.   content: "\f199";
  610. }
  611. i.icon.history:before {
  612.   content: "\f1da";
  613. }
  614. i.icon.options:before {
  615.   content: "\f1de";
  616. }
  617. i.icon.text.telephone:before {
  618.   content: "\f1e4";
  619. }
  620. i.icon.find:before {
  621.   content: "\f1e5";
  622. }
  623. i.icon.alarm.mute:before {
  624.   content: "\f1f6";
  625. }
  626. i.icon.alarm.mute.outline:before {
  627.   content: "\f1f7";
  628. }
  629. i.icon.copyright:before {
  630.   content: "\f1f9";
  631. }
  632. i.icon.at:before {
  633.   content: "\f1fa";
  634. }
  635. i.icon.eyedropper:before {
  636.   content: "\f1fb";
  637. }
  638. i.icon.paint.brush:before {
  639.   content: "\f1fc";
  640. }
  641. i.icon.heartbeat:before {
  642.   content: "\f21e";
  643. }
  644. i.icon.mouse.pointer:before {
  645.   content: "\f245";
  646. }
  647. i.icon.hourglass.empty:before {
  648.   content: "\f250";
  649. }
  650. i.icon.hourglass.start:before {
  651.   content: "\f251";
  652. }
  653. i.icon.hourglass.half:before {
  654.   content: "\f252";
  655. }
  656. i.icon.hourglass.end:before {
  657.   content: "\f253";
  658. }
  659. i.icon.hourglass.full:before {
  660.   content: "\f254";
  661. }
  662. i.icon.hand.pointer:before {
  663.   content: "\f25a";
  664. }
  665. i.icon.trademark:before {
  666.   content: "\f25c";
  667. }
  668. i.icon.registered:before {
  669.   content: "\f25d";
  670. }
  671. i.icon.creative.commons:before {
  672.   content: "\f25e";
  673. }
  674. i.icon.add.to.calendar:before {
  675.   content: "\f271";
  676. }
  677. i.icon.remove.from.calendar:before {
  678.   content: "\f272";
  679. }
  680. i.icon.delete.calendar:before {
  681.   content: "\f273";
  682. }
  683. i.icon.checked.calendar:before {
  684.   content: "\f274";
  685. }
  686. i.icon.industry:before {
  687.   content: "\f275";
  688. }
  689. i.icon.shopping.bag:before {
  690.   content: "\f290";
  691. }
  692. i.icon.shopping.basket:before {
  693.   content: "\f291";
  694. }
  695. i.icon.hashtag:before {
  696.   content: "\f292";
  697. }
  698. i.icon.percent:before {
  699.   content: "\f295";
  700. }
  701. i.icon.handshake:before {
  702.   content: "\f2b5";
  703. }
  704. i.icon.open.envelope:before {
  705.   content: "\f2b6";
  706. }
  707. i.icon.open.envelope.outline:before {
  708.   content: "\f2b7";
  709. }
  710. i.icon.address.book:before {
  711.   content: "\f2b9";
  712. }
  713. i.icon.address.book.outline:before {
  714.   content: "\f2ba";
  715. }
  716. i.icon.address.card:before {
  717.   content: "\f2bb";
  718. }
  719. i.icon.address.card.outline:before {
  720.   content: "\f2bc";
  721. }
  722. i.icon.id.badge:before {
  723.   content: "\f2c1";
  724. }
  725. i.icon.id.card:before {
  726.   content: "\f2c2";
  727. }
  728. i.icon.id.card.outline:before {
  729.   content: "\f2c3";
  730. }
  731. i.icon.podcast:before {
  732.   content: "\f2ce";
  733. }
  734. i.icon.window.maximize:before {
  735.   content: "\f2d0";
  736. }
  737. i.icon.window.minimize:before {
  738.   content: "\f2d1";
  739. }
  740. i.icon.window.restore:before {
  741.   content: "\f2d2";
  742. }
  743. i.icon.window.close:before {
  744.   content: "\f2d3";
  745. }
  746. i.icon.window.close.outline:before {
  747.   content: "\f2d4";
  748. }
  749. /* User Actions */
  750. i.icon.wait:before {
  751.   content: "\f017";
  752. }
  753. i.icon.download:before {
  754.   content: "\f019";
  755. }
  756. i.icon.repeat:before {
  757.   content: "\f01e";
  758. }
  759. i.icon.refresh:before {
  760.   content: "\f021";
  761. }
  762. i.icon.lock:before {
  763.   content: "\f023";
  764. }
  765. i.icon.bookmark:before {
  766.   content: "\f02e";
  767. }
  768. i.icon.print:before {
  769.   content: "\f02f";
  770. }
  771. i.icon.write:before {
  772.   content: "\f040";
  773. }
  774. i.icon.adjust:before {
  775.   content: "\f042";
  776. }
  777. i.icon.theme:before {
  778.   content: "\f043";
  779. }
  780. i.icon.edit:before {
  781.   content: "\f044";
  782. }
  783. i.icon.external.share:before {
  784.   content: "\f045";
  785. }
  786. i.icon.ban:before {
  787.   content: "\f05e";
  788. }
  789. i.icon.mail.forward:before {
  790.   content: "\f064";
  791. }
  792. i.icon.share:before {
  793.   content: "\f064";
  794. }
  795. i.icon.expand:before {
  796.   content: "\f065";
  797. }
  798. i.icon.compress:before {
  799.   content: "\f066";
  800. }
  801. i.icon.unhide:before {
  802.   content: "\f06e";
  803. }
  804. i.icon.hide:before {
  805.   content: "\f070";
  806. }
  807. i.icon.random:before {
  808.   content: "\f074";
  809. }
  810. i.icon.retweet:before {
  811.   content: "\f079";
  812. }
  813. i.icon.sign.out:before {
  814.   content: "\f08b";
  815. }
  816. i.icon.pin:before {
  817.   content: "\f08d";
  818. }
  819. i.icon.sign.in:before {
  820.   content: "\f090";
  821. }
  822. i.icon.upload:before {
  823.   content: "\f093";
  824. }
  825. i.icon.call:before {
  826.   content: "\f095";
  827. }
  828. i.icon.remove.bookmark:before {
  829.   content: "\f097";
  830. }
  831. i.icon.call.square:before {
  832.   content: "\f098";
  833. }
  834. i.icon.unlock:before {
  835.   content: "\f09c";
  836. }
  837. i.icon.configure:before {
  838.   content: "\f0ad";
  839. }
  840. i.icon.filter:before {
  841.   content: "\f0b0";
  842. }
  843. i.icon.wizard:before {
  844.   content: "\f0d0";
  845. }
  846. i.icon.undo:before {
  847.   content: "\f0e2";
  848. }
  849. i.icon.exchange:before {
  850.   content: "\f0ec";
  851. }
  852. i.icon.cloud.download:before {
  853.   content: "\f0ed";
  854. }
  855. i.icon.cloud.upload:before {
  856.   content: "\f0ee";
  857. }
  858. i.icon.reply:before {
  859.   content: "\f112";
  860. }
  861. i.icon.reply.all:before {
  862.   content: "\f122";
  863. }
  864. i.icon.erase:before {
  865.   content: "\f12d";
  866. }
  867. i.icon.unlock.alternate:before {
  868.   content: "\f13e";
  869. }
  870. i.icon.write.square:before {
  871.   content: "\f14b";
  872. }
  873. i.icon.share.square:before {
  874.   content: "\f14d";
  875. }
  876. i.icon.archive:before {
  877.   content: "\f187";
  878. }
  879. i.icon.translate:before {
  880.   content: "\f1ab";
  881. }
  882. i.icon.recycle:before {
  883.   content: "\f1b8";
  884. }
  885. i.icon.send:before {
  886.   content: "\f1d8";
  887. }
  888. i.icon.send.outline:before {
  889.   content: "\f1d9";
  890. }
  891. i.icon.share.alternate:before {
  892.   content: "\f1e0";
  893. }
  894. i.icon.share.alternate.square:before {
  895.   content: "\f1e1";
  896. }
  897. i.icon.add.to.cart:before {
  898.   content: "\f217";
  899. }
  900. i.icon.in.cart:before {
  901.   content: "\f218";
  902. }
  903. i.icon.add.user:before {
  904.   content: "\f234";
  905. }
  906. i.icon.remove.user:before {
  907.   content: "\f235";
  908. }
  909. i.icon.object.group:before {
  910.   content: "\f247";
  911. }
  912. i.icon.object.ungroup:before {
  913.   content: "\f248";
  914. }
  915. i.icon.clone:before {
  916.   content: "\f24d";
  917. }
  918. i.icon.talk:before {
  919.   content: "\f27a";
  920. }
  921. i.icon.talk.outline:before {
  922.   content: "\f27b";
  923. }
  924. /* Messages */
  925. i.icon.help.circle:before {
  926.   content: "\f059";
  927. }
  928. i.icon.info.circle:before {
  929.   content: "\f05a";
  930. }
  931. i.icon.warning.circle:before {
  932.   content: "\f06a";
  933. }
  934. i.icon.warning.sign:before {
  935.   content: "\f071";
  936. }
  937. i.icon.announcement:before {
  938.   content: "\f0a1";
  939. }
  940. i.icon.help:before {
  941.   content: "\f128";
  942. }
  943. i.icon.info:before {
  944.   content: "\f129";
  945. }
  946. i.icon.warning:before {
  947.   content: "\f12a";
  948. }
  949. i.icon.birthday:before {
  950.   content: "\f1fd";
  951. }
  952. i.icon.help.circle.outline:before {
  953.   content: "\f29c";
  954. }
  955. /* Users */
  956. i.icon.user:before {
  957.   content: "\f007";
  958. }
  959. i.icon.users:before {
  960.   content: "\f0c0";
  961. }
  962. i.icon.doctor:before {
  963.   content: "\f0f0";
  964. }
  965. i.icon.handicap:before {
  966.   content: "\f193";
  967. }
  968. i.icon.student:before {
  969.   content: "\f19d";
  970. }
  971. i.icon.child:before {
  972.   content: "\f1ae";
  973. }
  974. i.icon.spy:before {
  975.   content: "\f21b";
  976. }
  977. i.icon.user.circle:before {
  978.   content: "\f2bd";
  979. }
  980. i.icon.user.circle.outline:before {
  981.   content: "\f2be";
  982. }
  983. i.icon.user.outline:before {
  984.   content: "\f2c0";
  985. }
  986. /* Gender & Sexuality */
  987. i.icon.female:before {
  988.   content: "\f182";
  989. }
  990. i.icon.male:before {
  991.   content: "\f183";
  992. }
  993. i.icon.woman:before {
  994.   content: "\f221";
  995. }
  996. i.icon.man:before {
  997.   content: "\f222";
  998. }
  999. i.icon.non.binary.transgender:before {
  1000.   content: "\f223";
  1001. }
  1002. i.icon.intergender:before {
  1003.   content: "\f224";
  1004. }
  1005. i.icon.transgender:before {
  1006.   content: "\f225";
  1007. }
  1008. i.icon.lesbian:before {
  1009.   content: "\f226";
  1010. }
  1011. i.icon.gay:before {
  1012.   content: "\f227";
  1013. }
  1014. i.icon.heterosexual:before {
  1015.   content: "\f228";
  1016. }
  1017. i.icon.other.gender:before {
  1018.   content: "\f229";
  1019. }
  1020. i.icon.other.gender.vertical:before {
  1021.   content: "\f22a";
  1022. }
  1023. i.icon.other.gender.horizontal:before {
  1024.   content: "\f22b";
  1025. }
  1026. i.icon.neuter:before {
  1027.   content: "\f22c";
  1028. }
  1029. i.icon.genderless:before {
  1030.   content: "\f22d";
  1031. }
  1032. /* Accessibility */
  1033. i.icon.universal.access:before {
  1034.   content: "\f29a";
  1035. }
  1036. i.icon.wheelchair:before {
  1037.   content: "\f29b";
  1038. }
  1039. i.icon.blind:before {
  1040.   content: "\f29d";
  1041. }
  1042. i.icon.audio.description:before {
  1043.   content: "\f29e";
  1044. }
  1045. i.icon.volume.control.phone:before {
  1046.   content: "\f2a0";
  1047. }
  1048. i.icon.braille:before {
  1049.   content: "\f2a1";
  1050. }
  1051. i.icon.asl:before {
  1052.   content: "\f2a3";
  1053. }
  1054. i.icon.assistive.listening.systems:before {
  1055.   content: "\f2a2";
  1056. }
  1057. i.icon.deafness:before {
  1058.   content: "\f2a4";
  1059. }
  1060. i.icon.sign.language:before {
  1061.   content: "\f2a7";
  1062. }
  1063. i.icon.low.vision:before {
  1064.   content: "\f2a8";
  1065. }
  1066. /* View Adjustment */
  1067. i.icon.block.layout:before {
  1068.   content: "\f009";
  1069. }
  1070. i.icon.grid.layout:before {
  1071.   content: "\f00a";
  1072. }
  1073. i.icon.list.layout:before {
  1074.   content: "\f00b";
  1075. }
  1076. i.icon.zoom:before {
  1077.   content: "\f00e";
  1078. }
  1079. i.icon.zoom.out:before {
  1080.   content: "\f010";
  1081. }
  1082. i.icon.resize.vertical:before {
  1083.   content: "\f07d";
  1084. }
  1085. i.icon.resize.horizontal:before {
  1086.   content: "\f07e";
  1087. }
  1088. i.icon.maximize:before {
  1089.   content: "\f0b2";
  1090. }
  1091. i.icon.crop:before {
  1092.   content: "\f125";
  1093. }
  1094. /* Literal Objects */
  1095. i.icon.cocktail:before {
  1096.   content: "\f000";
  1097. }
  1098. i.icon.road:before {
  1099.   content: "\f018";
  1100. }
  1101. i.icon.flag:before {
  1102.   content: "\f024";
  1103. }
  1104. i.icon.book:before {
  1105.   content: "\f02d";
  1106. }
  1107. i.icon.gift:before {
  1108.   content: "\f06b";
  1109. }
  1110. i.icon.leaf:before {
  1111.   content: "\f06c";
  1112. }
  1113. i.icon.fire:before {
  1114.   content: "\f06d";
  1115. }
  1116. i.icon.plane:before {
  1117.   content: "\f072";
  1118. }
  1119. i.icon.magnet:before {
  1120.   content: "\f076";
  1121. }
  1122. i.icon.lemon:before {
  1123.   content: "\f094";
  1124. }
  1125. i.icon.world:before {
  1126.   content: "\f0ac";
  1127. }
  1128. i.icon.travel:before {
  1129.   content: "\f0b1";
  1130. }
  1131. i.icon.shipping:before {
  1132.   content: "\f0d1";
  1133. }
  1134. i.icon.money:before {
  1135.   content: "\f0d6";
  1136. }
  1137. i.icon.legal:before {
  1138.   content: "\f0e3";
  1139. }
  1140. i.icon.lightning:before {
  1141.   content: "\f0e7";
  1142. }
  1143. i.icon.umbrella:before {
  1144.   content: "\f0e9";
  1145. }
  1146. i.icon.treatment:before {
  1147.   content: "\f0f1";
  1148. }
  1149. i.icon.suitcase:before {
  1150.   content: "\f0f2";
  1151. }
  1152. i.icon.bar:before {
  1153.   content: "\f0fc";
  1154. }
  1155. i.icon.flag.outline:before {
  1156.   content: "\f11d";
  1157. }
  1158. i.icon.flag.checkered:before {
  1159.   content: "\f11e";
  1160. }
  1161. i.icon.puzzle:before {
  1162.   content: "\f12e";
  1163. }
  1164. i.icon.fire.extinguisher:before {
  1165.   content: "\f134";
  1166. }
  1167. i.icon.rocket:before {
  1168.   content: "\f135";
  1169. }
  1170. i.icon.anchor:before {
  1171.   content: "\f13d";
  1172. }
  1173. i.icon.bullseye:before {
  1174.   content: "\f140";
  1175. }
  1176. i.icon.sun:before {
  1177.   content: "\f185";
  1178. }
  1179. i.icon.moon:before {
  1180.   content: "\f186";
  1181. }
  1182. i.icon.fax:before {
  1183.   content: "\f1ac";
  1184. }
  1185. i.icon.life.ring:before {
  1186.   content: "\f1cd";
  1187. }
  1188. i.icon.bomb:before {
  1189.   content: "\f1e2";
  1190. }
  1191. i.icon.soccer:before {
  1192.   content: "\f1e3";
  1193. }
  1194. i.icon.calculator:before {
  1195.   content: "\f1ec";
  1196. }
  1197. i.icon.diamond:before {
  1198.   content: "\f219";
  1199. }
  1200. i.icon.sticky.note:before {
  1201.   content: "\f249";
  1202. }
  1203. i.icon.sticky.note.outline:before {
  1204.   content: "\f24a";
  1205. }
  1206. i.icon.law:before {
  1207.   content: "\f24e";
  1208. }
  1209. i.icon.hand.peace:before {
  1210.   content: "\f25b";
  1211. }
  1212. i.icon.hand.rock:before {
  1213.   content: "\f255";
  1214. }
  1215. i.icon.hand.paper:before {
  1216.   content: "\f256";
  1217. }
  1218. i.icon.hand.scissors:before {
  1219.   content: "\f257";
  1220. }
  1221. i.icon.hand.lizard:before {
  1222.   content: "\f258";
  1223. }
  1224. i.icon.hand.spock:before {
  1225.   content: "\f259";
  1226. }
  1227. i.icon.tv:before {
  1228.   content: "\f26c";
  1229. }
  1230. i.icon.thermometer.full:before {
  1231.   content: "\f2c7";
  1232. }
  1233. i.icon.thermometer.three.quarters:before {
  1234.   content: "\f2c8";
  1235. }
  1236. i.icon.thermometer.half:before {
  1237.   content: "\f2c9";
  1238. }
  1239. i.icon.thermometer.quarter:before {
  1240.   content: "\f2ca";
  1241. }
  1242. i.icon.thermometer.empty:before {
  1243.   content: "\f2cb";
  1244. }
  1245. i.icon.shower:before {
  1246.   content: "\f2cc";
  1247. }
  1248. i.icon.bathtub:before {
  1249.   content: "\f2cd";
  1250. }
  1251. i.icon.snowflake:before {
  1252.   content: "\f2dc";
  1253. }
  1254. /* Shapes */
  1255. i.icon.crosshairs:before {
  1256.   content: "\f05b";
  1257. }
  1258. i.icon.asterisk:before {
  1259.   content: "\f069";
  1260. }
  1261. i.icon.square.outline:before {
  1262.   content: "\f096";
  1263. }
  1264. i.icon.certificate:before {
  1265.   content: "\f0a3";
  1266. }
  1267. i.icon.square:before {
  1268.   content: "\f0c8";
  1269. }
  1270. i.icon.quote.left:before {
  1271.   content: "\f10d";
  1272. }
  1273. i.icon.quote.right:before {
  1274.   content: "\f10e";
  1275. }
  1276. i.icon.spinner:before {
  1277.   content: "\f110";
  1278. }
  1279. i.icon.circle:before {
  1280.   content: "\f111";
  1281. }
  1282. i.icon.ellipsis.horizontal:before {
  1283.   content: "\f141";
  1284. }
  1285. i.icon.ellipsis.vertical:before {
  1286.   content: "\f142";
  1287. }
  1288. i.icon.cube:before {
  1289.   content: "\f1b2";
  1290. }
  1291. i.icon.cubes:before {
  1292.   content: "\f1b3";
  1293. }
  1294. i.icon.circle.notched:before {
  1295.   content: "\f1ce";
  1296. }
  1297. i.icon.circle.thin:before {
  1298.   content: "\f1db";
  1299. }
  1300. /* Item Selection */
  1301. i.icon.checkmark:before {
  1302.   content: "\f00c";
  1303. }
  1304. i.icon.remove:before {
  1305.   content: "\f00d";
  1306. }
  1307. i.icon.checkmark.box:before {
  1308.   content: "\f046";
  1309. }
  1310. i.icon.move:before {
  1311.   content: "\f047";
  1312. }
  1313. i.icon.add.circle:before {
  1314.   content: "\f055";
  1315. }
  1316. i.icon.minus.circle:before {
  1317.   content: "\f056";
  1318. }
  1319. i.icon.remove.circle:before {
  1320.   content: "\f057";
  1321. }
  1322. i.icon.check.circle:before {
  1323.   content: "\f058";
  1324. }
  1325. i.icon.remove.circle.outline:before {
  1326.   content: "\f05c";
  1327. }
  1328. i.icon.check.circle.outline:before {
  1329.   content: "\f05d";
  1330. }
  1331. i.icon.plus:before {
  1332.   content: "\f067";
  1333. }
  1334. i.icon.minus:before {
  1335.   content: "\f068";
  1336. }
  1337. i.icon.add.square:before {
  1338.   content: "\f0fe";
  1339. }
  1340. i.icon.radio:before {
  1341.   content: "\f10c";
  1342. }
  1343. i.icon.minus.square:before {
  1344.   content: "\f146";
  1345. }
  1346. i.icon.minus.square.outline:before {
  1347.   content: "\f147";
  1348. }
  1349. i.icon.check.square:before {
  1350.   content: "\f14a";
  1351. }
  1352. i.icon.selected.radio:before {
  1353.   content: "\f192";
  1354. }
  1355. i.icon.plus.square.outline:before {
  1356.   content: "\f196";
  1357. }
  1358. i.icon.toggle.off:before {
  1359.   content: "\f204";
  1360. }
  1361. i.icon.toggle.on:before {
  1362.   content: "\f205";
  1363. }
  1364. /* Media */
  1365. i.icon.film:before {
  1366.   content: "\f008";
  1367. }
  1368. i.icon.sound:before {
  1369.   content: "\f025";
  1370. }
  1371. i.icon.photo:before {
  1372.   content: "\f030";
  1373. }
  1374. i.icon.bar.chart:before {
  1375.   content: "\f080";
  1376. }
  1377. i.icon.camera.retro:before {
  1378.   content: "\f083";
  1379. }
  1380. i.icon.newspaper:before {
  1381.   content: "\f1ea";
  1382. }
  1383. i.icon.area.chart:before {
  1384.   content: "\f1fe";
  1385. }
  1386. i.icon.pie.chart:before {
  1387.   content: "\f200";
  1388. }
  1389. i.icon.line.chart:before {
  1390.   content: "\f201";
  1391. }
  1392. /* Pointers */
  1393. i.icon.arrow.circle.outline.down:before {
  1394.   content: "\f01a";
  1395. }
  1396. i.icon.arrow.circle.outline.up:before {
  1397.   content: "\f01b";
  1398. }
  1399. i.icon.chevron.left:before {
  1400.   content: "\f053";
  1401. }
  1402. i.icon.chevron.right:before {
  1403.   content: "\f054";
  1404. }
  1405. i.icon.arrow.left:before {
  1406.   content: "\f060";
  1407. }
  1408. i.icon.arrow.right:before {
  1409.   content: "\f061";
  1410. }
  1411. i.icon.arrow.up:before {
  1412.   content: "\f062";
  1413. }
  1414. i.icon.arrow.down:before {
  1415.   content: "\f063";
  1416. }
  1417. i.icon.chevron.up:before {
  1418.   content: "\f077";
  1419. }
  1420. i.icon.chevron.down:before {
  1421.   content: "\f078";
  1422. }
  1423. i.icon.pointing.right:before {
  1424.   content: "\f0a4";
  1425. }
  1426. i.icon.pointing.left:before {
  1427.   content: "\f0a5";
  1428. }
  1429. i.icon.pointing.up:before {
  1430.   content: "\f0a6";
  1431. }
  1432. i.icon.pointing.down:before {
  1433.   content: "\f0a7";
  1434. }
  1435. i.icon.arrow.circle.left:before {
  1436.   content: "\f0a8";
  1437. }
  1438. i.icon.arrow.circle.right:before {
  1439.   content: "\f0a9";
  1440. }
  1441. i.icon.arrow.circle.up:before {
  1442.   content: "\f0aa";
  1443. }
  1444. i.icon.arrow.circle.down:before {
  1445.   content: "\f0ab";
  1446. }
  1447. i.icon.caret.down:before {
  1448.   content: "\f0d7";
  1449. }
  1450. i.icon.caret.up:before {
  1451.   content: "\f0d8";
  1452. }
  1453. i.icon.caret.left:before {
  1454.   content: "\f0d9";
  1455. }
  1456. i.icon.caret.right:before {
  1457.   content: "\f0da";
  1458. }
  1459. i.icon.angle.double.left:before {
  1460.   content: "\f100";
  1461. }
  1462. i.icon.angle.double.right:before {
  1463.   content: "\f101";
  1464. }
  1465. i.icon.angle.double.up:before {
  1466.   content: "\f102";
  1467. }
  1468. i.icon.angle.double.down:before {
  1469.   content: "\f103";
  1470. }
  1471. i.icon.angle.left:before {
  1472.   content: "\f104";
  1473. }
  1474. i.icon.angle.right:before {
  1475.   content: "\f105";
  1476. }
  1477. i.icon.angle.up:before {
  1478.   content: "\f106";
  1479. }
  1480. i.icon.angle.down:before {
  1481.   content: "\f107";
  1482. }
  1483. i.icon.chevron.circle.left:before {
  1484.   content: "\f137";
  1485. }
  1486. i.icon.chevron.circle.right:before {
  1487.   content: "\f138";
  1488. }
  1489. i.icon.chevron.circle.up:before {
  1490.   content: "\f139";
  1491. }
  1492. i.icon.chevron.circle.down:before {
  1493.   content: "\f13a";
  1494. }
  1495. i.icon.toggle.down:before {
  1496.   content: "\f150";
  1497. }
  1498. i.icon.toggle.up:before {
  1499.   content: "\f151";
  1500. }
  1501. i.icon.toggle.right:before {
  1502.   content: "\f152";
  1503. }
  1504. i.icon.long.arrow.down:before {
  1505.   content: "\f175";
  1506. }
  1507. i.icon.long.arrow.up:before {
  1508.   content: "\f176";
  1509. }
  1510. i.icon.long.arrow.left:before {
  1511.   content: "\f177";
  1512. }
  1513. i.icon.long.arrow.right:before {
  1514.   content: "\f178";
  1515. }
  1516. i.icon.arrow.circle.outline.right:before {
  1517.   content: "\f18e";
  1518. }
  1519. i.icon.arrow.circle.outline.left:before {
  1520.   content: "\f190";
  1521. }
  1522. i.icon.toggle.left:before {
  1523.   content: "\f191";
  1524. }
  1525. /* Mobile */
  1526. i.icon.tablet:before {
  1527.   content: "\f10a";
  1528. }
  1529. i.icon.mobile:before {
  1530.   content: "\f10b";
  1531. }
  1532. i.icon.battery.full:before {
  1533.   content: "\f240";
  1534. }
  1535. i.icon.battery.high:before {
  1536.   content: "\f241";
  1537. }
  1538. i.icon.battery.medium:before {
  1539.   content: "\f242";
  1540. }
  1541. i.icon.battery.low:before {
  1542.   content: "\f243";
  1543. }
  1544. i.icon.battery.empty:before {
  1545.   content: "\f244";
  1546. }
  1547. /* Computer */
  1548. i.icon.power:before {
  1549.   content: "\f011";
  1550. }
  1551. i.icon.trash.outline:before {
  1552.   content: "\f014";
  1553. }
  1554. i.icon.disk.outline:before {
  1555.   content: "\f0a0";
  1556. }
  1557. i.icon.desktop:before {
  1558.   content: "\f108";
  1559. }
  1560. i.icon.laptop:before {
  1561.   content: "\f109";
  1562. }
  1563. i.icon.game:before {
  1564.   content: "\f11b";
  1565. }
  1566. i.icon.keyboard:before {
  1567.   content: "\f11c";
  1568. }
  1569. i.icon.plug:before {
  1570.   content: "\f1e6";
  1571. }
  1572. /* File System */
  1573. i.icon.trash:before {
  1574.   content: "\f1f8";
  1575. }
  1576. i.icon.file.outline:before {
  1577.   content: "\f016";
  1578. }
  1579. i.icon.folder:before {
  1580.   content: "\f07b";
  1581. }
  1582. i.icon.folder.open:before {
  1583.   content: "\f07c";
  1584. }
  1585. i.icon.file.text.outline:before {
  1586.   content: "\f0f6";
  1587. }
  1588. i.icon.folder.outline:before {
  1589.   content: "\f114";
  1590. }
  1591. i.icon.folder.open.outline:before {
  1592.   content: "\f115";
  1593. }
  1594. i.icon.level.up:before {
  1595.   content: "\f148";
  1596. }
  1597. i.icon.level.down:before {
  1598.   content: "\f149";
  1599. }
  1600. i.icon.file:before {
  1601.   content: "\f15b";
  1602. }
  1603. i.icon.file.text:before {
  1604.   content: "\f15c";
  1605. }
  1606. i.icon.file.pdf.outline:before {
  1607.   content: "\f1c1";
  1608. }
  1609. i.icon.file.word.outline:before {
  1610.   content: "\f1c2";
  1611. }
  1612. i.icon.file.excel.outline:before {
  1613.   content: "\f1c3";
  1614. }
  1615. i.icon.file.powerpoint.outline:before {
  1616.   content: "\f1c4";
  1617. }
  1618. i.icon.file.image.outline:before {
  1619.   content: "\f1c5";
  1620. }
  1621. i.icon.file.archive.outline:before {
  1622.   content: "\f1c6";
  1623. }
  1624. i.icon.file.audio.outline:before {
  1625.   content: "\f1c7";
  1626. }
  1627. i.icon.file.video.outline:before {
  1628.   content: "\f1c8";
  1629. }
  1630. i.icon.file.code.outline:before {
  1631.   content: "\f1c9";
  1632. }
  1633. /* Technologies */
  1634. i.icon.qrcode:before {
  1635.   content: "\f029";
  1636. }
  1637. i.icon.barcode:before {
  1638.   content: "\f02a";
  1639. }
  1640. i.icon.rss:before {
  1641.   content: "\f09e";
  1642. }
  1643. i.icon.fork:before {
  1644.   content: "\f126";
  1645. }
  1646. i.icon.html5:before {
  1647.   content: "\f13b";
  1648. }
  1649. i.icon.css3:before {
  1650.   content: "\f13c";
  1651. }
  1652. i.icon.rss.square:before {
  1653.   content: "\f143";
  1654. }
  1655. i.icon.openid:before {
  1656.   content: "\f19b";
  1657. }
  1658. i.icon.database:before {
  1659.   content: "\f1c0";
  1660. }
  1661. i.icon.wifi:before {
  1662.   content: "\f1eb";
  1663. }
  1664. i.icon.server:before {
  1665.   content: "\f233";
  1666. }
  1667. i.icon.usb:before {
  1668.   content: "\f287";
  1669. }
  1670. i.icon.bluetooth:before {
  1671.   content: "\f293";
  1672. }
  1673. i.icon.bluetooth.alternative:before {
  1674.   content: "\f294";
  1675. }
  1676. i.icon.microchip:before {
  1677.   content: "\f2db";
  1678. }
  1679. /* Rating */
  1680. i.icon.heart:before {
  1681.   content: "\f004";
  1682. }
  1683. i.icon.star:before {
  1684.   content: "\f005";
  1685. }
  1686. i.icon.empty.star:before {
  1687.   content: "\f006";
  1688. }
  1689. i.icon.thumbs.outline.up:before {
  1690.   content: "\f087";
  1691. }
  1692. i.icon.thumbs.outline.down:before {
  1693.   content: "\f088";
  1694. }
  1695. i.icon.star.half:before {
  1696.   content: "\f089";
  1697. }
  1698. i.icon.empty.heart:before {
  1699.   content: "\f08a";
  1700. }
  1701. i.icon.smile:before {
  1702.   content: "\f118";
  1703. }
  1704. i.icon.frown:before {
  1705.   content: "\f119";
  1706. }
  1707. i.icon.meh:before {
  1708.   content: "\f11a";
  1709. }
  1710. i.icon.star.half.empty:before {
  1711.   content: "\f123";
  1712. }
  1713. i.icon.thumbs.up:before {
  1714.   content: "\f164";
  1715. }
  1716. i.icon.thumbs.down:before {
  1717.   content: "\f165";
  1718. }
  1719. /* Audio */
  1720. i.icon.music:before {
  1721.   content: "\f001";
  1722. }
  1723. i.icon.video.play.outline:before {
  1724.   content: "\f01d";
  1725. }
  1726. i.icon.volume.off:before {
  1727.   content: "\f026";
  1728. }
  1729. i.icon.volume.down:before {
  1730.   content: "\f027";
  1731. }
  1732. i.icon.volume.up:before {
  1733.   content: "\f028";
  1734. }
  1735. i.icon.record:before {
  1736.   content: "\f03d";
  1737. }
  1738. i.icon.step.backward:before {
  1739.   content: "\f048";
  1740. }
  1741. i.icon.fast.backward:before {
  1742.   content: "\f049";
  1743. }
  1744. i.icon.backward:before {
  1745.   content: "\f04a";
  1746. }
  1747. i.icon.play:before {
  1748.   content: "\f04b";
  1749. }
  1750. i.icon.pause:before {
  1751.   content: "\f04c";
  1752. }
  1753. i.icon.stop:before {
  1754.   content: "\f04d";
  1755. }
  1756. i.icon.forward:before {
  1757.   content: "\f04e";
  1758. }
  1759. i.icon.fast.forward:before {
  1760.   content: "\f050";
  1761. }
  1762. i.icon.step.forward:before {
  1763.   content: "\f051";
  1764. }
  1765. i.icon.eject:before {
  1766.   content: "\f052";
  1767. }
  1768. i.icon.unmute:before {
  1769.   content: "\f130";
  1770. }
  1771. i.icon.mute:before {
  1772.   content: "\f131";
  1773. }
  1774. i.icon.video.play:before {
  1775.   content: "\f144";
  1776. }
  1777. i.icon.closed.captioning:before {
  1778.   content: "\f20a";
  1779. }
  1780. i.icon.pause.circle:before {
  1781.   content: "\f28b";
  1782. }
  1783. i.icon.pause.circle.outline:before {
  1784.   content: "\f28c";
  1785. }
  1786. i.icon.stop.circle:before {
  1787.   content: "\f28d";
  1788. }
  1789. i.icon.stop.circle.outline:before {
  1790.   content: "\f28e";
  1791. }
  1792. /* Map, Locations, & Transportation */
  1793. i.icon.marker:before {
  1794.   content: "\f041";
  1795. }
  1796. i.icon.coffee:before {
  1797.   content: "\f0f4";
  1798. }
  1799. i.icon.food:before {
  1800.   content: "\f0f5";
  1801. }
  1802. i.icon.building.outline:before {
  1803.   content: "\f0f7";
  1804. }
  1805. i.icon.hospital:before {
  1806.   content: "\f0f8";
  1807. }
  1808. i.icon.emergency:before {
  1809.   content: "\f0f9";
  1810. }
  1811. i.icon.first.aid:before {
  1812.   content: "\f0fa";
  1813. }
  1814. i.icon.military:before {
  1815.   content: "\f0fb";
  1816. }
  1817. i.icon.h:before {
  1818.   content: "\f0fd";
  1819. }
  1820. i.icon.location.arrow:before {
  1821.   content: "\f124";
  1822. }
  1823. i.icon.compass:before {
  1824.   content: "\f14e";
  1825. }
  1826. i.icon.space.shuttle:before {
  1827.   content: "\f197";
  1828. }
  1829. i.icon.university:before {
  1830.   content: "\f19c";
  1831. }
  1832. i.icon.building:before {
  1833.   content: "\f1ad";
  1834. }
  1835. i.icon.paw:before {
  1836.   content: "\f1b0";
  1837. }
  1838. i.icon.spoon:before {
  1839.   content: "\f1b1";
  1840. }
  1841. i.icon.car:before {
  1842.   content: "\f1b9";
  1843. }
  1844. i.icon.taxi:before {
  1845.   content: "\f1ba";
  1846. }
  1847. i.icon.tree:before {
  1848.   content: "\f1bb";
  1849. }
  1850. i.icon.bicycle:before {
  1851.   content: "\f206";
  1852. }
  1853. i.icon.bus:before {
  1854.   content: "\f207";
  1855. }
  1856. i.icon.ship:before {
  1857.   content: "\f21a";
  1858. }
  1859. i.icon.motorcycle:before {
  1860.   content: "\f21c";
  1861. }
  1862. i.icon.street.view:before {
  1863.   content: "\f21d";
  1864. }
  1865. i.icon.hotel:before {
  1866.   content: "\f236";
  1867. }
  1868. i.icon.train:before {
  1869.   content: "\f238";
  1870. }
  1871. i.icon.subway:before {
  1872.   content: "\f239";
  1873. }
  1874. i.icon.map.pin:before {
  1875.   content: "\f276";
  1876. }
  1877. i.icon.map.signs:before {
  1878.   content: "\f277";
  1879. }
  1880. i.icon.map.outline:before {
  1881.   content: "\f278";
  1882. }
  1883. i.icon.map:before {
  1884.   content: "\f279";
  1885. }
  1886. /* Tables */
  1887. i.icon.table:before {
  1888.   content: "\f0ce";
  1889. }
  1890. i.icon.columns:before {
  1891.   content: "\f0db";
  1892. }
  1893. i.icon.sort:before {
  1894.   content: "\f0dc";
  1895. }
  1896. i.icon.sort.descending:before {
  1897.   content: "\f0dd";
  1898. }
  1899. i.icon.sort.ascending:before {
  1900.   content: "\f0de";
  1901. }
  1902. i.icon.sort.alphabet.ascending:before {
  1903.   content: "\f15d";
  1904. }
  1905. i.icon.sort.alphabet.descending:before {
  1906.   content: "\f15e";
  1907. }
  1908. i.icon.sort.content.ascending:before {
  1909.   content: "\f160";
  1910. }
  1911. i.icon.sort.content.descending:before {
  1912.   content: "\f161";
  1913. }
  1914. i.icon.sort.numeric.ascending:before {
  1915.   content: "\f162";
  1916. }
  1917. i.icon.sort.numeric.descending:before {
  1918.   content: "\f163";
  1919. }
  1920. /* Text Editor */
  1921. i.icon.font:before {
  1922.   content: "\f031";
  1923. }
  1924. i.icon.bold:before {
  1925.   content: "\f032";
  1926. }
  1927. i.icon.italic:before {
  1928.   content: "\f033";
  1929. }
  1930. i.icon.text.height:before {
  1931.   content: "\f034";
  1932. }
  1933. i.icon.text.width:before {
  1934.   content: "\f035";
  1935. }
  1936. i.icon.align.left:before {
  1937.   content: "\f036";
  1938. }
  1939. i.icon.align.center:before {
  1940.   content: "\f037";
  1941. }
  1942. i.icon.align.right:before {
  1943.   content: "\f038";
  1944. }
  1945. i.icon.align.justify:before {
  1946.   content: "\f039";
  1947. }
  1948. i.icon.list:before {
  1949.   content: "\f03a";
  1950. }
  1951. i.icon.outdent:before {
  1952.   content: "\f03b";
  1953. }
  1954. i.icon.indent:before {
  1955.   content: "\f03c";
  1956. }
  1957. i.icon.linkify:before {
  1958.   content: "\f0c1";
  1959. }
  1960. i.icon.cut:before {
  1961.   content: "\f0c4";
  1962. }
  1963. i.icon.copy:before {
  1964.   content: "\f0c5";
  1965. }
  1966. i.icon.attach:before {
  1967.   content: "\f0c6";
  1968. }
  1969. i.icon.save:before {
  1970.   content: "\f0c7";
  1971. }
  1972. i.icon.content:before {
  1973.   content: "\f0c9";
  1974. }
  1975. i.icon.unordered.list:before {
  1976.   content: "\f0ca";
  1977. }
  1978. i.icon.ordered.list:before {
  1979.   content: "\f0cb";
  1980. }
  1981. i.icon.strikethrough:before {
  1982.   content: "\f0cc";
  1983. }
  1984. i.icon.underline:before {
  1985.   content: "\f0cd";
  1986. }
  1987. i.icon.paste:before {
  1988.   content: "\f0ea";
  1989. }
  1990. i.icon.unlinkify:before {
  1991.   content: "\f127";
  1992. }
  1993. i.icon.superscript:before {
  1994.   content: "\f12b";
  1995. }
  1996. i.icon.subscript:before {
  1997.   content: "\f12c";
  1998. }
  1999. i.icon.header:before {
  2000.   content: "\f1dc";
  2001. }
  2002. i.icon.paragraph:before {
  2003.   content: "\f1dd";
  2004. }
  2005. i.icon.text.cursor:before {
  2006.   content: "\f246";
  2007. }
  2008. /* Currency */
  2009. i.icon.euro:before {
  2010.   content: "\f153";
  2011. }
  2012. i.icon.pound:before {
  2013.   content: "\f154";
  2014. }
  2015. i.icon.dollar:before {
  2016.   content: "\f155";
  2017. }
  2018. i.icon.rupee:before {
  2019.   content: "\f156";
  2020. }
  2021. i.icon.yen:before {
  2022.   content: "\f157";
  2023. }
  2024. i.icon.ruble:before {
  2025.   content: "\f158";
  2026. }
  2027. i.icon.won:before {
  2028.   content: "\f159";
  2029. }
  2030. i.icon.bitcoin:before {
  2031.   content: "\f15a";
  2032. }
  2033. i.icon.lira:before {
  2034.   content: "\f195";
  2035. }
  2036. i.icon.shekel:before {
  2037.   content: "\f20b";
  2038. }
  2039. /* Payment Options */
  2040. i.icon.paypal:before {
  2041.   content: "\f1ed";
  2042. }
  2043. i.icon.google.wallet:before {
  2044.   content: "\f1ee";
  2045. }
  2046. i.icon.visa:before {
  2047.   content: "\f1f0";
  2048. }
  2049. i.icon.mastercard:before {
  2050.   content: "\f1f1";
  2051. }
  2052. i.icon.discover:before {
  2053.   content: "\f1f2";
  2054. }
  2055. i.icon.american.express:before {
  2056.   content: "\f1f3";
  2057. }
  2058. i.icon.paypal.card:before {
  2059.   content: "\f1f4";
  2060. }
  2061. i.icon.stripe:before {
  2062.   content: "\f1f5";
  2063. }
  2064. i.icon.japan.credit.bureau:before {
  2065.   content: "\f24b";
  2066. }
  2067. i.icon.diners.club:before {
  2068.   content: "\f24c";
  2069. }
  2070. i.icon.credit.card.alternative:before {
  2071.   content: "\f283";
  2072. }
  2073. /* Networks and Websites*/
  2074. i.icon.twitter.square:before {
  2075.   content: "\f081";
  2076. }
  2077. i.icon.facebook.square:before {
  2078.   content: "\f082";
  2079. }
  2080. i.icon.linkedin.square:before {
  2081.   content: "\f08c";
  2082. }
  2083. i.icon.github.square:before {
  2084.   content: "\f092";
  2085. }
  2086. i.icon.twitter:before {
  2087.   content: "\f099";
  2088. }
  2089. i.icon.facebook.f:before {
  2090.   content: "\f09a";
  2091. }
  2092. i.icon.github:before {
  2093.   content: "\f09b";
  2094. }
  2095. i.icon.pinterest:before {
  2096.   content: "\f0d2";
  2097. }
  2098. i.icon.pinterest.square:before {
  2099.   content: "\f0d3";
  2100. }
  2101. i.icon.google.plus.square:before {
  2102.   content: "\f0d4";
  2103. }
  2104. i.icon.google.plus:before {
  2105.   content: "\f0d5";
  2106. }
  2107. i.icon.linkedin:before {
  2108.   content: "\f0e1";
  2109. }
  2110. i.icon.github.alternate:before {
  2111.   content: "\f113";
  2112. }
  2113. i.icon.maxcdn:before {
  2114.   content: "\f136";
  2115. }
  2116. i.icon.youtube.square:before {
  2117.   content: "\f166";
  2118. }
  2119. i.icon.youtube:before {
  2120.   content: "\f167";
  2121. }
  2122. i.icon.xing:before {
  2123.   content: "\f168";
  2124. }
  2125. i.icon.xing.square:before {
  2126.   content: "\f169";
  2127. }
  2128. i.icon.youtube.play:before {
  2129.   content: "\f16a";
  2130. }
  2131. i.icon.dropbox:before {
  2132.   content: "\f16b";
  2133. }
  2134. i.icon.stack.overflow:before {
  2135.   content: "\f16c";
  2136. }
  2137. i.icon.instagram:before {
  2138.   content: "\f16d";
  2139. }
  2140. i.icon.flickr:before {
  2141.   content: "\f16e";
  2142. }
  2143. i.icon.adn:before {
  2144.   content: "\f170";
  2145. }
  2146. i.icon.bitbucket:before {
  2147.   content: "\f171";
  2148. }
  2149. i.icon.bitbucket.square:before {
  2150.   content: "\f172";
  2151. }
  2152. i.icon.tumblr:before {
  2153.   content: "\f173";
  2154. }
  2155. i.icon.tumblr.square:before {
  2156.   content: "\f174";
  2157. }
  2158. i.icon.apple:before {
  2159.   content: "\f179";
  2160. }
  2161. i.icon.windows:before {
  2162.   content: "\f17a";
  2163. }
  2164. i.icon.android:before {
  2165.   content: "\f17b";
  2166. }
  2167. i.icon.linux:before {
  2168.   content: "\f17c";
  2169. }
  2170. i.icon.dribble:before {
  2171.   content: "\f17d";
  2172. }
  2173. i.icon.skype:before {
  2174.   content: "\f17e";
  2175. }
  2176. i.icon.foursquare:before {
  2177.   content: "\f180";
  2178. }
  2179. i.icon.trello:before {
  2180.   content: "\f181";
  2181. }
  2182. i.icon.gittip:before {
  2183.   content: "\f184";
  2184. }
  2185. i.icon.vk:before {
  2186.   content: "\f189";
  2187. }
  2188. i.icon.weibo:before {
  2189.   content: "\f18a";
  2190. }
  2191. i.icon.renren:before {
  2192.   content: "\f18b";
  2193. }
  2194. i.icon.pagelines:before {
  2195.   content: "\f18c";
  2196. }
  2197. i.icon.stack.exchange:before {
  2198.   content: "\f18d";
  2199. }
  2200. i.icon.vimeo.square:before {
  2201.   content: "\f194";
  2202. }
  2203. i.icon.slack:before {
  2204.   content: "\f198";
  2205. }
  2206. i.icon.wordpress:before {
  2207.   content: "\f19a";
  2208. }
  2209. i.icon.yahoo:before {
  2210.   content: "\f19e";
  2211. }
  2212. i.icon.google:before {
  2213.   content: "\f1a0";
  2214. }
  2215. i.icon.reddit:before {
  2216.   content: "\f1a1";
  2217. }
  2218. i.icon.reddit.square:before {
  2219.   content: "\f1a2";
  2220. }
  2221. i.icon.stumbleupon.circle:before {
  2222.   content: "\f1a3";
  2223. }
  2224. i.icon.stumbleupon:before {
  2225.   content: "\f1a4";
  2226. }
  2227. i.icon.delicious:before {
  2228.   content: "\f1a5";
  2229. }
  2230. i.icon.digg:before {
  2231.   content: "\f1a6";
  2232. }
  2233. i.icon.pied.piper:before {
  2234.   content: "\f1a7";
  2235. }
  2236. i.icon.pied.piper.alternate:before {
  2237.   content: "\f1a8";
  2238. }
  2239. i.icon.drupal:before {
  2240.   content: "\f1a9";
  2241. }
  2242. i.icon.joomla:before {
  2243.   content: "\f1aa";
  2244. }
  2245. i.icon.behance:before {
  2246.   content: "\f1b4";
  2247. }
  2248. i.icon.behance.square:before {
  2249.   content: "\f1b5";
  2250. }
  2251. i.icon.steam:before {
  2252.   content: "\f1b6";
  2253. }
  2254. i.icon.steam.square:before {
  2255.   content: "\f1b7";
  2256. }
  2257. i.icon.spotify:before {
  2258.   content: "\f1bc";
  2259. }
  2260. i.icon.deviantart:before {
  2261.   content: "\f1bd";
  2262. }
  2263. i.icon.soundcloud:before {
  2264.   content: "\f1be";
  2265. }
  2266. i.icon.vine:before {
  2267.   content: "\f1ca";
  2268. }
  2269. i.icon.codepen:before {
  2270.   content: "\f1cb";
  2271. }
  2272. i.icon.jsfiddle:before {
  2273.   content: "\f1cc";
  2274. }
  2275. i.icon.rebel:before {
  2276.   content: "\f1d0";
  2277. }
  2278. i.icon.empire:before {
  2279.   content: "\f1d1";
  2280. }
  2281. i.icon.git.square:before {
  2282.   content: "\f1d2";
  2283. }
  2284. i.icon.git:before {
  2285.   content: "\f1d3";
  2286. }
  2287. i.icon.hacker.news:before {
  2288.   content: "\f1d4";
  2289. }
  2290. i.icon.tencent.weibo:before {
  2291.   content: "\f1d5";
  2292. }
  2293. i.icon.qq:before {
  2294.   content: "\f1d6";
  2295. }
  2296. i.icon.wechat:before {
  2297.   content: "\f1d7";
  2298. }
  2299. i.icon.slideshare:before {
  2300.   content: "\f1e7";
  2301. }
  2302. i.icon.twitch:before {
  2303.   content: "\f1e8";
  2304. }
  2305. i.icon.yelp:before {
  2306.   content: "\f1e9";
  2307. }
  2308. i.icon.lastfm:before {
  2309.   content: "\f202";
  2310. }
  2311. i.icon.lastfm.square:before {
  2312.   content: "\f203";
  2313. }
  2314. i.icon.ioxhost:before {
  2315.   content: "\f208";
  2316. }
  2317. i.icon.angellist:before {
  2318.   content: "\f209";
  2319. }
  2320. i.icon.meanpath:before {
  2321.   content: "\f20c";
  2322. }
  2323. i.icon.buysellads:before {
  2324.   content: "\f20d";
  2325. }
  2326. i.icon.connectdevelop:before {
  2327.   content: "\f20e";
  2328. }
  2329. i.icon.dashcube:before {
  2330.   content: "\f210";
  2331. }
  2332. i.icon.forumbee:before {
  2333.   content: "\f211";
  2334. }
  2335. i.icon.leanpub:before {
  2336.   content: "\f212";
  2337. }
  2338. i.icon.sellsy:before {
  2339.   content: "\f213";
  2340. }
  2341. i.icon.shirtsinbulk:before {
  2342.   content: "\f214";
  2343. }
  2344. i.icon.simplybuilt:before {
  2345.   content: "\f215";
  2346. }
  2347. i.icon.skyatlas:before {
  2348.   content: "\f216";
  2349. }
  2350. i.icon.facebook:before {
  2351.   content: "\f230";
  2352. }
  2353. i.icon.pinterest:before {
  2354.   content: "\f231";
  2355. }
  2356. i.icon.whatsapp:before {
  2357.   content: "\f232";
  2358. }
  2359. i.icon.viacoin:before {
  2360.   content: "\f237";
  2361. }
  2362. i.icon.medium:before {
  2363.   content: "\f23a";
  2364. }
  2365. i.icon.y.combinator:before {
  2366.   content: "\f23b";
  2367. }
  2368. i.icon.optinmonster:before {
  2369.   content: "\f23c";
  2370. }
  2371. i.icon.opencart:before {
  2372.   content: "\f23d";
  2373. }
  2374. i.icon.expeditedssl:before {
  2375.   content: "\f23e";
  2376. }
  2377. i.icon.gg:before {
  2378.   content: "\f260";
  2379. }
  2380. i.icon.gg.circle:before {
  2381.   content: "\f261";
  2382. }
  2383. i.icon.tripadvisor:before {
  2384.   content: "\f262";
  2385. }
  2386. i.icon.odnoklassniki:before {
  2387.   content: "\f263";
  2388. }
  2389. i.icon.odnoklassniki.square:before {
  2390.   content: "\f264";
  2391. }
  2392. i.icon.pocket:before {
  2393.   content: "\f265";
  2394. }
  2395. i.icon.wikipedia:before {
  2396.   content: "\f266";
  2397. }
  2398. i.icon.safari:before {
  2399.   content: "\f267";
  2400. }
  2401. i.icon.chrome:before {
  2402.   content: "\f268";
  2403. }
  2404. i.icon.firefox:before {
  2405.   content: "\f269";
  2406. }
  2407. i.icon.opera:before {
  2408.   content: "\f26a";
  2409. }
  2410. i.icon.internet.explorer:before {
  2411.   content: "\f26b";
  2412. }
  2413. i.icon.contao:before {
  2414.   content: "\f26d";
  2415. }
  2416. i.icon.\35 00px:before {
  2417.   content: "\f26e";
  2418. }
  2419. i.icon.amazon:before {
  2420.   content: "\f270";
  2421. }
  2422. i.icon.houzz:before {
  2423.   content: "\f27c";
  2424. }
  2425. i.icon.vimeo:before {
  2426.   content: "\f27d";
  2427. }
  2428. i.icon.black.tie:before {
  2429.   content: "\f27e";
  2430. }
  2431. i.icon.fonticons:before {
  2432.   content: "\f280";
  2433. }
  2434. i.icon.reddit.alien:before {
  2435.   content: "\f281";
  2436. }
  2437. i.icon.microsoft.edge:before {
  2438.   content: "\f282";
  2439. }
  2440. i.icon.codiepie:before {
  2441.   content: "\f284";
  2442. }
  2443. i.icon.modx:before {
  2444.   content: "\f285";
  2445. }
  2446. i.icon.fort.awesome:before {
  2447.   content: "\f286";
  2448. }
  2449. i.icon.product.hunt:before {
  2450.   content: "\f288";
  2451. }
  2452. i.icon.mixcloud:before {
  2453.   content: "\f289";
  2454. }
  2455. i.icon.scribd:before {
  2456.   content: "\f28a";
  2457. }
  2458. i.icon.gitlab:before {
  2459.   content: "\f296";
  2460. }
  2461. i.icon.wpbeginner:before {
  2462.   content: "\f297";
  2463. }
  2464. i.icon.wpforms:before {
  2465.   content: "\f298";
  2466. }
  2467. i.icon.envira.gallery:before {
  2468.   content: "\f299";
  2469. }
  2470. i.icon.glide:before {
  2471.   content: "\f2a5";
  2472. }
  2473. i.icon.glide.g:before {
  2474.   content: "\f2a6";
  2475. }
  2476. i.icon.viadeo:before {
  2477.   content: "\f2a9";
  2478. }
  2479. i.icon.viadeo.square:before {
  2480.   content: "\f2aa";
  2481. }
  2482. i.icon.snapchat:before {
  2483.   content: "\f2ab";
  2484. }
  2485. i.icon.snapchat.ghost:before {
  2486.   content: "\f2ac";
  2487. }
  2488. i.icon.snapchat.square:before {
  2489.   content: "\f2ad";
  2490. }
  2491. i.icon.pied.piper.hat:before {
  2492.   content: "\f2ae";
  2493. }
  2494. i.icon.first.order:before {
  2495.   content: "\f2b0";
  2496. }
  2497. i.icon.yoast:before {
  2498.   content: "\f2b1";
  2499. }
  2500. i.icon.themeisle:before {
  2501.   content: "\f2b2";
  2502. }
  2503. i.icon.google.plus.circle:before {
  2504.   content: "\f2b3";
  2505. }
  2506. i.icon.font.awesome:before {
  2507.   content: "\f2b4";
  2508. }
  2509. i.icon.linode:before {
  2510.   content: "\f2b8";
  2511. }
  2512. i.icon.quora:before {
  2513.   content: "\f2c4";
  2514. }
  2515. i.icon.free.code.camp:before {
  2516.   content: "\f2c5";
  2517. }
  2518. i.icon.telegram:before {
  2519.   content: "\f2c6";
  2520. }
  2521. i.icon.bandcamp:before {
  2522.   content: "\f2d5";
  2523. }
  2524. i.icon.grav:before {
  2525.   content: "\f2d6";
  2526. }
  2527. i.icon.etsy:before {
  2528.   content: "\f2d7";
  2529. }
  2530. i.icon.imdb:before {
  2531.   content: "\f2d8";
  2532. }
  2533. i.icon.ravelry:before {
  2534.   content: "\f2d9";
  2535. }
  2536. i.icon.eercast:before {
  2537.   content: "\f2da";
  2538. }
  2539. i.icon.superpowers:before {
  2540.   content: "\f2dd";
  2541. }
  2542. i.icon.wpexplorer:before {
  2543.   content: "\f2de";
  2544. }
  2545. i.icon.meetup:before {
  2546.   content: "\f2e0";
  2547. }
  2548. /*******************************
  2549.             Aliases
  2550. *******************************/
  2551. i.icon.like:before {
  2552.   content: "\f004";
  2553. }
  2554. i.icon.favorite:before {
  2555.   content: "\f005";
  2556. }
  2557. i.icon.video:before {
  2558.   content: "\f008";
  2559. }
  2560. i.icon.check:before {
  2561.   content: "\f00c";
  2562. }
  2563. i.icon.close:before {
  2564.   content: "\f00d";
  2565. }
  2566. i.icon.cancel:before {
  2567.   content: "\f00d";
  2568. }
  2569. i.icon.delete:before {
  2570.   content: "\f00d";
  2571. }
  2572. i.icon.x:before {
  2573.   content: "\f00d";
  2574. }
  2575. i.icon.zoom.in:before {
  2576.   content: "\f00e";
  2577. }
  2578. i.icon.magnify:before {
  2579.   content: "\f00e";
  2580. }
  2581. i.icon.shutdown:before {
  2582.   content: "\f011";
  2583. }
  2584. i.icon.clock:before {
  2585.   content: "\f017";
  2586. }
  2587. i.icon.time:before {
  2588.   content: "\f017";
  2589. }
  2590. i.icon.play.circle.outline:before {
  2591.   content: "\f01d";
  2592. }
  2593. i.icon.headphone:before {
  2594.   content: "\f025";
  2595. }
  2596. i.icon.camera:before {
  2597.   content: "\f030";
  2598. }
  2599. i.icon.video.camera:before {
  2600.   content: "\f03d";
  2601. }
  2602. i.icon.picture:before {
  2603.   content: "\f03e";
  2604. }
  2605. i.icon.pencil:before {
  2606.   content: "\f040";
  2607. }
  2608. i.icon.compose:before {
  2609.   content: "\f040";
  2610. }
  2611. i.icon.point:before {
  2612.   content: "\f041";
  2613. }
  2614. i.icon.tint:before {
  2615.   content: "\f043";
  2616. }
  2617. i.icon.signup:before {
  2618.   content: "\f044";
  2619. }
  2620. i.icon.plus.circle:before {
  2621.   content: "\f055";
  2622. }
  2623. i.icon.question.circle:before {
  2624.   content: "\f059";
  2625. }
  2626. i.icon.dont:before {
  2627.   content: "\f05e";
  2628. }
  2629. i.icon.minimize:before {
  2630.   content: "\f066";
  2631. }
  2632. i.icon.add:before {
  2633.   content: "\f067";
  2634. }
  2635. i.icon.exclamation.circle:before {
  2636.   content: "\f06a";
  2637. }
  2638. i.icon.attention:before {
  2639.   content: "\f06a";
  2640. }
  2641. i.icon.eye:before {
  2642.   content: "\f06e";
  2643. }
  2644. i.icon.exclamation.triangle:before {
  2645.   content: "\f071";
  2646. }
  2647. i.icon.shuffle:before {
  2648.   content: "\f074";
  2649. }
  2650. i.icon.chat:before {
  2651.   content: "\f075";
  2652. }
  2653. i.icon.cart:before {
  2654.   content: "\f07a";
  2655. }
  2656. i.icon.shopping.cart:before {
  2657.   content: "\f07a";
  2658. }
  2659. i.icon.bar.graph:before {
  2660.   content: "\f080";
  2661. }
  2662. i.icon.key:before {
  2663.   content: "\f084";
  2664. }
  2665. i.icon.cogs:before {
  2666.   content: "\f085";
  2667. }
  2668. i.icon.discussions:before {
  2669.   content: "\f086";
  2670. }
  2671. i.icon.like.outline:before {
  2672.   content: "\f087";
  2673. }
  2674. i.icon.dislike.outline:before {
  2675.   content: "\f088";
  2676. }
  2677. i.icon.heart.outline:before {
  2678.   content: "\f08a";
  2679. }
  2680. i.icon.log.out:before {
  2681.   content: "\f08b";
  2682. }
  2683. i.icon.thumb.tack:before {
  2684.   content: "\f08d";
  2685. }
  2686. i.icon.winner:before {
  2687.   content: "\f091";
  2688. }
  2689. i.icon.phone:before {
  2690.   content: "\f095";
  2691. }
  2692. i.icon.bookmark.outline:before {
  2693.   content: "\f097";
  2694. }
  2695. i.icon.phone.square:before {
  2696.   content: "\f098";
  2697. }
  2698. i.icon.credit.card:before {
  2699.   content: "\f09d";
  2700. }
  2701. i.icon.hdd.outline:before {
  2702.   content: "\f0a0";
  2703. }
  2704. i.icon.bullhorn:before {
  2705.   content: "\f0a1";
  2706. }
  2707. i.icon.bell.outline:before {
  2708.   content: "\f0a2";
  2709. }
  2710. i.icon.hand.outline.right:before {
  2711.   content: "\f0a4";
  2712. }
  2713. i.icon.hand.outline.left:before {
  2714.   content: "\f0a5";
  2715. }
  2716. i.icon.hand.outline.up:before {
  2717.   content: "\f0a6";
  2718. }
  2719. i.icon.hand.outline.down:before {
  2720.   content: "\f0a7";
  2721. }
  2722. i.icon.globe:before {
  2723.   content: "\f0ac";
  2724. }
  2725. i.icon.wrench:before {
  2726.   content: "\f0ad";
  2727. }
  2728. i.icon.briefcase:before {
  2729.   content: "\f0b1";
  2730. }
  2731. i.icon.group:before {
  2732.   content: "\f0c0";
  2733. }
  2734. i.icon.linkify:before {
  2735.   content: "\f0c1";
  2736. }
  2737. i.icon.chain:before {
  2738.   content: "\f0c1";
  2739. }
  2740. i.icon.flask:before {
  2741.   content: "\f0c3";
  2742. }
  2743. i.icon.sidebar:before {
  2744.   content: "\f0c9";
  2745. }
  2746. i.icon.bars:before {
  2747.   content: "\f0c9";
  2748. }
  2749. i.icon.list.ul:before {
  2750.   content: "\f0ca";
  2751. }
  2752. i.icon.list.ol:before {
  2753.   content: "\f0cb";
  2754. }
  2755. i.icon.numbered.list:before {
  2756.   content: "\f0cb";
  2757. }
  2758. i.icon.magic:before {
  2759.   content: "\f0d0";
  2760. }
  2761. i.icon.truck:before {
  2762.   content: "\f0d1";
  2763. }
  2764. i.icon.currency:before {
  2765.   content: "\f0d6";
  2766. }
  2767. i.icon.triangle.down:before {
  2768.   content: "\f0d7";
  2769. }
  2770. i.icon.dropdown:before {
  2771.   content: "\f0d7";
  2772. }
  2773. i.icon.triangle.up:before {
  2774.   content: "\f0d8";
  2775. }
  2776. i.icon.triangle.left:before {
  2777.   content: "\f0d9";
  2778. }
  2779. i.icon.triangle.right:before {
  2780.   content: "\f0da";
  2781. }
  2782. i.icon.envelope:before {
  2783.   content: "\f0e0";
  2784. }
  2785. i.icon.conversation:before {
  2786.   content: "\f0e6";
  2787. }
  2788. i.icon.rain:before {
  2789.   content: "\f0e9";
  2790. }
  2791. i.icon.clipboard:before {
  2792.   content: "\f0ea";
  2793. }
  2794. i.icon.lightbulb:before {
  2795.   content: "\f0eb";
  2796. }
  2797. i.icon.bell:before {
  2798.   content: "\f0f3";
  2799. }
  2800. i.icon.ambulance:before {
  2801.   content: "\f0f9";
  2802. }
  2803. i.icon.medkit:before {
  2804.   content: "\f0fa";
  2805. }
  2806. i.icon.fighter.jet:before {
  2807.   content: "\f0fb";
  2808. }
  2809. i.icon.beer:before {
  2810.   content: "\f0fc";
  2811. }
  2812. i.icon.plus.square:before {
  2813.   content: "\f0fe";
  2814. }
  2815. i.icon.computer:before {
  2816.   content: "\f108";
  2817. }
  2818. i.icon.circle.outline:before {
  2819.   content: "\f10c";
  2820. }
  2821. i.icon.gamepad:before {
  2822.   content: "\f11b";
  2823. }
  2824. i.icon.star.half.full:before {
  2825.   content: "\f123";
  2826. }
  2827. i.icon.broken.chain:before {
  2828.   content: "\f127";
  2829. }
  2830. i.icon.question:before {
  2831.   content: "\f128";
  2832. }
  2833. i.icon.exclamation:before {
  2834.   content: "\f12a";
  2835. }
  2836. i.icon.eraser:before {
  2837.   content: "\f12d";
  2838. }
  2839. i.icon.microphone:before {
  2840.   content: "\f130";
  2841. }
  2842. i.icon.microphone.slash:before {
  2843.   content: "\f131";
  2844. }
  2845. i.icon.shield:before {
  2846.   content: "\f132";
  2847. }
  2848. i.icon.target:before {
  2849.   content: "\f140";
  2850. }
  2851. i.icon.play.circle:before {
  2852.   content: "\f144";
  2853. }
  2854. i.icon.pencil.square:before {
  2855.   content: "\f14b";
  2856. }
  2857. i.icon.eur:before {
  2858.   content: "\f153";
  2859. }
  2860. i.icon.gbp:before {
  2861.   content: "\f154";
  2862. }
  2863. i.icon.usd:before {
  2864.   content: "\f155";
  2865. }
  2866. i.icon.inr:before {
  2867.   content: "\f156";
  2868. }
  2869. i.icon.cny:before {
  2870.   content: "\f157";
  2871. }
  2872. i.icon.rmb:before {
  2873.   content: "\f157";
  2874. }
  2875. i.icon.jpy:before {
  2876.   content: "\f157";
  2877. }
  2878. i.icon.rouble:before {
  2879.   content: "\f158";
  2880. }
  2881. i.icon.rub:before {
  2882.   content: "\f158";
  2883. }
  2884. i.icon.krw:before {
  2885.   content: "\f159";
  2886. }
  2887. i.icon.btc:before {
  2888.   content: "\f15a";
  2889. }
  2890. i.icon.gratipay:before {
  2891.   content: "\f184";
  2892. }
  2893. i.icon.zip:before {
  2894.   content: "\f187";
  2895. }
  2896. i.icon.dot.circle.outline:before {
  2897.   content: "\f192";
  2898. }
  2899. i.icon.try:before {
  2900.   content: "\f195";
  2901. }
  2902. i.icon.graduation:before {
  2903.   content: "\f19d";
  2904. }
  2905. i.icon.circle.outline:before {
  2906.   content: "\f1db";
  2907. }
  2908. i.icon.sliders:before {
  2909.   content: "\f1de";
  2910. }
  2911. i.icon.weixin:before {
  2912.   content: "\f1d7";
  2913. }
  2914. i.icon.tty:before {
  2915.   content: "\f1e4";
  2916. }
  2917. i.icon.teletype:before {
  2918.   content: "\f1e4";
  2919. }
  2920. i.icon.binoculars:before {
  2921.   content: "\f1e5";
  2922. }
  2923. i.icon.power.cord:before {
  2924.   content: "\f1e6";
  2925. }
  2926. i.icon.wi-fi:before {
  2927.   content: "\f1eb";
  2928. }
  2929. i.icon.visa.card:before {
  2930.   content: "\f1f0";
  2931. }
  2932. i.icon.mastercard.card:before {
  2933.   content: "\f1f1";
  2934. }
  2935. i.icon.discover.card:before {
  2936.   content: "\f1f2";
  2937. }
  2938. i.icon.amex:before {
  2939.   content: "\f1f3";
  2940. }
  2941. i.icon.american.express.card:before {
  2942.   content: "\f1f3";
  2943. }
  2944. i.icon.stripe.card:before {
  2945.   content: "\f1f5";
  2946. }
  2947. i.icon.bell.slash:before {
  2948.   content: "\f1f6";
  2949. }
  2950. i.icon.bell.slash.outline:before {
  2951.   content: "\f1f7";
  2952. }
  2953. i.icon.area.graph:before {
  2954.   content: "\f1fe";
  2955. }
  2956. i.icon.pie.graph:before {
  2957.   content: "\f200";
  2958. }
  2959. i.icon.line.graph:before {
  2960.   content: "\f201";
  2961. }
  2962. i.icon.cc:before {
  2963.   content: "\f20a";
  2964. }
  2965. i.icon.sheqel:before {
  2966.   content: "\f20b";
  2967. }
  2968. i.icon.ils:before {
  2969.   content: "\f20b";
  2970. }
  2971. i.icon.plus.cart:before {
  2972.   content: "\f217";
  2973. }
  2974. i.icon.arrow.down.cart:before {
  2975.   content: "\f218";
  2976. }
  2977. i.icon.detective:before {
  2978.   content: "\f21b";
  2979. }
  2980. i.icon.venus:before {
  2981.   content: "\f221";
  2982. }
  2983. i.icon.mars:before {
  2984.   content: "\f222";
  2985. }
  2986. i.icon.mercury:before {
  2987.   content: "\f223";
  2988. }
  2989. i.icon.intersex:before {
  2990.   content: "\f224";
  2991. }
  2992. i.icon.venus.double:before {
  2993.   content: "\f226";
  2994. }
  2995. i.icon.female.homosexual:before {
  2996.   content: "\f226";
  2997. }
  2998. i.icon.mars.double:before {
  2999.   content: "\f227";
  3000. }
  3001. i.icon.male.homosexual:before {
  3002.   content: "\f227";
  3003. }
  3004. i.icon.venus.mars:before {
  3005.   content: "\f228";
  3006. }
  3007. i.icon.mars.stroke:before {
  3008.   content: "\f229";
  3009. }
  3010. i.icon.mars.alternate:before {
  3011.   content: "\f229";
  3012. }
  3013. i.icon.mars.vertical:before {
  3014.   content: "\f22a";
  3015. }
  3016. i.icon.mars.stroke.vertical:before {
  3017.   content: "\f22a";
  3018. }
  3019. i.icon.mars.horizontal:before {
  3020.   content: "\f22b";
  3021. }
  3022. i.icon.mars.stroke.horizontal:before {
  3023.   content: "\f22b";
  3024. }
  3025. i.icon.asexual:before {
  3026.   content: "\f22d";
  3027. }
  3028. i.icon.facebook.official:before {
  3029.   content: "\f230";
  3030. }
  3031. i.icon.user.plus:before {
  3032.   content: "\f234";
  3033. }
  3034. i.icon.user.times:before {
  3035.   content: "\f235";
  3036. }
  3037. i.icon.user.close:before {
  3038.   content: "\f235";
  3039. }
  3040. i.icon.user.cancel:before {
  3041.   content: "\f235";
  3042. }
  3043. i.icon.user.delete:before {
  3044.   content: "\f235";
  3045. }
  3046. i.icon.user.x:before {
  3047.   content: "\f235";
  3048. }
  3049. i.icon.bed:before {
  3050.   content: "\f236";
  3051. }
  3052. i.icon.yc:before {
  3053.   content: "\f23b";
  3054. }
  3055. i.icon.ycombinator:before {
  3056.   content: "\f23b";
  3057. }
  3058. i.icon.battery.four:before {
  3059.   content: "\f240";
  3060. }
  3061. i.icon.battery.three:before {
  3062.   content: "\f241";
  3063. }
  3064. i.icon.battery.three.quarters:before {
  3065.   content: "\f241";
  3066. }
  3067. i.icon.battery.two:before {
  3068.   content: "\f242";
  3069. }
  3070. i.icon.battery.half:before {
  3071.   content: "\f242";
  3072. }
  3073. i.icon.battery.one:before {
  3074.   content: "\f243";
  3075. }
  3076. i.icon.battery.quarter:before {
  3077.   content: "\f243";
  3078. }
  3079. i.icon.battery.zero:before {
  3080.   content: "\f244";
  3081. }
  3082. i.icon.i.cursor:before {
  3083.   content: "\f246";
  3084. }
  3085. i.icon.jcb:before {
  3086.   content: "\f24b";
  3087. }
  3088. i.icon.japan.credit.bureau.card:before {
  3089.   content: "\f24b";
  3090. }
  3091. i.icon.diners.club.card:before {
  3092.   content: "\f24c";
  3093. }
  3094. i.icon.balance:before {
  3095.   content: "\f24e";
  3096. }
  3097. i.icon.hourglass.outline:before {
  3098.   content: "\f250";
  3099. }
  3100. i.icon.hourglass.zero:before {
  3101.   content: "\f250";
  3102. }
  3103. i.icon.hourglass.one:before {
  3104.   content: "\f251";
  3105. }
  3106. i.icon.hourglass.two:before {
  3107.   content: "\f252";
  3108. }
  3109. i.icon.hourglass.three:before {
  3110.   content: "\f253";
  3111. }
  3112. i.icon.hourglass.four:before {
  3113.   content: "\f254";
  3114. }
  3115. i.icon.grab:before {
  3116.   content: "\f255";
  3117. }
  3118. i.icon.hand.victory:before {
  3119.   content: "\f25b";
  3120. }
  3121. i.icon.tm:before {
  3122.   content: "\f25c";
  3123. }
  3124. i.icon.r.circle:before {
  3125.   content: "\f25d";
  3126. }
  3127. i.icon.television:before {
  3128.   content: "\f26c";
  3129. }
  3130. i.icon.five.hundred.pixels:before {
  3131.   content: "\f26e";
  3132. }
  3133. i.icon.calendar.plus:before {
  3134.   content: "\f271";
  3135. }
  3136. i.icon.calendar.minus:before {
  3137.   content: "\f272";
  3138. }
  3139. i.icon.calendar.times:before {
  3140.   content: "\f273";
  3141. }
  3142. i.icon.calendar.check:before {
  3143.   content: "\f274";
  3144. }
  3145. i.icon.factory:before {
  3146.   content: "\f275";
  3147. }
  3148. i.icon.commenting:before {
  3149.   content: "\f27a";
  3150. }
  3151. i.icon.commenting.outline:before {
  3152.   content: "\f27b";
  3153. }
  3154. i.icon.edge:before {
  3155.   content: "\f282";
  3156. }
  3157. i.icon.ms.edge:before {
  3158.   content: "\f282";
  3159. }
  3160. i.icon.wordpress.beginner:before {
  3161.   content: "\f297";
  3162. }
  3163. i.icon.wordpress.forms:before {
  3164.   content: "\f298";
  3165. }
  3166. i.icon.envira:before {
  3167.   content: "\f299";
  3168. }
  3169. i.icon.question.circle.outline:before {
  3170.   content: "\f29c";
  3171. }
  3172. i.icon.assistive.listening.devices:before {
  3173.   content: "\f2a2";
  3174. }
  3175. i.icon.als:before {
  3176.   content: "\f2a2";
  3177. }
  3178. i.icon.ald:before {
  3179.   content: "\f2a2";
  3180. }
  3181. i.icon.asl.interpreting:before {
  3182.   content: "\f2a3";
  3183. }
  3184. i.icon.deaf:before {
  3185.   content: "\f2a4";
  3186. }
  3187. i.icon.american.sign.language.interpreting:before {
  3188.   content: "\f2a3";
  3189. }
  3190. i.icon.hard.of.hearing:before {
  3191.   content: "\f2a4";
  3192. }
  3193. i.icon.signing:before {
  3194.   content: "\f2a7";
  3195. }
  3196. i.icon.new.pied.piper:before {
  3197.   content: "\f2ae";
  3198. }
  3199. i.icon.theme.isle:before {
  3200.   content: "\f2b2";
  3201. }
  3202. i.icon.google.plus.official:before {
  3203.   content: "\f2b3";
  3204. }
  3205. i.icon.fa:before {
  3206.   content: "\f2b4";
  3207. }
  3208. i.icon.vcard:before {
  3209.   content: "\f2bb";
  3210. }
  3211. i.icon.vcard.outline:before {
  3212.   content: "\f2bc";
  3213. }
  3214. i.icon.drivers.license:before {
  3215.   content: "\f2c2";
  3216. }
  3217. i.icon.drivers.license.outline:before {
  3218.   content: "\f2c3";
  3219. }
  3220. i.icon.thermometer:before {
  3221.   content: "\f2c7";
  3222. }
  3223. i.icon.s15:before {
  3224.   content: "\f2cd";
  3225. }
  3226. i.icon.bath:before {
  3227.   content: "\f2cd";
  3228. }
  3229. i.icon.times.rectangle:before {
  3230.   content: "\f2d3";
  3231. }
  3232. i.icon.times.rectangle.outline:before {
  3233.   content: "\f2d4";
  3234. }
  3235. /*******************************
  3236.          Site Overrides
  3237. *******************************/
  3238. /*!
  3239.  * # Semantic UI 2.2.14 - Input
  3240.  * http://github.com/semantic-org/semantic-ui/
  3241.  *
  3242.  *
  3243.  * Released under the MIT license
  3244.  * http://opensource.org/licenses/MIT
  3245.  *
  3246.  */
  3247. /*******************************
  3248.            Standard
  3249. *******************************/
  3250. /*--------------------
  3251.         Inputs
  3252. ---------------------*/
  3253. .ui.input {
  3254.   position: relative;
  3255.   font-weight: normal;
  3256.   font-style: normal;
  3257.   display: -webkit-inline-box;
  3258.   display: -ms-inline-flexbox;
  3259.   display: inline-flex;
  3260.   color: rgba(0, 0, 0, 0.87);
  3261. }
  3262. .ui.input input {
  3263.   margin: 0em;
  3264.   max-width: 100%;
  3265.   -webkit-box-flex: 1;
  3266.   -ms-flex: 1 0 auto;
  3267.   flex: 1 0 auto;
  3268.   outline: none;
  3269.   -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  3270.   text-align: left;
  3271.   line-height: 1.21428571em;
  3272.   font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  3273.   padding: 0.67857143em 1em;
  3274.   background: #FFFFFF;
  3275.   border: 1px solid rgba(34, 36, 38, 0.15);
  3276.   color: rgba(0, 0, 0, 0.87);
  3277.   border-radius: 0.28571429rem;
  3278.   -webkit-transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
  3279.   transition: border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
  3280.   transition: box-shadow 0.1s ease, border-color 0.1s ease;
  3281.   transition: box-shadow 0.1s ease, border-color 0.1s ease, -webkit-box-shadow 0.1s ease;
  3282.   -webkit-box-shadow: none;
  3283.   box-shadow: none;
  3284. }
  3285. /*--------------------
  3286.       Placeholder
  3287. ---------------------*/
  3288. /* browsers require these rules separate */
  3289. .ui.input input::-webkit-input-placeholder {
  3290.   color: rgba(191, 191, 191, 0.87);
  3291. }
  3292. .ui.input input::-moz-placeholder {
  3293.   color: rgba(191, 191, 191, 0.87);
  3294. }
  3295. .ui.input input:-ms-input-placeholder {
  3296.   color: rgba(191, 191, 191, 0.87);
  3297. }
  3298. /*******************************
  3299.             States
  3300. *******************************/
  3301. /*--------------------
  3302.         Disabled
  3303. ---------------------*/
  3304. .ui.disabled.input,
  3305. .ui.input:not(.disabled) input[disabled] {
  3306.   opacity: 0.45;
  3307. }
  3308. .ui.disabled.input input,
  3309. .ui.input:not(.disabled) input[disabled] {
  3310.   pointer-events: none;
  3311. }
  3312. /*--------------------
  3313.         Active
  3314. ---------------------*/
  3315. .ui.input input:active,
  3316. .ui.input.down input {
  3317.   border-color: rgba(0, 0, 0, 0.3);
  3318.   background: #FAFAFA;
  3319.   color: rgba(0, 0, 0, 0.87);
  3320.   -webkit-box-shadow: none;
  3321.   box-shadow: none;
  3322. }
  3323. /*--------------------
  3324.        Loading
  3325. ---------------------*/
  3326. .ui.loading.loading.input > i.icon:before {
  3327.   position: absolute;
  3328.   content: '';
  3329.   top: 50%;
  3330.   left: 50%;
  3331.   margin: -0.64285714em 0em 0em -0.64285714em;
  3332.   width: 1.28571429em;
  3333.   height: 1.28571429em;
  3334.   border-radius: 500rem;
  3335.   border: 0.2em solid rgba(0, 0, 0, 0.1);
  3336. }
  3337. .ui.loading.loading.input > i.icon:after {
  3338.   position: absolute;
  3339.   content: '';
  3340.   top: 50%;
  3341.   left: 50%;
  3342.   margin: -0.64285714em 0em 0em -0.64285714em;
  3343.   width: 1.28571429em;
  3344.   height: 1.28571429em;
  3345.   -webkit-animation: button-spin 0.6s linear;
  3346.   animation: button-spin 0.6s linear;
  3347.   -webkit-animation-iteration-count: infinite;
  3348.   animation-iteration-count: infinite;
  3349.   border-radius: 500rem;
  3350.   border-color: #767676 transparent transparent;
  3351.   border-style: solid;
  3352.   border-width: 0.2em;
  3353.   -webkit-box-shadow: 0px 0px 0px 1px transparent;
  3354.   box-shadow: 0px 0px 0px 1px transparent;
  3355. }
  3356. /*--------------------
  3357.         Focus
  3358. ---------------------*/
  3359. .ui.input.focus input,
  3360. .ui.input input:focus {
  3361.   border-color: #85B7D9;
  3362.   background: #FFFFFF;
  3363.   color: rgba(0, 0, 0, 0.8);
  3364.   -webkit-box-shadow: none;
  3365.   box-shadow: none;
  3366. }
  3367. .ui.input.focus input::-webkit-input-placeholder,
  3368. .ui.input input:focus::-webkit-input-placeholder {
  3369.   color: rgba(115, 115, 115, 0.87);
  3370. }
  3371. .ui.input.focus input::-moz-placeholder,
  3372. .ui.input input:focus::-moz-placeholder {
  3373.   color: rgba(115, 115, 115, 0.87);
  3374. }
  3375. .ui.input.focus input:-ms-input-placeholder,
  3376. .ui.input input:focus:-ms-input-placeholder {
  3377.   color: rgba(115, 115, 115, 0.87);
  3378. }
  3379. /*--------------------
  3380.         Error
  3381. ---------------------*/
  3382. .ui.input.error input {
  3383.   background-color: #FFF6F6;
  3384.   border-color: #E0B4B4;
  3385.   color: #9F3A38;
  3386.   -webkit-box-shadow: none;
  3387.   box-shadow: none;
  3388. }
  3389. /* Error Placeholder */
  3390. .ui.input.error input::-webkit-input-placeholder {
  3391.   color: #e7bdbc;
  3392. }
  3393. .ui.input.error input::-moz-placeholder {
  3394.   color: #e7bdbc;
  3395. }
  3396. .ui.input.error input:-ms-input-placeholder {
  3397.   color: #e7bdbc !important;
  3398. }
  3399. /* Focused Error Placeholder */
  3400. .ui.input.error input:focus::-webkit-input-placeholder {
  3401.   color: #da9796;
  3402. }
  3403. .ui.input.error input:focus::-moz-placeholder {
  3404.   color: #da9796;
  3405. }
  3406. .ui.input.error input:focus:-ms-input-placeholder {
  3407.   color: #da9796 !important;
  3408. }
  3409. /*******************************
  3410.            Variations
  3411. *******************************/
  3412. /*--------------------
  3413.       Transparent
  3414. ---------------------*/
  3415. .ui.transparent.input input {
  3416.   border-color: transparent !important;
  3417.   background-color: transparent !important;
  3418.   padding: 0em !important;
  3419.   -webkit-box-shadow: none !important;
  3420.   box-shadow: none !important;
  3421.   border-radius: 0px !important;
  3422. }
  3423. /* Transparent Icon */
  3424. .ui.transparent.icon.input > i.icon {
  3425.   width: 1.1em;
  3426. }
  3427. .ui.transparent.icon.input > input {
  3428.   padding-left: 0em !important;
  3429.   padding-right: 2em !important;
  3430. }
  3431. .ui.transparent[class*="left icon"].input > input {
  3432.   padding-left: 2em !important;
  3433.   padding-right: 0em !important;
  3434. }
  3435. /* Transparent Inverted */
  3436. .ui.transparent.inverted.input {
  3437.   color: #FFFFFF;
  3438. }
  3439. .ui.transparent.inverted.input input {
  3440.   color: inherit;
  3441. }
  3442. .ui.transparent.inverted.input input::-webkit-input-placeholder {
  3443.   color: rgba(255, 255, 255, 0.5);
  3444. }
  3445. .ui.transparent.inverted.input input::-moz-placeholder {
  3446.   color: rgba(255, 255, 255, 0.5);
  3447. }
  3448. .ui.transparent.inverted.input input:-ms-input-placeholder {
  3449.   color: rgba(255, 255, 255, 0.5);
  3450. }
  3451. /*--------------------
  3452.          Icon
  3453. ---------------------*/
  3454. .ui.icon.input > i.icon {
  3455.   cursor: default;
  3456.   position: absolute;
  3457.   line-height: 1;
  3458.   text-align: center;
  3459.   top: 0px;
  3460.   right: 0px;
  3461.   margin: 0em;
  3462.   height: 100%;
  3463.   width: 2.67142857em;
  3464.   opacity: 0.5;
  3465.   border-radius: 0em 0.28571429rem 0.28571429rem 0em;
  3466.   -webkit-transition: opacity 0.3s ease;
  3467.   transition: opacity 0.3s ease;
  3468. }
  3469. .ui.icon.input > i.icon:not(.link) {
  3470.   pointer-events: none;
  3471. }
  3472. .ui.icon.input input {
  3473.   padding-right: 2.67142857em !important;
  3474. }
  3475. .ui.icon.input > i.icon:before,
  3476. .ui.icon.input > i.icon:after {
  3477.   left: 0;
  3478.   position: absolute;
  3479.   text-align: center;
  3480.   top: 50%;
  3481.   width: 100%;
  3482.   margin-top: -0.5em;
  3483. }
  3484. .ui.icon.input > i.link.icon {
  3485.   cursor: pointer;
  3486. }
  3487. .ui.icon.input > i.circular.icon {
  3488.   top: 0.35em;
  3489.   right: 0.5em;
  3490. }
  3491. /* Left Icon Input */
  3492. .ui[class*="left icon"].input > i.icon {
  3493.   right: auto;
  3494.   left: 1px;
  3495.   border-radius: 0.28571429rem 0em 0em 0.28571429rem;
  3496. }
  3497. .ui[class*="left icon"].input > i.circular.icon {
  3498.   right: auto;
  3499.   left: 0.5em;
  3500. }
  3501. .ui[class*="left icon"].input > input {
  3502.   padding-left: 2.67142857em !important;
  3503.   padding-right: 1em !important;
  3504. }
  3505. /* Focus */
  3506. .ui.icon.input > input:focus ~ i.icon {
  3507.   opacity: 1;
  3508. }
  3509. /*--------------------
  3510.         Labeled
  3511. ---------------------*/
  3512. /* Adjacent Label */
  3513. .ui.labeled.input > .label {
  3514.   -webkit-box-flex: 0;
  3515.   -ms-flex: 0 0 auto;
  3516.   flex: 0 0 auto;
  3517.   margin: 0;
  3518.   font-size: 1em;
  3519. }
  3520. .ui.labeled.input > .label:not(.corner) {
  3521.   padding-top: 0.78571429em;
  3522.   padding-bottom: 0.78571429em;
  3523. }
  3524. /* Regular Label on Left */
  3525. .ui.labeled.input:not([class*="corner labeled"]) .label:first-child {
  3526.   border-top-right-radius: 0px;
  3527.   border-bottom-right-radius: 0px;
  3528. }
  3529. .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input {
  3530.   border-top-left-radius: 0px;
  3531.   border-bottom-left-radius: 0px;
  3532.   border-left-color: transparent;
  3533. }
  3534. .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input:focus {
  3535.   border-left-color: #85B7D9;
  3536. }
  3537. /* Regular Label on Right */
  3538. .ui[class*="right labeled"].input input {
  3539.   border-top-right-radius: 0px !important;
  3540.   border-bottom-right-radius: 0px !important;
  3541.   border-right-color: transparent !important;
  3542. }
  3543. .ui[class*="right labeled"].input input + .label {
  3544.   border-top-left-radius: 0px;
  3545.   border-bottom-left-radius: 0px;
  3546. }
  3547. .ui[class*="right labeled"].input input:focus {
  3548.   border-right-color: #85B7D9 !important;
  3549. }
  3550. /* Corner Label */
  3551. .ui.labeled.input .corner.label {
  3552.   top: 1px;
  3553.   right: 1px;
  3554.   font-size: 0.64285714em;
  3555.   border-radius: 0em 0.28571429rem 0em 0em;
  3556. }
  3557. /* Spacing with corner label */
  3558. .ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input input {
  3559.   padding-right: 2.5em !important;
  3560. }
  3561. .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > input {
  3562.   padding-right: 3.25em !important;
  3563. }
  3564. .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > .icon {
  3565.   margin-right: 1.25em;
  3566. }
  3567. /* Left Labeled */
  3568. .ui[class*="left corner labeled"].labeled.input input {
  3569.   padding-left: 2.5em !important;
  3570. }
  3571. .ui[class*="left corner labeled"].icon.input > input {
  3572.   padding-left: 3.25em !important;
  3573. }
  3574. .ui[class*="left corner labeled"].icon.input > .icon {
  3575.   margin-left: 1.25em;
  3576. }
  3577. /* Corner Label Position  */
  3578. .ui.input > .ui.corner.label {
  3579.   top: 1px;
  3580.   right: 1px;
  3581. }
  3582. .ui.input > .ui.left.corner.label {
  3583.   right: auto;
  3584.   left: 1px;
  3585. }
  3586. /*--------------------
  3587.         Action
  3588. ---------------------*/
  3589. .ui.action.input > .button,
  3590. .ui.action.input > .buttons {
  3591.   display: -webkit-box;
  3592.   display: -ms-flexbox;
  3593.   display: flex;
  3594.   -webkit-box-align: center;
  3595.   -ms-flex-align: center;
  3596.   align-items: center;
  3597.   -webkit-box-flex: 0;
  3598.   -ms-flex: 0 0 auto;
  3599.   flex: 0 0 auto;
  3600. }
  3601. .ui.action.input > .button,
  3602. .ui.action.input > .buttons > .button {
  3603.   padding-top: 0.78571429em;
  3604.   padding-bottom: 0.78571429em;
  3605.   margin: 0;
  3606. }
  3607. /* Button on Right */
  3608. .ui.action.input:not([class*="left action"]) > input {
  3609.   border-top-right-radius: 0px !important;
  3610.   border-bottom-right-radius: 0px !important;
  3611.   border-right-color: transparent !important;
  3612. }
  3613. .ui.action.input:not([class*="left action"]) > .dropdown:not(:first-child),
  3614. .ui.action.input:not([class*="left action"]) > .button:not(:first-child),
  3615. .ui.action.input:not([class*="left action"]) > .buttons:not(:first-child) > .button {
  3616.   border-radius: 0px;
  3617. }
  3618. .ui.action.input:not([class*="left action"]) > .dropdown:last-child,
  3619. .ui.action.input:not([class*="left action"]) > .button:last-child,
  3620. .ui.action.input:not([class*="left action"]) > .buttons:last-child > .button {
  3621.   border-radius: 0px 0.28571429rem 0.28571429rem 0px;
  3622. }
  3623. /* Input Focus */
  3624. .ui.action.input:not([class*="left action"]) input:focus {
  3625.   border-right-color: #85B7D9 !important;
  3626. }
  3627. /* Button on Left */
  3628. .ui[class*="left action"].input > input {
  3629.   border-top-left-radius: 0px !important;
  3630.   border-bottom-left-radius: 0px !important;
  3631.   border-left-color: transparent !important;
  3632. }
  3633. .ui[class*="left action"].input > .dropdown,
  3634. .ui[class*="left action"].input > .button,
  3635. .ui[class*="left action"].input > .buttons > .button {
  3636.   border-radius: 0px;
  3637. }
  3638. .ui[class*="left action"].input > .dropdown:first-child,
  3639. .ui[class*="left action"].input > .button:first-child,
  3640. .ui[class*="left action"].input > .buttons:first-child > .button {
  3641.   border-radius: 0.28571429rem 0px 0px 0.28571429rem;
  3642. }
  3643. /* Input Focus */
  3644. .ui[class*="left action"].input > input:focus {
  3645.   border-left-color: #85B7D9 !important;
  3646. }
  3647. /*--------------------
  3648.        Inverted
  3649. ---------------------*/
  3650. /* Standard */
  3651. .ui.inverted.input input {
  3652.   border: none;
  3653. }
  3654. /*--------------------
  3655.         Fluid
  3656. ---------------------*/
  3657. .ui.fluid.input {
  3658.   display: -webkit-box;
  3659.   display: -ms-flexbox;
  3660.   display: flex;
  3661. }
  3662. .ui.fluid.input > input {
  3663.   width: 0px !important;
  3664. }
  3665. /*--------------------
  3666.         Size
  3667. ---------------------*/
  3668. .ui.mini.input {
  3669.   font-size: 0.78571429em;
  3670. }
  3671. .ui.small.input {
  3672.   font-size: 0.92857143em;
  3673. }
  3674. .ui.input {
  3675.   font-size: 1em;
  3676. }
  3677. .ui.large.input {
  3678.   font-size: 1.14285714em;
  3679. }
  3680. .ui.big.input {
  3681.   font-size: 1.28571429em;
  3682. }
  3683. .ui.huge.input {
  3684.   font-size: 1.42857143em;
  3685. }
  3686. .ui.massive.input {
  3687.   font-size: 1.71428571em;
  3688. }
  3689. /*******************************
  3690.          Theme Overrides
  3691. *******************************/
  3692. /*******************************
  3693.          Site Overrides
  3694. *******************************/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement