bkader

Dinakit Framework [CSS File]

Jan 20th, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 122.35 KB | None | 0 0
  1. @charset "utf-8";
  2.  
  3. /*
  4.  * # Dinakit Framework 3.0 by @KaderBouyakoub <bkader@mail.com>
  5.  * https://bitbucket.org/iangraphics/dinakit - http://dinakit.tk/
  6.  * License - "Don't Be A Dick License" - DBAD by philsturgeon (http://www.dbad-license.org/)
  7.  */
  8.  
  9. /*=================================================================
  10. | [Table of contents]
  11. |==================================================================
  12. |
  13. |   01. Imports
  14. |   02. Basic styling
  15. |   03. Alerts
  16. |   04. Boxes
  17. |   05. Breadcrumb
  18. |   06. Browsers icons [PNG: https://mega.nz/#!zwxQDSKY]
  19. |   07. Buttons
  20. |   08. Collapse
  21. |   09. Flags icons [PNG: https://mega.nz/#!WpoQCCra]
  22. |   10. Forms
  23. |   11. Gallery
  24. |   12. Grid system
  25. |   13. Hero unit
  26. |   14. Images
  27. |   15. Labels & Badges
  28. |   16. List table
  29. |   17. Media items
  30. |   18. Menu
  31. |   19. Modal
  32. |   20. Pager
  33. |   21. Pagination
  34. |   22. Progress bar
  35. |   23. Tables
  36. |   24. Tabs
  37. |   25. Tooltip
  38. |   26. Typography
  39. |   27. Useful classes
  40. |
  41. =================================================================*/
  42.  
  43. /*=================================================================
  44. [01. Imports]
  45. -------------------------------------------------------------------
  46. !normalize.css v3.0.3 | MIT License | git.io/normalize
  47. !Font Awesome 4.5.0 by @davegandy - http://fontawesome.io
  48. !Raleway Font from Google Fonts
  49. =================================================================*/
  50. @import url(https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css);
  51. @import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css);
  52. @import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900);
  53.  
  54. /*=================================================================
  55. [02. Basic styling]
  56. =================================================================*/
  57.  
  58. * {
  59.             box-sizing: border-box;
  60.        -moz-box-sizing: border-box;
  61.     -webkit-box-sizing: border-box;
  62.     outline: none;
  63. }
  64.  
  65. html {
  66.     font-size: 62.5%;
  67. }
  68.  
  69. body {
  70.     background-color: #fff;
  71.     color           : #333;
  72.     font            : 15px/1.6 "Raleway", Helvetica, Tahoma, Arial, sans-serif;
  73. }
  74.  
  75. hr {
  76.     border-width: 0;
  77.     border-top: 1px solid #e1e1e1;
  78.     margin-top: 2.0rem;
  79.     margin-bottom: 2.5rem;
  80. }
  81.  
  82. a {
  83.     color: #1eaedb;
  84.     text-decoration: none;
  85. }
  86.  
  87. a:hover {
  88.     color: #0fa0ce;
  89.     text-decoration: underline;
  90. }
  91.  
  92. /*=================================================================
  93. [03. Alerts / .alert]
  94. =================================================================*/
  95.  
  96. .alert {
  97.     background-color: #fbeed5;
  98.     color           : #c09853;
  99.     margin-bottom   : 0.667em;
  100.     padding         : 0.533em 2.333em 0.533em 0.933em;
  101.     position        : relative;
  102.     text-align      : left;
  103. }
  104.  
  105. .alert:only-child {
  106.     margin-bottom   : 0;
  107. }
  108.  
  109.     .alert .alert-close {
  110.         background     : none;
  111.         border         : none;
  112.         color          : inherit !important;
  113.         line-height    : 1.5;
  114.         margin         : 0;
  115.         outline        : 0;
  116.         padding        : 0;
  117.         position       : absolute;
  118.         right          : 0.333em;
  119.         text-decoration: none;
  120.         top            : 0;
  121.     }
  122.  
  123.     .alert.alert-danger,
  124.     .alert.alert-error,
  125.     .alert.alert-red {
  126.         background-color: #eed3d7;
  127.         color           : #b94a48;
  128.     }
  129.  
  130.     .alert.alert-info,
  131.     .alert.alert-blue {
  132.         background-color: #bce8f1;
  133.         color           : #3a87ad;
  134.     }
  135.  
  136.     .alert.alert-success,
  137.     .alert.alert-green {
  138.         background-color: #d6e9c6;
  139.         color           : #468847;
  140.     }
  141.  
  142.     .alert h1,
  143.     .alert h2,
  144.     .alert h3,
  145.     .alert h4,
  146.     .alert h5,
  147.     .alert h6 {
  148.         padding: 0;
  149.         margin : 0 0 0.467em;
  150.     }
  151.  
  152. /*=================================================================
  153. [04. Boxes / .box]
  154. =================================================================*/
  155.  
  156. .box {
  157.     background-color: #fff;
  158.     border-color    : #e5e6e9 #dfe0e4 #d0d1d5;
  159.     border-style    : solid;
  160.     border-width    : 1px;
  161. }
  162. .box + .box {
  163.     margin-top      : 1.333em;
  164. }
  165.  
  166.  
  167.     .box .box-header {
  168.         background-color: #f5f5f5;
  169.         border-bottom   : 1px solid #ddd;
  170.         padding         : 0.667em 2.333em 0.667em 1.000em;
  171.         position        : relative;
  172.     }
  173.  
  174.     .box.box-default .box-header {
  175.         background-color: #f5f5f5;
  176.     }
  177.  
  178.     .box .box-header:before,
  179.     .box .box-header:after {
  180.         content    : ".";
  181.         display    : block;
  182.         line-height: 0;
  183.         overflow   : hidden;
  184.     }
  185.     .box .box-header:after {
  186.         clear  : both;
  187.     }
  188.  
  189.         .box .box-header .box-title {
  190.             color        : inherit;
  191.             font-size    : 1.067em;
  192.             margin-bottom: 0;
  193.             margin-top   : 0;
  194.         }
  195.  
  196.         .box .box-header > small,
  197.         .box .box-header > abbr {
  198.             color  : #989898;
  199.             display: block;
  200.         }
  201.  
  202.         .box .box-header .box-action {
  203.             color    : inherit;
  204.             padding  : 0.133em 0.200em;
  205.             position : absolute;
  206.             right    : 0;
  207.             top      : 0;
  208.         }
  209.             .box .box-header .box-action > a:link,
  210.             .box .box-header .box-action > a:visited {
  211.                 color          : #c0c0c0;
  212.                 text-decoration: none;
  213.             }
  214.             .box .box-header .box-action > a + a {
  215.                 margin-left: 0.333em;
  216.             }
  217.             .box .box-header .box-action > a:active,
  218.             .box .box-header .box-action > a:focus,
  219.             .box .box-header .box-action > a:hover {
  220.                 color: #555;
  221.             }
  222.  
  223.         .box .box-header .box-tag {
  224.             background-color: #e5e5e5;
  225.             bottom          : 1px;
  226.             color           : #333;
  227.             font-size       : 0.733em;
  228.             font-weight     : 700;
  229.             overflow        : hidden;
  230.             padding         : 0.133em 0.200em;
  231.             position        : absolute;
  232.             right           : 1px;
  233.             text-overflow   : ellipsis;
  234.             text-transform  : lowercase;
  235.             white-space     : nowrap;
  236.         }
  237.             .box .box-header .box-tag.tag-purple {
  238.                 background-color: #862165;
  239.                 color           : #fff ;
  240.             }
  241.             .box .box-header .box-tag.tag-blue {
  242.                 background-color: #4890a8;
  243.                 color           : #fff ;
  244.             }
  245.             .box .box-header .box-tag.tag-green {
  246.                 background-color: #5bb75b;
  247.                 color           : #fff ;
  248.             }
  249.             .box .box-header .box-tag.tag-orange {
  250.                 background-color: #faa732;
  251.                 color           : #fff ;
  252.             }
  253.             .box .box-header .box-tag.tag-red {
  254.                 background-color: #da4f49;
  255.                 color           : #fff ;
  256.             }
  257.             .box .box-header .box-tag.tag-pink {
  258.                 background-color: #db35c0;
  259.                 color           : #fff ;
  260.             }
  261.             .box .box-header .box-tag.tag-black {
  262.                 background-color: #363636;
  263.                 color           : #fff ;
  264.             }
  265.             .box .box-header .box-tag.tag-white {
  266.                 background-color: #fff;
  267.                 color           : #333 ;
  268.             }
  269.  
  270.     .box .box-content {
  271.         padding: 1.000em;
  272.         line-height: inherit;
  273.     }
  274.     .box .box-content:before,
  275.     .box .box-content:after {
  276.         content: ' ';
  277.         display: block;
  278.         line-height: 0;
  279.     }
  280.     .box .box-content:after {
  281.         clear: both;
  282.     }
  283.         .box .box-content > p + p {
  284.             margin-top: 0.333em;
  285.         }
  286.  
  287.     .box .box-footer {
  288.         background-color: #f5f5f5;
  289.         border-top      : 1px solid #ddd;
  290.         padding         : 0.6667rem 1.000em;
  291.     }
  292.     .box .box-header:empty,
  293.     .box .box-footer:empty {
  294.         height: 0.200em;
  295.         padding: 0;
  296.     }
  297.     .box .box-footer:before,
  298.     .box .box-footer:after {
  299.         content    : '.';
  300.         display    : block;
  301.         line-height: 0;
  302.         overflow   : hidden;
  303.     }
  304.     .box .box-footer:after {
  305.         clear: both;
  306.     }
  307.  
  308. /*=================================================================
  309. [05. Breadcrumb / .breadcrumb]
  310. =================================================================*/
  311.  
  312. .breadcrumb {
  313.     font-size       : inherit;
  314.     list-style      : none;
  315.     margin          : 0;
  316.     padding         : 0.5333rem 1.000em;
  317. }
  318.  
  319. .breadcrumb + .breadcrumb {
  320.     margin-top: 1.000em;
  321. }
  322.  
  323.     .breadcrumb > .item {
  324.         *display: inline;
  325.         *zoom   : 1;
  326.         display : inline-block;
  327.     }
  328.     .breadcrumb > .item:after {
  329.         color  : #aaa;
  330.         content: "\00BB";
  331.         padding: 0 5px 0 0.6667rem;
  332.     }
  333.     .breadcrumb > .item:last-child:after {
  334.         content: none;
  335.     }
  336.  
  337.     .breadcrumb > .item > a:link,
  338.     .breadcrumb > .item > a:visited {
  339.         text-decoration: none;
  340.     }
  341.     .breadcrumb > .item:hover > a,
  342.     .breadcrumb > .item > a:hover,
  343.     .breadcrumb > .item > a:active,
  344.     .breadcrumb > .item > a:focus {
  345.         color          : inherit;
  346.         text-decoration: underline;
  347.     }
  348.     .breadcrumb > .item.active > span,
  349.     .breadcrumb > .item.active > a {
  350.         color          : #999 !important;
  351.         cursor         : default;
  352.         text-decoration: none !important;
  353.     }
  354.  
  355. /*=================================================================
  356. [06. Browsers / .browser]
  357. =================================================================*/
  358.  
  359. .brw,
  360. .browser {
  361.     background-color   : transparent;
  362.     background-image   : url(images/browsers.png);
  363.     background-repeat  : no-repeat;
  364.     border             : none;
  365.     display            : inline-block;
  366.     height             : 16px;
  367.     outline            : 0;
  368.     width              : 16px;
  369. }
  370.  
  371. .brw.brw-an,
  372. .browser.android {background-position: 0 0}
  373. .brw.brw-ch,
  374. .browser.chrome {background-position: -16px 0}
  375. .brw.brw-ff,
  376. .browser.firefox {background-position: -32px 0}
  377. .brw.brw-ie,
  378. .browser.ie {background-position: -48px 0}
  379. .brw.brw-ns,
  380. .browser.netscape {background-position: 0 -16px}
  381. .brw.brw-op,
  382. .browser.opera {background-position: -16px -16px}
  383. .brw.brw-sf,
  384. .browser.safari {background-position: -16px -32px}
  385.  
  386. /*=================================================================
  387. [07. Buttons / .button]
  388. =================================================================*/
  389.  
  390. .btn {
  391.     *display           : inline;
  392.     *zoom              : 1;
  393.     background-color   : #E7E7E7;
  394.     border             : 1px solid transparent;
  395.     color              : #666;
  396.     cursor             : pointer;
  397.     display            : inline-block;
  398.     font-family        : inherit;
  399.     font-weight        : 400;
  400.     line-height        : 1.5;
  401.     margin             : 0;
  402.     padding            : 0.467em 0.800em;
  403.     position           : relative;
  404.     text-align         : center;
  405.     text-decoration    : none;
  406.     vertical-align     : middle;
  407.     white-space        : nowrap;
  408.     width              : auto;
  409.     border-radius      : 3px;
  410.             transition : background-color .15s ease-in-out;
  411.          -o-transition : background-color .15s ease-in-out;
  412.         -ms-transition : background-color .15s ease-in-out;
  413.        -moz-transition : background-color .15s ease-in-out;
  414.     -webkit-transition : background-color .15s ease-in-out;
  415.             user-select: none;
  416.          -o-user-select: none;
  417.         -ms-user-select: none;
  418.        -moz-user-select: none;
  419.     -webkit-user-select: none;
  420. }
  421.  
  422. .btn:focus, .btn:active, .btn:hover {
  423.     background-color: #e0e0e0;
  424.     color           : #666;
  425.     text-decoration    : none;
  426. }
  427.  
  428. /**
  429. * Buttons Groups
  430. */
  431.  
  432. .btn-group {
  433.     display    : inline-block;
  434.     line-height: 100%;
  435. }
  436.     .btn-group > .btn {
  437.         display: inline-block;
  438.         float  : left;
  439.     }
  440.     .btn-group > .btn + .btn {
  441.         border-left: 1px solid rgba(255,255,255,.5);
  442.         margin-left: 0;
  443.     }
  444.     .btn-group > .btn:first-child {
  445.         border-radius: 3px 0 0 3px;
  446.     }
  447.  
  448.     .btn-group > .btn:last-child {
  449.         border-radius: 0 3px 3px 0;
  450.     }
  451.  
  452.     .btn-group > .btn:only-child {
  453.         border-radius: 3px;
  454.     }
  455.  
  456. /**
  457. * Button Sizes
  458. */
  459.  
  460. .btn.btn-tiny, .btn-group.btn-tiny > .btn {
  461.     font-size: 0.5em;
  462.     padding  : 0.067em 0.200em;
  463. }
  464.  
  465. .btn.btn-mini, .btn-group.btn-mini > .btn {
  466.     font-size: .71428571em;
  467.     padding  : 0.200em 0.467em;
  468. }
  469.  
  470. .btn.btn-small, .btn-group.btn-small > .btn {
  471.     font-size  : .92857143em;
  472.     padding    : 0.333em 0.6667rem;
  473.     line-height: 1.315;
  474. }
  475.  
  476. .btn.btn-large, .btn-group.btn-large > .btn {
  477.     font-size: 1.14285714em;
  478.     padding  : 0.6667rem 1.333em;
  479. }
  480.  
  481. .btn.btn-xlarge, .btn-group.btn-xlarge > .btn {
  482.     font-size: 1.28571429em;
  483.     padding  : 1.000em 1.333em;
  484. }
  485.  
  486. .btn.btn-block {
  487.             box-sizing: border-box;
  488.        -moz-box-sizing: border-box;
  489.     -webkit-box-sizing: border-box;
  490.     text-align        : center;
  491.     width             : 100%;
  492. }
  493.  
  494. /**
  495. * Disabled Button
  496. */
  497.  
  498. .btn[disabled], .btn[disabled]:focus, .btn[disabled]:hover, .btn[disabled]:active,
  499. .btn.disabled, .btn.disabled:focus, .btn.disabled:hover, .btn.disabled:active {
  500.     background-color: #efefef;
  501.     cursor          : default;
  502. }
  503.  
  504. /**
  505. * Button Link
  506. */
  507.  
  508. .btn.btn-link, .btn-group.btn-link > .btn {
  509.     background: none;
  510.     border    : none;
  511. }
  512.  
  513. .btn.btn-link:focus, .btn.btn-link:active, .btn.btn-link:hover,
  514. .btn-group.btn-link > .btn:focus, .btn-group.btn-link > .btn:active, .btn-group.btn-link > .btn:hover {
  515.     text-decoration: underline;
  516. }
  517.  
  518. /**
  519. * Button Colors
  520. */
  521.  
  522. /* purple button */
  523. .btn.btn-purple, .btn-group.btn-purple > .btn {
  524.     background-color: #862165;
  525.     color           : #fefefe !important;
  526. }
  527. .btn.btn-purple:active, .btn.btn-purple:focus, .btn.btn-purple:hover,
  528. .btn-group.btn-purple > .btn:active, .btn-group.btn-purple > .btn:focus, .btn-group.btn-purple > .btn:hover {
  529.     background-color: #751b59;
  530.     color           : #fefefe !important;
  531. }
  532.  
  533. /* blue button */
  534. .btn.btn-primary, .btn-group.btn-primary > .btn,
  535. .btn.btn-blue, .btn-group.btn-blue > .btn {
  536.     background-color: #4890a8;
  537.     color           : #fefefe !important;
  538. }
  539. .btn.btn-info:active, .btn.btn-info:focus, .btn.btn-info:hover,
  540. .btn-group.btn-info > .btn:active, .btn-group.btn-info > .btn:focus, .btn-group.btn-info > .btn:hover,
  541. .btn.btn-blue:active, .btn.btn-blue:focus, .btn.btn-blue:hover,
  542. .btn-group.btn-blue > .btn:active, .btn-group.btn-blue > .btn:focus, .btn-group.btn-blue > .btn:hover {
  543.     background-color: #186078;
  544.     color           : #fefefe !important;
  545. }
  546.  
  547. /* green button */
  548. .btn.btn-success, .btn-group.btn-success > .btn,
  549. .btn.btn-green, .btn-group.btn-green > .btn {
  550.     background-color: #5bb75b;
  551.     color           : #fefefe !important;
  552. }
  553. .btn.btn-success:active, .btn.btn-success:focus, .btn.btn-success:hover,
  554. .btn-group.btn-success > .btn:active, .btn-group.btn-success > .btn:focus, .btn-group.btn-success > .btn:hover,
  555. .btn.btn-green:active, .btn.btn-green:focus, .btn.btn-green:hover,
  556. .btn-group.btn-green > .btn:active, .btn-group.btn-green > .btn:focus, .btn-group.btn-green > .btn:hover {
  557.     background-color: #51a351;
  558.     color           : #fefefe !important;
  559. }
  560.  
  561. /* orange button */
  562. .btn.btn-warning, .btn-group.btn-warning > .btn,
  563. .btn.btn-orange, .btn-group.btn-orange > .btn {
  564.     background-color: #faa732;
  565.     color           : #fefefe !important;
  566. }
  567. .btn.btn-warning:active, .btn.btn-warning:focus, .btn.btn-warning:hover,
  568. .btn-group.btn-warning > .btn:active, .btn-group.btn-warning > .btn:focus, .btn-group.btn-warning > .btn:hover,
  569. .btn.btn-orange:active, .btn.btn-orange:focus, .btn.btn-orange:hover,
  570. .btn-group.btn-orange > .btn:active, .btn-group.btn-orange > .btn:focus, .btn-group.btn-orange > .btn:hover {
  571.     background-color: #f89406;
  572.     color           : #fefefe !important;
  573. }
  574.  
  575. /* red button */
  576. .btn.btn-danger, .btn-group.btn-danger > .btn,
  577. .btn.btn-red, .btn-group.btn-red > .btn {
  578.     background-color: #da4f49;
  579.     color           : #fefefe !important;
  580. }
  581. .btn.btn-danger:active, .btn.btn-danger:focus, .btn.btn-danger:hover,
  582. .btn-group.btn-danger > .btn:active, .btn-group.btn-danger > .btn:focus, .btn-group.btn-danger > .btn:hover,
  583. .btn.btn-red:active, .btn.btn-red:focus, .btn.btn-red:hover,
  584. .btn-group.btn-red > .btn:active, .btn-group.btn-red > .btn:focus, .btn-group.btn-red > .btn:hover {
  585.     background-color: #bd362f;
  586.     color           : #fefefe !important;
  587. }
  588.  
  589. /* pink button */
  590. .btn.btn-pink, .btn-group.btn-pink > .btn {
  591.     background-color: #db35c0;
  592.     color           : #fefefe !important;
  593. }
  594. .btn.btn-pink:active, .btn.btn-pink:focus, .btn.btn-pink:hover,
  595. .btn-group.btn-pink > .btn:active, .btn-group.btn-pink > .btn:focus, .btn-group.btn-pink > .btn:hover {
  596.     background-color: #ba29a2;
  597.     color           : #fefefe !important;
  598. }
  599.  
  600. /* black button */
  601. .btn.btn-inverse, .btn-group.btn-inverse > .btn,
  602. .btn.btn-black, .btn-group.btn-black > .btn {
  603.     background-color: #363636 !important;
  604.     color           : #fefefe !important;
  605. }
  606. .btn.btn-inverse:active, .btn.btn-inverse:focus, .btn.btn-inverse:hover,
  607. .btn-group.btn-inverse > .btn:active, .btn-group.btn-inverse > .btn:focus, .btn-group.btn-inverse > .btn:hover,
  608. .btn.btn-black:active, .btn.btn-black:focus, .btn.btn-black:hover,
  609. .btn-group.btn-black > .btn:active, .btn-group.btn-black > .btn:focus, .btn-group.btn-black > .btn:hover {
  610.     background-color: #222222 !important;
  611. }
  612.  
  613. /* white button */
  614. .btn.btn-white, .btn-group.btn-white > .btn,
  615. .btn.btn-white, .btn-group.btn-white > .btn {
  616.     background-color: #fff;
  617.     color           : #333 !important;
  618.     text-shadow     : 0 1px #fff;
  619. }
  620. .btn.btn-white:active, .btn.btn-white:focus, .btn.btn-white:hover,
  621. .btn-group.btn-white > .btn:active, .btn-group.btn-white > .btn:focus, .btn-group.btn-white > .btn:hover {
  622.     background-color: #f9f9f9;
  623. }
  624.  
  625. /**
  626. * Social Network Buttons
  627. */
  628.  
  629. .btn.btn-dribbble,
  630. .btn.btn-facebook,
  631. .btn.btn-googleplus,
  632. .btn.btn-linkedin,
  633. .btn.btn-pinterest,
  634. .btn.btn-rss,
  635. .btn.btn-tumblr,
  636. .btn.btn-twitter,
  637. .btn.btn-github {
  638.             transition: all .15s ease-in-out;
  639.          -o-transition: all .15s ease-in-out;
  640.         -ms-transition: all .15s ease-in-out;
  641.        -moz-transition: all .15s ease-in-out;
  642.     -webkit-transition: all .15s ease-in-out;
  643.     color             : #fff !important;
  644. }
  645.  
  646. /* dribbble */
  647. .btn-group.btn-dribbble > .btn, .btn.btn-dribbble {
  648.     background      :     -ms-linear-gradient(top,#ea4c89,#c93764);
  649.     background      :    -moz-linear-gradient(top,#ea4c89,#c93764);
  650.     background      : -webkit-linear-gradient(top,#ea4c89,#c93764);
  651.     background-color: #c93764;
  652.     text-shadow     : 0 -1px -1px #9d2849;
  653. }
  654. .btn.btn-dribbble:active, .btn.btn-dribbble:focus, .btn.btn-dribbble:hover,
  655. .btn-group.btn-dribbble > .btn:active, .btn-group.btn-dribbble > .btn:focus, .btn-group.btn-dribbble > .btn:hover {
  656.     background: #c93764;
  657. }
  658.  
  659. /* facebook */
  660. .btn-group.btn-facebook > .btn, .btn.btn-facebook {
  661.     background      :     -ms-linear-gradient(top,#3b5998,#2b4170);
  662.     background      :    -moz-linear-gradient(top,#3b5998,#2b4170);
  663.     background      : -webkit-linear-gradient(top,#3b5998,#2b4170);
  664.     background-color: #2b4170;
  665.     text-shadow     : 0 -1px -1px #1f2f52;
  666. }
  667. .btn.btn-facebook:active, .btn.btn-facebook:focus, .btn.btn-facebook:hover,
  668. .btn-group.btn-facebook > .btn:active, .btn-group.btn-facebook > .btn:focus, .btn-group.btn-facebook > .btn:hover {
  669.     background: #2b4170;
  670. }
  671.  
  672. /* googleplus */
  673. .btn-group.btn-googleplus > .btn, .btn.btn-googleplus {
  674.     background      :     -ms-linear-gradient(top,#e64522,#c33219);
  675.     background      :    -moz-linear-gradient(top,#e64522,#c33219);
  676.     background      : -webkit-linear-gradient(top,#e64522,#c33219);
  677.     background-color: #c33219;
  678.     text-shadow     : 0 -1px -1px #972412;
  679. }
  680. .btn.btn-googleplus:active, .btn.btn-googleplus:focus, .btn.btn-googleplus:hover,
  681. .btn-group.btn-googleplus > .btn:active, .btn-group.btn-googleplus > .btn:focus, .btn-group.btn-googleplus > .btn:hover {
  682.     background: #c33219;
  683. }
  684.  
  685. /* linkedin */
  686. .btn-group.btn-linkedin > .btn, .btn.btn-linkedin {
  687.     background      :     -ms-linear-gradient(top,#009cda,#0073b2);
  688.     background      :    -moz-linear-gradient(top,#009cda,#0073b2);
  689.     background      : -webkit-linear-gradient(top,#009cda,#0073b2);
  690.     background-color: #0073b2;
  691.     text-shadow     : 0 -1px -1px #005486;
  692. }
  693. .btn.btn-linkedin:active, .btn.btn-linkedin:focus, .btn.btn-linkedin:hover,
  694. .btn-group.btn-linkedin > .btn:active, .btn-group.btn-linkedin > .btn:focus, .btn-group.btn-linkedin > .btn:hover {
  695.     background: #0073b2;
  696. }
  697.  
  698. /* pinterest */
  699. .btn-group.btn-pinterest > .btn, .btn.btn-pinterest {
  700.     background      :     -ms-linear-gradient(top,#cb2027,#a0171c);
  701.     background      :    -moz-linear-gradient(top,#cb2027,#a0171c);
  702.     background      : -webkit-linear-gradient(top,#cb2027,#a0171c);
  703.     background-color: #a0171c;
  704.     text-shadow     : 0 -1px -1px #761114;
  705. }
  706. .btn.btn-pinterest:active, .btn.btn-pinterest:focus, .btn.btn-pinterest:hover,
  707. .btn-group.btn-pinterest > .btn:active, .btn-group.btn-pinterest > .btn:focus, .btn-group.btn-pinterest > .btn:hover {
  708.     background: #a0171c;
  709. }
  710.  
  711. /* rss */
  712. .btn-group.btn-rss > .btn, .btn.btn-rss {
  713.     background      :     -ms-linear-gradient(top,#e88845,#e2733d);
  714.     background      :    -moz-linear-gradient(top,#e88845,#e2733d);
  715.     background      : -webkit-linear-gradient(top,#e88845,#e2733d);
  716.     background-color: #e2733d;
  717.     text-shadow     :0 -1px -1px #9a4824;
  718. }
  719. .btn.btn-rss:active, .btn.btn-rss:focus, .btn.btn-rss:hover,
  720. .btn-group.btn-rss > .btn:active, .btn-group.btn-rss > .btn:focus, .btn-group.btn-rss > .btn:hover {
  721.     background: #e2733d;
  722. }
  723.  
  724. /* tumblr */
  725. .btn-group.btn-tumblr > .btn, .btn.btn-tumblr {
  726.     background      :     -ms-linear-gradient(top,#3a5876,#2c4762);
  727.     background      :    -moz-linear-gradient(top,#3a5876,#2c4762);
  728.     background      : -webkit-linear-gradient(top,#3a5876,#2c4762);
  729.     background-color: #2c4762;
  730.     text-shadow     : 0 -1px -1px #203448;
  731. }
  732. .btn.btn-tumblr:active, .btn.btn-tumblr:focus, .btn.btn-tumblr:hover,
  733. .btn-group.btn-tumblr > .btn:active, .btn-group.btn-tumblr > .btn:focus, .btn-group.btn-tumblr > .btn:hover {
  734.     background: #2c4762;
  735. }
  736.  
  737. /* twitter */
  738. .btn-group.btn-twitter > .btn, .btn.btn-twitter {
  739.     background      :     -ms-linear-gradient(top,#00aced,#0081ce);
  740.     background      :    -moz-linear-gradient(top,#00aced,#0081ce);
  741.     background      : -webkit-linear-gradient(top,#00aced,#0081ce);
  742.     background-color: #0081ce;
  743.     text-shadow     : 0 -1px -1px #005ea3;
  744. }
  745. .btn.btn-twitter:active, .btn.btn-twitter:focus, .btn.btn-twitter:hover,
  746. .btn-group.btn-twitter > .btn:active, .btn-group.btn-twitter > .btn:focus, .btn-group.btn-twitter > .btn:hover {
  747.     background: #0081ce;
  748. }
  749.  
  750. /* github */
  751. .btn-group.btn-github > .btn, .btn.btn-github {
  752.     background      :     -ms-linear-gradient(top,#333,#111);
  753.     background      :    -moz-linear-gradient(top,#333,#111);
  754.     background      : -webkit-linear-gradient(top,#333,#111);
  755.     background-color: #333;
  756.     text-shadow     : 0 -1px -1px #005ea3;
  757. }
  758. .btn.btn-github:active, .btn.btn-github:focus, .btn.btn-github:hover,
  759. .btn-group.btn-github > .btn:active, .btn-group.btn-github > .btn:focus, .btn-group.btn-github > .btn:hover {
  760.     background: #111;
  761. }
  762.  
  763. /**
  764. * Buttons Shapes
  765. */
  766.  
  767. /* button pill | 50em border radius */
  768. .btn-group.btn-pill > .btn:first-child {
  769.             border-radius: 50em 0 0 50em;
  770.          -o-border-radius: 50em 0 0 50em;
  771.         -ms-border-radius: 50em 0 0 50em;
  772.        -moz-border-radius: 50em 0 0 50em;
  773.     -webkit-border-radius: 50em 0 0 50em;
  774. }
  775.  
  776. .btn-group.btn-pill > .btn:last-child {
  777.             border-radius: 0 50em 50em 0;
  778.          -o-border-radius: 0 50em 50em 0;
  779.         -ms-border-radius: 0 50em 50em 0;
  780.        -moz-border-radius: 0 50em 50em 0;
  781.     -webkit-border-radius: 0 50em 50em 0;
  782. }
  783.  
  784. .btn-group.btn-pill > .btn:only-child, .btn.btn-pill {
  785.             border-radius: 50em;
  786.          -o-border-radius: 50em;
  787.         -ms-border-radius: 50em;
  788.        -moz-border-radius: 50em;
  789.     -webkit-border-radius: 50em;
  790. }
  791.  
  792. /* button circle */
  793. .btn.btn-circle {
  794.             border-radius: 240px;
  795.          -o-border-radius: 240px;
  796.         -ms-border-radius: 240px;
  797.        -moz-border-radius: 240px;
  798.     -webkit-border-radius: 240px;
  799.     height               : 120px;
  800.     line-height          : 120px;
  801.     overflow             : hidden;
  802.     text-overflow        : ellipsis;
  803.     white-space          : nowrap;
  804.     padding              : 0 5px;
  805.     width                : 120px;
  806. }
  807.  
  808. /*=================================================================
  809. [09. Collapse / .collapse]
  810. =================================================================*/
  811.  
  812. .collapse {
  813.     display: block;
  814.     max-width: 100%;
  815. }
  816.  
  817. .collapse + .collapse {
  818.     margin-top: 1.000em;
  819. }
  820.  
  821.     .collapse > .title {
  822.         display: block;
  823.         cursor: pointer;
  824.         color: #989898;
  825.         padding: 7px 0;
  826.     }
  827.  
  828.     .collapse > .title:before {
  829.         content: "\f0da";
  830.         display: inline-block;
  831.         font-family: FontAwesome;
  832.         width: 11px;
  833.         margin-right: 1px;
  834.     }
  835.  
  836.     .collapse > .title.active,
  837.     .collapse > .title:hover {
  838.         color: inherit;
  839.     }
  840.  
  841.     .collapse > .title.active:before {
  842.         content: "\f0d7";
  843.     }
  844.  
  845.     .collapse > .content {
  846.         display: none;
  847.         padding: 7px 0 14px;
  848.     }
  849.     .collapse > .content.active {
  850.         display: block;
  851.     }
  852.  
  853. .collapse.styled {
  854.     border-radius: 3px;
  855.     background-color: #fff;
  856.     border: 1px solid #eee;
  857. }
  858.  
  859.     .collapse.styled > .title {
  860.         margin: 0;
  861.         padding: 7px 14px;
  862.         border-top: 1px solid #eee;
  863.     }
  864.  
  865.     .collapse.styled > .title:first-child {
  866.         border-top: none;
  867.     }
  868.  
  869.     .collapse.styled > .content {
  870.         padding: 7px 14px 14px;
  871.     }
  872.  
  873. /*=================================================================
  874. [09. Flags / .flag]
  875. =================================================================*/
  876.  
  877. .flag {
  878.     background-color : transparent;
  879.     background-image : url(images/flags.png);
  880.     background-repeat: no-repeat;
  881.     border           : none;
  882.     display          : inline-block;
  883.     height           : 11px;
  884.     outline          : 0;
  885.     width            : 16px;
  886. }
  887.  
  888. .flag.flag-ad {background-position: -16px 0}
  889. .flag.flag-ae {background-position: -32px 0}
  890. .flag.flag-af {background-position: -48px 0}
  891. .flag.flag-ag {background-position: -64px 0}
  892. .flag.flag-ai {background-position: -80px 0}
  893. .flag.flag-al {background-position: -96px 0}
  894. .flag.flag-am {background-position: -112px 0}
  895. .flag.flag-an {background-position: -128px 0}
  896. .flag.flag-ao {background-position: -144px 0}
  897. .flag.flag-ar {background-position: -160px 0}
  898. .flag.flag-as {background-position: -176px 0}
  899. .flag.flag-at {background-position: -192px 0}
  900. .flag.flag-au {background-position: -208px 0}
  901. .flag.flag-aw {background-position: -224px 0}
  902. .flag.flag-az {background-position: -240px 0}
  903. .flag.flag-ba {background-position: 0 -11px}
  904. .flag.flag-bb {background-position: -16px -11px}
  905. .flag.flag-bd {background-position: -32px -11px}
  906. .flag.flag-be {background-position: -48px -11px}
  907. .flag.flag-bf {background-position: -64px -11px}
  908. .flag.flag-bg {background-position: -80px -11px}
  909. .flag.flag-bh {background-position: -96px -11px}
  910. .flag.flag-bi {background-position: -112px -11px}
  911. .flag.flag-bj {background-position: -128px -11px}
  912. .flag.flag-bm {background-position: -144px -11px}
  913. .flag.flag-bn {background-position: -160px -11px}
  914. .flag.flag-bo {background-position: -176px -11px}
  915. .flag.flag-br {background-position: -192px -11px}
  916. .flag.flag-bs {background-position: -208px -11px}
  917. .flag.flag-bt {background-position: -224px -11px}
  918. .flag.flag-bv {background-position: -240px -11px}
  919. .flag.flag-bw {background-position: 0 -22px}
  920. .flag.flag-by {background-position: -16px -22px}
  921. .flag.flag-bz {background-position: -32px -22px}
  922. .flag.flag-ca {background-position: -48px -22px}
  923. .flag.flag-catalonia {background-position: -64px -22px}
  924. .flag.flag-cd {background-position: -80px -22px}
  925. .flag.flag-cf {background-position: -96px -22px}
  926. .flag.flag-cg {background-position: -112px -22px}
  927. .flag.flag-ch {background-position: -128px -22px}
  928. .flag.flag-ci {background-position: -144px -22px}
  929. .flag.flag-ck {background-position: -160px -22px}
  930. .flag.flag-cl {background-position: -176px -22px}
  931. .flag.flag-cm {background-position: -192px -22px}
  932. .flag.flag-cn {background-position: -208px -22px}
  933. .flag.flag-co {background-position: -224px -22px}
  934. .flag.flag-cr {background-position: -240px -22px}
  935. .flag.flag-cu {background-position: 0 -33px}
  936. .flag.flag-cv {background-position: -16px -33px}
  937. .flag.flag-cw {background-position: -32px -33px}
  938. .flag.flag-cy {background-position: -48px -33px}
  939. .flag.flag-cz {background-position: -64px -33px}
  940. .flag.flag-de {background-position: -80px -33px}
  941. .flag.flag-dj {background-position: -96px -33px}
  942. .flag.flag-dk {background-position: -112px -33px}
  943. .flag.flag-dm {background-position: -128px -33px}
  944. .flag.flag-do {background-position: -144px -33px}
  945. .flag.flag-dz {background-position: -160px -33px}
  946. .flag.flag-ec {background-position: -176px -33px}
  947. .flag.flag-ee {background-position: -192px -33px}
  948. .flag.flag-eg {background-position: -208px -33px}
  949. .flag.flag-eh {background-position: -224px -33px}
  950. .flag.flag-england {background-position: -240px -33px}
  951. .flag.flag-er {background-position: 0 -44px}
  952. .flag.flag-es {background-position: -16px -44px}
  953. .flag.flag-et {background-position: -32px -44px}
  954. .flag.flag-eu {background-position: -48px -44px}
  955. .flag.flag-fi {background-position: -64px -44px}
  956. .flag.flag-fj {background-position: -80px -44px}
  957. .flag.flag-fk {background-position: -96px -44px}
  958. .flag.flag-fm {background-position: -112px -44px}
  959. .flag.flag-fo {background-position: -128px -44px}
  960. .flag.flag-fr {background-position: -144px -44px}
  961. .flag.flag-ga {background-position: -160px -44px}
  962. .flag.flag-gb {background-position: -176px -44px}
  963. .flag.flag-gd {background-position: -192px -44px}
  964. .flag.flag-ge {background-position: -208px -44px}
  965. .flag.flag-gf {background-position: -224px -44px}
  966. .flag.flag-gg {background-position: -240px -44px}
  967. .flag.flag-gh {background-position: 0 -55px}
  968. .flag.flag-gi {background-position: -16px -55px}
  969. .flag.flag-gl {background-position: -32px -55px}
  970. .flag.flag-gm {background-position: -48px -55px}
  971. .flag.flag-gn {background-position: -64px -55px}
  972. .flag.flag-gp {background-position: -80px -55px}
  973. .flag.flag-gq {background-position: -96px -55px}
  974. .flag.flag-gr {background-position: -112px -55px}
  975. .flag.flag-gs {background-position: -128px -55px}
  976. .flag.flag-gt {background-position: -144px -55px}
  977. .flag.flag-gu {background-position: -160px -55px}
  978. .flag.flag-gw {background-position: -176px -55px}
  979. .flag.flag-gy {background-position: -192px -55px}
  980. .flag.flag-hk {background-position: -208px -55px}
  981. .flag.flag-hm {background-position: -224px -55px}
  982. .flag.flag-hn {background-position: -240px -55px}
  983. .flag.flag-hr {background-position: 0 -66px}
  984. .flag.flag-ht {background-position: -16px -66px}
  985. .flag.flag-hu {background-position: -32px -66px}
  986. .flag.flag-ic {background-position: -48px -66px}
  987. .flag.flag-id {background-position: -64px -66px}
  988. .flag.flag-ie {background-position: -80px -66px}
  989. .flag.flag-il {background-position: -96px -66px}
  990. .flag.flag-im {background-position: -112px -66px}
  991. .flag.flag-in {background-position: -128px -66px}
  992. .flag.flag-io {background-position: -144px -66px}
  993. .flag.flag-iq {background-position: -160px -66px}
  994. .flag.flag-ir {background-position: -176px -66px}
  995. .flag.flag-is {background-position: -192px -66px}
  996. .flag.flag-it {background-position: -208px -66px}
  997. .flag.flag-je {background-position: -224px -66px}
  998. .flag.flag-jm {background-position: -240px -66px}
  999. .flag.flag-jo {background-position: 0 -77px}
  1000. .flag.flag-jp {background-position: -16px -77px}
  1001. .flag.flag-ke {background-position: -32px -77px}
  1002. .flag.flag-kg {background-position: -48px -77px}
  1003. .flag.flag-kh {background-position: -64px -77px}
  1004. .flag.flag-ki {background-position: -80px -77px}
  1005. .flag.flag-km {background-position: -96px -77px}
  1006. .flag.flag-kn {background-position: -112px -77px}
  1007. .flag.flag-kp {background-position: -128px -77px}
  1008. .flag.flag-kr {background-position: -144px -77px}
  1009. .flag.flag-kurdistan {background-position: -160px -77px}
  1010. .flag.flag-kw {background-position: -176px -77px}
  1011. .flag.flag-ky {background-position: -192px -77px}
  1012. .flag.flag-kz {background-position: -208px -77px}
  1013. .flag.flag-la {background-position: -224px -77px}
  1014. .flag.flag-lb {background-position: -240px -77px}
  1015. .flag.flag-lc {background-position: 0 -88px}
  1016. .flag.flag-li {background-position: -16px -88px}
  1017. .flag.flag-lk {background-position: -32px -88px}
  1018. .flag.flag-lr {background-position: -48px -88px}
  1019. .flag.flag-ls {background-position: -64px -88px}
  1020. .flag.flag-lt {background-position: -80px -88px}
  1021. .flag.flag-lu {background-position: -96px -88px}
  1022. .flag.flag-lv {background-position: -112px -88px}
  1023. .flag.flag-ly {background-position: -128px -88px}
  1024. .flag.flag-ma {background-position: -144px -88px}
  1025. .flag.flag-mc {background-position: -160px -88px}
  1026. .flag.flag-md {background-position: -176px -88px}
  1027. .flag.flag-me {background-position: -192px -88px}
  1028. .flag.flag-mg {background-position: -208px -88px}
  1029. .flag.flag-mh {background-position: -224px -88px}
  1030. .flag.flag-mk {background-position: -240px -88px}
  1031. .flag.flag-ml {background-position: 0 -99px}
  1032. .flag.flag-mm {background-position: -16px -99px}
  1033. .flag.flag-mn {background-position: -32px -99px}
  1034. .flag.flag-mo {background-position: -48px -99px}
  1035. .flag.flag-mp {background-position: -64px -99px}
  1036. .flag.flag-mq {background-position: -80px -99px}
  1037. .flag.flag-mr {background-position: -96px -99px}
  1038. .flag.flag-ms {background-position: -112px -99px}
  1039. .flag.flag-mt {background-position: -128px -99px}
  1040. .flag.flag-mu {background-position: -144px -99px}
  1041. .flag.flag-mv {background-position: -160px -99px}
  1042. .flag.flag-mw {background-position: -176px -99px}
  1043. .flag.flag-mx {background-position: -192px -99px}
  1044. .flag.flag-my {background-position: -208px -99px}
  1045. .flag.flag-mz {background-position: -224px -99px}
  1046. .flag.flag-na {background-position: -240px -99px}
  1047. .flag.flag-nc {background-position: 0 -110px}
  1048. .flag.flag-ne {background-position: -16px -110px}
  1049. .flag.flag-nf {background-position: -32px -110px}
  1050. .flag.flag-ng {background-position: -48px -110px}
  1051. .flag.flag-ni {background-position: -64px -110px}
  1052. .flag.flag-nl {background-position: -80px -110px}
  1053. .flag.flag-no {background-position: -96px -110px}
  1054. .flag.flag-np {background-position: -112px -110px}
  1055. .flag.flag-nr {background-position: -128px -110px}
  1056. .flag.flag-nu {background-position: -144px -110px}
  1057. .flag.flag-nz {background-position: -160px -110px}
  1058. .flag.flag-om {background-position: -176px -110px}
  1059. .flag.flag-pa {background-position: -192px -110px}
  1060. .flag.flag-pe {background-position: -208px -110px}
  1061. .flag.flag-pf {background-position: -224px -110px}
  1062. .flag.flag-pg {background-position: -240px -110px}
  1063. .flag.flag-ph {background-position: 0 -121px}
  1064. .flag.flag-pk {background-position: -16px -121px}
  1065. .flag.flag-pl {background-position: -32px -121px}
  1066. .flag.flag-pm {background-position: -48px -121px}
  1067. .flag.flag-pn {background-position: -64px -121px}
  1068. .flag.flag-pr {background-position: -80px -121px}
  1069. .flag.flag-ps {background-position: -96px -121px}
  1070. .flag.flag-pt {background-position: -112px -121px}
  1071. .flag.flag-pw {background-position: -128px -121px}
  1072. .flag.flag-py {background-position: -144px -121px}
  1073. .flag.flag-qa {background-position: -160px -121px}
  1074. .flag.flag-re {background-position: -176px -121px}
  1075. .flag.flag-ro {background-position: -192px -121px}
  1076. .flag.flag-rs {background-position: -208px -121px}
  1077. .flag.flag-ru {background-position: -224px -121px}
  1078. .flag.flag-rw {background-position: -240px -121px}
  1079. .flag.flag-sa {background-position: 0 -132px}
  1080. .flag.flag-sb {background-position: -16px -132px}
  1081. .flag.flag-sc {background-position: -32px -132px}
  1082. .flag.flag-scotland {background-position: -48px -132px}
  1083. .flag.flag-sd {background-position: -64px -132px}
  1084. .flag.flag-se {background-position: -80px -132px}
  1085. .flag.flag-sg {background-position: -96px -132px}
  1086. .flag.flag-sh {background-position: -112px -132px}
  1087. .flag.flag-si {background-position: -128px -132px}
  1088. .flag.flag-sk {background-position: -144px -132px}
  1089. .flag.flag-sl {background-position: -160px -132px}
  1090. .flag.flag-sm {background-position: -176px -132px}
  1091. .flag.flag-sn {background-position: -192px -132px}
  1092. .flag.flag-so {background-position: -208px -132px}
  1093. .flag.flag-somaliland {background-position: -224px -132px}
  1094. .flag.flag-sr {background-position: -240px -132px}
  1095. .flag.flag-ss {background-position: 0 -143px}
  1096. .flag.flag-st {background-position: -16px -143px}
  1097. .flag.flag-sv {background-position: -32px -143px}
  1098. .flag.flag-sx {background-position: -48px -143px}
  1099. .flag.flag-sy {background-position: -64px -143px}
  1100. .flag.flag-sz {background-position: -80px -143px}
  1101. .flag.flag-tc {background-position: -96px -143px}
  1102. .flag.flag-td {background-position: -112px -143px}
  1103. .flag.flag-tf {background-position: -128px -143px}
  1104. .flag.flag-tg {background-position: -144px -143px}
  1105. .flag.flag-th {background-position: -160px -143px}
  1106. .flag.flag-tibet {background-position: -176px -143px}
  1107. .flag.flag-tj {background-position: -192px -143px}
  1108. .flag.flag-tk {background-position: -208px -143px}
  1109. .flag.flag-tl {background-position: -224px -143px}
  1110. .flag.flag-tm {background-position: -240px -143px}
  1111. .flag.flag-tn {background-position: 0 -154px}
  1112. .flag.flag-to {background-position: -16px -154px}
  1113. .flag.flag-tr {background-position: -32px -154px}
  1114. .flag.flag-tt {background-position: -48px -154px}
  1115. .flag.flag-tv {background-position: -64px -154px}
  1116. .flag.flag-tw {background-position: -80px -154px}
  1117. .flag.flag-tz {background-position: -96px -154px}
  1118. .flag.flag-ua {background-position: -112px -154px}
  1119. .flag.flag-ug {background-position: -128px -154px}
  1120. .flag.flag-um {background-position: -144px -154px}
  1121. .flag.flag-us {background-position: -160px -154px}
  1122. .flag.flag-uy {background-position: -176px -154px}
  1123. .flag.flag-uz {background-position: -192px -154px}
  1124. .flag.flag-va {background-position: -208px -154px}
  1125. .flag.flag-vc {background-position: -224px -154px}
  1126. .flag.flag-ve {background-position: -240px -154px}
  1127. .flag.flag-vg {background-position: 0 -165px}
  1128. .flag.flag-vi {background-position: -16px -165px}
  1129. .flag.flag-vn {background-position: -32px -165px}
  1130. .flag.flag-vu {background-position: -48px -165px}
  1131. .flag.flag-wales {background-position: -64px -165px}
  1132. .flag.flag-wf {background-position: -80px -165px}
  1133. .flag.flag-ws {background-position: -96px -165px}
  1134. .flag.flag-xk {background-position: -112px -165px}
  1135. .flag.flag-ye {background-position: -128px -165px}
  1136. .flag.flag-yt {background-position: -144px -165px}
  1137. .flag.flag-za {background-position: -160px -165px}
  1138. .flag.flag-zanzibar {background-position: -176px -165px}
  1139. .flag.flag-zm {background-position: -192px -165px}
  1140. .flag.flag-zw {background-position: -208px -165px}
  1141.  
  1142. /*=================================================================
  1143. [10. Forms]
  1144. =================================================================*/
  1145.  
  1146. .form,
  1147. form {
  1148.     margin : 0;
  1149.     padding: 0;
  1150. }
  1151.  
  1152. fieldset {
  1153.     border : 1px solid silver;
  1154.     margin : 0 2px;
  1155.     padding: .35em .625em .75em;
  1156. }
  1157.  
  1158. legend {
  1159.     *margin-left : -7px;
  1160.     border       : none;
  1161.     border-bottom: 1px solid #CCCCCC;
  1162.     display      : block;
  1163.     font-size    : 1.3em;
  1164.     margin-bottom: .5em;
  1165.     padding      : 0;
  1166.     white-space  : normal;
  1167.     width        : 100%;
  1168. }
  1169.  
  1170. select {
  1171.     width: auto;
  1172. }
  1173.  
  1174. textarea {
  1175.     resize: vertical;
  1176. }
  1177. textarea.no-resize {
  1178.     resize: none;
  1179. }
  1180.  
  1181. .form-control,
  1182. select,
  1183. textarea,
  1184. input[type="text"],
  1185. input[type="password"],
  1186. input[type="datetime"],
  1187. input[type="datetime-local"],
  1188. input[type="date"],
  1189. input[type="month"],
  1190. input[type="time"],
  1191. input[type="week"],
  1192. input[type="number"],
  1193. input[type="email"],
  1194. input[type="url"],
  1195. input[type="search"],
  1196. input[type="tel"],
  1197. input[type="color"] {
  1198.     margin                     : 0;
  1199.     max-width                  : 100%;
  1200.     -webkit-box-flex           : 0;
  1201.     -webkit-flex               : 0 1 auto;
  1202.         -ms-flex               : 0 1 auto;
  1203.             flex               : 0 1 auto;
  1204.     outline                    : 0;
  1205.     -webkit-tap-highlight-color: rgba(255,255,255,0);
  1206.     text-align                 : left;
  1207.     line-height                : 1.2;
  1208.     padding                    : 0.467em 0.800em;
  1209.     background                 : #fff;
  1210.     border                     : 1px solid rgba(0,0,0,.15);
  1211.     color                      : rgba(0,0,0,.8);
  1212.     border-radius              : 3px;
  1213.     -webkit-transition         : background-color .2s ease,box-shadow .2s ease,border-color .2s ease;
  1214.        -moz-transition         : background-color .2s ease,box-shadow .2s ease,border-color .2s ease;
  1215.         -ms-transition         : background-color .2s ease,box-shadow .2s ease,border-color .2s ease;
  1216.          -o-transition         : background-color .2s ease,box-shadow .2s ease,border-color .2s ease;
  1217.             transition         : background-color .2s ease,box-shadow .2s ease,border-color .2s ease;
  1218.     -webkit-box-shadow         : none;
  1219.        -moz-box-shadow         : none;
  1220.         -ms-box-shadow         : none;
  1221.          -o-box-shadow         : none;
  1222.             box-shadow         : none;
  1223. }
  1224.  
  1225. .form-control:focus,
  1226. select:focus,
  1227. textarea:focus,
  1228. input[type="text"]:focus,
  1229. input[type="password"]:focus,
  1230. input[type="datetime"]:focus,
  1231. input[type="datetime-local"]:focus,
  1232. input[type="date"]:focus,
  1233. input[type="month"]:focus,
  1234. input[type="time"]:focus,
  1235. input[type="week"]:focus,
  1236. input[type="number"]:focus,
  1237. input[type="email"]:focus,
  1238. input[type="url"]:focus,
  1239. input[type="search"]:focus,
  1240. input[type="tel"]:focus,
  1241. input[type="color"]:focus {
  1242.     border-color: #66afe9;
  1243.     background  : #fff;
  1244.     box-shadow  : none;
  1245. }
  1246.  
  1247. input[type=text],
  1248. input[type=email],
  1249. input[type=search],
  1250. input[type=password] {
  1251.     -webkit-appearance: none;
  1252.        -moz-appearance: none;
  1253.             appearance: none;
  1254. }
  1255.  
  1256. input[type="checkbox"] {
  1257.     margin-left   : 0;
  1258.     margin-right  : 5px;
  1259.     margin-top    : 1px;
  1260.     vertical-align: top;
  1261. }
  1262.  
  1263. label {
  1264.     display      : inline-block;
  1265.     max-width    : 100%;
  1266.     margin-bottom: 5px;
  1267.     font-weight  : 700;
  1268. }
  1269.  
  1270. .form-group {
  1271.     clear: both;
  1272. }
  1273.  
  1274. .form-group + .form-group {
  1275.     margin-top: 5px;
  1276. }
  1277.  
  1278. @media (min-width: 768px) {
  1279.     .form-group + .form-group {
  1280.         margin-top: 15px;
  1281.     }
  1282. }
  1283.  
  1284. .checkbox {
  1285.     display: inline-block;
  1286.     vertical-align: top;
  1287.     zoom: 1; /* Fix for IE7 */
  1288.     *display: inline; /* Fix for IE7 */
  1289. }
  1290. .checkbox > input[type="checkbox"] {display:none;visibility:hidden}
  1291. .checkbox > label {
  1292.     cursor: pointer !important;
  1293.     position: relative;
  1294.     padding-left: 26px;
  1295.     margin-bottom: 0;
  1296. }
  1297.  
  1298. /** SIMPLE CHECKBOX **/
  1299.  
  1300. .checkbox > label:before {
  1301.     content: " ";
  1302.     display: block;
  1303.     width: 16px;
  1304.     height: 16px;
  1305.     background-color: #fff;
  1306.     box-shadow: 0 0 1px #555;
  1307.     position: absolute;
  1308.     top: 0;
  1309.     left: 0;
  1310.     border-radius: 3px;
  1311. }
  1312. .checkbox:hover > label:before {
  1313.     box-shadow: 0 0 1px #111;
  1314. }
  1315.  
  1316. .checkbox.checked > label:after {
  1317.     content: "\f00c";
  1318.     font-family: FontAwesome;
  1319.     font-size: 0.813em;
  1320.     position: absolute;
  1321.     top: -1px;
  1322.     left: 2px;
  1323. }
  1324.  
  1325. /** TOGGLE CHECKBOX **/
  1326.  
  1327. .checkbox.cb-slider > label {padding-left: 37px}
  1328.  
  1329.  
  1330. .checkbox.cb-slider > label:before {
  1331.     content: " ";
  1332.     position: absolute;
  1333.     top: 0;
  1334.     left: 0;
  1335.     display: block;
  1336.     width: 32px;
  1337.     height: 16px;
  1338.     background-color: rgba(0,0,0,.05);
  1339.     z-index: 1;
  1340.     border-radius: 50em;
  1341.     margin-right: 0.6667rem;
  1342.     box-shadow: none;
  1343. }
  1344.  
  1345. .checkbox.cb-slider:hover > label:before {background-color: rgba(0,0,0,.1)}
  1346. .checkbox.cb-slider.checked > label:before {background-color: rgba(0,0,0,.3);}
  1347. .checkbox.cb-slider.cb-purple.checked > label:before {background-color: #862165}
  1348. .checkbox.cb-slider.cb-blue.checked > label:before {background-color: #4890a8}
  1349. .checkbox.cb-slider.cb-green.checked > label:before {background-color: #5bb75b}
  1350. .checkbox.cb-slider.cb-orange.checked > label:before {background-color: #faa732}
  1351. .checkbox.cb-slider.cb-red.checked > label:before {background-color: #da4f49}
  1352. .checkbox.cb-slider.cb-pink.checked > label:before {background-color: #db35c0}
  1353. .checkbox.cb-slider.cb-black.checked > label:before {background-color: #363636}
  1354. .checkbox.cb-slider.cb-white.checked > label:before {background-color: #fff}
  1355.  
  1356. .checkbox.cb-slider > label:after {
  1357.     content: " ";
  1358.     display: block;
  1359.     position: absolute;
  1360.     top: 0;
  1361.     left: 0;
  1362.     height: 16px;
  1363.     width: 16px;
  1364.     background-color: #fff;
  1365.     box-shadow: 0 1px 2px 0 rgba(34,36,38,.15), 0 0 0 1px rgba(34,36,38,.15) inset;
  1366.     z-index: 2;
  1367.     border-radius: 50em;
  1368.     -webkit-transition: all .25s ease;
  1369.        -moz-transition: all .25s ease;
  1370.         -ms-transition: all .25s ease;
  1371.          -o-transition: all .25s ease;
  1372.             transition: all .25s ease;
  1373. }
  1374. .checkbox.cb-slider.checked > label:after {
  1375.     left: auto;
  1376.     left: 16px;
  1377. }
  1378.  
  1379. /*
  1380.  * Full Width Form
  1381.  */
  1382. form.form-fluid,
  1383. .form.form-fluid {
  1384.     width: 100%;
  1385.     -webkit-box-sizing: border-box;
  1386.        -moz-box-sizing: border-box;
  1387.             box-sizing: border-box;
  1388. }
  1389.  
  1390. /**
  1391.  * Inline Form
  1392.  */
  1393.  
  1394. .form.form-inline {
  1395.     display: block;
  1396. }
  1397. .form.form-inline > .form-group {
  1398.     display       : inline-block;
  1399.     margin-bottom : 0;
  1400.     vertical-align: middle;
  1401. }
  1402.  
  1403. .form.form-inline select,
  1404. .form.form-inline textarea,
  1405. .form.form-inline input[type="text"],
  1406. .form.form-inline input[type="password"],
  1407. .form.form-inline input[type="datetime"],
  1408. .form.form-inline input[type="datetime-local"],
  1409. .form.form-inline input[type="date"],
  1410. .form.form-inline input[type="month"],
  1411. .form.form-inline input[type="time"],
  1412. .form.form-inline input[type="week"],
  1413. .form.form-inline input[type="number"],
  1414. .form.form-inline input[type="email"],
  1415. .form.form-inline input[type="url"],
  1416. .form.form-inline input[type="search"],
  1417. .form.form-inline input[type="tel"],
  1418. .form.form-inline input[type="color"],
  1419. .form.form-inline .form-control {
  1420.     display: inline-block;
  1421.     widows: auto;
  1422.     vertical-align: middle;
  1423. }
  1424.  
  1425. /**
  1426. * Aligned Form
  1427. */
  1428.  
  1429. .form.form-aligned {}
  1430.     .form.form-aligned .form-group {
  1431.         *zoom   : 1;
  1432.         position: relative;
  1433.         width   : 100%;
  1434.     }
  1435.  
  1436.     .form.form-aligned .form-group:before,
  1437.     .form.form-aligned .form-group:after {
  1438.         content    : ".";
  1439.         display    : block;
  1440.         line-height: 0;
  1441.         overflow   : hidden;
  1442.     }
  1443.     .form.form-aligned .form-group:after {
  1444.         clear: both;
  1445.     }
  1446.     .form.form-aligned label {
  1447.         display: block;
  1448.         text-align: left;
  1449.         margin-bottom: 5px;
  1450.     }
  1451.     .form.form-aligned .form-group select,
  1452.     .form.form-aligned .form-group textarea,
  1453.     .form.form-aligned .form-group input[type="text"],
  1454.     .form.form-aligned .form-group input[type="password"],
  1455.     .form.form-aligned .form-group input[type="datetime"],
  1456.     .form.form-aligned .form-group input[type="datetime-local"],
  1457.     .form.form-aligned .form-group input[type="date"],
  1458.     .form.form-aligned .form-group input[type="month"],
  1459.     .form.form-aligned .form-group input[type="time"],
  1460.     .form.form-aligned .form-group input[type="week"],
  1461.     .form.form-aligned .form-group input[type="number"],
  1462.     .form.form-aligned .form-group input[type="email"],
  1463.     .form.form-aligned .form-group input[type="url"],
  1464.     .form.form-aligned .form-group input[type="search"],
  1465.     .form.form-aligned .form-group input[type="tel"],
  1466.     .form.form-aligned .form-group input[type="color"],
  1467.     .form.form-aligned .form-group .form-control {
  1468.         display: block;
  1469.     }
  1470.     .form .form-group .form-help {
  1471.         color    : #999;
  1472.         display  : block;
  1473.         font-size: 0.8em;
  1474.         padding  : 3px 0;
  1475.     }
  1476.     .form .form-group .form-help:empty {
  1477.         display: none;
  1478.     }
  1479.  
  1480. /**
  1481. * Stacked Form
  1482. */
  1483.  
  1484. .form.form-stacked {}
  1485.     .form.form-stacked > .form-group {
  1486.         position     : relative;
  1487.         margin-bottom: 0.6667rem;
  1488.     }
  1489.     .form.form-stacked > .form-group > label:not(.checkbox) {
  1490.         display   : none;
  1491.         visibility: hidden;
  1492.     }
  1493.     .form.form-stacked > .form-group > label.checkbox {
  1494.         display      : block;
  1495.         margin-bottom: 0.6667rem;
  1496.     }
  1497.  
  1498.     .form.form-stacked > .form-group > select,
  1499.     .form.form-stacked > .form-group > textarea,
  1500.     .form.form-stacked > .form-group > input[type="text"],
  1501.     .form.form-stacked > .form-group > input[type="password"],
  1502.     .form.form-stacked > .form-group > input[type="datetime"],
  1503.     .form.form-stacked > .form-group > input[type="datetime-local"],
  1504.     .form.form-stacked > .form-group > input[type="date"],
  1505.     .form.form-stacked > .form-group > input[type="month"],
  1506.     .form.form-stacked > .form-group > input[type="time"],
  1507.     .form.form-stacked > .form-group > input[type="week"],
  1508.     .form.form-stacked > .form-group > input[type="number"],
  1509.     .form.form-stacked > .form-group > input[type="email"],
  1510.     .form.form-stacked > .form-group > input[type="url"],
  1511.     .form.form-stacked > .form-group > input[type="search"],
  1512.     .form.form-stacked > .form-group > input[type="tel"],
  1513.     .form.form-stacked > .form-group > input[type="color"],
  1514.     .form.form-stacked > .form-group > .form-control {
  1515.         display      : block;
  1516.         width        : 100%;
  1517.     }
  1518.  
  1519. /**
  1520. * Input with icons
  1521. */
  1522. .form .form-group.group-icon {
  1523.     position: relative;
  1524. }
  1525.  
  1526.     .form .form-group.group-icon > select,
  1527.     .form .form-group.group-icon > textarea,
  1528.     .form .form-group.group-icon > input[type="text"],
  1529.     .form .form-group.group-icon > input[type="password"],
  1530.     .form .form-group.group-icon > input[type="datetime"],
  1531.     .form .form-group.group-icon > input[type="datetime-local"],
  1532.     .form .form-group.group-icon > input[type="date"],
  1533.     .form .form-group.group-icon > input[type="month"],
  1534.     .form .form-group.group-icon > input[type="time"],
  1535.     .form .form-group.group-icon > input[type="week"],
  1536.     .form .form-group.group-icon > input[type="number"],
  1537.     .form .form-group.group-icon > input[type="email"],
  1538.     .form .form-group.group-icon > input[type="url"],
  1539.     .form .form-group.group-icon > input[type="search"],
  1540.     .form .form-group.group-icon > input[type="tel"],
  1541.     .form .form-group.group-icon > input[type="color"],
  1542.     .form .form-group.group-icon > .form-control {
  1543.     padding-left: 34px;
  1544. }
  1545.  
  1546.     .form .form-group.group-icon.icon-right > select,
  1547.     .form .form-group.group-icon.icon-right > textarea,
  1548.     .form .form-group.group-icon.icon-right > input[type="text"],
  1549.     .form .form-group.group-icon.icon-right > input[type="password"],
  1550.     .form .form-group.group-icon.icon-right > input[type="datetime"],
  1551.     .form .form-group.group-icon.icon-right > input[type="datetime-local"],
  1552.     .form .form-group.group-icon.icon-right > input[type="date"],
  1553.     .form .form-group.group-icon.icon-right > input[type="month"],
  1554.     .form .form-group.group-icon.icon-right > input[type="time"],
  1555.     .form .form-group.group-icon.icon-right > input[type="week"],
  1556.     .form .form-group.group-icon.icon-right > input[type="number"],
  1557.     .form .form-group.group-icon.icon-right > input[type="email"],
  1558.     .form .form-group.group-icon.icon-right > input[type="url"],
  1559.     .form .form-group.group-icon.icon-right > input[type="search"],
  1560.     .form .form-group.group-icon.icon-right > input[type="tel"],
  1561.     .form .form-group.group-icon.icon-right > input[type="color"],
  1562.     .form .form-group.group-icon.icon-right > .form-control {
  1563.     padding-left: 0.6667rem;
  1564.     padding-right: 34px;
  1565. }
  1566.  
  1567. .form .form-group.group-icon > .form-icon {
  1568.     display    : block;
  1569.     position   : absolute;
  1570.     left       : 0;
  1571.     top        : 0;
  1572.     padding    : 0 0.8rem;
  1573.     margin     : 0;
  1574.     width      : 34px;
  1575.     text-align: center;
  1576.     line-height: 29px;
  1577. }
  1578. .form .form-group.group-icon.icon-right > .form-icon {
  1579.     right: 0;
  1580.     left : auto;
  1581.     top  : 0;
  1582. }
  1583.  
  1584. /**
  1585. * Input Sizes
  1586. */
  1587.  
  1588. select.input-mini,
  1589. textarea.input-mini,
  1590. input[type="text"].input-mini,
  1591. input[type="password"].input-mini,
  1592. input[type="datetime"].input-mini,
  1593. input[type="datetime-local"].input-mini,
  1594. input[type="date"].input-mini,
  1595. input[type="month"].input-mini,
  1596. input[type="time"].input-mini,
  1597. input[type="week"].input-mini,
  1598. input[type="number"].input-mini,
  1599. input[type="email"].input-mini,
  1600. input[type="url"].input-mini,
  1601. input[type="search"].input-mini,
  1602. input[type="tel"].input-mini,
  1603. input[type="color"].input-mini {
  1604.     font-size: .71428571em;
  1605.     padding  : 0.200em 0.333em;
  1606.     width    : 60px;
  1607. }
  1608.  
  1609. select.input-small,
  1610. textarea.input-small,
  1611. input[type="text"].input-small,
  1612. input[type="password"].input-small,
  1613. input[type="datetime"].input-small,
  1614. input[type="datetime-local"].input-small,
  1615. input[type="date"].input-small,
  1616. input[type="month"].input-small,
  1617. input[type="time"].input-small,
  1618. input[type="week"].input-small,
  1619. input[type="number"].input-small,
  1620. input[type="email"].input-small,
  1621. input[type="url"].input-small,
  1622. input[type="search"].input-small,
  1623. input[type="tel"].input-small,
  1624. input[type="color"].input-small {
  1625.     font-size: .92857143em;
  1626.     padding  : 0.333em 0.6667rem;
  1627.     width    : 90px;
  1628. }
  1629.  
  1630. select.input-large,
  1631. textarea.input-large,
  1632. input[type="text"].input-large,
  1633. input[type="password"].input-large,
  1634. input[type="datetime"].input-large,
  1635. input[type="datetime-local"].input-large,
  1636. input[type="date"].input-large,
  1637. input[type="month"].input-large,
  1638. input[type="time"].input-large,
  1639. input[type="week"].input-large,
  1640. input[type="number"].input-large,
  1641. input[type="email"].input-large,
  1642. input[type="url"].input-large,
  1643. input[type="search"].input-large,
  1644. input[type="tel"].input-large,
  1645. input[type="color"].input-large {
  1646.     font-size: 1.14285714em;
  1647.     padding  : 0.6667rem 1.000em;
  1648.     width    : 210px;
  1649. }
  1650.  
  1651. select.input-xlarge,
  1652. textarea.input-xlarge,
  1653. input[type="text"].input-xlarge,
  1654. input[type="password"].input-xlarge,
  1655. input[type="datetime"].input-xlarge,
  1656. input[type="datetime-local"].input-xlarge,
  1657. input[type="date"].input-xlarge,
  1658. input[type="month"].input-xlarge,
  1659. input[type="time"].input-xlarge,
  1660. input[type="week"].input-xlarge,
  1661. input[type="number"].input-xlarge,
  1662. input[type="email"].input-xlarge,
  1663. input[type="url"].input-xlarge,
  1664. input[type="search"].input-xlarge,
  1665. input[type="tel"].input-xlarge,
  1666. input[type="color"].input-xlarge {
  1667.     font-size: 1.28571429em;
  1668.     padding  : 1.000em 1.333em;
  1669.     width    : 268px;
  1670. }
  1671.  
  1672. select.input-block,
  1673. textarea.input-block,
  1674. input[type="text"].input-block,
  1675. input[type="password"].input-block,
  1676. input[type="datetime"].input-block,
  1677. input[type="datetime-local"].input-block,
  1678. input[type="date"].input-block,
  1679. input[type="month"].input-block,
  1680. input[type="time"].input-block,
  1681. input[type="week"].input-block,
  1682. input[type="number"].input-block,
  1683. input[type="email"].input-block,
  1684. input[type="url"].input-block,
  1685. input[type="search"].input-block,
  1686. input[type="tel"].input-block,
  1687. input[type="color"].input-block {
  1688.     width: 100%;
  1689.     display: block !important;
  1690.     -webkit-box-sizing: border-box;
  1691.        -moz-box-sizing: border-box;
  1692.             box-sizing: border-box;
  1693. }
  1694.  
  1695. /**
  1696. * Input Colors (Alerts)
  1697. */
  1698.  
  1699. .form .form-group.form-warning input:not([type="checkbox"]),
  1700. input:not([type="checkbox"]).warning {
  1701.     border-color    : #dbb1b1;
  1702.     color           : #d95c5c;
  1703. }
  1704.  
  1705. .form .form-group.form-error input:not([type="checkbox"]),
  1706. input:not([type="checkbox"]).error {
  1707.     border-color    : #b94a48 !important;
  1708.     color           : #b94a48 !important;
  1709. }
  1710.  
  1711. .form .form-group.form-success input:not([type="checkbox"]),
  1712. input:not([type="checkbox"]).success {
  1713.     border-color    : #468847;
  1714.     color           : #468847;
  1715. }
  1716.  
  1717. .form .form-group.form-info input:not([type="checkbox"]),
  1718. input:not([type="checkbox"]).info {
  1719.     border-color    : #3a87ad;
  1720.     color           : #3a87ad;
  1721. }
  1722.  
  1723. input[type="radio"] {
  1724.     vertical-align: middle;
  1725. }
  1726.  
  1727. /*=================================================================
  1728. [11. Gallery / .gallery]
  1729. =================================================================*/
  1730.  
  1731. .gallery {
  1732.     *zoom     : 1;
  1733.     list-style: none;
  1734.     margin    : 0;
  1735.     padding   : 0 0;
  1736. }
  1737. .gallery:before,
  1738. .gallery:after {
  1739.     content    : " ";
  1740.     display    : block;
  1741.     line-height: 0;
  1742. }
  1743. .gallery:after {
  1744.     clear: both;
  1745. }
  1746.  
  1747.     .gallery .item {
  1748.         background-color: #fff;
  1749.         display         : inline-block;
  1750.         padding         : 2px;
  1751.         position        : relative;
  1752.         z-index         : 1;
  1753.         overflow        : hidden;
  1754.     }
  1755.     .gallery .item:hover {
  1756.         z-index: 9999;
  1757.     }
  1758.  
  1759.         .gallery .item img {
  1760.             display  : block;
  1761.             max-width: 100%;
  1762.             width    : 100%;
  1763.             height   : auto;
  1764.             z-index  : 2;
  1765.         }
  1766.  
  1767.         .gallery .item .caption {
  1768.             background-color: #fff;
  1769.             bottom          : 2px;
  1770.             color           : inherit;
  1771.             display         : block;
  1772.             font-size       : inherit;
  1773.             left            : 2px;
  1774.             margin          : 0;
  1775.             padding         : 2px 5px;
  1776.             position        : absolute;
  1777.             z-index         : 3;
  1778.         }
  1779.         .gallery .item .caption.top {
  1780.             top   : 2px;
  1781.             bottom: auto;
  1782.         }
  1783.         .gallery .item .caption.bottom {
  1784.             bottom: 2px;
  1785.             top   : auto;
  1786.         }
  1787.         .gallery .item .caption.left {
  1788.             left  : 2px;
  1789.             right : auto;
  1790.         }
  1791.         .gallery .item .caption.right {
  1792.             left  : auto;
  1793.             right : 2px;
  1794.         }
  1795.  
  1796.         .gallery .item .caption.center {
  1797.             left: 0;
  1798.             right: 0;
  1799.             margin-left: auto;
  1800.             margin-right: auto;
  1801.         }
  1802.  
  1803.         .gallery .item .caption.purple {
  1804.             background-color: #862165;
  1805.             color           : #fefefe !important;
  1806.         }
  1807.         .gallery .item .caption.blue {
  1808.             background-color: #4890a8;
  1809.             color           : #fefefe !important;
  1810.         }
  1811.         .gallery .item .caption.green {
  1812.             background-color: #5bb75b;
  1813.             color           : #fefefe !important;
  1814.         }
  1815.         .gallery .item .caption.orange {
  1816.             background-color: #faa732;
  1817.             color           : #fefefe !important;
  1818.         }
  1819.         .gallery .item .caption.red {
  1820.             background-color: #da4f49;
  1821.             color           : #fefefe !important;
  1822.         }
  1823.         .gallery .item .caption.pink {
  1824.             background-color: #db35c0;
  1825.             color           : #fefefe !important;
  1826.         }
  1827.         .gallery .item .caption.black {
  1828.             background-color: #363636 !important;
  1829.             color           : #fefefe !important;
  1830.         }
  1831.  
  1832. /*=================================================================
  1833. [12. Grid System]
  1834. =================================================================*/
  1835.  
  1836. /**
  1837. * Container
  1838. */
  1839. .container-fluid,
  1840. .container {
  1841.     position  : relative;
  1842.     width     : 100%;
  1843.     margin    : 0 auto;
  1844.     padding   : 0 4%;
  1845.     clear     : both;
  1846.     box-sizing: border-box;
  1847. }
  1848.  
  1849. .container-fluid {
  1850.     max-width: 100%;
  1851. }
  1852.  
  1853. .container {
  1854.     max-width: 1140px;
  1855. }
  1856.  
  1857. /**
  1858. * Row
  1859. */
  1860. .container-fluid:before,
  1861. .container-fluid:after,
  1862. .container:before,
  1863. .container:after,
  1864. .row:before,
  1865. .row:after {
  1866.     content: "";
  1867.     display: table;
  1868.     clear  : both;
  1869. }
  1870.  
  1871. .container-fluid:after,
  1872. .container:after,
  1873. .row:after {
  1874.     clear: both;
  1875. }
  1876.  
  1877. .row {zoom: 1}
  1878.  
  1879. @media (min-width: 400px) {
  1880.   .container {
  1881.     width: 85%;
  1882.     padding: 0; }
  1883. }
  1884.  
  1885. @media (min-width: 550px) {
  1886.   .container {
  1887.     width: 80%; }
  1888. }
  1889.  
  1890. /**
  1891. * Row
  1892. */
  1893. .row {
  1894.     *zoom: 1;
  1895. }
  1896. .row:before,
  1897. .row:after {
  1898.     content    : ".";
  1899.     display    : block;
  1900.     line-height: 0;
  1901.     overflow   : hidden;
  1902. }
  1903. .row:after {
  1904.     clear: both;
  1905. }
  1906. .row + .row {
  1907.     margin-top: 1.000em;
  1908. }
  1909.  
  1910. /**
  1911. * Columns
  1912. */
  1913. .col-x-1, .col-x-2, .col-x-3, .col-x-4, .col-x-5, .col-x-6, .col-x-7, .col-x-8, .col-x-9, .col-x-10, .col-x-11, .col-x-12,
  1914. .col-s-1, .col-s-2, .col-s-3, .col-s-4, .col-s-5, .col-s-6, .col-s-7, .col-s-8, .col-s-9, .col-s-10, .col-s-11, .col-s-12,
  1915. .col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, .col-m-7, .col-m-8, .col-m-9, .col-m-10, .col-m-11, .col-m-12,
  1916. .col-l-1, .col-l-2, .col-l-3, .col-l-4, .col-l-5, .col-l-6, .col-l-7, .col-l-8, .col-l-9, .col-l-10, .col-l-11, .col-l-12 {
  1917.     position: relative;
  1918.     min-height: 1px;
  1919.     width: 100%;
  1920.     float: left;
  1921.     box-sizing: border-box;
  1922. }
  1923.  
  1924. .col-x-1 {width: 4.66666666667%}
  1925. .col-x-2 {width: 13.3333333333%}
  1926. .col-x-3 {width: 22%}
  1927. .col-x-4 {width: 30.6666666667%}
  1928. .col-x-5 {width: 39.3333333333%}
  1929. .col-x-6 {width: 48%}
  1930. .col-x-7 {width: 56.6666666667%}
  1931. .col-x-8 {width: 65.3333333333%}
  1932. .col-x-9 {width: 74.0%}
  1933. .col-x-10 {width: 82.6666666667%}
  1934. .col-x-11 {width: 91.3333333333%}
  1935. .col-x-12 {width: 100%; margin-left: 0}
  1936. /* pushes */
  1937. .push-col-x-1 {left: 8.66666666667%}
  1938. .push-col-x-2 {left: 17.3333333333%}
  1939. .push-col-x-3 {left: 26%}
  1940. .push-col-x-4 {left: 34.6666666667%}
  1941. .push-col-x-5 {left: 43.3333333333%}
  1942. .push-col-x-6 {left: 52%}
  1943. .push-col-x-7 {left: 60.6666666667%}
  1944. .push-col-x-8 {left: 69.3333333333%}
  1945. .push-col-x-9 {left: 78.0%}
  1946. .push-col-x-10 {left: 86.6666666667%}
  1947. .push-col-x-11 {left: 95.3333333333%}
  1948.  
  1949. @media (min-width: 768px) {
  1950.     .col-x-1, .col-x-2, .col-x-3, .col-x-4, .col-x-5, .col-x-6, .col-x-7, .col-x-8, .col-x-9, .col-x-10, .col-x-11, .col-x-12,
  1951.     .col-s-1, .col-s-2, .col-s-3, .col-s-4, .col-s-5, .col-s-6, .col-s-7, .col-s-8, .col-s-9, .col-s-10, .col-s-11, .col-s-12,
  1952.     .col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, .col-m-7, .col-m-8, .col-m-9, .col-m-10, .col-m-11, .col-m-12,
  1953.     .col-l-1, .col-l-2, .col-l-3, .col-l-4, .col-l-5, .col-l-6, .col-l-7, .col-l-8, .col-l-9, .col-l-10, .col-l-11, .col-l-12 {
  1954.         margin-left: 4% !important;
  1955.     }
  1956.     .col-x-1:first-child, .col-x-2:first-child, .col-x-3:first-child, .col-x-4:first-child, .col-x-5:first-child, .col-x-6:first-child,
  1957.     .col-x-7:first-child, .col-x-8:first-child, .col-x-9:first-child, .col-x-10:first-child, .col-x-11:first-child, .col-x-12:first-child,
  1958.  
  1959.     .col-s-1:first-child, .col-s-2:first-child, .col-s-3:first-child, .col-s-4:first-child, .col-s-5:first-child, .col-s-6:first-child,
  1960.     .col-s-7:first-child, .col-s-8:first-child, .col-s-9:first-child, .col-s-10:first-child, .col-s-11:first-child, .col-s-12:first-child,
  1961.  
  1962.     .col-m-1:first-child, .col-m-2:first-child, .col-m-3:first-child, .col-m-4:first-child, .col-m-5:first-child, .col-m-6:first-child,
  1963.     .col-m-7:first-child, .col-m-8:first-child, .col-m-9:first-child, .col-m-10:first-child, .col-m-11:first-child, .col-m-12:first-child,
  1964.  
  1965.     .col-l-1:first-child, .col-l-2:first-child, .col-l-3:first-child, .col-l-4:first-child, .col-l-5:first-child, .col-l-6:first-child,
  1966.     .col-l-7:first-child, .col-l-8:first-child, .col-l-9:first-child, .col-l-10:first-child, .col-l-11:first-child, .col-l-12:first-child {
  1967.         margin-left: 0 !important;
  1968.     }
  1969. }
  1970.  
  1971. @media (max-width: 768px) {
  1972.     *[class*="col-"] + *[class*="col-"] {
  1973.         margin-top: 2%;
  1974.     }
  1975. }
  1976.  
  1977. @media (min-width: 768px) {
  1978.     .col-s-1 {width: 4.66666666667%}
  1979.     .col-s-2 {width: 13.3333333333%}
  1980.     .col-s-3 {width: 22%}
  1981.     .col-s-4 {width: 30.6666666667%}
  1982.     .col-s-5 {width: 39.3333333333%}
  1983.     .col-s-6 {width: 48%}
  1984.     .col-s-7 {width: 56.6666666667%}
  1985.     .col-s-8 {width: 65.3333333333%}
  1986.     .col-s-9 {width: 74.0%}
  1987.     .col-s-10 {width: 82.6666666667%}
  1988.     .col-s-11 {width: 91.3333333333%}
  1989.     .col-s-12 {width: 100%; margin-left: 0}
  1990.     /* pushes */
  1991.     .push-col-s-1 {left: 8.66666666667%}
  1992.     .push-col-s-2 {left: 17.3333333333%}
  1993.     .push-col-s-3 {left: 26%}
  1994.     .push-col-s-4 {left: 34.6666666667%}
  1995.     .push-col-s-5 {left: 43.3333333333%}
  1996.     .push-col-s-6 {left: 52%}
  1997.     .push-col-s-7 {left: 60.6666666667%}
  1998.     .push-col-s-8 {left: 69.3333333333%}
  1999.     .push-col-s-9 {left: 78.0%}
  2000.     .push-col-s-10 {left: 86.6666666667%}
  2001.     .push-col-s-11 {left: 95.3333333333%}
  2002. }
  2003. @media (min-width: 992px) {
  2004.     .col-m-1 {width: 4.66666666667%}
  2005.     .col-m-2 {width: 13.3333333333%}
  2006.     .col-m-3 {width: 22%}
  2007.     .col-m-4 {width: 30.6666666667%}
  2008.     .col-m-5 {width: 39.3333333333%}
  2009.     .col-m-6 {width: 48%}
  2010.     .col-m-7 {width: 56.6666666667%}
  2011.     .col-m-8 {width: 65.3333333333%}
  2012.     .col-m-9 {width: 74.0%}
  2013.     .col-m-10 {width: 82.6666666667%}
  2014.     .col-m-11 {width: 91.3333333333%}
  2015.     .col-m-12 {width: 100%; margin-left: 0}
  2016.     /* pushes */
  2017.     .push-col-m-1 {left: 8.66666666667%}
  2018.     .push-col-m-2 {left: 17.3333333333%}
  2019.     .push-col-m-3 {left: 26%}
  2020.     .push-col-m-4 {left: 34.6666666667%}
  2021.     .push-col-m-5 {left: 43.3333333333%}
  2022.     .push-col-m-6 {left: 52%}
  2023.     .push-col-m-7 {left: 60.6666666667%}
  2024.     .push-col-m-8 {left: 69.3333333333%}
  2025.     .push-col-m-9 {left: 78.0%}
  2026.     .push-col-m-10 {left: 86.6666666667%}
  2027.     .push-col-m-11 {left: 95.3333333333%}
  2028. }
  2029. @media (min-width: 1200px) {
  2030.     .col-l-1 {width: 4.66666666667%}
  2031.     .col-l-2 {width: 13.3333333333%}
  2032.     .col-l-3 {width: 22%}
  2033.     .col-l-4 {width: 30.6666666667%}
  2034.     .col-l-5 {width: 39.3333333333%}
  2035.     .col-l-6 {width: 48%}
  2036.     .col-l-7 {width: 56.6666666667%}
  2037.     .col-l-8 {width: 65.3333333333%}
  2038.     .col-l-9 {width: 74.0%}
  2039.     .col-l-10 {width: 82.6666666667%}
  2040.     .col-l-11 {width: 91.3333333333%}
  2041.     .col-l-12 {width: 100%; margin-left: 0}
  2042.     /* pushes */
  2043.     .push-col-l-1 {left: 8.66666666667%}
  2044.     .push-col-l-2 {left: 17.3333333333%}
  2045.     .push-col-l-3 {left: 26%}
  2046.     .push-col-l-4 {left: 34.6666666667%}
  2047.     .push-col-l-5 {left: 43.3333333333%}
  2048.     .push-col-l-6 {left: 52%}
  2049.     .push-col-l-7 {left: 60.6666666667%}
  2050.     .push-col-l-8 {left: 69.3333333333%}
  2051.     .push-col-l-9 {left: 78.0%}
  2052.     .push-col-l-10 {left: 86.6666666667%}
  2053.     .push-col-l-11 {left: 95.3333333333%}
  2054. }
  2055.  
  2056. *[class*="col-"].col-centered {
  2057.     margin: 0 auto;
  2058.     float: none;
  2059. }
  2060.  
  2061. /*=================================================================
  2062. [13. Hero Unit / .hero ]
  2063. =================================================================*/
  2064.  
  2065. .hero {
  2066.     background-color: #eee;
  2067.     color           : inherit;
  2068.     padding         : 2rem;
  2069. }
  2070.  
  2071. .container .hero {
  2072.     border-radius: 3px;
  2073. }
  2074.  
  2075. .hero + .hero {
  2076.     margin-top   : 1.333rem;
  2077. }
  2078.  
  2079. .hero h1,
  2080. .hero .h1 {
  2081.     color: inherit;
  2082. }
  2083.  
  2084. .hero p {
  2085.     font-size    : 1.4em;
  2086.     font-weight  : 300;
  2087.     margin-bottom: 1.000em;
  2088. }
  2089.  
  2090. .hero hr {
  2091.     border-top-color: #d5d5d5
  2092. }
  2093.  
  2094. .hero .container {
  2095.     max-width: 100%;
  2096. }
  2097.  
  2098. @media (min-width: 768px) {
  2099.     .hero { padding-bottom: 48px; padding-top: 48px; }
  2100.     .hero h1, .hero .h1 { font-size: 63px; }
  2101. }
  2102.  
  2103. @media (min-width: 992px) {
  2104.     .hero { padding-bottom: 30px; padding-top: 30px; }
  2105.     .hero h1, .hero .h1 { font-size: 63px; }
  2106. }
  2107.  
  2108. /*=================================================================
  2109. [14. Images]
  2110. =================================================================*/
  2111.  
  2112. img {
  2113.     vertical-align: bottom;
  2114.     border        : 0;
  2115. }
  2116.  
  2117. .img {
  2118.     display: block;
  2119. }
  2120. /* image with rounded corners */
  2121. .img.rounded,
  2122. img.rounded {
  2123.             border-radius: 6px;
  2124.          -o-border-radius: 6px;
  2125.         -ms-border-radius: 6px;
  2126.        -moz-border-radius: 6px;
  2127.     -webkit-border-radius: 6px;
  2128. }
  2129.  
  2130. /* image circle */
  2131. .img.circle,
  2132. img.circle {
  2133.         border-radius: 50%;
  2134.      -o-border-radius: 50%;
  2135.     -ms-border-radius: 50%;
  2136.    -moz-border-radius: 50%;
  2137. -webkit-border-radius: 50%;
  2138. }
  2139.  
  2140. /* image as thumbnail */
  2141. .img.thumbnail,
  2142. img.thumbnail {
  2143.     background-color     : #fff;
  2144.     background-image     : none;
  2145.     border               : 1px solid #ddd;
  2146.     padding              : 2px;
  2147. }
  2148.  
  2149. /* fluid/responsibe image */
  2150. .img.fluid,
  2151. img.fluid{
  2152.     display  : block;
  2153.     height   : auto;
  2154.     max-width: 100%;
  2155. }
  2156.  
  2157. /* vertical align */
  2158. .img.valign-top,
  2159. img.valign-top {
  2160.     display       : inline-block;
  2161.     vertical-align: top;
  2162. }
  2163.  
  2164. .img.valign-middle,
  2165. img.valign-middle {
  2166.     display       : inline-block;
  2167.     vertical-align: middle;
  2168. }
  2169.  
  2170. .img.valign-bottom,
  2171. img.valign-bottom {
  2172.     display       : inline-block;
  2173.     vertical-align: bottom;
  2174. }
  2175.  
  2176. /*=================================================================
  2177. [15. Labels and Badges / .label & .badge]
  2178. =================================================================*/
  2179.  
  2180. .label,
  2181. .badge {
  2182.     background-color     : #e8e8e8;
  2183.     color                : #555;
  2184.     display              : inline-block;
  2185.     font-size            : 0.8em;
  2186.     font-weight          : bold;
  2187.     line-height          : 1;
  2188.     text-decoration      : none;
  2189.     white-space          : nowrap;
  2190.     text-transform       : none;
  2191.     font-weight          : 700;
  2192.     -webkit-border-radius: 3px;
  2193.        -moz-border-radius: 3px;
  2194.         -ms-border-radius: 3px;
  2195.          -o-border-radius: 3px;
  2196.             border-radius: 3px;
  2197.     -webkit-transition   : background .2s ease;
  2198.        -moz-transition   : background .2s ease;
  2199.         -ms-transition   : background .2s ease;
  2200.          -o-transition   : background .2s ease;
  2201.             transition   : background .2s ease;
  2202. }
  2203.  
  2204. .label.label-image {
  2205.     position      : relative;
  2206.     width         : auto;
  2207.     max-width     : 100%;
  2208.     vertical-align: baseline;
  2209.     text-transform: none;
  2210.     padding       : 0.4667rem 0.6667rem 0.4667rem 0.4rem;
  2211. }
  2212. .label.label-image > img {
  2213.     -webkit-border-radius: 3px 0 0 3px;
  2214.        -moz-border-radius: 3px 0 0 3px;
  2215.         -ms-border-radius: 3px 0 0 3px;
  2216.          -o-border-radius: 3px 0 0 3px;
  2217.             border-radiuspx 0 0 3px;
  2218.     display: inline-block;
  2219.     vertical-align: top;
  2220.     margin: -0.4667rem 0.4rem -0.4667rem -0.4rem;
  2221. }
  2222.  
  2223. .label {
  2224.     padding: .5em .7em;
  2225.     margin: .1em;
  2226.     vertical-align  : baseline;
  2227. }
  2228.  
  2229. .badge {
  2230.     padding              : 2px 5px;
  2231.     margin               : 1px 2px;
  2232.     min-width            : 0.6667rem;
  2233.     text-align           : center;
  2234.     vertical-align       : middle;
  2235.     white-space          : nowrap;
  2236.     -webkit-border-radius: 2em;
  2237.        -moz-border-radius: 2em;
  2238.         -ms-border-radius: 2em;
  2239.          -o-border-radius: 2em;
  2240.             border-radius: 2em;
  2241. }
  2242.  
  2243. .label + .label,
  2244. .label + .badge,
  2245. .badge + .label,
  2246. .badge + .badge {
  2247.     margin-left: 5px;
  2248. }
  2249.  
  2250. .label > .label-close,
  2251. .badge > .badge-close {
  2252.     cursor            : pointer;
  2253.     margin-right      : 0;
  2254.     margin-left       : .5em;
  2255.     opacity           : .3;
  2256.     -webkit-transition: background .2s ease;
  2257.     transition        : background .2s ease;
  2258. }
  2259. .label > .label-close:hover,
  2260. .badge > .badge-close:hover {
  2261.     opacity           : .7;
  2262. }
  2263.  
  2264. /**
  2265. * Empty Labels and Badges
  2266. */
  2267. .label:empty,
  2268. .badge:empty {
  2269.     display   : none;
  2270.     visibility: hidden;
  2271. }
  2272.  
  2273. /**
  2274. * Link labels and badges
  2275. */
  2276. a.label:hover,
  2277. a.label:focus,
  2278. a.badge:hover,
  2279. a.badge:focus {
  2280.     background-color: #E0E0E0;
  2281.     cursor          : pointer;
  2282.     text-decoration : none;
  2283. }
  2284.  
  2285. /**
  2286. * Labels and Badges Colors
  2287. */
  2288.  
  2289. /* purple */
  2290. .label.label-purple,
  2291. .badge.badge-purple {
  2292.     background-color: #862165;
  2293.     color           : #fff;
  2294. }
  2295. a.label.label-purple:focus,
  2296. a.label.label-purple:active,
  2297. a.label.label-purple:hover,
  2298. a.badge.badge-purple:focus,
  2299. a.badge.badge-purple:active,
  2300. a.badge.badge-purple:hover {
  2301.     background-color: #862165;
  2302.     color           : #fff;
  2303. }
  2304.  
  2305. /* blue */
  2306. .label.label-blue,
  2307. .badge.badge-blue {
  2308.     background-color: #4890a8;
  2309.     color           : #fff;
  2310. }
  2311. a.label.label-blue:focus,
  2312. a.label.label-blue:active,
  2313. a.label.label-blue:hover,
  2314. a.badge.badge-blue:focus,
  2315. a.badge.badge-blue:active,
  2316. a.badge.badge-blue:hover {
  2317.     background-color: #186078;
  2318.     color           : #fff;
  2319. }
  2320.  
  2321. /* green */
  2322. .label.label-green,
  2323. .badge.badge-green {
  2324.     background-color: #5bb75b;
  2325.     color           : #fff;
  2326. }
  2327. a.label.label-green:focus,
  2328. a.label.label-green:active,
  2329. a.label.label-green:hover,
  2330. a.badge.badge-green:focus,
  2331. a.badge.badge-green:active,
  2332. a.badge.badge-green:hover {
  2333.     background-color: #51a351;
  2334.     color           : #fff;
  2335. }
  2336.  
  2337. /* orange */
  2338. .label.label-orange,
  2339. .badge.badge-orange {
  2340.     background-color: #faa732;
  2341.     color           : #fff;
  2342. }
  2343. a.label.label-orange:focus,
  2344. a.label.label-orange:active,
  2345. a.label.label-orange:hover,
  2346. a.badge.badge-orange:focus,
  2347. a.badge.badge-orange:active,
  2348. a.badge.badge-orange:hover {
  2349.     background-color: #f89406;
  2350.     color           : #fff;
  2351. }
  2352.  
  2353. /* red */
  2354. .label.label-red,
  2355. .badge.badge-red {
  2356.     background-color: #da4f49;
  2357.     color           : #fff;
  2358. }
  2359. a.label.label-red:focus,
  2360. a.label.label-red:active,
  2361. a.label.label-red:hover,
  2362. a.badge.badge-red:focus,
  2363. a.badge.badge-red:active,
  2364. a.badge.badge-red:hover {
  2365.     background-color: #bd362f;
  2366.     color           : #fff;
  2367. }
  2368.  
  2369. /* pink */
  2370. .label.label-pink,
  2371. .badge.badge-pink {
  2372.     background-color: #db35c0;
  2373.     color           : #fff;
  2374. }
  2375. a.label.label-pink:focus,
  2376. a.label.label-pink:active,
  2377. a.label.label-pink:hover,
  2378. a.badge.badge-pink:focus,
  2379. a.badge.badge-pink:active,
  2380. a.badge.badge-pink:hover {
  2381.     background-color: #ba29a2;
  2382.     color           : #fff;
  2383. }
  2384.  
  2385. /* black */
  2386. .label.label-black,
  2387. .badge.badge-black {
  2388.     background-color: #363636;
  2389.     color           : #fff;
  2390. }
  2391. a.label.label-black:focus,
  2392. a.label.label-black:active,
  2393. a.label.label-black:hover,
  2394. a.badge.badge-black:focus,
  2395. a.badge.badge-black:active,
  2396. a.badge.badge-black:hover {
  2397.     background-color: #222222;
  2398.     color           : #fff;
  2399. }
  2400.  
  2401. /* white */
  2402. .label.label-white,
  2403. .badge.badge-white {
  2404.     background-color: #fff;
  2405.     color           : #666;
  2406. }
  2407. a.label.label-white:focus,
  2408. a.label.label-white:active,
  2409. a.label.label-white:hover,
  2410. a.badge.badge-white:focus,
  2411. a.badge.badge-white:active,
  2412. a.badge.badge-white:hover {
  2413.     background-color: #eee;
  2414.     color           : #333;
  2415. }
  2416.  
  2417. /*=================================================================
  2418. [16. List table / .list-table]
  2419. =================================================================*/
  2420.  
  2421. .list-table {
  2422.     list-style: none;
  2423.     margin    : 0;
  2424.     padding   : 0;
  2425.     text-align: left;
  2426. }
  2427.     .list-table > .item {
  2428.         background-color: #fff;
  2429.         border          : 1px solid #ddd;
  2430.         display         : block;
  2431.         margin-bottom   : -1px;
  2432.         padding         : 0.4667rem 0.6667rem;
  2433.         position        : relative;
  2434.         text-decoration : none;
  2435.     }
  2436.     .list-table.hovered > .item:hover,
  2437.     .list-table > a.item:active,
  2438.     .list-table > a.item:focus,
  2439.     .list-table > a.item:hover {
  2440.         background-color: #f5f5f5;
  2441.         text-decoration: none;
  2442.     }
  2443.     .list-table > .item > .badge,
  2444.     .list-table > .item > .label {
  2445.         float: right;
  2446.     }
  2447.  
  2448. /*=================================================================
  2449. [17. Media / .media]
  2450. =================================================================*/
  2451.  
  2452. .media {
  2453.     display : block;
  2454.     padding : 0.3333rem 1.000em 0.3333rem 0.3333rem;
  2455.     position: relative;
  2456. }
  2457. .media:before, .media:after {
  2458.     content: " ";
  2459.     display: block;
  2460. }
  2461. .media:after {
  2462.     clear: both;
  2463. }
  2464. .media + .media {
  2465.     margin-top: 0.6667rem;
  2466. }
  2467.     .media > .media-object {
  2468.         display     : block;
  2469.         float       : left;
  2470.         margin-right: 0.6667rem;
  2471.     }
  2472.     .media > .media-content {
  2473.         overflow: hidden;
  2474.         zoom    : 1;
  2475.         padding: 0;
  2476.     }
  2477.     .media > .media-content > .media-title {
  2478.         display  : block;
  2479.         font-size: 0.8667em;
  2480.         padding  : 0;
  2481.     }
  2482.     .media > .media-content > .media-title > small {
  2483.         color      : #989898;
  2484.         float      : right;
  2485.         font-size  : 0.7333em;
  2486.         font-weight: normal;
  2487.     }
  2488.     .media > .media-content > .media-subtitle {
  2489.         color      : #87868c;
  2490.         display    : block;
  2491.         font-weight: 400;
  2492.         font-size  : 0.6667em;
  2493.         padding    : 0;
  2494.     }
  2495.  
  2496.     .media > .media-action {
  2497.         position: absolute;
  2498.         top: 0.3333rem;
  2499.         right: 0.3333rem;
  2500.     }
  2501.  
  2502.         .media > .media-action > a:link,
  2503.         .media > .media-action > a:visited {}
  2504.  
  2505.         .media > .media-action > a:focus,
  2506.         .media > .media-action > a:active,
  2507.         .media > .media-action > a:hover {}
  2508.  
  2509. /*=================================================================
  2510. [18. Menu / .menu]
  2511. =================================================================*/
  2512.  
  2513. .menu {
  2514.     list-style-type : none;
  2515.     display         : block;
  2516.     background-color: transparent;
  2517.     margin          : 0.3333rem 0;
  2518.     padding: 0;
  2519. }
  2520. .menu:after {
  2521.     content: ".";
  2522.     line-height: 0;
  2523.     display: block;
  2524.     overflow: hidden;
  2525. }
  2526. .menu.menu-rounded {
  2527.     -webkit-border-radius: 3px;
  2528.        -moz-border-radius: 3px;
  2529.         -ms-border-radius: 3px;
  2530.          -o-border-radius: 3px;
  2531.             border-radius: 3px;
  2532. }
  2533.  
  2534. .menu:only-child {
  2535.     margin: 0;
  2536. }
  2537.  
  2538. .menu > li {
  2539.     position       : relative;
  2540.     display        : inline-block;
  2541.     vertical-align : middle;
  2542.     text-decoration: none;
  2543.     float          : left;
  2544. }
  2545.  
  2546. .menu > li.divider {
  2547.     display         : inline-block;
  2548.     width           : 1px;
  2549.     padding         : 0.4667rem 0;
  2550.     background-color: #ddd;
  2551. }
  2552. .menu > li.header {
  2553.     padding   : 0.4667rem 0.8rem;
  2554.     border    : none;
  2555.     background: #f9f9f9;
  2556.     color     : #ccc;
  2557. }
  2558. .menu > li.header > span,
  2559. .menu > li.header > a {
  2560.     padding: 0;
  2561. }
  2562.  
  2563. .menu > li:not(.header) > span,
  2564. .menu > li:not(.header) > a {
  2565.     display: block;
  2566.     padding: 0.4667rem 0.8rem;
  2567. }
  2568.  
  2569. .menu:not(.menu-vertical) > li > a > i.fa {
  2570.     float: none;
  2571. }
  2572. .menu:not(.menu-vertical) > li i.fa.fa-caret-right,
  2573. .menu:not(.menu-vertical) > li i.fa.fa-caret-left,
  2574. .menu:not(.menu-vertical) > li i.fa.fa-caret-up,
  2575. .menu:not(.menu-vertical) > li i.fa.fa-caret-down,
  2576. .menu:not(.menu-vertical) > li i.fa.fa-angle-right,
  2577. .menu:not(.menu-vertical) > li i.fa.fa-angle-left,
  2578. .menu:not(.menu-vertical) > li i.fa.fa-angle-up,
  2579. .menu:not(.menu-vertical) > li i.fa.fa-angle-down {
  2580.     opacity: .5
  2581. }
  2582.  
  2583. .menu:not(.menu-vertical) > li.active > a > i.fa,
  2584. .menu:not(.menu-vertical) > li.active > span > i.fa,
  2585. .menu:not(.menu-vertical) > li:hover > a > i.fa,
  2586. .menu:not(.menu-vertical) > li:hover > span > i.fa,
  2587. .menu:not(.menu-vertical) > li > a:focus > i.fa,
  2588. .menu:not(.menu-vertical) > li > a:active > i.fa,
  2589. .menu:not(.menu-vertical) > li > a:hover > i.fa {
  2590.     opacity: 1;
  2591. }
  2592. .menu.menu-top > li > ul {
  2593.     top: 0;
  2594.     bottom: auto;
  2595. }
  2596.  
  2597. .btn-dropdown > ul,
  2598. .menu > li > ul {
  2599.     padding              : 0.3333rem 0;
  2600.     position             : absolute;
  2601.     top                  : 100%;
  2602.     left                 : 0;
  2603.     z-index              : 1050;
  2604.     display              : none;
  2605.     margin-top           : 0;
  2606.     background-color     : #fff;
  2607.     -webkit-border-radius: 3px;
  2608.             border-radius: 3px;
  2609.     -webkit-box-shadow   : 0 1px 3px 0 rgba(0,0,0,.3);
  2610.             box-shadow   : 0 1px 3px 0 rgba(0,0,0,.3);
  2611. }
  2612.  
  2613. .btn-dropdown > ul.menu-right,
  2614. .menu.menu-right > li > ul {
  2615.     top: 100%;
  2616.     left: auto;
  2617.     right: 0;
  2618. }
  2619.  
  2620. .btn-dropdown > ul.menu-top,
  2621. .menu.menu-top > li > ul {
  2622.     top: auto !important;
  2623.     bottom: 100% !important;
  2624. }
  2625.  
  2626. .btn-dropdown > ul > li,
  2627. .menu > li > ul > li {
  2628.     display  : block;
  2629.     min-width: 120px;
  2630.     width: auto;
  2631.     padding  : 0;
  2632. }
  2633.  
  2634. .btn-dropdown > ul.menu-auto > li,
  2635. .menu > li > ul.menu-auto > li {
  2636.     min-width: 0;
  2637. }
  2638.  
  2639. .btn-dropdown > ul > li.divider {
  2640.     display: block;
  2641.     height: 1px;
  2642.     background-color: #ddd;
  2643.     margin: 0.3333rem 0;
  2644.     overflow: hidden;
  2645.     padding: 0;
  2646. }
  2647.  
  2648. .btn-dropdown > ul > li > span,
  2649. .btn-dropdown > ul > li > a:link,
  2650. .btn-dropdown > ul > li > a:visited,
  2651. .menu > li > span,
  2652. .menu > li > a {
  2653.     color          : #555;
  2654.     text-decoration: none;
  2655.     text-align     : left;
  2656.     cursor         : pointer;
  2657. }
  2658.  
  2659. .btn-dropdown > ul > li a > img,
  2660. .menu > li a > img {
  2661.     vertical-align: middle;
  2662. }
  2663.  
  2664. .menu > li > ul > li.header {
  2665.     padding: 0.467em 0.800em;
  2666.     font-weight: 700;
  2667.     color: rgba(0,0,0,.8);
  2668. }
  2669.  
  2670. .menu > li > ul > li:first-child.header {
  2671.     margin-top           : -0.3333rem;
  2672.     -webkit-border-radius: 0.3333rem 0.3333rem 0 0;
  2673.     border-radius        : 0.3333rem 0.3333rem 0 0;
  2674. }
  2675.  
  2676. .menu > li > ul > li:last-child.header {
  2677.     margin-bottom           : -0.3333rem;
  2678.     -webkit-border-radius: 0 0 0.3333rem 0.3333rem;
  2679.     border-radius        : 0 0 0.3333rem 0.3333rem;
  2680. }
  2681.  
  2682. .btn-dropdown > ul > li:not(.header) > a,
  2683. .menu > li ul > li:not(.header) > a {
  2684.     display        : block;
  2685.     padding        : 0.467em 0.800em;
  2686.     text-decoration: none;
  2687.     color          : rgba(0,0,0,.8);
  2688.     overflow        : hidden;
  2689.     text-overflow   : ellipsis;
  2690.     white-space     : nowrap;
  2691. }
  2692.  
  2693. .btn-dropdown ul li > a > img,
  2694. .btn-dropdown ul li > span > img,
  2695. .menu li > span > img,
  2696. .menu li > a > img {
  2697.     vertical-align: middle;
  2698. }
  2699.  
  2700. .btn-dropdown > ul > li:not(.header).active > a,
  2701. .btn-dropdown > ul > li:not(.header):hover > a,
  2702. .btn-dropdown > ul > li:not(.header) > a:focus,
  2703. .btn-dropdown > ul > li:not(.header) > a:hover,
  2704. .menu > li:not(.header).active > a,
  2705. .menu > li:not(.header).active > span,
  2706. .menu > li:not(.header):hover > a,
  2707. .menu > li:not(.header):hover > span,
  2708. .menu > li:not(.header) > a:hover,
  2709. .menu > li:not(.header) > a:focus,
  2710. .menu > li:not(.header) ul > li:not(.header):hover > a,
  2711. .menu > li:not(.header) ul > li:not(.header):hover > span,
  2712. .menu > li:not(.header) ul > li:not(.header).active > a,
  2713. .menu > li:not(.header) ul > li:not(.header).active > span,
  2714. .menu > li:not(.header) ul > li:not(.header) > a:hover,
  2715. .menu > li:not(.header) ul > li:not(.header) > a:focus {
  2716.     background-color: rgba(0,0,0,.05);
  2717.     color: rgba(0,0,0,.95);
  2718. }
  2719.  
  2720. /* vertical menu */
  2721. .menu.menu-vertical {}
  2722.  
  2723. .menu.menu-vertical > li {
  2724.     display: block;
  2725.     padding: 0;
  2726.     float: none;
  2727. }
  2728.  
  2729. .menu.menu-vertical > li:not(.header) > span,
  2730. .menu.menu-vertical > li:not(.header) > a {
  2731.     position        : relative;
  2732.     background-color: #fff;
  2733.     color           : #555;
  2734.     display         : block;
  2735.     padding         : 7px 1.000em;
  2736.     position        : relative;
  2737.     text-decoration : none;
  2738.     overflow        : hidden;
  2739.     text-overflow   : ellipsis;
  2740.     white-space     : nowrap;
  2741.     cursor          : pointer;
  2742. }
  2743. .menu.menu-vertical > li + li {
  2744.     border-top: 1px solid #f9f9f9;
  2745. }
  2746.  
  2747. .menu.menu-vertical > li > span,
  2748. .menu.menu-vertical > li.active > a,
  2749. .menu.menu-vertical > li:hover > a,
  2750. .menu.menu-vertical > li.active > a,
  2751. .menu.menu-vertical > li > a:active,
  2752. .menu.menu-vertical > li > a:focus,
  2753. .menu.menu-vertical > li > a:hover {
  2754.     background-color: #f5f5f5;
  2755.     text-decoration: none;
  2756. }
  2757. .menu.menu-vertical > li:not(.header) > span {
  2758.     color  : #666;
  2759.     padding: 7px;
  2760. }
  2761. .menu.menu-vertical > li.header {
  2762.     padding       : 7px;
  2763.     text-transform: uppercase;
  2764.     font-size     : 0.8em
  2765. }
  2766. .menu.menu-vertical > li.divider {
  2767.     height          : 1px;
  2768.     width           : 100%;
  2769.     margin          : 5px 0;
  2770.     overflow        : hidden;
  2771.     background-color: #fff;
  2772. }
  2773.  
  2774. .menu.menu-vertical > li > span > .badge,
  2775. .menu.menu-vertical > li > span > .label,
  2776. .menu.menu-vertical > li > a > .badge,
  2777. .menu.menu-vertical > li > a > .label {
  2778.     position: absolute;
  2779.     right   : 1.000em;
  2780.     top     : 3px;
  2781. }
  2782.  
  2783. .menu > li > ul > li > ul,
  2784. .menu.menu-vertical > li > ul {
  2785.     top: 0;
  2786.     left: 100%;
  2787. }
  2788.  
  2789. .btn-dropdown.open > ul,
  2790. .menu > li.active > ul,
  2791. .menu > li:hover > ul {
  2792.     display: block;
  2793. }
  2794.  
  2795. .menu > li > ul > li.divider {
  2796.     height: 1px;
  2797.     margin: 5px 0;
  2798.     overflow: hidden;
  2799.     background-color: #e5e5e5;
  2800. }
  2801.  
  2802. .btn-dropdown {
  2803.     display : inline-block;
  2804.     position: relative;
  2805. }
  2806.  
  2807. .menu.menu-inline {
  2808.     display: inline-block;
  2809. }
  2810.  
  2811. /*=================================================================
  2812. [19. Modal / .modal]
  2813. =================================================================*/
  2814.  
  2815. .modal {
  2816.     background-color: rgba(0,0,0,.85);
  2817.     height          : 100%;
  2818.     position        : fixed;
  2819.     left            : 0;
  2820.     top             : 0;
  2821.     right           : 0;
  2822.     bottom          : 0;
  2823.     width           : 100%;
  2824.     z-index         : 1051;
  2825.     display         : none;
  2826.     visibility      : hidden;
  2827. }
  2828. .modal.open {
  2829.     display   : block;
  2830.     visibility: visible;
  2831. }
  2832.  
  2833. .modal .modal-inner {
  2834.     background-color: #f5f5f5;
  2835.     margin          : 75px auto;
  2836.     width           : 600px;
  2837. }
  2838.  
  2839. @media (max-width: 767px) {
  2840.     .modal .modal-inner {
  2841.         margin          : 20% auto;
  2842.         width           : 95%;
  2843.     }
  2844. }
  2845.  
  2846. .modal .modal-inner > .modal-header {
  2847.     padding : 0.6667rem 1.000em;
  2848.     position: relative;
  2849. }
  2850.  
  2851. .modal .modal-inner .modal-header .modal-close {
  2852.     color          : #999;
  2853.     position       : absolute;
  2854.     right          : 0.6667rem;
  2855.     text-decoration: none;
  2856.     top            : 5px;
  2857. }
  2858.  
  2859. .modal .modal-inner .modal-header .modal-close:hover {
  2860.     color: #333;
  2861. }
  2862.  
  2863. .modal .modal-inner .modal-header .modal-title {
  2864.     color      : #666;
  2865.     font-size  : 1.2em;
  2866.     font-weight: 500;
  2867.     margin     : 0;
  2868.     padding    : 0;
  2869. }
  2870.  
  2871. .modal .modal-inner .modal-content {
  2872.     background   : #fff;
  2873.     border-bottom: 1px solid #ccc;
  2874.     border-top   : 1px solid #ccc;
  2875.     padding      : 0.6667rem 1.000em;
  2876.     overflow-x   : hidden;
  2877.     overflow-y   : auto;
  2878. }
  2879.  
  2880. .modal .modal-inner .modal-footer {
  2881.     padding : 0.6667rem 1.000em;
  2882.     position: relative;
  2883. }
  2884.  
  2885. /*=================================================================
  2886. [20. Pager / .pager]
  2887. =================================================================*/
  2888.  
  2889. .pager {
  2890.     list-style-type: none;
  2891.     margin-top     : 5px;
  2892.     margin-bottom  : 5px;
  2893.     padding        : 0;
  2894.     text-align     : center;
  2895. }
  2896.  
  2897. .pager:before,
  2898. .pager:after {
  2899.     content    : ".";
  2900.     display    : block;
  2901.     line-height: 0;
  2902.     overflow   : hidden;
  2903. }
  2904.  
  2905. .pager:after {
  2906.     clear: both;
  2907. }
  2908.  
  2909. .pager > li {
  2910.     display: inline;
  2911. }
  2912.  
  2913. .pager > li > a,
  2914. .pager > li > span {
  2915.     background-color: #fff;
  2916.     display         : inline-block;
  2917.     padding         : 0.4rem 0.9333rem;
  2918.     text-decoration : none;
  2919.     border: 1px solid #ddd;
  2920. }
  2921.  
  2922. .pager > li:first-child > a,
  2923. .pager > li:first-child > span {
  2924.     border-radius: 50em 0 0 50em;
  2925. }
  2926.  
  2927. .pager > li:last-child > a,
  2928. .pager > li:last-child > span {
  2929.     border-radius: 0 50em 50em 0;
  2930. }
  2931.  
  2932. .pager > li:hover > a,
  2933. .pager > li > a:active,
  2934. .pager > li > a:hover,
  2935. .pager > li > a:focus {
  2936.     background-color: #e0e0e0;
  2937.     text-decoration : none !important;
  2938. }
  2939.  
  2940.  
  2941. /* pager mini */
  2942. .pager.pager-mini > li > a,
  2943. .pager.pager-mini > li > span {
  2944.     font-size: 0.714em;
  2945.     padding  : 0.214em 0.500em;
  2946. }
  2947.  
  2948. /* pager small */
  2949. .pager.pager-small > li > a,
  2950. .pager.pager-small > li > span {
  2951.     font-size: 0.857em;
  2952.     padding  : 0.429em 0.714em;
  2953. }
  2954.  
  2955. /* pager large */
  2956. .pager.pager-large > li > a,
  2957. .pager.pager-large > li > span {
  2958.     font-size: 1.286em;
  2959.     padding  : 0.786em 1.357em;
  2960. }
  2961.  
  2962. /* pager link */
  2963. .pager.pager-link > li a,
  2964. .pager.pager-link > li span {
  2965.     background: none;
  2966.     border    : none;
  2967. }
  2968. .pager.pager-link > li a:active,
  2969. .pager.pager-link > li a:focus,
  2970. .pager.pager-link > li a:hover {
  2971.     text-decoration: underline !important;
  2972. }
  2973.  
  2974. /* pager color */
  2975.  
  2976. /* purple pager */
  2977. .pager.pager-purple > li > a,
  2978. .pager.pager-purple > li > span {
  2979.     background-color: #862165;
  2980.     border-color    : #751b59;
  2981.     color           : #fff !important;
  2982. }
  2983. .pager.pager-purple > li > a:hover,
  2984. .pager.pager-purple > li > a:active,
  2985. .pager.pager-purple > li > a:focus {
  2986.     background-color: #751b59;
  2987. }
  2988. .pager.pager-purple > li.active > a,
  2989. .pager.pager-purple > li.active > span {
  2990.     background-color: #f3bbe1;
  2991.     color: #751b59 !important;
  2992. }
  2993.  
  2994. /* blue pager */
  2995. .pager.pager-blue > li > a,
  2996. .pager.pager-blue > li > span {
  2997.     background-color: #4890a8;
  2998.     border-color    : #186078;
  2999.     color           : #fff !important;
  3000. }
  3001. .pager.pager-blue > li > a:hover,
  3002. .pager.pager-blue > li > a:active,
  3003. .pager.pager-blue > li > a:focus {
  3004.     background-color: #186078;
  3005. }
  3006. .pager.pager-blue > li.active > a,
  3007. .pager.pager-blue > li.active > span {
  3008.     background-color: #b5e2f1;
  3009.     color: #4890a8 !important;
  3010. }
  3011.  
  3012. /* green pager */
  3013. .pager.pager-green > li > a,
  3014. .pager.pager-green > li > span {
  3015.     background-color: #5bb75b;
  3016.     border-color    : #51a351;
  3017.     color           : #fff !important;
  3018. }
  3019. .pager.pager-green > li > a:hover,
  3020. .pager.pager-green > li > a:active,
  3021. .pager.pager-green > li > a:focus {
  3022.     background-color: #51a351;
  3023. }
  3024. .pager.pager-green > li.active > a,
  3025. .pager.pager-green > li.active > span {
  3026.     background-color: #bcffbc;
  3027.     color: #5bb75b;
  3028. }
  3029.  
  3030. /* orange pager */
  3031. .pager.pager-orange > li > a,
  3032. .pager.pager-orange > li > span {
  3033.     background-color: #faa732;
  3034.     color           : #fff !important;
  3035. }
  3036. .pager.pager-orange > li > a:hover,
  3037. .pager.pager-orange > li > a:active,
  3038. .pager.pager-orange > li > a:focus {
  3039.     background-color: #f89406;
  3040. }
  3041. .pager.pager-orange > li.active > a,
  3042. .pager.pager-orange > li.active > span {
  3043.     background-color: #fee3bd;
  3044.     color: #faa732;
  3045. }
  3046.  
  3047. /* red pager */
  3048. .pager.pager-red > li > a,
  3049. .pager.pager-red > li > span {
  3050.     background-color: #da4f49;
  3051.     border-color    : #bd362f;
  3052.     color           : #fff !important;
  3053. }
  3054. .pager.pager-red > li > a:hover,
  3055. .pager.pager-red > li > a:active,
  3056. .pager.pager-red > li > a:focus {
  3057.     background-color: #bd362f;
  3058. }
  3059. .pager.pager-red > li.active > a,
  3060. .pager.pager-red > li.active > span {
  3061.     background-color: #fff0f0;
  3062.     color: #da4f49;
  3063. }
  3064.  
  3065. /* pink pager */
  3066. .pager.pager-pink > li > a,
  3067. .pager.pager-pink > li > span {
  3068.     background-color: #db35c0;
  3069.     color           : #fff !important;
  3070. }
  3071. .pager.pager-pink > li > a:hover,
  3072. .pager.pager-pink > li > a:active,
  3073. .pager.pager-pink > li > a:focus {
  3074.     background-color: #ba29a2;
  3075. }
  3076. .pager.pager-pink > li.active > a,
  3077. .pager.pager-pink > li.active > span {
  3078.     background-color: #fcd1f5;
  3079.     color: #db35c0 !important;
  3080. }
  3081.  
  3082. /* black pager */
  3083. .pager.pager-black > li > a,
  3084. .pager.pager-black > li > span {
  3085.     background-color: #363636 ;
  3086.     color           : #fff !important;
  3087. }
  3088. .pager.pager-black > li > a:hover,
  3089. .pager.pager-black > li > a:active,
  3090. .pager.pager-black > li > a:focus {
  3091.     background-color: #222222;
  3092. }
  3093. .pager.pager-black > li.active > a,
  3094. .pager.pager-black > li.active > span {
  3095.     background-color: #dfdfdf;
  3096.     color: #363636 !important;
  3097. }
  3098.  
  3099. /* white pager */
  3100. .pager.pager-white > li > a,
  3101. .pager.pager-white > li > span {
  3102.     background-color: #fff;
  3103.     color           : #333 !important;
  3104. }
  3105. .pager.pager-white > li > a:hover,
  3106. .pager.pager-white > li > a:active,
  3107. .pager.pager-white > li > a:focus {
  3108.     background-color: #f9f9f9;
  3109. }
  3110. .pager.pager-white > li.active > a,
  3111. .pager.pager-white > li.active > span {
  3112.     background-color: #f9f9f9;
  3113.     color: #999 !important;
  3114. }
  3115.  
  3116. /*=================================================================
  3117. [21. Pagination / .pagination]
  3118. =================================================================*/
  3119.  
  3120. .pagination {
  3121.     list-style-type: none;
  3122.     margin-top     : 5px;
  3123.     margin-bottom  : 5px;
  3124.     padding        : 0;
  3125.     border-radius  : 3px;
  3126. }
  3127.  
  3128. .pagination > li {display: inline}
  3129.  
  3130. .pagination > li > a:link,
  3131. .pagination > li > a:visited,
  3132. .pagination > li > span {
  3133.     background-color: #fff;
  3134.     border          : 1px solid #ddd;
  3135.     color           : #337ab7;
  3136.     position        : relative;
  3137.     line-height     : 1.429em;
  3138.     padding         : 0.6667rem 16px;
  3139.     text-decoration : none !important;
  3140.     margin-left     : -4px;
  3141. }
  3142.  
  3143. .pagination > li:first-child > a {
  3144.     margin-left: 0;
  3145.     border-top-left-radius: 3px;
  3146.     border-bottom-left-radius: 3px;
  3147. }
  3148.  
  3149. .pagination > li:last-child > a {
  3150.     border-top-right-radius: 3px;
  3151.     border-bottom-right-radius: 3px;
  3152. }
  3153.  
  3154. .pagination > li.disabled > a,
  3155. .pagination > li.active > a,
  3156. .pagination > li.disabled > span,
  3157. .pagination > li.active > span {
  3158.     color : #999 !important;
  3159.     cursor: default;
  3160.     background-color: #eee;
  3161. }
  3162.  
  3163. .pagination > li > a:active,
  3164. .pagination > li > a:hover,
  3165. .pagination > li > a:focus {
  3166.     background-color: #eee;
  3167.     color           : #23527c;
  3168.     text-decoration : none;
  3169. }
  3170.  
  3171. .pagination > li.disabled > span,
  3172. .pagination > li.disabled > a,
  3173. .pagination > li.disabled > a:hover,
  3174. .pagination > li.disabled > a:focus {
  3175.     background-color: transparent;
  3176.     color           : #999999;
  3177.     cursor          : default;
  3178. }
  3179.  
  3180. .pagination.push-center {
  3181.     text-align: center;
  3182. }
  3183.  
  3184. .pagination.push-right {
  3185.     text-align: right;
  3186. }
  3187.  
  3188. .pagination.push-left {
  3189.     text-align: left;
  3190. }
  3191.  
  3192. .pagination.pagination-mini > li > a,
  3193. .pagination.pagination-mini > li > span {
  3194.     font-size: 0.714em;
  3195.     padding  : 0.214em 0.500em;
  3196. }
  3197.  
  3198. .pagination.pagination-small > li > a,
  3199. .pagination.pagination-small > li > span {
  3200.     font-size: 0.857em;
  3201.     padding  : 0.429em 0.714em;
  3202. }
  3203.  
  3204. .pagination.pagination-large > li > a,
  3205. .pagination.pagination-large > li > span {
  3206.     font-size: 1.286em;
  3207.     padding  : 0.786em 1.357em;
  3208. }
  3209. .pagination.pagination-link > li > a,
  3210. .pagination.pagination-link > li > span {
  3211.     background: none;
  3212.     border    : none;
  3213. }
  3214. .pagination.pagination-link > li > a:active,
  3215. .pagination.pagination-link > li > a:focus,
  3216. .pagination.pagination-link > li > a:hover {
  3217.     text-decoration: underline;
  3218. }
  3219.  
  3220. /*=================================================================
  3221. [22. Progress bar / .progress]
  3222. =================================================================*/
  3223.  
  3224. .progress {
  3225.     background-color: #fff;
  3226.     border          : 1px solid #ddd;
  3227.     min-height      : 1.000em;
  3228.     margin-top      : 5px;
  3229.     margin-bottom   : 5px;
  3230.     overflow        : hidden;
  3231. }
  3232.  
  3233. /* progress bar fill */
  3234. .fill {
  3235.     display           : inline-block;
  3236.     min-height        : 1.000em;
  3237.     vertical-align    : top;
  3238.     zoom              : 1;
  3239.     *display          : inline;
  3240.     float             : left;
  3241.     background-color  : #ddd;
  3242.     background-size   : 2.857em 2.857em ;
  3243.     height            : 100%;
  3244.     -webkit-transition: width 1s;
  3245.        -moz-transition: width 1s;
  3246.         -ms-transition: width 1s;
  3247.          -o-transition: width 1s;
  3248.             transition: width 1s;
  3249. }
  3250. .fill[data-fill]:before {
  3251.     color      : #333;
  3252.     content    : attr(data-fill);
  3253.     display    : block;
  3254.     font-size  : 0.857em;
  3255.     line-height: 1.4;
  3256.     text-align : center;
  3257.     text-shadow: 0 0.071em #fff;
  3258. }
  3259.  
  3260. /* rounded progress bar */
  3261. .progress.progress-rounded {
  3262.             border-radius: 50em;
  3263.          -o-border-radius: 50em;
  3264.         -ms-border-radius: 50em;
  3265.        -moz-border-radius: 50em;
  3266.     -webkit-border-radius: 50em;
  3267. }
  3268. .progress.progress-rounded > .fill:only-child {
  3269.             border-radius: 50em;
  3270.          -o-border-radius: 50em;
  3271.         -ms-border-radius: 50em;
  3272.        -moz-border-radius: 50em;
  3273.     -webkit-border-radius: 50em;
  3274. }
  3275. .progress.progress-rounded > .fill:first-child {
  3276.             border-radius: 50em 0 0 50em;
  3277.          -o-border-radius: 50em 0 0 50em;
  3278.         -ms-border-radius: 50em 0 0 50em;
  3279.        -moz-border-radius: 50em 0 0 50em;
  3280.     -webkit-border-radius: 50em 0 0 50em;
  3281. }
  3282. .progress.progress-rounded > .fill:last-child {
  3283.             border-radius: 0 50em 50em 0;
  3284.          -o-border-radius: 0 50em 50em 0;
  3285.         -ms-border-radius: 0 50em 50em 0;
  3286.        -moz-border-radius: 0 50em 50em 0;
  3287.     -webkit-border-radius: 0 50em 50em 0;
  3288. }
  3289.  
  3290. /* striped brogress bar */
  3291. .progress.progress-striped > .fill {
  3292.     background-image:         linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3293.     background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3294.     background-image:     -ms-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3295.     background-image:    -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3296.     background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  3297.             animation: animate-progress 2s linear infinite;
  3298.          -o-animation: animate-progress 2s linear infinite;
  3299.         -ms-animation: animate-progress 2s linear infinite;
  3300.        -moz-animation: animate-progress 2s linear infinite;
  3301.     -webkit-animation: animate-progress 2s linear infinite;
  3302. }
  3303.  
  3304. @keyframes animate-progress {
  3305.       from { background-position: 0 0; }
  3306.       to { background-position: 2.857em 0; }
  3307. }
  3308.  
  3309. @-o-keyframes animate-progress {
  3310.       from { background-position: 0 0; }
  3311.       to { background-position: 2.857em 0; }
  3312. }
  3313.  
  3314. @-ms-keyframes animate-progress {
  3315.       from { background-position: 0 0; }
  3316.       to { background-position: 2.857em 0; }
  3317. }
  3318.  
  3319. @-moz-keyframes animate-progress {
  3320.       from { background-position: 0 0; }
  3321.       to { background-position: 2.857em 0; }
  3322. }
  3323.  
  3324. @-webkit-keyframes animate-progress {
  3325.       from { background-position: 0 0; }
  3326.       to { background-position: 2.857em 0; }
  3327. }
  3328.  
  3329. /* purple progress bar */
  3330. .progress > .fill.fill-purple,
  3331. .progress.progress-purple > .fill {
  3332.     background-color: #862165;
  3333. }
  3334.  
  3335. /* blue progress bar */
  3336. .progress > .fill.fill-blue,
  3337. .progress.progress-blue > .fill {
  3338.     background-color: #4890a8;
  3339. }
  3340.  
  3341. /* green progress bar */
  3342. .progress > .fill.fill-green,
  3343. .progress.progress-green > .fill {
  3344.     background-color: #5bb75b;
  3345. }
  3346.  
  3347. /* orange progress bar */
  3348. .progress > .fill.fill-orange,
  3349. .progress.progress-orange > .fill {
  3350.     background-color: #faa732;
  3351. }
  3352.  
  3353. /* red progress bar */
  3354. .progress > .fill.fill-red,
  3355. .progress.progress-red > .fill {
  3356.     background-color: #da4f49;
  3357. }
  3358.  
  3359. /* pink progress bar */
  3360. .progress > .fill.fill-pink,
  3361. .progress.progress-pink > .fill {
  3362.     background-color: #db35c0;
  3363. }
  3364.  
  3365. /* black progress bar */
  3366. .progress > .fill.fill-black,
  3367. .progress.progress-black > .fill {
  3368.     background-color: #363636;
  3369. }
  3370.  
  3371. /* white progress bar */
  3372. .progress.progress-white {
  3373.     background-color: #e5e5e5;
  3374.     border-color    : #fff;
  3375. }
  3376. .progress > .fill.fill-white,
  3377. .progress.progress-white > .fill {
  3378.     background-color: #fff;
  3379. }
  3380.  
  3381. .progress > .fill.fill-purple:before,
  3382. .progress.progress-purple > .fill:before,
  3383. .progress > .fill.fill-blue:before,
  3384. .progress.progress-blue > .fill:before,
  3385. .progress > .fill.fill-green:before,
  3386. .progress.progress-green > .fill:before,
  3387. .progress > .fill.fill-orange:before,
  3388. .progress.progress-orange > .fill:before,
  3389. .progress > .fill.fill-red:before,
  3390. .progress.progress-red > .fill:before,
  3391. .progress > .fill.fill-pink:before,
  3392. .progress.progress-pink > .fill:before,
  3393. .progress > .fill.fill-black:before,
  3394. .progress.progress-black > .fill:before {
  3395.     color      : #fff;
  3396.     text-shadow: 0 1px #000;
  3397. }
  3398.  
  3399. /*=================================================================
  3400. [23. Tables / .table]
  3401. =================================================================*/
  3402.  
  3403. table {
  3404.     border-collapse: collapse;
  3405.     border-spacing : 0;
  3406. }
  3407. .table {
  3408.     border-collapse: collapse;
  3409.     border-spacing : 0;
  3410.     max-width      : 100%;
  3411.     width          :100%;
  3412. }
  3413. .table + .table {
  3414.     margin-top: 0.6667rem;
  3415. }
  3416. .table td {
  3417.     border-top    : 1px solid #ddd;
  3418.     line-height   : 20px;
  3419.     padding       : 0.5333rem;
  3420.     text-align    : left;
  3421.     vertical-align: top;
  3422. }
  3423. .table th {
  3424.     font-weight: 700;
  3425. }
  3426.  
  3427. .table > thead > tr > th {
  3428.     border-bottom : 1px solid #ddd;
  3429.     vertical-align: bottom;
  3430. }
  3431.  
  3432. .table tbody + tbody {
  3433.     border-top: 2px solid #ddd;
  3434. }
  3435. .table .table {
  3436.     background: #fff;
  3437. }
  3438.  
  3439. /* compact table */
  3440. .table.table-compact {}
  3441. .table.table-compact th,
  3442. .table.table-compact td {
  3443.     padding: 4px 5px;
  3444. }
  3445.  
  3446. /* bordered table */
  3447. .table.table-bordered {
  3448.     *border-collapse     : collapse;
  3449.             border-radius: 4px;
  3450.          -o-border-radius: 4px;
  3451.         -ms-border-radius: 4px;
  3452.        -moz-border-radius: 4px;
  3453.     -webkit-border-radius: 4px;
  3454.     border               : 1px solid #ddd;
  3455.     border-collapse      : separate;
  3456.     border-left          : 0;
  3457. }
  3458. .table.table-bordered th,
  3459. .table.table-bordered td {
  3460.     border-left: 1px solid #ddd;
  3461. }
  3462. .table.table-bordered thead:first-child tr:first-child>th:first-child,
  3463. .table.table-bordered tbody:first-child tr:first-child>td:first-child,
  3464. .table.table-bordered tbody:first-child tr:first-child>th:first-child {
  3465.             border-radius: 3px 0 0;
  3466.          -o-border-radius: 3px 0 0 0;
  3467.         -ms-border-radius: 3px 0 0 0;
  3468.        -moz-border-radius: 3px 0 0 0;
  3469.     -webkit-border-radius: 3px 0 0 0;
  3470. }
  3471. .table.table-bordered thead:first-child tr:first-child>th:last-child,
  3472. .table.table-bordered tbody:first-child tr:first-child>td:last-child,
  3473. .table.table-bordered tbody:first-child tr:first-child>th:last-child {
  3474.             border-radius: 0 3px 0 0;
  3475.          -o-border-radius: 0 3px 0 0;
  3476.         -ms-border-radius: 0 3px 0 0;
  3477.        -moz-border-radius: 0 3px 0 0;
  3478.     -webkit-border-radius: 0 3px 0 0;
  3479. }
  3480. .table.table-bordered thead:last-child tr:last-child>th:first-child,
  3481. .table.table-bordered tbody:last-child tr:last-child>td:first-child,
  3482. .table.table-bordered tbody:last-child tr:last-child>th:first-child,
  3483. .table.table-bordered tfoot:last-child tr:last-child>td:first-child,
  3484. .table.table-bordered tfoot:last-child tr:last-child>th:first-child {
  3485.             border-radius: 0 0 0 3px;
  3486.          -o-border-radius: 0 0 0 3px;
  3487.         -ms-border-radius: 0 0 0 3px;
  3488.        -moz-border-radius: 0 0 0 3px;
  3489.     -webkit-border-radius: 0 0 0 3px;
  3490. }
  3491. .table.table-bordered thead:last-child tr:last-child>th:last-child,
  3492. .table.table-bordered tbody:last-child tr:last-child>td:last-child,
  3493. .table.table-bordered tbody:last-child tr:last-child>th:last-child,
  3494. .table.table-bordered tfoot:last-child tr:last-child>td:last-child,
  3495. .table.table-bordered tfoot:last-child tr:last-child>th:last-child{
  3496.             border-radius: 0 0 3px;
  3497.          -o-border-radius: 0 0 3px 0;
  3498.         -ms-border-radius: 0 0 3px 0;
  3499.        -moz-border-radius: 0 0 3px 0;
  3500.     -webkit-border-radius: 0 0 3px 0;
  3501. }
  3502. .table.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  3503.             border-radius: 0;
  3504.          -o-border-radius: 0;
  3505.         -ms-border-radius: 0;
  3506.        -moz-border-radius: 0;
  3507.     -webkit-border-radius: 0;
  3508. }
  3509. .table.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  3510.             border-radius: 0;
  3511.          -o-border-radius: 0;
  3512.         -ms-border-radius: 0;
  3513.        -moz-border-radius: 0;
  3514.     -webkit-border-radius: 0;
  3515. }
  3516.  
  3517. /* striped table */
  3518. .table.table-striped tbody > tr:nth-child(odd) > td,
  3519. table.table-striped tbody > tr:nth-child(odd) > th {
  3520.     background-color: #f9f9f9;
  3521. }
  3522.  
  3523. /* hovered table */
  3524. .table.table-hovered tbody tr:hover > td,
  3525. table.table-hovered tbody tr:hover > th {
  3526.     background-color: #f5f5f5;
  3527. }
  3528.  
  3529. /**
  3530. * Colored Table Rows
  3531. */
  3532.  
  3533. /* purple */
  3534. .table tr.purple {
  3535.     background-color: rgba(134,33,101,.3);
  3536.     text-shadow     : 0 1px #eee;
  3537. }
  3538.  
  3539. /* blue */
  3540. .table tr.blue {
  3541.     background-color: rgba(72,144,168,.3);
  3542.     text-shadow     : 0 1px #eee;
  3543. }
  3544.  
  3545. /* green */
  3546. .table tr.green {
  3547.     background-color: rgba(91,183,91,.3);
  3548.     text-shadow     : 0 1px #eee;
  3549. }
  3550.  
  3551. /* orange */
  3552. .table tr.orange {
  3553.     background-color: rgba(250,167,50,.3);
  3554.     text-shadow     : 0 1px #eee;
  3555. }
  3556.  
  3557. /* red */
  3558. .table tr.red {
  3559.     background-color: rgba(218,79,73,.3);
  3560.     text-shadow     : 0 1px #eee;
  3561. }
  3562.  
  3563. /* pink */
  3564. .table tr.pink {
  3565.     background-color: rgba(219,53,192,.3);
  3566.     text-shadow     : 0 1px #eee;
  3567. }
  3568.  
  3569. /* black */
  3570. .table tr.black {
  3571.     background-color: rgba(0,0,0,.3);
  3572.     text-shadow     : 0 1px #eee;
  3573. }
  3574.  
  3575. /* white */
  3576. .table tr.white {
  3577.     background-color: rgba(0,0,0,.3);
  3578.     text-shadow     : 0 1px #eee;
  3579. }
  3580.  
  3581. /*=================================================================
  3582. [24. Tabs / .tab-group]
  3583. =================================================================*/
  3584.  
  3585. .tabs {
  3586.     display      : block;
  3587.     margin-bottom: 20px;
  3588. }
  3589.  
  3590. .tabs:last-child {
  3591.     margin-bottom: 0;
  3592. }
  3593.  
  3594. .tabs:before,
  3595. .tabs:after {
  3596.     content    : "";
  3597.     display    : block;
  3598.     height     : 0;
  3599.     line-height: 0;
  3600. }
  3601.  
  3602. .tabs:after {
  3603.     clear: both;
  3604. }
  3605.  
  3606. .tabs > .controls {
  3607.     border-bottom: 1px solid #ddd;
  3608.     display      : block;
  3609.     list-style   : none;
  3610.     margin       : 0;
  3611.     padding      : 0;
  3612. }
  3613. .tabs > .controls:before,
  3614. .tabs > .controls:after {
  3615.     content    : "";
  3616.     display    : block;
  3617.     height     : 0;
  3618.     line-height: 0;
  3619. }
  3620. .tabs > .controls:after {
  3621.     clear: both;
  3622. }
  3623.  
  3624. .tabs > .controls > .item {
  3625.     color           : #333;
  3626.     text-decoration : none;
  3627.     display         : inline-block;
  3628.     margin-right    : -2.5px;
  3629.     padding         : 7px 16px 5px;
  3630.     position        : relative;
  3631.     background-color: #fff;
  3632.     border-top      : 1px solid #ddd;
  3633.     border-right    : 1px solid #ddd;
  3634. }
  3635. .tabs > .controls > .item:first-child {
  3636.     border-left: 1px solid #ddd;
  3637. }
  3638. .tabs > .controls > .item:last-child {
  3639.     border-right: 1px solid #ddd;
  3640. }
  3641. .tabs > .controls > .item:hover,
  3642. .tabs > .controls > .item.active {
  3643.     background-color: #f9f9f9;
  3644. }
  3645. .tabs > .controls > .item.disabled {
  3646.     background: none;
  3647.     color     : #999;
  3648.     cursor    : default;
  3649.     border-color: transparent;
  3650. }
  3651.  
  3652. .tabs > .content {
  3653.     background-color: #fff;
  3654.     overflow        : hidden;
  3655.     border          : 1px solid #ddd;
  3656.     border-top      : none;
  3657.     padding         : 0;
  3658. }
  3659.  
  3660. .tabs > .content:before,
  3661. .tabs > .content:after {
  3662.     content    : "";
  3663.     display    : block;
  3664.     height     : 0;
  3665.     line-height: 0;
  3666. }
  3667.  
  3668. .tabs > .content:after {
  3669.     clear: both;
  3670. }
  3671.  
  3672. .tabs > .content > .item {
  3673.     display   : none;
  3674.     opacity   : 0;
  3675.     padding   : 0.6667rem 1.000em;
  3676.     visibility: hidden;
  3677. }
  3678.  
  3679. .tabs > .content > .item.active {
  3680.     display   : block;
  3681.     opacity   : 1;
  3682.     visibility: visible;
  3683. }
  3684.  
  3685. /*=================================================================
  3686. [25. Tooltip / .tooltip]
  3687. =================================================================*/
  3688.  
  3689. .tooltip,
  3690. [data-tooltip] {
  3691.     position: relative;
  3692.     display: inline-block;
  3693. }
  3694. .tooltip:before,
  3695. .tooltip:after,
  3696. [data-tooltip]:before,
  3697. [data-tooltip]:after {
  3698.     position: absolute;
  3699.     -webkit-transform: translate3d(0, 0, 0);
  3700.     -moz-transform: translate3d(0, 0, 0);
  3701.     transform: translate3d(0, 0, 0);
  3702.     visibility: hidden;
  3703.     opacity: 0;
  3704.     z-index: 9997;
  3705.     pointer-events: none;
  3706. }
  3707. .tooltip:hover:before,
  3708. .tooltip:hover:after,
  3709. .tooltip:focus:before,
  3710. .tooltip:focus:after,
  3711. [data-tooltip]:hover:before,
  3712. [data-tooltip]:focus:before,
  3713. [data-tooltip]:hover:after,
  3714. [data-tooltip]:focus:after {
  3715.     visibility: visible;
  3716.     opacity: 1;
  3717. }
  3718. .tooltip:before,
  3719. [data-tooltip]:before {
  3720.     content: '';
  3721.     position: absolute;
  3722.     background: transparent;
  3723.     border: 6px solid transparent;
  3724.     z-index: 9998;
  3725. }
  3726. .tooltip:after,
  3727. [data-tooltip]:after {
  3728.     content      : attr(data-tooltip);
  3729.     background   : #383838;
  3730.     color        : #fff;
  3731.     text-shadow  : 0 -1px 0 #000;
  3732.     padding      : 6px 8px;
  3733.     font-weight  : normal;
  3734.     line-height  : 14px;
  3735.     white-space  : nowrap;
  3736.     z-index      : 9999;
  3737.     font-size    : 12px;
  3738.     border-radius: 3px;
  3739. }
  3740. .tooltip-top:before {
  3741.     border-top-color: #383838;
  3742. }
  3743. .tooltip-bottom:before {
  3744.     border-bottom-color: #383838;
  3745. }
  3746. .tooltip-left:before {
  3747.     border-left-color: #383838;
  3748. }
  3749. .tooltip-right:before {
  3750.     border-right-color: #383838;
  3751. }
  3752. .tooltip-top:before {
  3753.     margin-bottom: -12px;
  3754. }
  3755. .tooltip-top:after {
  3756.     margin-left: -18px;
  3757. }
  3758. .tooltip-top:before,
  3759. .tooltip-top:after {
  3760.     bottom: 100%;
  3761.     left: 50%;
  3762. }
  3763. .tooltip-top:hover:after,
  3764. .tooltip-top:hover:before,
  3765. .tooltip-top:focus:after,
  3766. .tooltip-top:focus:before {
  3767.     -webkit-transform: translateY(-8px);
  3768.     -moz-transform: translateY(-8px);
  3769.     transform: translateY(-8px);
  3770. }
  3771. .tooltip-bottom:before {
  3772.     margin-top: -12px;
  3773. }
  3774. .tooltip-bottom:after {
  3775.     margin-left: -18px;
  3776. }
  3777. .tooltip-bottom:before,
  3778. .tooltip-bottom:after {
  3779.     top: 100%;
  3780.     left: 50%;
  3781. }
  3782. .tooltip-bottom:hover:after,
  3783. .tooltip-bottom:hover:before,
  3784. .tooltip-bottom:focus:after,
  3785. .tooltip-bottom:focus:before {
  3786.     -webkit-transform: translateY(8px);
  3787.     -moz-transform: translateY(8px);
  3788.     transform: translateY(8px);
  3789. }
  3790. .tooltip-right:before {
  3791.     margin-left: -12px;
  3792.     margin-bottom: -6px;
  3793. }
  3794. .tooltip-right:after {
  3795.     margin-bottom: -14px;
  3796. }
  3797. .tooltip-right:before,
  3798. .tooltip-right:after {
  3799.     left: 100%;
  3800.     bottom: 50%;
  3801. }
  3802. .tooltip-right:hover:after,
  3803. .tooltip-right:hover:before,
  3804. .tooltip-right:focus:after,
  3805. .tooltip-right:focus:before {
  3806.     -webkit-transform: translateX(8px);
  3807.     -moz-transform: translateX(8px);
  3808.     transform: translateX(8px);
  3809. }
  3810. /**
  3811.  * left tooltip
  3812.  */
  3813.  
  3814. .tooltip-left:before {
  3815.     margin-right: -12px;
  3816.     margin-bottom: -6px;
  3817. }
  3818. .tooltip-left:after {
  3819.     margin-bottom: -14px;
  3820. }
  3821. .tooltip-left:before,
  3822. .tooltip-left:after {
  3823.     right: 100%;
  3824.     bottom: 50%;
  3825. }
  3826. .tooltip-left:hover:after,
  3827. .tooltip-left:hover:before,
  3828. .tooltip-left:focus:after,
  3829. .tooltip-left:focus:before {
  3830.     -webkit-transform: translateX(-8px);
  3831.     -moz-transform: translateX(-8px);
  3832.     transform: translateX(-8px);
  3833. }
  3834. .tooltip-error:after {
  3835.     background-color: #468847;
  3836.     color: #d6e9c6;
  3837.     text-shadow: none;
  3838. }
  3839. .tooltip-error.tooltip-top:before {
  3840.     border-top-color: #468847;
  3841. }
  3842. .tooltip-error.tooltip-bottom:before {
  3843.     border-bottom-color: #468847;
  3844. }
  3845. .tooltip-error.tooltip-left:before {
  3846.     border-left-color: #468847;
  3847. }
  3848. .tooltip-error.tooltip-right:before {
  3849.     border-right-color: #468847;
  3850. }
  3851. .tooltip-warning:after {
  3852.     background-color: #c09853;
  3853.     color: #fbeed5;
  3854.     text-shadow: none;
  3855. }
  3856. .tooltip-warning.tooltip-top:before {
  3857.     border-top-color: #c09853;
  3858. }
  3859. .tooltip-warning.tooltip-bottom:before {
  3860.     border-bottom-color: #c09853;
  3861. }
  3862. .tooltip-warning.tooltip-left:before {
  3863.     border-left-color: #c09853;
  3864. }
  3865. .tooltip-warning.tooltip-right:before {
  3866.     border-right-color: #c09853;
  3867. }
  3868. .tooltip-info:after {
  3869.     background-color: #3a87ad;
  3870.     color: #bce8f1;
  3871.     text-shadow: none
  3872. }
  3873. .tooltip-info.tooltip-top:before {
  3874.     border-top-color: #3a87ad;
  3875. }
  3876. .tooltip-info.tooltip-bottom:before {
  3877.     border-bottom-color: #3a87ad;
  3878. }
  3879. .tooltip-info.tooltip-left:before {
  3880.     border-left-color: #3a87ad;
  3881. }
  3882. .tooltip-info.tooltip-right:before {
  3883.     border-right-color: #3a87ad;
  3884. }
  3885. .tooltip-success:after {
  3886.     background-color: #468847;
  3887.     color: #d6e9c6;
  3888.     text-shadow: none;
  3889. }
  3890. .tooltip-success.tooltip-top:before {
  3891.     border-top-color: #468847;
  3892. }
  3893. .tooltip-success.tooltip-bottom:before {
  3894.     border-bottom-color: #468847;
  3895. }
  3896. .tooltip-success.tooltip-left:before {
  3897.     border-left-color: #468847;
  3898. }
  3899. .tooltip-success.tooltip-right:before {
  3900.     border-right-color: #468847;
  3901. }
  3902.  
  3903. /**
  3904.  * Keeps a tooltip always visible
  3905.  */
  3906. .tooltip-always:after,
  3907. .tooltip-always:before {
  3908.     opacity: 1;
  3909.     visibility: visible;
  3910. }
  3911. .tooltip-always.tooltip-top:after,
  3912. .tooltip-always.tooltip-top:before {
  3913.     -webkit-transform: translateY(-8px);
  3914.     -moz-transform: translateY(-8px);
  3915.     transform: translateY(-8px);
  3916. }
  3917. .tooltip-always.tooltip-bottom:after,
  3918. .tooltip-always.tooltip-bottom:before {
  3919.     -webkit-transform: translateY(8px);
  3920.     -moz-transform: translateY(8px);
  3921.     transform: translateY(8px);
  3922. }
  3923. .tooltip-always.tooltip-left:after,
  3924. .tooltip-always.tooltip-left:before {
  3925.     -webkit-transform: translateX(-8px);
  3926.     -moz-transform: translateX(-8px);
  3927.     transform: translateX(-8px);
  3928. }
  3929. .tooltip-always.tooltip-right:after,
  3930. .tooltip-always.tooltip-right:before {
  3931.     -webkit-transform: translateX(8px);
  3932.     -moz-transform: translateX(8px);
  3933.     transform: translateX(8px);
  3934. }
  3935.  
  3936. /**
  3937.  * Adds bouncing animation to tooltip
  3938.  */
  3939. .tooltip-bounce:before,
  3940. .tooltip-bounce:after {
  3941.     -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  3942.        -moz-transition: opacity 0.3s ease, visibility 0.3s ease, -moz-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  3943.             transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  3944. }
  3945.  
  3946. /*=================================================================
  3947. [26. Typography]
  3948. =================================================================*/
  3949.  
  3950. /* headings */
  3951. h1, .h1,
  3952. h2, .h2,
  3953. h3, .h3,
  3954. h4, .h4,
  3955. h5, .h5,
  3956. h6, .h6 {
  3957.     margin-top   : 0;
  3958.     margin-bottom: 2rem;
  3959.     font-weight  : 400;
  3960. }
  3961.  
  3962. h1, .h1 {
  3963.     font-size     : 4.0rem;
  3964.     line-height   : 1.2;
  3965.     letter-spacing: -.1rem;
  3966. }
  3967. h2, .h2 {
  3968.     font-size     : 3.6rem;
  3969.     line-height   : 1.25;
  3970.     letter-spacing: -.1rem;
  3971. }
  3972. h3, .h3 {
  3973.     font-size     : 3.0rem;
  3974.     line-height   : 1.3;
  3975.     letter-spacing: -.1rem;
  3976. }
  3977. h4, .h4 {
  3978.     font-size     : 2.4rem;
  3979.     line-height   : 1.35;
  3980.     letter-spacing: -.08rem;
  3981. }
  3982. h5, .h5 {
  3983.     font-size     : 1.8rem;
  3984.     line-height   : 1.5;
  3985.     letter-spacing: -.05rem;
  3986. }
  3987. h6, .h6 {
  3988.     font-size     : 1.5rem;
  3989.     line-height   : 1.6;
  3990.     letter-spacing: 0;
  3991. }
  3992.  
  3993. /* Larger than phablet */
  3994. @media (min-width: 550px) {
  3995.     h1 {
  3996.         font-size: 5.0rem;
  3997.     }
  3998.     h2 {
  3999.         font-size: 4.2rem;
  4000.     }
  4001.     h3 {
  4002.         font-size: 3.6rem;
  4003.     }
  4004.     h4 {
  4005.         font-size: 3.0rem;
  4006.     }
  4007.     h5 {
  4008.         font-size: 2.4rem;
  4009.     }
  4010.     h6 {
  4011.         font-size: 1.5rem;
  4012.     }
  4013. }
  4014.  
  4015. small,
  4016. .small {
  4017.     font-size: 80%;
  4018. }
  4019.  
  4020. h1 small, h1 .small, .h1 small, .h1 .small,
  4021. h2 small, h2 .small, .h2 small, .h2 .small,
  4022. h3 small, h3 .small, .h3 small, .h3 .small,
  4023. h4 small, h4 .small, .h4 small, .h4 .small,
  4024. h5 small, h5 .small, .h5 small, .h5 .small,
  4025. h6 small, h6 .small, .h6 small, .h6 .small {
  4026.     box-sizing : border-box;
  4027.     display: block;
  4028.     font-weight: 400;
  4029.     color      : #999;
  4030.     line-height: 1;
  4031. }
  4032. h1 small, h1 .small, .h1 small, .h1 .small,
  4033. h2 small, h2 .small, .h2 small, .h2 .small,
  4034. h3 small, h3 .small, .h3 small, .h3 .small {
  4035.     font-size: 65%;
  4036. }
  4037.  
  4038. h4 small, h4 .small, .h4 small, .h4 .small,
  4039. h5 small, h5 .small, .h5 small, .h5 .small,
  4040. h6 small, h6 .small, .h6 small, .h6 .small {
  4041.     font-size: 75%;
  4042. }
  4043.  
  4044. h1 > small {
  4045.     font-size: 1.14285714rem;
  4046. }
  4047.  
  4048. /* paragraphs */
  4049. p {
  4050.     margin: 0 0 0.6667rem;
  4051. }
  4052. p:last-child {
  4053.     margin-bottom: 0;
  4054. }
  4055.  
  4056. /* --- */
  4057. strong, b, .bold {
  4058.     font-weight: 700 !important;
  4059. }
  4060. i:not(.fa), em, .italic {
  4061.     font-style: italic !important;
  4062. }
  4063. cite {
  4064.     font-style: normal;
  4065. }
  4066.  
  4067. /* abbreviation */
  4068. abbr[title] {
  4069.     border-bottom: 1px dotted #999;
  4070.     cursor       : help;
  4071. }
  4072.  
  4073. /* address */
  4074. address {
  4075.     font-style   : normal;
  4076.     margin-bottom: 0.6667rem;
  4077. }
  4078. address:last-child {
  4079.     margin-bottom: 0;
  4080. }
  4081.  
  4082. /* blockquote */
  4083. blockquote {
  4084.     border-left: 5px solid #e5e5e5;
  4085.     margin     : 0 0 20px;
  4086.     padding    : 0 0 0 1.000em;
  4087. }
  4088. blockquote:before,blockquote:after {
  4089.     content    : "";
  4090.     display    : block;
  4091.     height     : 0;
  4092.     line-height: 0;
  4093. }
  4094. blockquote:after {
  4095.     clear: both;
  4096. }
  4097. blockquote p {
  4098.     font-size    : 17.5px;
  4099.     font-weight  : 300;
  4100.     line-height  : 1.25;
  4101.     margin-bottom: 0;
  4102. }
  4103. blockquote footer, blockquote small, blockquote .small {
  4104.     color      : #999;
  4105.     display    : block;
  4106.     font-size  : 80%;
  4107.     line-height: 20px;
  4108. }
  4109. blockquote footer:before, blockquote small:before, blockquote .small:before {
  4110.     content:"\2014 \00A0";
  4111. }
  4112. blockquote.right {
  4113.     border-left  : 0;
  4114.     border-right : 5px solid #e5e5e5;
  4115.     float        : right;
  4116.     padding-left : 0;
  4117.     padding-right: 1.000em;
  4118. }
  4119. blockquote.right p,
  4120. blockquote.right footer,
  4121.  blockquote.right small,
  4122.  blockquote.right .small {
  4123.     text-align: right;
  4124. }
  4125.  
  4126. blockquote.right footer:before,
  4127. blockquote.right small:before,
  4128. blockquote.right .small:before {
  4129.     content:""
  4130. }
  4131. blockquote.right footer:after,
  4132. blockquote.right small:after,
  4133. blockquote.right .small:after {
  4134.     content:"\00A0 \2014";
  4135. }
  4136.  
  4137. /* lists */
  4138. .list-nostyle {
  4139.     list-style  : none;
  4140.     padding-left: 0;
  4141. }
  4142. /* list inline */
  4143. .list-inline {
  4144.     list-style  : none;
  4145.     margin-left : -5px;
  4146.     padding-left: 0;
  4147. }
  4148. .list-inline > li {
  4149.     display: inline-block;
  4150. }
  4151. .list-inline > li + li {
  4152.     margin-left : 5px;
  4153. }
  4154.  
  4155. /* code */
  4156. code, .code {
  4157.     background-color: #f9f2f4;
  4158.     color           : #da4f49;
  4159.     font-size       : 90%;
  4160.     padding         : 0.1333rem 0.2667rem;
  4161.     white-space     : nowrap;
  4162. }
  4163.  
  4164. /* pre */
  4165. pre {
  4166.     background-color: #f5f5f5;
  4167.     border          : 1px solid #ccc;
  4168.     color           : #333;
  4169.     display         : block;
  4170.     font-size       : 13px;
  4171.     line-height     : 1.42857143;
  4172.     padding         : 9.5px;
  4173.     word-break      : break-all;
  4174.     word-wrap       : break-word;
  4175. }
  4176.  
  4177. /* description */
  4178.  
  4179. dl {}
  4180. dl dt, dl dd {
  4181.     line-height: 20px;
  4182. }
  4183. dl dt {
  4184.     font-weight: 700;
  4185. }
  4186. dl dd {
  4187.     margin-left: 0.6667rem;
  4188. }
  4189. dl.inline:after {
  4190.     content    : ".";
  4191.     line-height: 0;
  4192.     display    : block;
  4193.     overflow   : hidden;
  4194. }
  4195. dl.inline dt {
  4196.     clear        : left;
  4197.     float        : left;
  4198.     overflow     : hidden;
  4199.     text-align   : right;
  4200.     text-overflow: ellipsis;
  4201.     white-space  : nowrap;
  4202.     width        : auto;
  4203. }
  4204. dl.inline dd {
  4205.     float: left;
  4206. }
  4207.  
  4208. /*=================================================================
  4209. [27. Useful Classes]
  4210. =================================================================*/
  4211.  
  4212. /* clear float */
  4213. .clearfix:before,
  4214. .clearfix:after {
  4215.     content    : " ";
  4216.     display    : block;
  4217.     height     : 0;
  4218.     line-height: 0;
  4219. }
  4220. .clearfix:after {
  4221.     clear: both;
  4222. }
  4223.  
  4224. /* element float */
  4225. .float-left { float: left !important; }
  4226. .float-right { float: right !important; }
  4227. .float-auto { float: auto !important; }
  4228. .float-none { float: none !important; }
  4229.  
  4230. /* text align */
  4231. .text-left { text-align: left !important; }
  4232. .text-center { text-align: center !important; }
  4233. .text-right { text-align: right !important; }
  4234. .text-justify { text-align: justify !important; }
  4235.  
  4236. /*-------------------------------------------------------------------
  4237. // !Text Colors
  4238. //-----------------------------------------------------------------*/
  4239.  
  4240. /* muted text */
  4241. .text-muted { color: #777 !important; }
  4242.  
  4243. /* purple */
  4244. .text-purple { color: #862165 !important; }
  4245.  
  4246. /* blue & info text */
  4247. .text-info,
  4248. .text-blue { color: #4890a8 !important; }
  4249.  
  4250. /* success and green text */
  4251. .text-success,
  4252. .text-green { color: #5bb75b !important; }
  4253.  
  4254. /* warning and orange text */
  4255. .text-warning,
  4256. .text-orange { color: #faa732 !important; }
  4257.  
  4258. /* error and red text */
  4259. .text-error,
  4260. .text-red { color: #da4f49 !important; }
  4261.  
  4262. /* text pink */
  4263. .text-pink { color: #db35c0 !important; }
  4264.  
  4265. /* blac text */
  4266. .text-black { color: #363636 !important; }
  4267.  
  4268. /* white text */
  4269. .text-white { color: #fff !important; }
  4270.  
  4271. /*-------------------------------------------------------------------
  4272. // !Text Transform
  4273. //-----------------------------------------------------------------*/
  4274.  
  4275. /* uppercase */
  4276. .uppercase { text-transform: uppercase !important; }
  4277.  
  4278. /* lowercase */
  4279. .lowercase { text-transform: lowercase !important; }
  4280.  
  4281. /* center element */
  4282. .centered { margin: 0 auto; }
  4283.  
  4284. /*-------------------------------------------------------------------
  4285. // !Hidden Elements
  4286. //-----------------------------------------------------------------*/
  4287. .show { display: block !important; }
  4288. .hide { display: none !important; visibility: hidden !important; }
  4289. .invisible { visibility: hidden !important; }
  4290. *[hidden] { display: none !important; visibility: hidden !important; }
  4291. *[required]:focus { outline-color: #da4f49; }
  4292.  
  4293. @media (max-width: 767px) {
  4294.     .show-x-block { display: block !important; }
  4295.     .show-x-inline { display: inline !important; }
  4296.     .show-x-inline-block { display: inline-block !important; }
  4297.     .hide-x,
  4298.     .show-s-block,
  4299.     .show-s-inline,
  4300.     .show-s-inline-block,
  4301.     .show-m-block,
  4302.     .show-m-inline,
  4303.     .show-m-inline-block,
  4304.     .show-l-block,
  4305.     .show-l-inline,
  4306.     .show-l-inline-block { display: none !important; }
  4307. }
  4308. @media (min-width: 768px) and (max-width: 991px) {
  4309.     .show-s-block { display: block !important; }
  4310.     .show-s-inline { display: inline !important; }
  4311.     .show-s-inline-block { display: inline-block !important; }
  4312.     .hide-s,
  4313.     .show-x-block,
  4314.     .show-x-inline,
  4315.     .show-m-inline-block,
  4316.     .show-l-block,
  4317.     .show-l-inline,
  4318.     .show-l-inline-block { display: none !important; }
  4319. }
  4320. @media (min-width: 992px) and (max-width: 1199px) {
  4321.     .show-m-block { display: block !important; }
  4322.     .show-m-inline { display: inline !important; }
  4323.     .show-m-inline-block { display: inline-block !important; }
  4324.     .hide-m,
  4325.     .show-x-block,
  4326.     .show-x-inline,
  4327.     .show-x-inline-block,
  4328.     .show-s-block,
  4329.     .show-s-inline,
  4330.     .show-s-inline-block,
  4331.     .show-l-block,
  4332.     .show-l-inline,
  4333.     .show-l-inline-block { display: none !important; }
  4334. }
  4335. @media (min-width: 1200px) {
  4336.     .show-l-block { display: block !important; }
  4337.     .show-l-inline { display: inline !important; }
  4338.     .show-l-inline-block { display: inline-block !important; }
  4339.     .hide-l,
  4340.     .show-x-block,
  4341.     .show-x-inline,
  4342.     .show-x-inline-block,
  4343.     .show-s-block,
  4344.     .show-s-inline,
  4345.     .show-s-inline-block,
  4346.     .show-m-block,
  4347.     .show-m-inline,
  4348.     .show-m-inline-block { display: none !important; }
  4349. }
  4350.  
  4351. /*-------------------------------------------------------------------
  4352. // !Backgrounds
  4353. //-----------------------------------------------------------------*/
  4354.  
  4355. .bg-none { background: none !important; }
  4356. .bg-purple { background-color: #862165; color: #fff ; }
  4357. .bg-blue { background-color: #4890a8; color: #fff ; }
  4358. .bg-green { background-color: #5bb75b; color: #fff ; }
  4359. .bg-orange { background-color: #faa732; color: #fff ; }
  4360. .bg-red { background-color: #da4f49; color: #fff ; }
  4361. .bg-pink { background-color: #db35c0; color: #fff ; }
  4362. .bg-black { background-color: #363636; color: #fff ; }
  4363. .bg-white { background-color: #fff; color: #363636 ; }
  4364.  
  4365. /*-------------------------------------------------------------------
  4366. // !Borders
  4367. //-----------------------------------------------------------------*/
  4368.  
  4369. .border-none { border: none !important; }
  4370. .border-purple { border-color: #862165 !important; }
  4371. .border-blue { border-color: #4890a8 !important; }
  4372. .border-green { border-color: #5bb75b !important; }
  4373. .border-orange { border-color: #faa732 !important; }
  4374. .border-red { border-color: #da4f49 !important; }
  4375. .border-pink { border-color: #db35c0 !important; }
  4376. .border-black { border-color: #363636 !important; }
  4377. .border-white { border-color: #fff !important; }
Add Comment
Please, Sign In to add comment