Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 65.24 KB | None | 0 0
  1. body{
  2.     font-size:20px
  3. }
  4. .phone_infoBare{
  5.     height:24px
  6. }
  7. .phone_app{
  8.     height:100%;
  9.     width:100%;
  10.     display:flex;
  11.     flex-direction:column
  12. }
  13. .phone_title{
  14.     padding-left:24px;
  15.     padding-top:6px;
  16.     height:64px;
  17.     line-height:52px;
  18.     font-size:24px;
  19.     font-weight:500
  20. }
  21. .phone_content{
  22.     height:100%;
  23.     overflow-y:auto
  24. }
  25. .phone_wrapper{
  26.     bottom:0;
  27.     right:0;
  28.     background-size:cover
  29. }
  30. .phone_coque,.phone_wrapper{
  31.     position:absolute;
  32.     width:500px;
  33.     height:1000px
  34. }
  35. .phone_coque{
  36.     z-index:999
  37. }
  38. .phone_screen{
  39.     overflow:hidden;
  40.     position:absolute;
  41.     background-color:#fff;
  42.     bottom:100px;
  43.     left:50px;
  44.     right:50px;
  45.     top:100px;
  46.     display:flex
  47. }
  48. *{
  49.     font-family:Roboto,sans-serif;
  50.     box-sizing:border-box
  51. }
  52. ::-webkit-scrollbar-track{
  53.     box-shadow:inset 0 0 6px rgba(0,0,0,.3);
  54.     background-color:#f5f5f5
  55. }
  56. ::-webkit-scrollbar{
  57.     width:3px;
  58.     background-color:transparent
  59. }
  60. ::-webkit-scrollbar-thumb{
  61.     background-color:#666
  62. }
  63. /*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */
  64. @font-face{
  65.     font-family:FontAwesome;
  66.     src:url(/html/static/fonts/fontawesome-webfont.eot);
  67.     src:url(/html/static/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(/html/static/fonts/fontawesome-webfont.woff2) format("woff2"),url(/html/static/fonts/fontawesome-webfont.woff) format("woff"),url(/html/static/fonts/fontawesome-webfont.ttf) format("truetype"),url(/html/static/img/fontawesome-webfont.svg#fontawesomeregular) format("svg");
  68.     font-weight:400;
  69.     font-style:normal
  70. }
  71. .fa{
  72.     display:inline-block;
  73.     font:normal normal normal 14px/1 FontAwesome;
  74.     font-size:inherit;
  75.     text-rendering:auto;
  76.     -webkit-font-smoothing:antialiased;
  77.     -moz-osx-font-smoothing:grayscale
  78. }
  79. .fa-lg{
  80.     font-size:1.33333333em;
  81.     line-height:.75em;
  82.     vertical-align:-15%
  83. }
  84. .fa-2x{
  85.     font-size:2em
  86. }
  87. .fa-3x{
  88.     font-size:3em
  89. }
  90. .fa-4x{
  91.     font-size:4em
  92. }
  93. .fa-5x{
  94.     font-size:5em
  95. }
  96. .fa-fw{
  97.     width:1.28571429em;
  98.     text-align:center
  99. }
  100. .fa-ul{
  101.     padding-left:0;
  102.     margin-left:2.14285714em;
  103.     list-style-type:none
  104. }
  105. .fa-ul>li{
  106.     position:relative
  107. }
  108. .fa-li{
  109.     position:absolute;
  110.     left:-2.14285714em;
  111.     width:2.14285714em;
  112.     top:.14285714em;
  113.     text-align:center
  114. }
  115. .fa-li.fa-lg{
  116.     left:-1.85714286em
  117. }
  118. .fa-border{
  119.     padding:.2em .25em .15em;
  120.     border:.08em solid #eee;
  121.     border-radius:.1em
  122. }
  123. .fa-pull-left{
  124.     float:left
  125. }
  126. .fa-pull-right{
  127.     float:right
  128. }
  129. .fa.fa-pull-left{
  130.     margin-right:.3em
  131. }
  132. .fa.fa-pull-right{
  133.     margin-left:.3em
  134. }
  135. .pull-right{
  136.     float:right
  137. }
  138. .pull-left{
  139.     float:left
  140. }
  141. .fa.pull-left{
  142.     margin-right:.3em
  143. }
  144. .fa.pull-right{
  145.     margin-left:.3em
  146. }
  147. .fa-spin{
  148.     animation:fa-spin 2s infinite linear
  149. }
  150. .fa-pulse{
  151.     animation:fa-spin 1s infinite steps(8)
  152. }
  153. @keyframes fa-spin{
  154.     0%{
  155.         transform:rotate(0deg)
  156.     }
  157.     to{
  158.         transform:rotate(359deg)
  159.     }
  160. }
  161. .fa-rotate-90{
  162.     -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  163.     transform:rotate(90deg)
  164. }
  165. .fa-rotate-180{
  166.     -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  167.     transform:rotate(180deg)
  168. }
  169. .fa-rotate-270{
  170.     -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  171.     transform:rotate(270deg)
  172. }
  173. .fa-flip-horizontal{
  174.     -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  175.     transform:scaleX(-1)
  176. }
  177. .fa-flip-vertical{
  178.     -ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  179.     transform:scaleY(-1)
  180. }
  181. :root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{
  182.     filter:none
  183. }
  184. .fa-stack{
  185.     position:relative;
  186.     display:inline-block;
  187.     width:2em;
  188.     height:2em;
  189.     line-height:2em;
  190.     vertical-align:middle
  191. }
  192. .fa-stack-1x,.fa-stack-2x{
  193.     position:absolute;
  194.     left:0;
  195.     width:100%;
  196.     text-align:center
  197. }
  198. .fa-stack-1x{
  199.     line-height:inherit
  200. }
  201. .fa-stack-2x{
  202.     font-size:2em
  203. }
  204. .fa-inverse{
  205.     color:#fff
  206. }
  207. .fa-glass:before{
  208.     content:"\F000"
  209. }
  210. .fa-music:before{
  211.     content:"\F001"
  212. }
  213. .fa-search:before{
  214.     content:"\F002"
  215. }
  216. .fa-envelope-o:before{
  217.     content:"\F003"
  218. }
  219. .fa-heart:before{
  220.     content:"\F004"
  221. }
  222. .fa-star:before{
  223.     content:"\F005"
  224. }
  225. .fa-star-o:before{
  226.     content:"\F006"
  227. }
  228. .fa-user:before{
  229.     content:"\F007"
  230. }
  231. .fa-film:before{
  232.     content:"\F008"
  233. }
  234. .fa-th-large:before{
  235.     content:"\F009"
  236. }
  237. .fa-th:before{
  238.     content:"\F00A"
  239. }
  240. .fa-th-list:before{
  241.     content:"\F00B"
  242. }
  243. .fa-check:before{
  244.     content:"\F00C"
  245. }
  246. .fa-close:before,.fa-remove:before,.fa-times:before{
  247.     content:"\F00D"
  248. }
  249. .fa-search-plus:before{
  250.     content:"\F00E"
  251. }
  252. .fa-search-minus:before{
  253.     content:"\F010"
  254. }
  255. .fa-power-off:before{
  256.     content:"\F011"
  257. }
  258. .fa-signal:before{
  259.     content:"\F012"
  260. }
  261. .fa-cog:before,.fa-gear:before{
  262.     content:"\F013"
  263. }
  264. .fa-trash-o:before{
  265.     content:"\F014"
  266. }
  267. .fa-home:before{
  268.     content:"\F015"
  269. }
  270. .fa-file-o:before{
  271.     content:"\F016"
  272. }
  273. .fa-clock-o:before{
  274.     content:"\F017"
  275. }
  276. .fa-road:before{
  277.     content:"\F018"
  278. }
  279. .fa-download:before{
  280.     content:"\F019"
  281. }
  282. .fa-arrow-circle-o-down:before{
  283.     content:"\F01A"
  284. }
  285. .fa-arrow-circle-o-up:before{
  286.     content:"\F01B"
  287. }
  288. .fa-inbox:before{
  289.     content:"\F01C"
  290. }
  291. .fa-play-circle-o:before{
  292.     content:"\F01D"
  293. }
  294. .fa-repeat:before,.fa-rotate-right:before{
  295.     content:"\F01E"
  296. }
  297. .fa-refresh:before{
  298.     content:"\F021"
  299. }
  300. .fa-list-alt:before{
  301.     content:"\F022"
  302. }
  303. .fa-lock:before{
  304.     content:"\F023"
  305. }
  306. .fa-flag:before{
  307.     content:"\F024"
  308. }
  309. .fa-headphones:before{
  310.     content:"\F025"
  311. }
  312. .fa-volume-off:before{
  313.     content:"\F026"
  314. }
  315. .fa-volume-down:before{
  316.     content:"\F027"
  317. }
  318. .fa-volume-up:before{
  319.     content:"\F028"
  320. }
  321. .fa-qrcode:before{
  322.     content:"\F029"
  323. }
  324. .fa-barcode:before{
  325.     content:"\F02A"
  326. }
  327. .fa-tag:before{
  328.     content:"\F02B"
  329. }
  330. .fa-tags:before{
  331.     content:"\F02C"
  332. }
  333. .fa-book:before{
  334.     content:"\F02D"
  335. }
  336. .fa-bookmark:before{
  337.     content:"\F02E"
  338. }
  339. .fa-print:before{
  340.     content:"\F02F"
  341. }
  342. .fa-camera:before{
  343.     content:"\F030"
  344. }
  345. .fa-font:before{
  346.     content:"\F031"
  347. }
  348. .fa-bold:before{
  349.     content:"\F032"
  350. }
  351. .fa-italic:before{
  352.     content:"\F033"
  353. }
  354. .fa-text-height:before{
  355.     content:"\F034"
  356. }
  357. .fa-text-width:before{
  358.     content:"\F035"
  359. }
  360. .fa-align-left:before{
  361.     content:"\F036"
  362. }
  363. .fa-align-center:before{
  364.     content:"\F037"
  365. }
  366. .fa-align-right:before{
  367.     content:"\F038"
  368. }
  369. .fa-align-justify:before{
  370.     content:"\F039"
  371. }
  372. .fa-list:before{
  373.     content:"\F03A"
  374. }
  375. .fa-dedent:before,.fa-outdent:before{
  376.     content:"\F03B"
  377. }
  378. .fa-indent:before{
  379.     content:"\F03C"
  380. }
  381. .fa-video-camera:before{
  382.     content:"\F03D"
  383. }
  384. .fa-image:before,.fa-photo:before,.fa-picture-o:before{
  385.     content:"\F03E"
  386. }
  387. .fa-pencil:before{
  388.     content:"\F040"
  389. }
  390. .fa-map-marker:before{
  391.     content:"\F041"
  392. }
  393. .fa-adjust:before{
  394.     content:"\F042"
  395. }
  396. .fa-tint:before{
  397.     content:"\F043"
  398. }
  399. .fa-edit:before,.fa-pencil-square-o:before{
  400.     content:"\F044"
  401. }
  402. .fa-share-square-o:before{
  403.     content:"\F045"
  404. }
  405. .fa-check-square-o:before{
  406.     content:"\F046"
  407. }
  408. .fa-arrows:before{
  409.     content:"\F047"
  410. }
  411. .fa-step-backward:before{
  412.     content:"\F048"
  413. }
  414. .fa-fast-backward:before{
  415.     content:"\F049"
  416. }
  417. .fa-backward:before{
  418.     content:"\F04A"
  419. }
  420. .fa-play:before{
  421.     content:"\F04B"
  422. }
  423. .fa-pause:before{
  424.     content:"\F04C"
  425. }
  426. .fa-stop:before{
  427.     content:"\F04D"
  428. }
  429. .fa-forward:before{
  430.     content:"\F04E"
  431. }
  432. .fa-fast-forward:before{
  433.     content:"\F050"
  434. }
  435. .fa-step-forward:before{
  436.     content:"\F051"
  437. }
  438. .fa-eject:before{
  439.     content:"\F052"
  440. }
  441. .fa-chevron-left:before{
  442.     content:"\F053"
  443. }
  444. .fa-chevron-right:before{
  445.     content:"\F054"
  446. }
  447. .fa-plus-circle:before{
  448.     content:"\F055"
  449. }
  450. .fa-minus-circle:before{
  451.     content:"\F056"
  452. }
  453. .fa-times-circle:before{
  454.     content:"\F057"
  455. }
  456. .fa-check-circle:before{
  457.     content:"\F058"
  458. }
  459. .fa-question-circle:before{
  460.     content:"\F059"
  461. }
  462. .fa-info-circle:before{
  463.     content:"\F05A"
  464. }
  465. .fa-crosshairs:before{
  466.     content:"\F05B"
  467. }
  468. .fa-times-circle-o:before{
  469.     content:"\F05C"
  470. }
  471. .fa-check-circle-o:before{
  472.     content:"\F05D"
  473. }
  474. .fa-ban:before{
  475.     content:"\F05E"
  476. }
  477. .fa-arrow-left:before{
  478.     content:"\F060"
  479. }
  480. .fa-arrow-right:before{
  481.     content:"\F061"
  482. }
  483. .fa-arrow-up:before{
  484.     content:"\F062"
  485. }
  486. .fa-arrow-down:before{
  487.     content:"\F063"
  488. }
  489. .fa-mail-forward:before,.fa-share:before{
  490.     content:"\F064"
  491. }
  492. .fa-expand:before{
  493.     content:"\F065"
  494. }
  495. .fa-compress:before{
  496.     content:"\F066"
  497. }
  498. .fa-plus:before{
  499.     content:"\F067"
  500. }
  501. .fa-minus:before{
  502.     content:"\F068"
  503. }
  504. .fa-asterisk:before{
  505.     content:"\F069"
  506. }
  507. .fa-exclamation-circle:before{
  508.     content:"\F06A"
  509. }
  510. .fa-gift:before{
  511.     content:"\F06B"
  512. }
  513. .fa-leaf:before{
  514.     content:"\F06C"
  515. }
  516. .fa-fire:before{
  517.     content:"\F06D"
  518. }
  519. .fa-eye:before{
  520.     content:"\F06E"
  521. }
  522. .fa-eye-slash:before{
  523.     content:"\F070"
  524. }
  525. .fa-exclamation-triangle:before,.fa-warning:before{
  526.     content:"\F071"
  527. }
  528. .fa-plane:before{
  529.     content:"\F072"
  530. }
  531. .fa-calendar:before{
  532.     content:"\F073"
  533. }
  534. .fa-random:before{
  535.     content:"\F074"
  536. }
  537. .fa-comment:before{
  538.     content:"\F075"
  539. }
  540. .fa-magnet:before{
  541.     content:"\F076"
  542. }
  543. .fa-chevron-up:before{
  544.     content:"\F077"
  545. }
  546. .fa-chevron-down:before{
  547.     content:"\F078"
  548. }
  549. .fa-retweet:before{
  550.     content:"\F079"
  551. }
  552. .fa-shopping-cart:before{
  553.     content:"\F07A"
  554. }
  555. .fa-folder:before{
  556.     content:"\F07B"
  557. }
  558. .fa-folder-open:before{
  559.     content:"\F07C"
  560. }
  561. .fa-arrows-v:before{
  562.     content:"\F07D"
  563. }
  564. .fa-arrows-h:before{
  565.     content:"\F07E"
  566. }
  567. .fa-bar-chart-o:before,.fa-bar-chart:before{
  568.     content:"\F080"
  569. }
  570. .fa-twitter-square:before{
  571.     content:"\F081"
  572. }
  573. .fa-facebook-square:before{
  574.     content:"\F082"
  575. }
  576. .fa-camera-retro:before{
  577.     content:"\F083"
  578. }
  579. .fa-key:before{
  580.     content:"\F084"
  581. }
  582. .fa-cogs:before,.fa-gears:before{
  583.     content:"\F085"
  584. }
  585. .fa-comments:before{
  586.     content:"\F086"
  587. }
  588. .fa-thumbs-o-up:before{
  589.     content:"\F087"
  590. }
  591. .fa-thumbs-o-down:before{
  592.     content:"\F088"
  593. }
  594. .fa-star-half:before{
  595.     content:"\F089"
  596. }
  597. .fa-heart-o:before{
  598.     content:"\F08A"
  599. }
  600. .fa-sign-out:before{
  601.     content:"\F08B"
  602. }
  603. .fa-linkedin-square:before{
  604.     content:"\F08C"
  605. }
  606. .fa-thumb-tack:before{
  607.     content:"\F08D"
  608. }
  609. .fa-external-link:before{
  610.     content:"\F08E"
  611. }
  612. .fa-sign-in:before{
  613.     content:"\F090"
  614. }
  615. .fa-trophy:before{
  616.     content:"\F091"
  617. }
  618. .fa-github-square:before{
  619.     content:"\F092"
  620. }
  621. .fa-upload:before{
  622.     content:"\F093"
  623. }
  624. .fa-lemon-o:before{
  625.     content:"\F094"
  626. }
  627. .fa-phone:before{
  628.     content:"\F095"
  629. }
  630. .fa-square-o:before{
  631.     content:"\F096"
  632. }
  633. .fa-bookmark-o:before{
  634.     content:"\F097"
  635. }
  636. .fa-phone-square:before{
  637.     content:"\F098"
  638. }
  639. .fa-twitter:before{
  640.     content:"\F099"
  641. }
  642. .fa-facebook-f:before,.fa-facebook:before{
  643.     content:"\F09A"
  644. }
  645. .fa-github:before{
  646.     content:"\F09B"
  647. }
  648. .fa-unlock:before{
  649.     content:"\F09C"
  650. }
  651. .fa-credit-card:before{
  652.     content:"\F09D"
  653. }
  654. .fa-feed:before,.fa-rss:before{
  655.     content:"\F09E"
  656. }
  657. .fa-hdd-o:before{
  658.     content:"\F0A0"
  659. }
  660. .fa-bullhorn:before{
  661.     content:"\F0A1"
  662. }
  663. .fa-bell:before{
  664.     content:"\F0F3"
  665. }
  666. .fa-certificate:before{
  667.     content:"\F0A3"
  668. }
  669. .fa-hand-o-right:before{
  670.     content:"\F0A4"
  671. }
  672. .fa-hand-o-left:before{
  673.     content:"\F0A5"
  674. }
  675. .fa-hand-o-up:before{
  676.     content:"\F0A6"
  677. }
  678. .fa-hand-o-down:before{
  679.     content:"\F0A7"
  680. }
  681. .fa-arrow-circle-left:before{
  682.     content:"\F0A8"
  683. }
  684. .fa-arrow-circle-right:before{
  685.     content:"\F0A9"
  686. }
  687. .fa-arrow-circle-up:before{
  688.     content:"\F0AA"
  689. }
  690. .fa-arrow-circle-down:before{
  691.     content:"\F0AB"
  692. }
  693. .fa-globe:before{
  694.     content:"\F0AC"
  695. }
  696. .fa-wrench:before{
  697.     content:"\F0AD"
  698. }
  699. .fa-tasks:before{
  700.     content:"\F0AE"
  701. }
  702. .fa-filter:before{
  703.     content:"\F0B0"
  704. }
  705. .fa-briefcase:before{
  706.     content:"\F0B1"
  707. }
  708. .fa-arrows-alt:before{
  709.     content:"\F0B2"
  710. }
  711. .fa-group:before,.fa-users:before{
  712.     content:"\F0C0"
  713. }
  714. .fa-chain:before,.fa-link:before{
  715.     content:"\F0C1"
  716. }
  717. .fa-cloud:before{
  718.     content:"\F0C2"
  719. }
  720. .fa-flask:before{
  721.     content:"\F0C3"
  722. }
  723. .fa-cut:before,.fa-scissors:before{
  724.     content:"\F0C4"
  725. }
  726. .fa-copy:before,.fa-files-o:before{
  727.     content:"\F0C5"
  728. }
  729. .fa-paperclip:before{
  730.     content:"\F0C6"
  731. }
  732. .fa-floppy-o:before,.fa-save:before{
  733.     content:"\F0C7"
  734. }
  735. .fa-square:before{
  736.     content:"\F0C8"
  737. }
  738. .fa-bars:before,.fa-navicon:before,.fa-reorder:before{
  739.     content:"\F0C9"
  740. }
  741. .fa-list-ul:before{
  742.     content:"\F0CA"
  743. }
  744. .fa-list-ol:before{
  745.     content:"\F0CB"
  746. }
  747. .fa-strikethrough:before{
  748.     content:"\F0CC"
  749. }
  750. .fa-underline:before{
  751.     content:"\F0CD"
  752. }
  753. .fa-table:before{
  754.     content:"\F0CE"
  755. }
  756. .fa-magic:before{
  757.     content:"\F0D0"
  758. }
  759. .fa-truck:before{
  760.     content:"\F0D1"
  761. }
  762. .fa-pinterest:before{
  763.     content:"\F0D2"
  764. }
  765. .fa-pinterest-square:before{
  766.     content:"\F0D3"
  767. }
  768. .fa-google-plus-square:before{
  769.     content:"\F0D4"
  770. }
  771. .fa-google-plus:before{
  772.     content:"\F0D5"
  773. }
  774. .fa-money:before{
  775.     content:"\F0D6"
  776. }
  777. .fa-caret-down:before{
  778.     content:"\F0D7"
  779. }
  780. .fa-caret-up:before{
  781.     content:"\F0D8"
  782. }
  783. .fa-caret-left:before{
  784.     content:"\F0D9"
  785. }
  786. .fa-caret-right:before{
  787.     content:"\F0DA"
  788. }
  789. .fa-columns:before{
  790.     content:"\F0DB"
  791. }
  792. .fa-sort:before,.fa-unsorted:before{
  793.     content:"\F0DC"
  794. }
  795. .fa-sort-desc:before,.fa-sort-down:before{
  796.     content:"\F0DD"
  797. }
  798. .fa-sort-asc:before,.fa-sort-up:before{
  799.     content:"\F0DE"
  800. }
  801. .fa-envelope:before{
  802.     content:"\F0E0"
  803. }
  804. .fa-linkedin:before{
  805.     content:"\F0E1"
  806. }
  807. .fa-rotate-left:before,.fa-undo:before{
  808.     content:"\F0E2"
  809. }
  810. .fa-gavel:before,.fa-legal:before{
  811.     content:"\F0E3"
  812. }
  813. .fa-dashboard:before,.fa-tachometer:before{
  814.     content:"\F0E4"
  815. }
  816. .fa-comment-o:before{
  817.     content:"\F0E5"
  818. }
  819. .fa-comments-o:before{
  820.     content:"\F0E6"
  821. }
  822. .fa-bolt:before,.fa-flash:before{
  823.     content:"\F0E7"
  824. }
  825. .fa-sitemap:before{
  826.     content:"\F0E8"
  827. }
  828. .fa-umbrella:before{
  829.     content:"\F0E9"
  830. }
  831. .fa-clipboard:before,.fa-paste:before{
  832.     content:"\F0EA"
  833. }
  834. .fa-lightbulb-o:before{
  835.     content:"\F0EB"
  836. }
  837. .fa-exchange:before{
  838.     content:"\F0EC"
  839. }
  840. .fa-cloud-download:before{
  841.     content:"\F0ED"
  842. }
  843. .fa-cloud-upload:before{
  844.     content:"\F0EE"
  845. }
  846. .fa-user-md:before{
  847.     content:"\F0F0"
  848. }
  849. .fa-stethoscope:before{
  850.     content:"\F0F1"
  851. }
  852. .fa-suitcase:before{
  853.     content:"\F0F2"
  854. }
  855. .fa-bell-o:before{
  856.     content:"\F0A2"
  857. }
  858. .fa-coffee:before{
  859.     content:"\F0F4"
  860. }
  861. .fa-cutlery:before{
  862.     content:"\F0F5"
  863. }
  864. .fa-file-text-o:before{
  865.     content:"\F0F6"
  866. }
  867. .fa-building-o:before{
  868.     content:"\F0F7"
  869. }
  870. .fa-hospital-o:before{
  871.     content:"\F0F8"
  872. }
  873. .fa-ambulance:before{
  874.     content:"\F0F9"
  875. }
  876. .fa-medkit:before{
  877.     content:"\F0FA"
  878. }
  879. .fa-fighter-jet:before{
  880.     content:"\F0FB"
  881. }
  882. .fa-beer:before{
  883.     content:"\F0FC"
  884. }
  885. .fa-h-square:before{
  886.     content:"\F0FD"
  887. }
  888. .fa-plus-square:before{
  889.     content:"\F0FE"
  890. }
  891. .fa-angle-double-left:before{
  892.     content:"\F100"
  893. }
  894. .fa-angle-double-right:before{
  895.     content:"\F101"
  896. }
  897. .fa-angle-double-up:before{
  898.     content:"\F102"
  899. }
  900. .fa-angle-double-down:before{
  901.     content:"\F103"
  902. }
  903. .fa-angle-left:before{
  904.     content:"\F104"
  905. }
  906. .fa-angle-right:before{
  907.     content:"\F105"
  908. }
  909. .fa-angle-up:before{
  910.     content:"\F106"
  911. }
  912. .fa-angle-down:before{
  913.     content:"\F107"
  914. }
  915. .fa-desktop:before{
  916.     content:"\F108"
  917. }
  918. .fa-laptop:before{
  919.     content:"\F109"
  920. }
  921. .fa-tablet:before{
  922.     content:"\F10A"
  923. }
  924. .fa-mobile-phone:before,.fa-mobile:before{
  925.     content:"\F10B"
  926. }
  927. .fa-circle-o:before{
  928.     content:"\F10C"
  929. }
  930. .fa-quote-left:before{
  931.     content:"\F10D"
  932. }
  933. .fa-quote-right:before{
  934.     content:"\F10E"
  935. }
  936. .fa-spinner:before{
  937.     content:"\F110"
  938. }
  939. .fa-circle:before{
  940.     content:"\F111"
  941. }
  942. .fa-mail-reply:before,.fa-reply:before{
  943.     content:"\F112"
  944. }
  945. .fa-github-alt:before{
  946.     content:"\F113"
  947. }
  948. .fa-folder-o:before{
  949.     content:"\F114"
  950. }
  951. .fa-folder-open-o:before{
  952.     content:"\F115"
  953. }
  954. .fa-smile-o:before{
  955.     content:"\F118"
  956. }
  957. .fa-frown-o:before{
  958.     content:"\F119"
  959. }
  960. .fa-meh-o:before{
  961.     content:"\F11A"
  962. }
  963. .fa-gamepad:before{
  964.     content:"\F11B"
  965. }
  966. .fa-keyboard-o:before{
  967.     content:"\F11C"
  968. }
  969. .fa-flag-o:before{
  970.     content:"\F11D"
  971. }
  972. .fa-flag-checkered:before{
  973.     content:"\F11E"
  974. }
  975. .fa-terminal:before{
  976.     content:"\F120"
  977. }
  978. .fa-code:before{
  979.     content:"\F121"
  980. }
  981. .fa-mail-reply-all:before,.fa-reply-all:before{
  982.     content:"\F122"
  983. }
  984. .fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{
  985.     content:"\F123"
  986. }
  987. .fa-location-arrow:before{
  988.     content:"\F124"
  989. }
  990. .fa-crop:before{
  991.     content:"\F125"
  992. }
  993. .fa-code-fork:before{
  994.     content:"\F126"
  995. }
  996. .fa-chain-broken:before,.fa-unlink:before{
  997.     content:"\F127"
  998. }
  999. .fa-question:before{
  1000.     content:"\F128"
  1001. }
  1002. .fa-info:before{
  1003.     content:"\F129"
  1004. }
  1005. .fa-exclamation:before{
  1006.     content:"\F12A"
  1007. }
  1008. .fa-superscript:before{
  1009.     content:"\F12B"
  1010. }
  1011. .fa-subscript:before{
  1012.     content:"\F12C"
  1013. }
  1014. .fa-eraser:before{
  1015.     content:"\F12D"
  1016. }
  1017. .fa-puzzle-piece:before{
  1018.     content:"\F12E"
  1019. }
  1020. .fa-microphone:before{
  1021.     content:"\F130"
  1022. }
  1023. .fa-microphone-slash:before{
  1024.     content:"\F131"
  1025. }
  1026. .fa-shield:before{
  1027.     content:"\F132"
  1028. }
  1029. .fa-calendar-o:before{
  1030.     content:"\F133"
  1031. }
  1032. .fa-fire-extinguisher:before{
  1033.     content:"\F134"
  1034. }
  1035. .fa-rocket:before{
  1036.     content:"\F135"
  1037. }
  1038. .fa-maxcdn:before{
  1039.     content:"\F136"
  1040. }
  1041. .fa-chevron-circle-left:before{
  1042.     content:"\F137"
  1043. }
  1044. .fa-chevron-circle-right:before{
  1045.     content:"\F138"
  1046. }
  1047. .fa-chevron-circle-up:before{
  1048.     content:"\F139"
  1049. }
  1050. .fa-chevron-circle-down:before{
  1051.     content:"\F13A"
  1052. }
  1053. .fa-html5:before{
  1054.     content:"\F13B"
  1055. }
  1056. .fa-css3:before{
  1057.     content:"\F13C"
  1058. }
  1059. .fa-anchor:before{
  1060.     content:"\F13D"
  1061. }
  1062. .fa-unlock-alt:before{
  1063.     content:"\F13E"
  1064. }
  1065. .fa-bullseye:before{
  1066.     content:"\F140"
  1067. }
  1068. .fa-ellipsis-h:before{
  1069.     content:"\F141"
  1070. }
  1071. .fa-ellipsis-v:before{
  1072.     content:"\F142"
  1073. }
  1074. .fa-rss-square:before{
  1075.     content:"\F143"
  1076. }
  1077. .fa-play-circle:before{
  1078.     content:"\F144"
  1079. }
  1080. .fa-ticket:before{
  1081.     content:"\F145"
  1082. }
  1083. .fa-minus-square:before{
  1084.     content:"\F146"
  1085. }
  1086. .fa-minus-square-o:before{
  1087.     content:"\F147"
  1088. }
  1089. .fa-level-up:before{
  1090.     content:"\F148"
  1091. }
  1092. .fa-level-down:before{
  1093.     content:"\F149"
  1094. }
  1095. .fa-check-square:before{
  1096.     content:"\F14A"
  1097. }
  1098. .fa-pencil-square:before{
  1099.     content:"\F14B"
  1100. }
  1101. .fa-external-link-square:before{
  1102.     content:"\F14C"
  1103. }
  1104. .fa-share-square:before{
  1105.     content:"\F14D"
  1106. }
  1107. .fa-compass:before{
  1108.     content:"\F14E"
  1109. }
  1110. .fa-caret-square-o-down:before,.fa-toggle-down:before{
  1111.     content:"\F150"
  1112. }
  1113. .fa-caret-square-o-up:before,.fa-toggle-up:before{
  1114.     content:"\F151"
  1115. }
  1116. .fa-caret-square-o-right:before,.fa-toggle-right:before{
  1117.     content:"\F152"
  1118. }
  1119. .fa-eur:before,.fa-euro:before{
  1120.     content:"\F153"
  1121. }
  1122. .fa-gbp:before{
  1123.     content:"\F154"
  1124. }
  1125. .fa-dollar:before,.fa-usd:before{
  1126.     content:"\F155"
  1127. }
  1128. .fa-inr:before,.fa-rupee:before{
  1129.     content:"\F156"
  1130. }
  1131. .fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{
  1132.     content:"\F157"
  1133. }
  1134. .fa-rouble:before,.fa-rub:before,.fa-ruble:before{
  1135.     content:"\F158"
  1136. }
  1137. .fa-krw:before,.fa-won:before{
  1138.     content:"\F159"
  1139. }
  1140. .fa-bitcoin:before,.fa-btc:before{
  1141.     content:"\F15A"
  1142. }
  1143. .fa-file:before{
  1144.     content:"\F15B"
  1145. }
  1146. .fa-file-text:before{
  1147.     content:"\F15C"
  1148. }
  1149. .fa-sort-alpha-asc:before{
  1150.     content:"\F15D"
  1151. }
  1152. .fa-sort-alpha-desc:before{
  1153.     content:"\F15E"
  1154. }
  1155. .fa-sort-amount-asc:before{
  1156.     content:"\F160"
  1157. }
  1158. .fa-sort-amount-desc:before{
  1159.     content:"\F161"
  1160. }
  1161. .fa-sort-numeric-asc:before{
  1162.     content:"\F162"
  1163. }
  1164. .fa-sort-numeric-desc:before{
  1165.     content:"\F163"
  1166. }
  1167. .fa-thumbs-up:before{
  1168.     content:"\F164"
  1169. }
  1170. .fa-thumbs-down:before{
  1171.     content:"\F165"
  1172. }
  1173. .fa-youtube-square:before{
  1174.     content:"\F166"
  1175. }
  1176. .fa-youtube:before{
  1177.     content:"\F167"
  1178. }
  1179. .fa-xing:before{
  1180.     content:"\F168"
  1181. }
  1182. .fa-xing-square:before{
  1183.     content:"\F169"
  1184. }
  1185. .fa-youtube-play:before{
  1186.     content:"\F16A"
  1187. }
  1188. .fa-dropbox:before{
  1189.     content:"\F16B"
  1190. }
  1191. .fa-stack-overflow:before{
  1192.     content:"\F16C"
  1193. }
  1194. .fa-instagram:before{
  1195.     content:"\F16D"
  1196. }
  1197. .fa-flickr:before{
  1198.     content:"\F16E"
  1199. }
  1200. .fa-adn:before{
  1201.     content:"\F170"
  1202. }
  1203. .fa-bitbucket:before{
  1204.     content:"\F171"
  1205. }
  1206. .fa-bitbucket-square:before{
  1207.     content:"\F172"
  1208. }
  1209. .fa-tumblr:before{
  1210.     content:"\F173"
  1211. }
  1212. .fa-tumblr-square:before{
  1213.     content:"\F174"
  1214. }
  1215. .fa-long-arrow-down:before{
  1216.     content:"\F175"
  1217. }
  1218. .fa-long-arrow-up:before{
  1219.     content:"\F176"
  1220. }
  1221. .fa-long-arrow-left:before{
  1222.     content:"\F177"
  1223. }
  1224. .fa-long-arrow-right:before{
  1225.     content:"\F178"
  1226. }
  1227. .fa-apple:before{
  1228.     content:"\F179"
  1229. }
  1230. .fa-windows:before{
  1231.     content:"\F17A"
  1232. }
  1233. .fa-android:before{
  1234.     content:"\F17B"
  1235. }
  1236. .fa-linux:before{
  1237.     content:"\F17C"
  1238. }
  1239. .fa-dribbble:before{
  1240.     content:"\F17D"
  1241. }
  1242. .fa-skype:before{
  1243.     content:"\F17E"
  1244. }
  1245. .fa-foursquare:before{
  1246.     content:"\F180"
  1247. }
  1248. .fa-trello:before{
  1249.     content:"\F181"
  1250. }
  1251. .fa-female:before{
  1252.     content:"\F182"
  1253. }
  1254. .fa-male:before{
  1255.     content:"\F183"
  1256. }
  1257. .fa-gittip:before,.fa-gratipay:before{
  1258.     content:"\F184"
  1259. }
  1260. .fa-sun-o:before{
  1261.     content:"\F185"
  1262. }
  1263. .fa-moon-o:before{
  1264.     content:"\F186"
  1265. }
  1266. .fa-archive:before{
  1267.     content:"\F187"
  1268. }
  1269. .fa-bug:before{
  1270.     content:"\F188"
  1271. }
  1272. .fa-vk:before{
  1273.     content:"\F189"
  1274. }
  1275. .fa-weibo:before{
  1276.     content:"\F18A"
  1277. }
  1278. .fa-renren:before{
  1279.     content:"\F18B"
  1280. }
  1281. .fa-pagelines:before{
  1282.     content:"\F18C"
  1283. }
  1284. .fa-stack-exchange:before{
  1285.     content:"\F18D"
  1286. }
  1287. .fa-arrow-circle-o-right:before{
  1288.     content:"\F18E"
  1289. }
  1290. .fa-arrow-circle-o-left:before{
  1291.     content:"\F190"
  1292. }
  1293. .fa-caret-square-o-left:before,.fa-toggle-left:before{
  1294.     content:"\F191"
  1295. }
  1296. .fa-dot-circle-o:before{
  1297.     content:"\F192"
  1298. }
  1299. .fa-wheelchair:before{
  1300.     content:"\F193"
  1301. }
  1302. .fa-vimeo-square:before{
  1303.     content:"\F194"
  1304. }
  1305. .fa-try:before,.fa-turkish-lira:before{
  1306.     content:"\F195"
  1307. }
  1308. .fa-plus-square-o:before{
  1309.     content:"\F196"
  1310. }
  1311. .fa-space-shuttle:before{
  1312.     content:"\F197"
  1313. }
  1314. .fa-slack:before{
  1315.     content:"\F198"
  1316. }
  1317. .fa-envelope-square:before{
  1318.     content:"\F199"
  1319. }
  1320. .fa-wordpress:before{
  1321.     content:"\F19A"
  1322. }
  1323. .fa-openid:before{
  1324.     content:"\F19B"
  1325. }
  1326. .fa-bank:before,.fa-institution:before,.fa-university:before{
  1327.     content:"\F19C"
  1328. }
  1329. .fa-graduation-cap:before,.fa-mortar-board:before{
  1330.     content:"\F19D"
  1331. }
  1332. .fa-yahoo:before{
  1333.     content:"\F19E"
  1334. }
  1335. .fa-google:before{
  1336.     content:"\F1A0"
  1337. }
  1338. .fa-reddit:before{
  1339.     content:"\F1A1"
  1340. }
  1341. .fa-reddit-square:before{
  1342.     content:"\F1A2"
  1343. }
  1344. .fa-stumbleupon-circle:before{
  1345.     content:"\F1A3"
  1346. }
  1347. .fa-stumbleupon:before{
  1348.     content:"\F1A4"
  1349. }
  1350. .fa-delicious:before{
  1351.     content:"\F1A5"
  1352. }
  1353. .fa-digg:before{
  1354.     content:"\F1A6"
  1355. }
  1356. .fa-pied-piper-pp:before{
  1357.     content:"\F1A7"
  1358. }
  1359. .fa-pied-piper-alt:before{
  1360.     content:"\F1A8"
  1361. }
  1362. .fa-drupal:before{
  1363.     content:"\F1A9"
  1364. }
  1365. .fa-joomla:before{
  1366.     content:"\F1AA"
  1367. }
  1368. .fa-language:before{
  1369.     content:"\F1AB"
  1370. }
  1371. .fa-fax:before{
  1372.     content:"\F1AC"
  1373. }
  1374. .fa-building:before{
  1375.     content:"\F1AD"
  1376. }
  1377. .fa-child:before{
  1378.     content:"\F1AE"
  1379. }
  1380. .fa-paw:before{
  1381.     content:"\F1B0"
  1382. }
  1383. .fa-spoon:before{
  1384.     content:"\F1B1"
  1385. }
  1386. .fa-cube:before{
  1387.     content:"\F1B2"
  1388. }
  1389. .fa-cubes:before{
  1390.     content:"\F1B3"
  1391. }
  1392. .fa-behance:before{
  1393.     content:"\F1B4"
  1394. }
  1395. .fa-behance-square:before{
  1396.     content:"\F1B5"
  1397. }
  1398. .fa-steam:before{
  1399.     content:"\F1B6"
  1400. }
  1401. .fa-steam-square:before{
  1402.     content:"\F1B7"
  1403. }
  1404. .fa-recycle:before{
  1405.     content:"\F1B8"
  1406. }
  1407. .fa-automobile:before,.fa-car:before{
  1408.     content:"\F1B9"
  1409. }
  1410. .fa-cab:before,.fa-taxi:before{
  1411.     content:"\F1BA"
  1412. }
  1413. .fa-tree:before{
  1414.     content:"\F1BB"
  1415. }
  1416. .fa-spotify:before{
  1417.     content:"\F1BC"
  1418. }
  1419. .fa-deviantart:before{
  1420.     content:"\F1BD"
  1421. }
  1422. .fa-soundcloud:before{
  1423.     content:"\F1BE"
  1424. }
  1425. .fa-database:before{
  1426.     content:"\F1C0"
  1427. }
  1428. .fa-file-pdf-o:before{
  1429.     content:"\F1C1"
  1430. }
  1431. .fa-file-word-o:before{
  1432.     content:"\F1C2"
  1433. }
  1434. .fa-file-excel-o:before{
  1435.     content:"\F1C3"
  1436. }
  1437. .fa-file-powerpoint-o:before{
  1438.     content:"\F1C4"
  1439. }
  1440. .fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{
  1441.     content:"\F1C5"
  1442. }
  1443. .fa-file-archive-o:before,.fa-file-zip-o:before{
  1444.     content:"\F1C6"
  1445. }
  1446. .fa-file-audio-o:before,.fa-file-sound-o:before{
  1447.     content:"\F1C7"
  1448. }
  1449. .fa-file-movie-o:before,.fa-file-video-o:before{
  1450.     content:"\F1C8"
  1451. }
  1452. .fa-file-code-o:before{
  1453.     content:"\F1C9"
  1454. }
  1455. .fa-vine:before{
  1456.     content:"\F1CA"
  1457. }
  1458. .fa-codepen:before{
  1459.     content:"\F1CB"
  1460. }
  1461. .fa-jsfiddle:before{
  1462.     content:"\F1CC"
  1463. }
  1464. .fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{
  1465.     content:"\F1CD"
  1466. }
  1467. .fa-circle-o-notch:before{
  1468.     content:"\F1CE"
  1469. }
  1470. .fa-ra:before,.fa-rebel:before,.fa-resistance:before{
  1471.     content:"\F1D0"
  1472. }
  1473. .fa-empire:before,.fa-ge:before{
  1474.     content:"\F1D1"
  1475. }
  1476. .fa-git-square:before{
  1477.     content:"\F1D2"
  1478. }
  1479. .fa-git:before{
  1480.     content:"\F1D3"
  1481. }
  1482. .fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{
  1483.     content:"\F1D4"
  1484. }
  1485. .fa-tencent-weibo:before{
  1486.     content:"\F1D5"
  1487. }
  1488. .fa-qq:before{
  1489.     content:"\F1D6"
  1490. }
  1491. .fa-wechat:before,.fa-weixin:before{
  1492.     content:"\F1D7"
  1493. }
  1494. .fa-paper-plane:before,.fa-send:before{
  1495.     content:"\F1D8"
  1496. }
  1497. .fa-paper-plane-o:before,.fa-send-o:before{
  1498.     content:"\F1D9"
  1499. }
  1500. .fa-history:before{
  1501.     content:"\F1DA"
  1502. }
  1503. .fa-circle-thin:before{
  1504.     content:"\F1DB"
  1505. }
  1506. .fa-header:before{
  1507.     content:"\F1DC"
  1508. }
  1509. .fa-paragraph:before{
  1510.     content:"\F1DD"
  1511. }
  1512. .fa-sliders:before{
  1513.     content:"\F1DE"
  1514. }
  1515. .fa-share-alt:before{
  1516.     content:"\F1E0"
  1517. }
  1518. .fa-share-alt-square:before{
  1519.     content:"\F1E1"
  1520. }
  1521. .fa-bomb:before{
  1522.     content:"\F1E2"
  1523. }
  1524. .fa-futbol-o:before,.fa-soccer-ball-o:before{
  1525.     content:"\F1E3"
  1526. }
  1527. .fa-tty:before{
  1528.     content:"\F1E4"
  1529. }
  1530. .fa-binoculars:before{
  1531.     content:"\F1E5"
  1532. }
  1533. .fa-plug:before{
  1534.     content:"\F1E6"
  1535. }
  1536. .fa-slideshare:before{
  1537.     content:"\F1E7"
  1538. }
  1539. .fa-twitch:before{
  1540.     content:"\F1E8"
  1541. }
  1542. .fa-yelp:before{
  1543.     content:"\F1E9"
  1544. }
  1545. .fa-newspaper-o:before{
  1546.     content:"\F1EA"
  1547. }
  1548. .fa-wifi:before{
  1549.     content:"\F1EB"
  1550. }
  1551. .fa-calculator:before{
  1552.     content:"\F1EC"
  1553. }
  1554. .fa-paypal:before{
  1555.     content:"\F1ED"
  1556. }
  1557. .fa-google-wallet:before{
  1558.     content:"\F1EE"
  1559. }
  1560. .fa-cc-visa:before{
  1561.     content:"\F1F0"
  1562. }
  1563. .fa-cc-mastercard:before{
  1564.     content:"\F1F1"
  1565. }
  1566. .fa-cc-discover:before{
  1567.     content:"\F1F2"
  1568. }
  1569. .fa-cc-amex:before{
  1570.     content:"\F1F3"
  1571. }
  1572. .fa-cc-paypal:before{
  1573.     content:"\F1F4"
  1574. }
  1575. .fa-cc-stripe:before{
  1576.     content:"\F1F5"
  1577. }
  1578. .fa-bell-slash:before{
  1579.     content:"\F1F6"
  1580. }
  1581. .fa-bell-slash-o:before{
  1582.     content:"\F1F7"
  1583. }
  1584. .fa-trash:before{
  1585.     content:"\F1F8"
  1586. }
  1587. .fa-copyright:before{
  1588.     content:"\F1F9"
  1589. }
  1590. .fa-at:before{
  1591.     content:"\F1FA"
  1592. }
  1593. .fa-eyedropper:before{
  1594.     content:"\F1FB"
  1595. }
  1596. .fa-paint-brush:before{
  1597.     content:"\F1FC"
  1598. }
  1599. .fa-birthday-cake:before{
  1600.     content:"\F1FD"
  1601. }
  1602. .fa-area-chart:before{
  1603.     content:"\F1FE"
  1604. }
  1605. .fa-pie-chart:before{
  1606.     content:"\F200"
  1607. }
  1608. .fa-line-chart:before{
  1609.     content:"\F201"
  1610. }
  1611. .fa-lastfm:before{
  1612.     content:"\F202"
  1613. }
  1614. .fa-lastfm-square:before{
  1615.     content:"\F203"
  1616. }
  1617. .fa-toggle-off:before{
  1618.     content:"\F204"
  1619. }
  1620. .fa-toggle-on:before{
  1621.     content:"\F205"
  1622. }
  1623. .fa-bicycle:before{
  1624.     content:"\F206"
  1625. }
  1626. .fa-bus:before{
  1627.     content:"\F207"
  1628. }
  1629. .fa-ioxhost:before{
  1630.     content:"\F208"
  1631. }
  1632. .fa-angellist:before{
  1633.     content:"\F209"
  1634. }
  1635. .fa-cc:before{
  1636.     content:"\F20A"
  1637. }
  1638. .fa-ils:before,.fa-shekel:before,.fa-sheqel:before{
  1639.     content:"\F20B"
  1640. }
  1641. .fa-meanpath:before{
  1642.     content:"\F20C"
  1643. }
  1644. .fa-buysellads:before{
  1645.     content:"\F20D"
  1646. }
  1647. .fa-connectdevelop:before{
  1648.     content:"\F20E"
  1649. }
  1650. .fa-dashcube:before{
  1651.     content:"\F210"
  1652. }
  1653. .fa-forumbee:before{
  1654.     content:"\F211"
  1655. }
  1656. .fa-leanpub:before{
  1657.     content:"\F212"
  1658. }
  1659. .fa-sellsy:before{
  1660.     content:"\F213"
  1661. }
  1662. .fa-shirtsinbulk:before{
  1663.     content:"\F214"
  1664. }
  1665. .fa-simplybuilt:before{
  1666.     content:"\F215"
  1667. }
  1668. .fa-skyatlas:before{
  1669.     content:"\F216"
  1670. }
  1671. .fa-cart-plus:before{
  1672.     content:"\F217"
  1673. }
  1674. .fa-cart-arrow-down:before{
  1675.     content:"\F218"
  1676. }
  1677. .fa-diamond:before{
  1678.     content:"\F219"
  1679. }
  1680. .fa-ship:before{
  1681.     content:"\F21A"
  1682. }
  1683. .fa-user-secret:before{
  1684.     content:"\F21B"
  1685. }
  1686. .fa-motorcycle:before{
  1687.     content:"\F21C"
  1688. }
  1689. .fa-street-view:before{
  1690.     content:"\F21D"
  1691. }
  1692. .fa-heartbeat:before{
  1693.     content:"\F21E"
  1694. }
  1695. .fa-venus:before{
  1696.     content:"\F221"
  1697. }
  1698. .fa-mars:before{
  1699.     content:"\F222"
  1700. }
  1701. .fa-mercury:before{
  1702.     content:"\F223"
  1703. }
  1704. .fa-intersex:before,.fa-transgender:before{
  1705.     content:"\F224"
  1706. }
  1707. .fa-transgender-alt:before{
  1708.     content:"\F225"
  1709. }
  1710. .fa-venus-double:before{
  1711.     content:"\F226"
  1712. }
  1713. .fa-mars-double:before{
  1714.     content:"\F227"
  1715. }
  1716. .fa-venus-mars:before{
  1717.     content:"\F228"
  1718. }
  1719. .fa-mars-stroke:before{
  1720.     content:"\F229"
  1721. }
  1722. .fa-mars-stroke-v:before{
  1723.     content:"\F22A"
  1724. }
  1725. .fa-mars-stroke-h:before{
  1726.     content:"\F22B"
  1727. }
  1728. .fa-neuter:before{
  1729.     content:"\F22C"
  1730. }
  1731. .fa-genderless:before{
  1732.     content:"\F22D"
  1733. }
  1734. .fa-facebook-official:before{
  1735.     content:"\F230"
  1736. }
  1737. .fa-pinterest-p:before{
  1738.     content:"\F231"
  1739. }
  1740. .fa-whatsapp:before{
  1741.     content:"\F232"
  1742. }
  1743. .fa-server:before{
  1744.     content:"\F233"
  1745. }
  1746. .fa-user-plus:before{
  1747.     content:"\F234"
  1748. }
  1749. .fa-user-times:before{
  1750.     content:"\F235"
  1751. }
  1752. .fa-bed:before,.fa-hotel:before{
  1753.     content:"\F236"
  1754. }
  1755. .fa-viacoin:before{
  1756.     content:"\F237"
  1757. }
  1758. .fa-train:before{
  1759.     content:"\F238"
  1760. }
  1761. .fa-subway:before{
  1762.     content:"\F239"
  1763. }
  1764. .fa-medium:before{
  1765.     content:"\F23A"
  1766. }
  1767. .fa-y-combinator:before,.fa-yc:before{
  1768.     content:"\F23B"
  1769. }
  1770. .fa-optin-monster:before{
  1771.     content:"\F23C"
  1772. }
  1773. .fa-opencart:before{
  1774.     content:"\F23D"
  1775. }
  1776. .fa-expeditedssl:before{
  1777.     content:"\F23E"
  1778. }
  1779. .fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{
  1780.     content:"\F240"
  1781. }
  1782. .fa-battery-3:before,.fa-battery-three-quarters:before{
  1783.     content:"\F241"
  1784. }
  1785. .fa-battery-2:before,.fa-battery-half:before{
  1786.     content:"\F242"
  1787. }
  1788. .fa-battery-1:before,.fa-battery-quarter:before{
  1789.     content:"\F243"
  1790. }
  1791. .fa-battery-0:before,.fa-battery-empty:before{
  1792.     content:"\F244"
  1793. }
  1794. .fa-mouse-pointer:before{
  1795.     content:"\F245"
  1796. }
  1797. .fa-i-cursor:before{
  1798.     content:"\F246"
  1799. }
  1800. .fa-object-group:before{
  1801.     content:"\F247"
  1802. }
  1803. .fa-object-ungroup:before{
  1804.     content:"\F248"
  1805. }
  1806. .fa-sticky-note:before{
  1807.     content:"\F249"
  1808. }
  1809. .fa-sticky-note-o:before{
  1810.     content:"\F24A"
  1811. }
  1812. .fa-cc-jcb:before{
  1813.     content:"\F24B"
  1814. }
  1815. .fa-cc-diners-club:before{
  1816.     content:"\F24C"
  1817. }
  1818. .fa-clone:before{
  1819.     content:"\F24D"
  1820. }
  1821. .fa-balance-scale:before{
  1822.     content:"\F24E"
  1823. }
  1824. .fa-hourglass-o:before{
  1825.     content:"\F250"
  1826. }
  1827. .fa-hourglass-1:before,.fa-hourglass-start:before{
  1828.     content:"\F251"
  1829. }
  1830. .fa-hourglass-2:before,.fa-hourglass-half:before{
  1831.     content:"\F252"
  1832. }
  1833. .fa-hourglass-3:before,.fa-hourglass-end:before{
  1834.     content:"\F253"
  1835. }
  1836. .fa-hourglass:before{
  1837.     content:"\F254"
  1838. }
  1839. .fa-hand-grab-o:before,.fa-hand-rock-o:before{
  1840.     content:"\F255"
  1841. }
  1842. .fa-hand-paper-o:before,.fa-hand-stop-o:before{
  1843.     content:"\F256"
  1844. }
  1845. .fa-hand-scissors-o:before{
  1846.     content:"\F257"
  1847. }
  1848. .fa-hand-lizard-o:before{
  1849.     content:"\F258"
  1850. }
  1851. .fa-hand-spock-o:before{
  1852.     content:"\F259"
  1853. }
  1854. .fa-hand-pointer-o:before{
  1855.     content:"\F25A"
  1856. }
  1857. .fa-hand-peace-o:before{
  1858.     content:"\F25B"
  1859. }
  1860. .fa-trademark:before{
  1861.     content:"\F25C"
  1862. }
  1863. .fa-registered:before{
  1864.     content:"\F25D"
  1865. }
  1866. .fa-creative-commons:before{
  1867.     content:"\F25E"
  1868. }
  1869. .fa-gg:before{
  1870.     content:"\F260"
  1871. }
  1872. .fa-gg-circle:before{
  1873.     content:"\F261"
  1874. }
  1875. .fa-tripadvisor:before{
  1876.     content:"\F262"
  1877. }
  1878. .fa-odnoklassniki:before{
  1879.     content:"\F263"
  1880. }
  1881. .fa-odnoklassniki-square:before{
  1882.     content:"\F264"
  1883. }
  1884. .fa-get-pocket:before{
  1885.     content:"\F265"
  1886. }
  1887. .fa-wikipedia-w:before{
  1888.     content:"\F266"
  1889. }
  1890. .fa-safari:before{
  1891.     content:"\F267"
  1892. }
  1893. .fa-chrome:before{
  1894.     content:"\F268"
  1895. }
  1896. .fa-firefox:before{
  1897.     content:"\F269"
  1898. }
  1899. .fa-opera:before{
  1900.     content:"\F26A"
  1901. }
  1902. .fa-internet-explorer:before{
  1903.     content:"\F26B"
  1904. }
  1905. .fa-television:before,.fa-tv:before{
  1906.     content:"\F26C"
  1907. }
  1908. .fa-contao:before{
  1909.     content:"\F26D"
  1910. }
  1911. .fa-500px:before{
  1912.     content:"\F26E"
  1913. }
  1914. .fa-amazon:before{
  1915.     content:"\F270"
  1916. }
  1917. .fa-calendar-plus-o:before{
  1918.     content:"\F271"
  1919. }
  1920. .fa-calendar-minus-o:before{
  1921.     content:"\F272"
  1922. }
  1923. .fa-calendar-times-o:before{
  1924.     content:"\F273"
  1925. }
  1926. .fa-calendar-check-o:before{
  1927.     content:"\F274"
  1928. }
  1929. .fa-industry:before{
  1930.     content:"\F275"
  1931. }
  1932. .fa-map-pin:before{
  1933.     content:"\F276"
  1934. }
  1935. .fa-map-signs:before{
  1936.     content:"\F277"
  1937. }
  1938. .fa-map-o:before{
  1939.     content:"\F278"
  1940. }
  1941. .fa-map:before{
  1942.     content:"\F279"
  1943. }
  1944. .fa-commenting:before{
  1945.     content:"\F27A"
  1946. }
  1947. .fa-commenting-o:before{
  1948.     content:"\F27B"
  1949. }
  1950. .fa-houzz:before{
  1951.     content:"\F27C"
  1952. }
  1953. .fa-vimeo:before{
  1954.     content:"\F27D"
  1955. }
  1956. .fa-black-tie:before{
  1957.     content:"\F27E"
  1958. }
  1959. .fa-fonticons:before{
  1960.     content:"\F280"
  1961. }
  1962. .fa-reddit-alien:before{
  1963.     content:"\F281"
  1964. }
  1965. .fa-edge:before{
  1966.     content:"\F282"
  1967. }
  1968. .fa-credit-card-alt:before{
  1969.     content:"\F283"
  1970. }
  1971. .fa-codiepie:before{
  1972.     content:"\F284"
  1973. }
  1974. .fa-modx:before{
  1975.     content:"\F285"
  1976. }
  1977. .fa-fort-awesome:before{
  1978.     content:"\F286"
  1979. }
  1980. .fa-usb:before{
  1981.     content:"\F287"
  1982. }
  1983. .fa-product-hunt:before{
  1984.     content:"\F288"
  1985. }
  1986. .fa-mixcloud:before{
  1987.     content:"\F289"
  1988. }
  1989. .fa-scribd:before{
  1990.     content:"\F28A"
  1991. }
  1992. .fa-pause-circle:before{
  1993.     content:"\F28B"
  1994. }
  1995. .fa-pause-circle-o:before{
  1996.     content:"\F28C"
  1997. }
  1998. .fa-stop-circle:before{
  1999.     content:"\F28D"
  2000. }
  2001. .fa-stop-circle-o:before{
  2002.     content:"\F28E"
  2003. }
  2004. .fa-shopping-bag:before{
  2005.     content:"\F290"
  2006. }
  2007. .fa-shopping-basket:before{
  2008.     content:"\F291"
  2009. }
  2010. .fa-hashtag:before{
  2011.     content:"\F292"
  2012. }
  2013. .fa-bluetooth:before{
  2014.     content:"\F293"
  2015. }
  2016. .fa-bluetooth-b:before{
  2017.     content:"\F294"
  2018. }
  2019. .fa-percent:before{
  2020.     content:"\F295"
  2021. }
  2022. .fa-gitlab:before{
  2023.     content:"\F296"
  2024. }
  2025. .fa-wpbeginner:before{
  2026.     content:"\F297"
  2027. }
  2028. .fa-wpforms:before{
  2029.     content:"\F298"
  2030. }
  2031. .fa-envira:before{
  2032.     content:"\F299"
  2033. }
  2034. .fa-universal-access:before{
  2035.     content:"\F29A"
  2036. }
  2037. .fa-wheelchair-alt:before{
  2038.     content:"\F29B"
  2039. }
  2040. .fa-question-circle-o:before{
  2041.     content:"\F29C"
  2042. }
  2043. .fa-blind:before{
  2044.     content:"\F29D"
  2045. }
  2046. .fa-audio-description:before{
  2047.     content:"\F29E"
  2048. }
  2049. .fa-volume-control-phone:before{
  2050.     content:"\F2A0"
  2051. }
  2052. .fa-braille:before{
  2053.     content:"\F2A1"
  2054. }
  2055. .fa-assistive-listening-systems:before{
  2056.     content:"\F2A2"
  2057. }
  2058. .fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{
  2059.     content:"\F2A3"
  2060. }
  2061. .fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{
  2062.     content:"\F2A4"
  2063. }
  2064. .fa-glide:before{
  2065.     content:"\F2A5"
  2066. }
  2067. .fa-glide-g:before{
  2068.     content:"\F2A6"
  2069. }
  2070. .fa-sign-language:before,.fa-signing:before{
  2071.     content:"\F2A7"
  2072. }
  2073. .fa-low-vision:before{
  2074.     content:"\F2A8"
  2075. }
  2076. .fa-viadeo:before{
  2077.     content:"\F2A9"
  2078. }
  2079. .fa-viadeo-square:before{
  2080.     content:"\F2AA"
  2081. }
  2082. .fa-snapchat:before{
  2083.     content:"\F2AB"
  2084. }
  2085. .fa-snapchat-ghost:before{
  2086.     content:"\F2AC"
  2087. }
  2088. .fa-snapchat-square:before{
  2089.     content:"\F2AD"
  2090. }
  2091. .fa-pied-piper:before{
  2092.     content:"\F2AE"
  2093. }
  2094. .fa-first-order:before{
  2095.     content:"\F2B0"
  2096. }
  2097. .fa-yoast:before{
  2098.     content:"\F2B1"
  2099. }
  2100. .fa-themeisle:before{
  2101.     content:"\F2B2"
  2102. }
  2103. .fa-google-plus-circle:before,.fa-google-plus-official:before{
  2104.     content:"\F2B3"
  2105. }
  2106. .fa-fa:before,.fa-font-awesome:before{
  2107.     content:"\F2B4"
  2108. }
  2109. .fa-handshake-o:before{
  2110.     content:"\F2B5"
  2111. }
  2112. .fa-envelope-open:before{
  2113.     content:"\F2B6"
  2114. }
  2115. .fa-envelope-open-o:before{
  2116.     content:"\F2B7"
  2117. }
  2118. .fa-linode:before{
  2119.     content:"\F2B8"
  2120. }
  2121. .fa-address-book:before{
  2122.     content:"\F2B9"
  2123. }
  2124. .fa-address-book-o:before{
  2125.     content:"\F2BA"
  2126. }
  2127. .fa-address-card:before,.fa-vcard:before{
  2128.     content:"\F2BB"
  2129. }
  2130. .fa-address-card-o:before,.fa-vcard-o:before{
  2131.     content:"\F2BC"
  2132. }
  2133. .fa-user-circle:before{
  2134.     content:"\F2BD"
  2135. }
  2136. .fa-user-circle-o:before{
  2137.     content:"\F2BE"
  2138. }
  2139. .fa-user-o:before{
  2140.     content:"\F2C0"
  2141. }
  2142. .fa-id-badge:before{
  2143.     content:"\F2C1"
  2144. }
  2145. .fa-drivers-license:before,.fa-id-card:before{
  2146.     content:"\F2C2"
  2147. }
  2148. .fa-drivers-license-o:before,.fa-id-card-o:before{
  2149.     content:"\F2C3"
  2150. }
  2151. .fa-quora:before{
  2152.     content:"\F2C4"
  2153. }
  2154. .fa-free-code-camp:before{
  2155.     content:"\F2C5"
  2156. }
  2157. .fa-telegram:before{
  2158.     content:"\F2C6"
  2159. }
  2160. .fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{
  2161.     content:"\F2C7"
  2162. }
  2163. .fa-thermometer-3:before,.fa-thermometer-three-quarters:before{
  2164.     content:"\F2C8"
  2165. }
  2166. .fa-thermometer-2:before,.fa-thermometer-half:before{
  2167.     content:"\F2C9"
  2168. }
  2169. .fa-thermometer-1:before,.fa-thermometer-quarter:before{
  2170.     content:"\F2CA"
  2171. }
  2172. .fa-thermometer-0:before,.fa-thermometer-empty:before{
  2173.     content:"\F2CB"
  2174. }
  2175. .fa-shower:before{
  2176.     content:"\F2CC"
  2177. }
  2178. .fa-bath:before,.fa-bathtub:before,.fa-s15:before{
  2179.     content:"\F2CD"
  2180. }
  2181. .fa-podcast:before{
  2182.     content:"\F2CE"
  2183. }
  2184. .fa-window-maximize:before{
  2185.     content:"\F2D0"
  2186. }
  2187. .fa-window-minimize:before{
  2188.     content:"\F2D1"
  2189. }
  2190. .fa-window-restore:before{
  2191.     content:"\F2D2"
  2192. }
  2193. .fa-times-rectangle:before,.fa-window-close:before{
  2194.     content:"\F2D3"
  2195. }
  2196. .fa-times-rectangle-o:before,.fa-window-close-o:before{
  2197.     content:"\F2D4"
  2198. }
  2199. .fa-bandcamp:before{
  2200.     content:"\F2D5"
  2201. }
  2202. .fa-grav:before{
  2203.     content:"\F2D6"
  2204. }
  2205. .fa-etsy:before{
  2206.     content:"\F2D7"
  2207. }
  2208. .fa-imdb:before{
  2209.     content:"\F2D8"
  2210. }
  2211. .fa-ravelry:before{
  2212.     content:"\F2D9"
  2213. }
  2214. .fa-eercast:before{
  2215.     content:"\F2DA"
  2216. }
  2217. .fa-microchip:before{
  2218.     content:"\F2DB"
  2219. }
  2220. .fa-snowflake-o:before{
  2221.     content:"\F2DC"
  2222. }
  2223. .fa-superpowers:before{
  2224.     content:"\F2DD"
  2225. }
  2226. .fa-wpexplorer:before{
  2227.     content:"\F2DE"
  2228. }
  2229. .fa-meetup:before{
  2230.     content:"\F2E0"
  2231. }
  2232. .sr-only{
  2233.     position:absolute;
  2234.     width:1px;
  2235.     height:1px;
  2236.     padding:0;
  2237.     margin:-1px;
  2238.     overflow:hidden;
  2239.     clip:rect(0,0,0,0);
  2240.     border:0
  2241. }
  2242. .sr-only-focusable:active,.sr-only-focusable:focus{
  2243.     position:static;
  2244.     width:auto;
  2245.     height:auto;
  2246.     margin:0;
  2247.     overflow:visible;
  2248.     clip:auto
  2249. }
  2250. .home[data-v-235696e8]{
  2251.     background-size:cover!important;
  2252.     background-position:50%!important;
  2253.     position:relative;
  2254.     left:0;
  2255.     top:0;
  2256.     width:100%;
  2257.     height:100%;
  2258.     display:-ms-flexbox;
  2259.     display:flex;
  2260.     -ms-flex-line-pack:center;
  2261.     align-content:center;
  2262.     -ms-flex-pack:center;
  2263.     justify-content:center
  2264. }
  2265. .warningMess[data-v-235696e8]{
  2266.     display:block;
  2267.     position:absolute;
  2268.     left:0;
  2269.     right:0;
  2270.     color:red;
  2271.     text-align:center;
  2272.     top:150px;
  2273.     font-size:1.4em;
  2274.     text-shadow:-1px 0 0 rgba(0,0,0,.8),1px 0 0 rgba(0,0,0,.8),0 -1px 0 rgba(0,0,0,.8),0 1px 0 rgba(0,0,0,.8)
  2275. }
  2276. .home_buttons[data-v-235696e8]{
  2277.     display:-ms-flexbox;
  2278.     display:flex;
  2279.     padding:0 16px;
  2280.     width:100%;
  2281.     bottom:1px;
  2282.     position:absolute;
  2283.     -ms-flex-align:end;
  2284.     align-items:flex-end;
  2285.     -ms-flex-flow:row;
  2286.     flex-flow:row;
  2287.     -ms-flex-wrap:wrap;
  2288.     flex-wrap:wrap;
  2289.     margin-bottom:0;
  2290.     -ms-flex-pack:justify;
  2291.     justify-content:space-between;
  2292.     transition:all .5s ease-in-out
  2293. }
  2294. button[data-v-235696e8]{
  2295.     position:relative;
  2296.     margin:0;
  2297.     border:none;
  2298.     width:80px;
  2299.     height:110px;
  2300.     color:#fff;
  2301.     background-size:64px 64px;
  2302.     background-position:center 6px;
  2303.     background-repeat:no-repeat;
  2304.     background-color:transparent;
  2305.     font-size:14px;
  2306.     padding-top:72px;
  2307.     font-weight:700;
  2308.     text-shadow:-1px 0 0 rgba(0,0,0,.8),1px 0 0 rgba(0,0,0,.8),0 -1px 0 rgba(0,0,0,.8),0 1px 0 rgba(0,0,0,.8);
  2309.     text-align:center
  2310. }
  2311. button .puce[data-v-235696e8]{
  2312.     position:absolute;
  2313.     display:block;
  2314.     background-color:#1450b8;
  2315.     font-size:14px;
  2316.     width:28px;
  2317.     height:28px;
  2318.     line-height:28px;
  2319.     text-align:center;
  2320.     border-radius:50%;
  2321.     border:1px solid #fff;
  2322.     bottom:32px;
  2323.     right:12px
  2324. }
  2325. button.select[data-v-235696e8]{
  2326.     background-color:hsla(0,0%,100%,.7);
  2327.     border-radius:12px
  2328. }
  2329. .btn_menu_ctn[data-v-235696e8]{
  2330.     width:100%;
  2331.     display:-ms-flexbox;
  2332.     display:flex;
  2333.     height:80px;
  2334.     -ms-flex-pack:center;
  2335.     justify-content:center;
  2336.     -ms-flex-line-pack:center;
  2337.     align-content:center
  2338. }
  2339. .btn_menu[data-v-235696e8]{
  2340.     height:50px
  2341. }
  2342. .barre-header[data-v-2804e189]{
  2343.     height:24px;
  2344.     font-size:17px;
  2345.     line-height:24px;
  2346.     padding:0 20px 0 24px;
  2347.     width:100%;
  2348.     color:#fff;
  2349.     background-color:rgba(0,0,0,.3);
  2350.     position:relative
  2351. }
  2352. .barre-header hr[data-v-2804e189]{
  2353.     position:absolute;
  2354.     display:inline-block
  2355. }
  2356. .barre1[data-v-2804e189]{
  2357.     height:12px;
  2358.     width:3px;
  2359.     right:93px;
  2360.     background-color:hsla(0,0%,100%,.6);
  2361.     color:hsla(0,0%,100%,.6);
  2362.     border:none;
  2363.     bottom:-1px
  2364. }
  2365. .barre2[data-v-2804e189]{
  2366.     height:9px;
  2367.     right:98px
  2368. }
  2369. .barre2[data-v-2804e189],.barre3[data-v-2804e189]{
  2370.     width:3px;
  2371.     background-color:#fff;
  2372.     border:none;
  2373.     bottom:-1px
  2374. }
  2375. .barre3[data-v-2804e189]{
  2376.     height:6px;
  2377.     right:103px
  2378. }
  2379. .barre4[data-v-2804e189]{
  2380.     height:3px;
  2381.     width:3px;
  2382.     right:108px;
  2383.     background-color:#fff;
  2384.     border:none;
  2385.     bottom:-1px
  2386. }
  2387. .time[data-v-2804e189]{
  2388.     text-align:right;
  2389.     float:right;
  2390.     padding-right:12px
  2391. }
  2392. .batterie1[data-v-2804e189]{
  2393.     height:10px;
  2394.     width:7px;
  2395.     right:78px;
  2396.     background-color:#fff;
  2397.     color:#fff;
  2398.     border-radius:.5px;
  2399.     border:none;
  2400.     bottom:-1px
  2401. }
  2402. .batterie2[data-v-2804e189]{
  2403.     height:13px;
  2404.     width:5px;
  2405.     right:79px;
  2406.     bottom:0;
  2407.     background-color:hsla(0,0%,100%,.6);
  2408.     border:.5px solid #fff;
  2409.     border-radius:1px
  2410. }
  2411. .menu{
  2412.     position:relative;
  2413.     left:0;
  2414.     top:0;
  2415.     width:100%;
  2416.     height:100%;
  2417.     padding:6px 8px
  2418. }
  2419. .backblur{
  2420.     top:-6px;
  2421.     left:-6px;
  2422.     right:-6px;
  2423.     bottom:-6px;
  2424.     position:absolute;
  2425.     background-size:cover!important;
  2426.     background-position:50%!important;
  2427.     -webkit-filter:blur(6px);
  2428.     filter:blur(6px)
  2429. }
  2430. .menu_content{
  2431.     -ms-flex-direction:column;
  2432.     flex-direction:column
  2433. }
  2434. .menu_buttons,.menu_content{
  2435.     display:-ms-flexbox;
  2436.     display:flex
  2437. }
  2438. .menu_buttons{
  2439.     margin-top:24px;
  2440.     width:100%;
  2441.     -ms-flex-align:start;
  2442.     align-items:flex-start;
  2443.     -ms-flex-line-pack:start;
  2444.     align-content:flex-start;
  2445.     -ms-flex-flow:row;
  2446.     flex-flow:row;
  2447.     -ms-flex-wrap:wrap;
  2448.     flex-wrap:wrap;
  2449.     margin-bottom:0;
  2450.     transition:all .5s ease-in-out;
  2451.     animation-name:up;
  2452.     animation-duration:.6s;
  2453.     animation-fill-mode:forwards
  2454. }
  2455. @keyframes up{
  2456.     0%{
  2457.         transform:translateY(100vh)
  2458.     }
  2459.     to{
  2460.         transform:translateY(0)
  2461.     }
  2462. }
  2463. button{
  2464.     position:relative;
  2465.     margin:0;
  2466.     border:none;
  2467.     width:80px;
  2468.     height:110px;
  2469.     margin:8px;
  2470.     color:#fff;
  2471.     background-size:64px 64px;
  2472.     background-position:center 6px;
  2473.     background-repeat:no-repeat;
  2474.     background-color:transparent;
  2475.     padding-top:72px;
  2476.     font-weight:700;
  2477.     text-shadow:-1px 0 0 rgba(0,0,0,.8),1px 0 0 rgba(0,0,0,.8),0 -1px 0 rgba(0,0,0,.8),0 1px 0 rgba(0,0,0,.8)
  2478. }
  2479. button,button .puce{
  2480.     font-size:14px;
  2481.     text-align:center
  2482. }
  2483. button .puce{
  2484.     position:absolute;
  2485.     display:block;
  2486.     background-color:#1450b8;
  2487.     width:28px;
  2488.     height:28px;
  2489.     line-height:28px;
  2490.     border-radius:50%;
  2491.     border:1px solid #fff;
  2492.     bottom:32px;
  2493.     right:12px
  2494. }
  2495. button.select{
  2496.     background-color:hsla(0,0%,100%,.7);
  2497.     border-radius:12px
  2498. }
  2499. .contact[data-v-b3e36314]{
  2500.     position:relative;
  2501.     left:0;
  2502.     top:0;
  2503.     width:100%;
  2504.     height:100%
  2505. }
  2506. .list[data-v-def349b2]{
  2507.     height:100%
  2508. }
  2509. .elements[data-v-def349b2]{
  2510.     overflow-y:auto
  2511. }
  2512. .element[data-v-def349b2]{
  2513.     height:58px;
  2514.     line-height:58px;
  2515.     display:-ms-flexbox;
  2516.     display:flex;
  2517.     -ms-flex-align:center;
  2518.     align-items:center;
  2519.     position:relative
  2520. }
  2521. .element.select[data-v-def349b2]{
  2522.     background-color:#ddd
  2523. }
  2524. .elem-pic[data-v-def349b2]{
  2525.     margin-left:12px;
  2526.     height:48px;
  2527.     width:48px;
  2528.     text-align:center;
  2529.     line-height:48px;
  2530.     font-weight:700
  2531. }
  2532. .elem-puce[data-v-def349b2]{
  2533.     background-color:red;
  2534.     color:#fff;
  2535.     height:18px;
  2536.     width:18px;
  2537.     line-height:18px;
  2538.     border-radius:50%;
  2539.     text-align:center;
  2540.     font-size:14px;
  2541.     margin:0;
  2542.     padding:0;
  2543.     position:absolute;
  2544.     left:42px;
  2545.     top:36px;
  2546.     z-index:6
  2547. }
  2548. .elem-title[data-v-def349b2]{
  2549.     margin-left:12px
  2550. }
  2551. .elem-title-has-desc[data-v-def349b2]{
  2552.     margin-top:-15px;
  2553.     margin-left:12px
  2554. }
  2555. .elem-description[data-v-def349b2]{
  2556.     text-align:left;
  2557.     color:grey;
  2558.     position:absolute;
  2559.     display:block;
  2560.     width:75%;
  2561.     left:73px;
  2562.     top:12px;
  2563.     font-size:13.5px;
  2564.     font-style:italic;
  2565.     overflow:hidden;
  2566.     text-overflow:ellipsis;
  2567.     white-space:nowrap
  2568. }
  2569. .modal-mask[data-v-6cc9c1b2]{
  2570.     position:absolute;
  2571.     z-index:99;
  2572.     top:0;
  2573.     left:0;
  2574.     width:100%;
  2575.     height:100%;
  2576.     background-color:rgba(0,0,0,.3);
  2577.     display:-ms-flexbox;
  2578.     display:flex;
  2579.     -ms-flex-align:end;
  2580.     align-items:flex-end;
  2581.     transition:opacity .3s ease
  2582. }
  2583. .modal-container[data-v-6cc9c1b2]{
  2584.     width:100%;
  2585.     margin:0;
  2586.     padding:0;
  2587.     background-color:#fff;
  2588.     border-radius:2px;
  2589.     box-shadow:0 2px 8px rgba(0,0,0,.33);
  2590.     transition:all .3s ease;
  2591.     padding-bottom:16px;
  2592.     max-height:100%;
  2593.     overflow-y:auto
  2594. }
  2595. .modal-title[data-v-6cc9c1b2]{
  2596.     text-align:center;
  2597.     height:32px;
  2598.     line-height:32px;
  2599.     color:#42b2dc;
  2600.     border-bottom:2px solid #42b2dc
  2601. }
  2602. .modal-choix[data-v-6cc9c1b2]{
  2603.     height:56px;
  2604.     line-height:56px;
  2605.     color:gray;
  2606.     position:relative;
  2607.     font-weight:400;
  2608.     font-size:22px
  2609. }
  2610. .modal-choix .fa[data-v-6cc9c1b2]{
  2611.     font-size:18px;
  2612.     line-height:24px;
  2613.     margin-left:12px;
  2614.     margin-right:12px
  2615. }
  2616. .modal-choix .picto[data-v-6cc9c1b2]{
  2617.     z-index:500;
  2618.     position:absolute;
  2619.     width:42px;
  2620.     background-size:100%!important;
  2621.     background-position-y:100%;
  2622.     height:42px
  2623. }
  2624. .modal-choix.select[data-v-6cc9c1b2]{
  2625.     background-color:#e3e3e3;
  2626.     color:#42b2dc
  2627. }
  2628. .contact[data-v-168e4766]{
  2629.     position:relative;
  2630.     left:0;
  2631.     top:0;
  2632.     width:100%;
  2633.     height:100%
  2634. }
  2635. .title[data-v-168e4766]{
  2636.     padding-left:16px;
  2637.     height:34px;
  2638.     line-height:34px;
  2639.     font-weight:700;
  2640.     background-color:#5264ae;
  2641.     color:#fff
  2642. }
  2643. .content[data-v-168e4766]{
  2644.     margin:6px 10px;
  2645.     margin-top:28px
  2646. }
  2647. .group[data-v-168e4766]{
  2648.     position:relative;
  2649.     margin-top:24px
  2650. }
  2651. .group.inputText[data-v-168e4766]{
  2652.     position:relative;
  2653.     margin-top:45px
  2654. }
  2655. input[data-v-168e4766]{
  2656.     font-size:24px;
  2657.     display:block;
  2658.     width:100%;
  2659.     border:none;
  2660.     border-bottom:1px solid #757575
  2661. }
  2662. input[data-v-168e4766]:focus{
  2663.     outline:none
  2664. }
  2665. label[data-v-168e4766]{
  2666.     color:#999;
  2667.     font-size:18px;
  2668.     font-weight:400;
  2669.     position:absolute;
  2670.     pointer-events:none;
  2671.     left:5px;
  2672.     top:10px;
  2673.     transition:all .2s ease;
  2674.     -moz-transition:.2s ease all;
  2675.     -webkit-transition:all .2s ease
  2676. }
  2677. input:focus~label[data-v-168e4766],input:valid~label[data-v-168e4766]{
  2678.     top:-24px;
  2679.     font-size:18px;
  2680.     color:#5264ae
  2681. }
  2682. .bar[data-v-168e4766]{
  2683.     position:relative;
  2684.     display:block;
  2685.     width:100%
  2686. }
  2687. .bar[data-v-168e4766]:after,.bar[data-v-168e4766]:before{
  2688.     content:"";
  2689.     height:3px;
  2690.     width:0;
  2691.     bottom:1px;
  2692.     position:absolute;
  2693.     background:#5264ae;
  2694.     transition:all .2s ease;
  2695.     -moz-transition:.2s ease all;
  2696.     -webkit-transition:all .2s ease
  2697. }
  2698. .bar[data-v-168e4766]:before{
  2699.     left:50%
  2700. }
  2701. .bar[data-v-168e4766]:after{
  2702.     right:50%
  2703. }
  2704. .group.select input~.bar[data-v-168e4766]:after,.group.select input~.bar[data-v-168e4766]:before,input:focus~.bar[data-v-168e4766]:after,input:focus~.bar[data-v-168e4766]:before{
  2705.     width:50%
  2706. }
  2707. .highlight[data-v-168e4766]{
  2708.     position:absolute;
  2709.     height:60%;
  2710.     width:100px;
  2711.     top:25%;
  2712.     left:0;
  2713.     pointer-events:none;
  2714.     opacity:.5
  2715. }
  2716. input:focus~.highlight[data-v-168e4766]{
  2717.     animation:inputHighlighter-data-v-168e4766 .3s ease
  2718. }
  2719. .group .btn[data-v-168e4766]{
  2720.     width:100%;
  2721.     padding:0;
  2722.     height:48px;
  2723.     color:#fff;
  2724.     border:0 none;
  2725.     font-size:22px;
  2726.     font-weight:500;
  2727.     line-height:34px;
  2728.     color:#202129;
  2729.     background-color:#edeeee
  2730. }
  2731. .group.select .btn[data-v-168e4766]{
  2732.     line-height:18px
  2733. }
  2734. .group .btn.btn-green[data-v-168e4766]{
  2735.     border:1px solid #2ecc7080;
  2736.     color:#2ecc70;
  2737.     background-color:#fff;
  2738.     font-weight:500;
  2739.     border-radius:10px
  2740. }
  2741. .group.select .btn.btn-green[data-v-168e4766]{
  2742.     background-color:#2ecc70;
  2743.     color:#fff;
  2744.     border:none
  2745. }
  2746. .group .btn.btn-orange[data-v-168e4766]{
  2747.     border:1px solid #e67e2280;
  2748.     color:#e67e22;
  2749.     background-color:#fff;
  2750.     font-weight:500;
  2751.     border-radius:10px
  2752. }
  2753. .group.select .btn.btn-orange[data-v-168e4766]{
  2754.     background-color:#e67e22;
  2755.     color:#fff;
  2756.     border:none
  2757. }
  2758. .group .btn.btn-red[data-v-168e4766]{
  2759.     border:1px solid #e74c3c80;
  2760.     color:#e74c3c;
  2761.     background-color:#fff;
  2762.     font-weight:500;
  2763.     border-radius:10px
  2764. }
  2765. .group.select .btn.btn-red[data-v-168e4766]{
  2766.     background-color:#e74c3c;
  2767.     color:#fff;
  2768.     border:none
  2769. }
  2770. @keyframes inputHighlighter-data-v-168e4766{
  2771.     0%{
  2772.         background:#5264ae
  2773.     }
  2774.     to{
  2775.         width:0;
  2776.         background:transparent
  2777.     }
  2778. }
  2779. .screen[data-v-55f1ad54]{
  2780.     position:relative;
  2781.     left:0;
  2782.     top:0;
  2783.     width:100%;
  2784.     height:100%
  2785. }
  2786. .messages[data-v-01104696]{
  2787.     position:absolute;
  2788.     bottom:0;
  2789.     right:0;
  2790.     height:calc(100% - 20px);
  2791.     background-color:#ddd
  2792. }
  2793. #sms_contact[data-v-01104696]{
  2794.     background-color:#4caf50;
  2795.     color:#fff;
  2796.     height:34px;
  2797.     line-height:34px;
  2798.     padding-left:5px
  2799. }
  2800. #sms_list[data-v-01104696]{
  2801.     height:calc(100% - 34px - 26px);
  2802.     overflow-y:auto;
  2803.     padding-bottom:8px
  2804. }
  2805. .sms[data-v-01104696]{
  2806.     overflow:auto;
  2807.     zoom:1
  2808. }
  2809. .sms-img[data-v-01104696]{
  2810.     width:100%;
  2811.     height:auto
  2812. }
  2813. .img-fullscreen[data-v-01104696]{
  2814.     position:fixed;
  2815.     z-index:999999;
  2816.     background-color:hsla(0,0%,8%,.8);
  2817.     left:0;
  2818.     top:0;
  2819.     right:0;
  2820.     bottom:0;
  2821.     display:-ms-flexbox;
  2822.     display:flex;
  2823.     -ms-flex-pack:center;
  2824.     justify-content:center;
  2825.     -ms-flex-align:center;
  2826.     align-items:center
  2827. }
  2828. .img-fullscreen img[data-v-01104696]{
  2829.     display:-ms-flexbox;
  2830.     display:flex;
  2831.     max-width:90vw;
  2832.     max-height:95vh
  2833. }
  2834. .sms_me[data-v-01104696]{
  2835.     float:right;
  2836.     background-color:#fff;
  2837.     padding:5px 10px;
  2838.     max-width:90%;
  2839.     margin-right:5%;
  2840.     margin-top:10px
  2841. }
  2842. .sms_other[data-v-01104696]{
  2843.     background-color:#4caf50;
  2844.     color:#fff;
  2845.     float:left;
  2846.     padding:5px 10px;
  2847.     max-width:90%;
  2848.     margin-left:5%;
  2849.     margin-top:10px
  2850. }
  2851. .sms_time[data-v-01104696]{
  2852.     display:block;
  2853.     font-size:12px
  2854. }
  2855. .sms_me .sms_time[data-v-01104696]{
  2856.     color:#aaa
  2857. }
  2858. .sms_other .sms_time[data-v-01104696]{
  2859.     color:#555
  2860. }
  2861. .messages[data-v-01104696]{
  2862.     position:relative;
  2863.     left:0;
  2864.     top:0;
  2865.     width:100%;
  2866.     height:100%
  2867. }
  2868. .sms.select .sms_message[data-v-01104696]{
  2869.     background-color:#000!important;
  2870.     color:#d4d4d4!important
  2871. }
  2872. .sms.select .sms_message .sms_time[data-v-01104696]{
  2873.     background-color:inherit!important
  2874. }
  2875. .sms_message[data-v-01104696]{
  2876.     word-wrap:break-word;
  2877.     max-width:80%;
  2878.     font-size:24px
  2879. }
  2880. #sms_write[data-v-01104696]{
  2881.     height:56px;
  2882.     margin:10px;
  2883.     width:380px;
  2884.     background-color:#fff;
  2885.     border-radius:56px
  2886. }
  2887. #sms_write input[data-v-01104696]{
  2888.     height:56px;
  2889.     border:none;
  2890.     outline:none;
  2891.     font-size:18px;
  2892.     margin-left:14px;
  2893.     padding:12px 5px;
  2894.     background-color:rgba(236,236,241,0)
  2895. }
  2896. .sms_send[data-v-01104696]{
  2897.     float:right;
  2898.     margin-right:10px
  2899. }
  2900. .sms_send svg[data-v-01104696]{
  2901.     margin:10px;
  2902.     width:36px;
  2903.     height:36px;
  2904.     fill:silver
  2905. }
  2906. .contact[data-v-d0428988],.screen[data-v-26ec6c14]{
  2907.     position:relative;
  2908.     left:0;
  2909.     top:0;
  2910.     width:100%;
  2911.     height:100%
  2912. }
  2913. .title[data-v-26ec6c14]{
  2914.     padding-left:16px;
  2915.     height:34px;
  2916.     line-height:34px;
  2917.     font-weight:700;
  2918.     color:#fff;
  2919.     background-color:#2c3e50
  2920. }
  2921. .content[data-v-26ec6c14]{
  2922.     height:calc(100% - 68px);
  2923.     overflow-y:auto
  2924. }
  2925. .subMenu[data-v-26ec6c14]{
  2926.     border-top:1px solid rgba(0,0,0,.24);
  2927.     display:-ms-flexbox;
  2928.     display:flex;
  2929.     height:56px
  2930. }
  2931. .subMenu-elem[data-v-26ec6c14]{
  2932.     height:100%;
  2933.     width:100%;
  2934.     text-align:center;
  2935.     line-height:56px;
  2936.     height:56px;
  2937.     display:-ms-flexbox;
  2938.     display:flex;
  2939.     -ms-flex-direction:column;
  2940.     flex-direction:column
  2941. }
  2942. .subMenu-elem-select[data-v-26ec6c14]{
  2943.     color:#0288d1
  2944. }
  2945. .subMenu-icon[data-v-26ec6c14]{
  2946.     margin-top:6px;
  2947.     font-size:22px;
  2948.     line-height:22px;
  2949.     height:22px
  2950. }
  2951. .subMenu-name[data-v-26ec6c14]{
  2952.     display:block;
  2953.     font-size:14px;
  2954.     height:14px;
  2955.     line-height:14px
  2956. }
  2957. .content[data-v-07b6e6d2]{
  2958.     height:100%
  2959. }
  2960. .elements[data-v-07b6e6d2]{
  2961.     overflow-y:auto
  2962. }
  2963. .element[data-v-07b6e6d2]{
  2964.     height:58px;
  2965.     line-height:58px;
  2966.     display:-ms-flexbox;
  2967.     display:flex;
  2968.     -ms-flex-align:center;
  2969.     align-items:center;
  2970.     position:relative;
  2971.     margin:14px 10px;
  2972.     border-radius:2px;
  2973.     box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)
  2974. }
  2975. .active.active[data-v-07b6e6d2]{
  2976.     background:radial-gradient(rgba(3,168,244,.14),rgba(3,169,244,.26))
  2977. }
  2978. .elem-pic[data-v-07b6e6d2]{
  2979.     margin-left:12px;
  2980.     height:48px;
  2981.     width:48px;
  2982.     text-align:center;
  2983.     line-height:48px;
  2984.     font-weight:700;
  2985.     border-radius:50%;
  2986.     color:#fff
  2987. }
  2988. .elem-content[data-v-07b6e6d2]{
  2989.     margin-left:12px;
  2990.     width:auto;
  2991.     -ms-flex-positive:1;
  2992.     flex-grow:1
  2993. }
  2994. .elem-content-p[data-v-07b6e6d2]{
  2995.     font-size:20px;
  2996.     line-height:20px
  2997. }
  2998. .elem-content-s[data-v-07b6e6d2]{
  2999.     font-size:12px;
  3000.     line-height:18px;
  3001.     width:100%;
  3002.     display:-ms-flexbox;
  3003.     display:flex
  3004. }
  3005. .elem-histo-pico[data-v-07b6e6d2]{
  3006.     display:-ms-flexbox;
  3007.     display:flex;
  3008.     -ms-flex-direction:column;
  3009.     flex-direction:column
  3010. }
  3011. .elem-histo-pico svg[data-v-07b6e6d2]{
  3012.     width:16px;
  3013.     height:16px
  3014. }
  3015. .lastCall[data-v-07b6e6d2]{
  3016.     padding-left:4px
  3017. }
  3018. .elem-icon[data-v-07b6e6d2]{
  3019.     width:28px
  3020. }
  3021. .backblur[data-v-d2b698c8]{
  3022.     top:-6px;
  3023.     left:-6px;
  3024.     right:-6px;
  3025.     bottom:-6px;
  3026.     position:absolute;
  3027.     background-size:cover!important;
  3028.     -webkit-filter:blur(6px);
  3029.     filter:blur(6px)
  3030. }
  3031. .num[data-v-d2b698c8]{
  3032.     top:60px;
  3033.     color:hsla(0,0%,100%,.9);
  3034.     font-size:46px
  3035. }
  3036. .contactName[data-v-d2b698c8],.num[data-v-d2b698c8]{
  3037.     position:absolute;
  3038.     text-shadow:0 0 15px #000,0 0 15px #000;
  3039.     left:0;
  3040.     right:0;
  3041.     text-align:center
  3042. }
  3043. .contactName[data-v-d2b698c8]{
  3044.     top:100px;
  3045.     color:hsla(0,0%,100%,.8);
  3046.     margin-top:16px;
  3047.     font-size:36px
  3048. }
  3049. .time[data-v-d2b698c8]{
  3050.     position:relative;
  3051.     top:280px;
  3052.     left:125px;
  3053.     width:150px;
  3054.     height:150px;
  3055.     border-top:2px solid #fff;
  3056.     border-radius:50%;
  3057.     animation:rond-data-v-d2b698c8 1.8s infinite linear
  3058. }
  3059. .time-display[data-v-d2b698c8]{
  3060.     text-shadow:0 0 15px #000,0 0 15px #000;
  3061.     position:relative;
  3062.     top:195px;
  3063.     line-height:20px;
  3064.     left:125px;
  3065.     width:150px;
  3066.     height:91px;
  3067.     color:#fff;
  3068.     font-size:36px;
  3069.     text-align:center
  3070. }
  3071. .actionbox[data-v-d2b698c8]{
  3072.     position:absolute;
  3073.     display:-ms-flexbox;
  3074.     display:flex;
  3075.     bottom:70px;
  3076.     left:0;
  3077.     right:0;
  3078.     -ms-flex-pack:distribute;
  3079.     justify-content:space-around
  3080. }
  3081. .action[data-v-d2b698c8]{
  3082.     height:100px;
  3083.     width:100px;
  3084.     border-radius:50%
  3085. }
  3086. .raccrocher[data-v-d2b698c8]{
  3087.     background-color:red
  3088. }
  3089. .deccrocher[data-v-d2b698c8]{
  3090.     background-color:#43a047
  3091. }
  3092. .disable[data-v-d2b698c8]{
  3093.     background-color:#4d4d4d
  3094. }
  3095. .action svg[data-v-d2b698c8]{
  3096.     width:60px;
  3097.     height:60px;
  3098.     margin:20px;
  3099.     fill:#eee
  3100. }
  3101. @keyframes rond-data-v-d2b698c8{
  3102.     0%{
  3103.         rotate:0deg
  3104.     }
  3105.     to{
  3106.         rotate:1turn
  3107.     }
  3108. }
  3109. .number[data-v-0570365f]{
  3110.     margin-top:140px;
  3111.     width:100%;
  3112.     height:52px;
  3113.     font-size:26px;
  3114.     line-height:52px;
  3115.     text-align:right;
  3116.     padding-right:8px;
  3117.     border-bottom:1px solid silver;
  3118.     margin-bottom:8px;
  3119.     box-shadow:0 -6px 12px 0 hsla(0,0%,74%,.4)
  3120. }
  3121. .keyboard[data-v-0570365f]{
  3122.     display:-ms-flexbox;
  3123.     display:flex;
  3124.     -ms-flex-wrap:wrap;
  3125.     flex-wrap:wrap;
  3126.     width:100%
  3127. }
  3128. .key[data-v-0570365f]{
  3129.     position:relative;
  3130.     -ms-flex:1 1 33.33%;
  3131.     flex:1 1 33.33%;
  3132.     text-align:center;
  3133.     height:96px
  3134. }
  3135. .key-select[data-v-0570365f]:after{
  3136.     content:"";
  3137.     position:absolute;
  3138.     top:calc(50% - 45px);
  3139.     left:calc(50% - 45px);
  3140.     display:block;
  3141.     width:90px;
  3142.     height:90px;
  3143.     background:radial-gradient(rgba(0,0,0,.04),rgba(0,0,0,.16));
  3144.     border-radius:50%
  3145. }
  3146. .key-primary[data-v-0570365f]{
  3147.     display:block;
  3148.     font-size:36px;
  3149.     color:blue;
  3150.     line-height:22px;
  3151.     padding-top:36px
  3152. }
  3153. .keySpe .key-primary[data-v-0570365f]{
  3154.     color:#2c3e50;
  3155.     line-height:96px;
  3156.     padding:0
  3157. }
  3158. .key-secondary[data-v-0570365f]{
  3159.     text-transform:uppercase;
  3160.     display:block;
  3161.     font-size:12px;
  3162.     color:#000;
  3163.     line-height:12px;
  3164.     padding-top:6px
  3165. }
  3166. .call[data-v-0570365f]{
  3167.     margin-top:18px;
  3168.     display:-ms-flexbox;
  3169.     display:flex;
  3170.     -ms-flex-pack:center;
  3171.     justify-content:center
  3172. }
  3173. .call-btn[data-v-0570365f]{
  3174.     height:70px;
  3175.     width:70px;
  3176.     border-radius:50%;
  3177.     background-color:rgba(67,160,71,.7)
  3178. }
  3179. .call-btn.active[data-v-0570365f]{
  3180.     background-color:#43a047
  3181. }
  3182. .call-btn svg[data-v-0570365f]{
  3183.     width:50px;
  3184.     height:50px;
  3185.     margin:10px;
  3186.     fill:#eee
  3187. }
  3188. .splash[data-v-5fdffa03]{
  3189.     width:100%;
  3190.     height:100%;
  3191.     background-color:#20201d;
  3192.     display:-ms-flexbox;
  3193.     display:flex;
  3194.     -ms-flex-pack:center;
  3195.     justify-content:center;
  3196.     -ms-flex-align:center;
  3197.     align-items:center
  3198. }
  3199. img[data-v-5fdffa03]{
  3200.     width:80px;
  3201.     animation-name:zoom-data-v-5fdffa03;
  3202.     animation-duration:.7s;
  3203.     animation-fill-mode:forwards
  3204. }
  3205. @keyframes zoom-data-v-5fdffa03{
  3206.     0%{
  3207.         width:80px
  3208.     }
  3209.     to{
  3210.         width:250px
  3211.     }
  3212. }
  3213. .list[data-v-3967a7e3]{
  3214.     height:100%
  3215. }
  3216. .title[data-v-3967a7e3]{
  3217.     padding-top:22px;
  3218.     padding-left:16px;
  3219.     height:54px;
  3220.     line-height:34px;
  3221.     font-weight:700;
  3222.     background-color:#0;
  3223.     color:#fff
  3224. }
  3225. .elements[data-v-3967a7e3]{
  3226.     height:calc(100% - 54px);
  3227.     overflow-y:auto;
  3228.     background-color:#20201d;
  3229.     color:#a6a28c
  3230. }
  3231. .element[data-v-3967a7e3]{
  3232.     height:42px;
  3233.     line-height:42px;
  3234.     display:-ms-flexbox;
  3235.     display:flex;
  3236.     -ms-flex-align:center;
  3237.     align-items:center;
  3238.     position:relative
  3239. }
  3240. .elem-title[data-v-3967a7e3]{
  3241.     margin-left:6px;
  3242.     font-size:20px;
  3243.     text-transform:capitalize;
  3244.     transition:.15s
  3245. }
  3246. .elem-title .diese[data-v-3967a7e3]{
  3247.     color:#60ac39;
  3248.     font-size:22px;
  3249.     font-weight:700;
  3250.     line-height:40px
  3251. }
  3252. .element.select[data-v-3967a7e3]{
  3253.     background-color:#ffc629;
  3254.     color:#000
  3255. }
  3256. .element.select .elem-title[data-v-3967a7e3]{
  3257.     margin-left:12px
  3258. }
  3259. .element.select .elem-title .diese[data-v-3967a7e3]{
  3260.     color:#5e0576
  3261. }
  3262. .elements[data-v-3967a7e3]::-webkit-scrollbar-track{
  3263.     box-shadow:inset 0 0 6px rgba(0,0,0,.3);
  3264.     background-color:#f5f5f5
  3265. }
  3266. .elements[data-v-3967a7e3]::-webkit-scrollbar{
  3267.     width:3px;
  3268.     background-color:transparent
  3269. }
  3270. .elements[data-v-3967a7e3]::-webkit-scrollbar-thumb{
  3271.     background-color:#ffc629
  3272. }
  3273. .elements[data-v-15f3ee32]{
  3274.     height:calc(100% - 56px);
  3275.     background-color:#20201d;
  3276.     color:#fff;
  3277.     display:-ms-flexbox;
  3278.     display:flex;
  3279.     -ms-flex-direction:column;
  3280.     flex-direction:column;
  3281.     padding-bottom:12px;
  3282.     overflow-y:auto
  3283. }
  3284. .element[data-v-15f3ee32]{
  3285.     color:#a6a28c;
  3286.     -ms-flex:0 0 auto;
  3287.     flex:0 0 auto;
  3288.     width:100%;
  3289.     display:-ms-flexbox;
  3290.     display:flex
  3291. }
  3292. .time[data-v-15f3ee32]{
  3293.     padding-right:6px;
  3294.     font-size:12px
  3295. }
  3296. .message[data-v-15f3ee32]{
  3297.     width:100%;
  3298.     color:#ffc629
  3299. }
  3300. .tchat_write[data-v-15f3ee32]{
  3301.     height:56px;
  3302.     widows:100%;
  3303.     background:#20201d;
  3304.     display:-ms-flexbox;
  3305.     display:flex;
  3306.     -ms-flex-pack:distribute;
  3307.     justify-content:space-around;
  3308.     -ms-flex-align:center;
  3309.     align-items:center
  3310. }
  3311. .tchat_write input[data-v-15f3ee32]{
  3312.     width:75%;
  3313.     margin-left:6%;
  3314.     border:none;
  3315.     outline:none;
  3316.     font-size:16px;
  3317.     padding:3px 5px;
  3318.     float:left;
  3319.     height:36px;
  3320.     background-color:#00071c;
  3321.     color:#fff
  3322. }
  3323. .tchat_write input[data-v-15f3ee32]::-webkit-input-placeholder{
  3324.     color:#ccc
  3325. }
  3326. .tchat_write input[data-v-15f3ee32]:-ms-input-placeholder{
  3327.     color:#ccc
  3328. }
  3329. .tchat_write input[data-v-15f3ee32]::placeholder{
  3330.     color:#ccc
  3331. }
  3332. .tchat_send[data-v-15f3ee32]{
  3333.     width:32px;
  3334.     height:32px;
  3335.     float:right;
  3336.     border-radius:50%;
  3337.     background-color:#5e0576;
  3338.     margin-right:12px;
  3339.     margin-bottom:2px;
  3340.     color:#fff;
  3341.     line-height:32px;
  3342.     text-align:center
  3343. }
  3344. .elements[data-v-15f3ee32]::-webkit-scrollbar-track{
  3345.     box-shadow:inset 0 0 6px rgba(0,0,0,.3);
  3346.     background-color:#a6a28c
  3347. }
  3348. .elements[data-v-15f3ee32]::-webkit-scrollbar{
  3349.     width:3px;
  3350.     background-color:transparent
  3351. }
  3352. .elements[data-v-15f3ee32]::-webkit-scrollbar-thumb{
  3353.     background-color:#ffc629
  3354. }
  3355. .element[data-v-4d7b8c36]{
  3356.     height:58px;
  3357.     line-height:58px;
  3358.     display:-ms-flexbox;
  3359.     display:flex;
  3360.     -ms-flex-align:center;
  3361.     align-items:center;
  3362.     position:relative
  3363. }
  3364. .element .fa[data-v-4d7b8c36]{
  3365.     color:#27ae60;
  3366.     margin-left:6px;
  3367.     height:52px;
  3368.     width:52px;
  3369.     text-align:center;
  3370.     line-height:52px
  3371. }
  3372. .element-content[data-v-4d7b8c36]{
  3373.     display:block;
  3374.     height:58px;
  3375.     width:100%;
  3376.     margin-left:6px;
  3377.     display:-ms-flexbox;
  3378.     display:flex;
  3379.     -ms-flex-flow:column;
  3380.     flex-flow:column;
  3381.     -ms-flex-pack:center;
  3382.     justify-content:center
  3383. }
  3384. .element-title[data-v-4d7b8c36]{
  3385.     display:block;
  3386.     margin-top:4px;
  3387.     height:22px;
  3388.     line-height:22px;
  3389.     font-size:20px
  3390. }
  3391. .element-value[data-v-4d7b8c36]{
  3392.     display:block;
  3393.     line-height:16px;
  3394.     height:8px;
  3395.     font-size:16px;
  3396.     color:gray
  3397. }
  3398. .element.select[data-v-4d7b8c36]{
  3399.     background-color:#ddd
  3400. }
  3401. .screen[data-v-821f15d4]{
  3402.     position:relative;
  3403.     left:0;
  3404.     top:0;
  3405.     width:100%;
  3406.     height:100%;
  3407.     padding:18px;
  3408.     background-color:#fff
  3409. }
  3410. .title[data-v-821f15d4]{
  3411.     padding-left:16px;
  3412.     height:34px;
  3413.     line-height:34px;
  3414.     font-weight:700;
  3415.     color:#fff;
  3416.     background-color:#4caf50
  3417. }
  3418. .elements[data-v-821f15d4]{
  3419.     display:-ms-flexbox;
  3420.     display:flex;
  3421.     position:relative;
  3422.     width:100%;
  3423.     -ms-flex-direction:column;
  3424.     flex-direction:column;
  3425.     height:100%;
  3426.     -ms-flex-pack:center;
  3427.     justify-content:center
  3428. }
  3429. .hr[data-v-821f15d4]{
  3430.     width:100;
  3431.     height:4px;
  3432.     margin-top:4px;
  3433.     background-color:#eb202d
  3434. }
  3435. .logo_maze[data-v-821f15d4]{
  3436.     width:100%;
  3437.     height:auto;
  3438.     -ms-flex-negative:0;
  3439.     flex-shrink:0
  3440. }
  3441. .element-content[data-v-821f15d4]{
  3442.     margin-top:24px;
  3443.     display:block;
  3444.     height:40px;
  3445.     width:100%;
  3446.     text-align:center;
  3447.     font-weight:700;
  3448.     font-size:24px;
  3449.     color:#eb202d
  3450. }
  3451. .screen[data-v-5d567654]{
  3452.     position:relative;
  3453.     left:0;
  3454.     top:0;
  3455.     width:100%;
  3456.     height:100%
  3457. }
  3458. .title[data-v-5d567654]{
  3459.     padding-left:16px;
  3460.     height:34px;
  3461.     line-height:34px;
  3462.     font-weight:700;
  3463.     color:#fff;
  3464.     background-color:#4caf50
  3465. }
  3466. .elements[data-v-5d567654]{
  3467.     height:calc(100% - 34px);
  3468.     overflow-y:auto
  3469. }
  3470. .element[data-v-5d567654]{
  3471.     height:56px;
  3472.     width:100%;
  3473.     line-height:56px;
  3474.     display:-ms-flexbox;
  3475.     display:flex;
  3476.     position:relative
  3477. }
  3478. .element.select[data-v-5d567654]{
  3479.     background-color:#ddd
  3480. }
  3481. .element .fa[data-v-5d567654]{
  3482.     color:#2e7d32;
  3483.     font-size:18px;
  3484.     margin-left:6px
  3485. }
  3486. .element .fa-arrow-down[data-v-5d567654]{
  3487.     color:#c62828
  3488. }
  3489. .element .fa-arrow-right[data-v-5d567654]{
  3490.     color:#1565c0
  3491. }
  3492. .elem-libelle[data-v-5d567654]{
  3493.     padding-left:6px;
  3494.     -ms-flex:1;
  3495.     flex:1;
  3496.     font-size:22px;
  3497.     white-space:nowrap
  3498. }
  3499. .elem-price[data-v-5d567654]{
  3500.     text-align:center;
  3501.     width:90px;
  3502.     font-size:18px;
  3503.     font-weight:700
  3504. }
  3505. .elem-difference[data-v-5d567654]{
  3506.     text-align:center;
  3507.     width:60px;
  3508.     font-size:14px
  3509. }
  3510. .post[data-v-6a46c302]{
  3511.     display:-ms-flexbox;
  3512.     display:flex;
  3513.     -ms-flex-align:center;
  3514.     align-items:center;
  3515.     -ms-flex-pack:center;
  3516.     justify-content:center;
  3517.     -ms-flex-direction:column;
  3518.     flex-direction:column
  3519. }
  3520. .post .post-title[data-v-6a46c302]{
  3521.     padding-left:12px;
  3522.     font-size:18px;
  3523.     height:18px;
  3524.     overflow:hidden
  3525. }
  3526. .post .post-content[data-v-6a46c302]{
  3527.     display:-ms-flexbox;
  3528.     display:flex;
  3529.     width:390px;
  3530.     height:670px
  3531. }
  3532. .post .post-image[data-v-6a46c302],.post .post-video[data-v-6a46c302]{
  3533.     -o-object-fit:contain;
  3534.     object-fit:contain;
  3535.     max-width:100%;
  3536.     max-height:100%;
  3537.     width:auto;
  3538.     height:auto
  3539. }
  3540. .loading[data-v-6a46c302]{
  3541.     height:100%;
  3542.     background-color:#000;
  3543.     color:#fff;
  3544.     display:-ms-flexbox;
  3545.     display:flex;
  3546.     -ms-flex-align:center;
  3547.     align-items:center;
  3548.     -ms-flex-pack:center;
  3549.     justify-content:center
  3550. }
  3551. .loading div[data-v-6a46c302]{
  3552.     text-align:center;
  3553.     margin-bottom:36px
  3554. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement