You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5689 lines
108 KiB

2 years ago
  1. /* Global Styles */
  2. body {
  3. position: relative;
  4. height: 100% !important;
  5. width: 100%;
  6. font-family: 'Open Sans', sans-serif;
  7. font-size: 10px;
  8. background: #fbfbfb;
  9. color: #060606;
  10. }
  11. html {
  12. height: 100% !important;
  13. position: relative;
  14. }
  15. *:hover,
  16. *:active,
  17. *:focus {
  18. outline: none !important;
  19. }
  20. /* Typography */
  21. p {
  22. display: block;
  23. font-size: 1em;
  24. font-weight: normal;
  25. letter-spacing: normal;
  26. line-height: 22px;
  27. margin: 0px 0px 10px 0px;
  28. font-style: normal;
  29. white-space: normal;
  30. }
  31. h1,
  32. h2,
  33. h3,
  34. h4,
  35. h5,
  36. h6 {
  37. font-weight: 300;
  38. }
  39. h1 {
  40. font-size: 30px;
  41. }
  42. h2 {
  43. font-size: 24px;
  44. }
  45. h3 {
  46. font-size: 16px;
  47. }
  48. h4 {
  49. font-size: 14px;
  50. }
  51. h5 {
  52. font-size: 12px;
  53. }
  54. h6 {
  55. font-size: 10px;
  56. }
  57. h3,
  58. h4,
  59. h5 {
  60. font-weight: 600;
  61. }
  62. .f-thin {
  63. font-weight: 300;
  64. }
  65. .f-normal {
  66. font-weight: normal;
  67. }
  68. .f-bold {
  69. font-weight: 600;
  70. }
  71. .f-s-10 {
  72. font-size: 10px;
  73. }
  74. .f-s-11 {
  75. font-size: 11px;
  76. }
  77. .f-s-12 {
  78. font-size: 12px;
  79. }
  80. .f-s-13 {
  81. font-size: 13px;
  82. }
  83. .f-s-14 {
  84. font-size: 14px;
  85. }
  86. .f-s-15 {
  87. font-size: 15px;
  88. }
  89. .f-s-16 {
  90. font-size: 16px;
  91. }
  92. .f-s-17 {
  93. font-size: 17px;
  94. }
  95. .f-s-18 {
  96. font-size: 18px;
  97. }
  98. .f-s-20 {
  99. font-size: 20px;
  100. }
  101. .f-s-22 {
  102. font-size: 22px;
  103. }
  104. .f-s-24 {
  105. font-size: 24px;
  106. }
  107. .f-s-26 {
  108. font-size: 26px;
  109. }
  110. .f-s-28 {
  111. font-size: 28px;
  112. }
  113. .f-s-30 {
  114. font-size: 30px;
  115. }
  116. .f-s-32 {
  117. font-size: 32px;
  118. }
  119. .text-xs {
  120. font-size: 10px;
  121. }
  122. .text-sm {
  123. font-size: 12px;
  124. }
  125. .text-md {
  126. font-size: 16px;
  127. }
  128. .text-lg {
  129. font-size: 32px;
  130. }
  131. .text-xl {
  132. font-size: 52px;
  133. }
  134. .text-xxl {
  135. font-size: 80px;
  136. }
  137. .f-white {
  138. color: #fff;
  139. }
  140. .f-gray {
  141. color: #ccc;
  142. }
  143. .f-gray-dark {
  144. color: #a2a2a2;
  145. }
  146. .f-black {
  147. color: #333;
  148. }
  149. .f-green {
  150. color: #22BAA0;
  151. }
  152. .f-blue {
  153. color: #127acb;
  154. }
  155. .f-lblue {
  156. color: #12AFCB;
  157. }
  158. .f-purple {
  159. color: #7a6fbe;
  160. }
  161. .f-red {
  162. color: #f25656;
  163. }
  164. .f-yellow {
  165. color: #f6d433;
  166. }
  167. .f-orange {
  168. color: #e79b2f;
  169. }
  170. .text-default {
  171. color: #ccc;
  172. }
  173. .text-primary {
  174. color: #7a6fbe;
  175. }
  176. .text-success {
  177. color: #22BAA0;
  178. }
  179. .text-info {
  180. color: #12AFCB;
  181. }
  182. .text-warning {
  183. color: #f6d433;
  184. }
  185. .text-danger {
  186. color: #f25656;
  187. }
  188. /* Icons */
  189. .icon-xs {
  190. font-size: 12px;
  191. }
  192. .icon-sm {
  193. font-size: 14px;
  194. }
  195. .icon-md {
  196. font-size: 16px;
  197. }
  198. .icon-lg {
  199. font-size: 18px;
  200. }
  201. .icon-state-default {
  202. color: #ccc;
  203. }
  204. .icon-state-primary {
  205. color: #7a6fbe;
  206. }
  207. .icon-state-success {
  208. color: #22BAA0;
  209. }
  210. .icon-state-info {
  211. color: #12AFCB;
  212. }
  213. .icon-state-warning {
  214. color: #f6d433;
  215. }
  216. .icon-state-danger {
  217. color: #f25656;
  218. }
  219. /* Alert */
  220. .alert {
  221. border-radius: 0;
  222. padding-top: 10px;
  223. padding-bottom: 10px;
  224. border: 0;
  225. }
  226. .alert-success {
  227. background: #e5f3df;
  228. }
  229. .alert-info {
  230. background: #d3e6f0;
  231. }
  232. .alert-warning {
  233. background: #f6f2dd;
  234. }
  235. .alert-danger {
  236. background: #f1d9d9;
  237. }
  238. /* Custom Badges */
  239. .badge {
  240. -webkit-border-radius: 12px !important;
  241. -moz-border-radius: 12px !important;
  242. border-radius: 12px !important;
  243. border-radius: 0px;
  244. font-weight: 300;
  245. font-size: 11px !important;
  246. text-align: center;
  247. vertical-align: middle;
  248. line-height: 11px !important;
  249. height: 18px;
  250. padding: 3px 6px 3px 6px;
  251. text-shadow: none !important;
  252. }
  253. .badge.badge-roundless {
  254. -webkit-border-radius: 0 !important;
  255. -moz-border-radius: 0 !important;
  256. border-radius: 0 !important;
  257. }
  258. .badge.badge-default {
  259. background: #f1f1f1;
  260. color: #aaa;
  261. }
  262. .badge.badge-primary {
  263. background: #7a6fbe;
  264. color: #FFF;
  265. }
  266. .badge.badge-info {
  267. background: #12AFCB;
  268. color: #FFF;
  269. }
  270. .badge.badge-success {
  271. background: #22BAA0;
  272. color: #FFF;
  273. }
  274. .badge.badge-danger {
  275. background: #f25656;
  276. color: #FFF;
  277. }
  278. .badge.badge-warning {
  279. background: #f6d433;
  280. color: #FFF;
  281. }
  282. /* Switchery */
  283. .switch-sm .switchery {
  284. height: 15px;
  285. width: 25px;
  286. }
  287. .switch-sm .switchery > small {
  288. height: 15px;
  289. width: 15px;
  290. }
  291. .switch-md .switchery {
  292. height: 20px;
  293. width: 35px;
  294. }
  295. .switch-md .switchery > small {
  296. height: 20px;
  297. width: 20px;
  298. }
  299. .switch-lg .switchery {
  300. height: 25px;
  301. width: 40px;
  302. }
  303. .switch-lg .switchery > small {
  304. height: 25px;
  305. width: 25px;
  306. }
  307. /* CSS Utilities */
  308. /* Margins & Paddings */
  309. .no-s {
  310. text-align: center;
  311. margin: 0px !important;
  312. padding: 0px !important;
  313. color: #9c9c9c;
  314. font-style: italic;
  315. font-size: 12px;
  316. }
  317. .no-m {
  318. margin: 0;
  319. }
  320. .no-p {
  321. padding: 0;
  322. }
  323. .m {
  324. margin: 15px;
  325. }
  326. .m-t-xxs {
  327. margin-top: 5px;
  328. }
  329. .m-r-xxs {
  330. margin-right: 5px;
  331. }
  332. .m-b-xxs {
  333. margin-bottom: 5px;
  334. }
  335. .m-l-xxs {
  336. margin-left: 5px;
  337. }
  338. .m-t-xs {
  339. margin-top: 10px;
  340. }
  341. .m-r-xs {
  342. margin-right: 10px;
  343. }
  344. .m-b-xs {
  345. margin-bottom: 10px;
  346. }
  347. .m-l-xs {
  348. margin-left: 10px;
  349. }
  350. .m-t-sm {
  351. margin-top: 15px;
  352. }
  353. .m-r-sm {
  354. margin-right: 15px;
  355. }
  356. .m-b-sm {
  357. margin-bottom: 15px;
  358. }
  359. .m-l-sm {
  360. margin-left: 15px;
  361. }
  362. .m-t-md {
  363. margin-top: 20px;
  364. }
  365. .m-r-md {
  366. margin-right: 20px;
  367. }
  368. .m-b-md {
  369. margin-bottom: 20px;
  370. }
  371. .m-l-md {
  372. margin-left: 20px;
  373. }
  374. .m-t-lg {
  375. margin-top: 25px;
  376. }
  377. .m-r-lg {
  378. margin-right: 25px;
  379. }
  380. .m-b-lg {
  381. margin-bottom: 25px;
  382. }
  383. .m-l-lg {
  384. margin-left: 25px;
  385. }
  386. .m-t-xxl {
  387. margin-top: 30px;
  388. }
  389. .m-r-xxl {
  390. margin-right: 30px;
  391. }
  392. .m-b-xxl {
  393. margin-bottom: 30px;
  394. }
  395. .m-l-xxl {
  396. margin-left: 30px;
  397. }
  398. .m-t-n-xxs {
  399. margin-top: -5px;
  400. }
  401. .m-r-n-xxs {
  402. margin-right: -5px;
  403. }
  404. .m-b-n-xxs {
  405. margin-bottom: -5px;
  406. }
  407. .m-l-n-xxs {
  408. margin-left: -5px;
  409. }
  410. .m-t-n-xs {
  411. margin-top: -10px;
  412. }
  413. .m-r-n-xs {
  414. margin-right: -10px;
  415. }
  416. .m-b-n-xs {
  417. margin-bottom: -10px;
  418. }
  419. .m-l-n-xs {
  420. margin-left: -10px;
  421. }
  422. .m-t-n-sm {
  423. margin-top: -15px;
  424. }
  425. .m-r-n-sm {
  426. margin-right: -15px;
  427. }
  428. .m-b-n-sm {
  429. margin-bottom: -15px;
  430. }
  431. .m-l-n-sm {
  432. margin-left: -15px;
  433. }
  434. .m-t-n-md {
  435. margin-top: -20px;
  436. }
  437. .m-r-n-md {
  438. margin-right: -20px;
  439. }
  440. .m-b-n-md {
  441. margin-bottom: -20px;
  442. }
  443. .m-l-n-md {
  444. margin-left: -20px;
  445. }
  446. .m-t-n-lg {
  447. margin-top: -25px;
  448. }
  449. .m-r-n-lg {
  450. margin-right: -25px;
  451. }
  452. .m-b-n-lg {
  453. margin-bottom: -25px;
  454. }
  455. .m-l-n-lg {
  456. margin-left: -25px;
  457. }
  458. .m-t-n-xxl {
  459. margin-top: -30px;
  460. }
  461. .m-r-n-xxl {
  462. margin-right: -30px;
  463. }
  464. .m-b-n-xxl {
  465. margin-bottom: -30px;
  466. }
  467. .m-l-n-xxl {
  468. margin-left: -30px;
  469. }
  470. .p {
  471. padding: 15px;
  472. }
  473. .p-h-xxs {
  474. padding-left: 5px;
  475. padding-right: 5px;
  476. }
  477. .p-h-xs {
  478. padding-left: 10px;
  479. padding-right: 10px;
  480. }
  481. .p-h-sm {
  482. padding-left: 15px;
  483. padding-right: 15px;
  484. }
  485. .no-p-h {
  486. padding-left: 0;
  487. padding-right: 0;
  488. }
  489. .no-p-v {
  490. padding-top: 0;
  491. padding-bottom: 0;
  492. }
  493. .p-h-md {
  494. padding-left: 20px;
  495. padding-right: 20px;
  496. }
  497. .p-h-lg {
  498. padding-left: 25px;
  499. padding-right: 25px;
  500. }
  501. .p-h-xxl {
  502. padding-left: 30px;
  503. padding-right: 30px;
  504. }
  505. .p-v-xxs {
  506. padding-top: 5px;
  507. padding-bottom: 5px;
  508. }
  509. .p-v-xs {
  510. padding-top: 10px;
  511. padding-bottom: 10px;
  512. }
  513. .p-v-sm {
  514. padding-top: 15px;
  515. padding-bottom: 15px;
  516. }
  517. .p-v-md {
  518. padding-top: 20px;
  519. padding-bottom: 20px;
  520. }
  521. .p-v-lg {
  522. padding-top: 25px;
  523. padding-bottom: 25px;
  524. }
  525. .p-v-xxl {
  526. padding-top: 30px;
  527. padding-bottom: 30px;
  528. }
  529. /* Borders */
  530. .no-b {
  531. border: 0 !important;
  532. }
  533. .b {
  534. border: 1px solid #f1f1f1;
  535. }
  536. .b-t {
  537. border-top: 1px solid #f1f1f1;
  538. }
  539. .b-r {
  540. border-right: 1px solid #f1f1f1;
  541. }
  542. .b-b {
  543. border-bottom: 1px solid #f1f1f1;
  544. }
  545. .b-l {
  546. border-left: 1px solid #f1f1f1;
  547. }
  548. .b-default {
  549. border-color: #f1f1f1;
  550. }
  551. .b-primary {
  552. border-color: #7a6fbe;
  553. }
  554. .b-info {
  555. border-color: #12AFCB;
  556. }
  557. .b-success {
  558. border-color: #22BAA0;
  559. }
  560. .b-warning {
  561. border-color: #f6d433;
  562. }
  563. .b-danger {
  564. border-color: #f25656;
  565. }
  566. .b-2 {
  567. border-size: 2px;
  568. }
  569. .b-3 {
  570. border-size: 3px;
  571. }
  572. .b-4 {
  573. border-size: 4px;
  574. }
  575. .b-n-t {
  576. border-top: 0;
  577. }
  578. .b-n-r {
  579. border-right: 0;
  580. }
  581. .b-n-b {
  582. border-bottom: 0;
  583. }
  584. .b-n-l {
  585. border-left: 0;
  586. }
  587. /* Radius */
  588. .no-r {
  589. border-radius: 0 !important;
  590. }
  591. .r {
  592. border-radius: 2px;
  593. }
  594. .r-t-l {
  595. border-top-left-radius: 2px;
  596. }
  597. .r-t-r {
  598. border-top-right-radius: 2px;
  599. }
  600. .r-b-l {
  601. border-bottom-left-radius: 2px;
  602. }
  603. .r-b-r {
  604. border-bottom-right-radius: 2px;
  605. }
  606. .no-r-t-l {
  607. border-top-left-radius: 0 !important;
  608. }
  609. .no-r-t-r {
  610. border-top-right-radius: 0 !important;
  611. }
  612. .no-r-b-l {
  613. border-bottom-left-radius: 0 !important;
  614. }
  615. .no-r-b-r {
  616. border-bottom-right-radius: 0 !important;
  617. }
  618. /* Backgrounds */
  619. .bg-n {
  620. background: transparent !important;
  621. }
  622. .bg-primary {
  623. background-color: #7a6fbe;
  624. color: #fff;
  625. }
  626. .bg-primary.dark {
  627. background-color: #6e63b4;
  628. color: #fff;
  629. }
  630. .bg-primary.light {
  631. background-color: #877cc7;
  632. color: #fff;
  633. }
  634. .bg-success {
  635. background-color: #22BAA0;
  636. color: #fff;
  637. }
  638. .bg-success.dark {
  639. background-color: #1da890;
  640. color: #fff;
  641. }
  642. .bg-success.light {
  643. background-color: #32c6ad;
  644. color: #fff;
  645. }
  646. .bg-info {
  647. background-color: #12AFCB;
  648. color: #fff;
  649. }
  650. .bg-info.dark {
  651. background-color: #0ba0bb;
  652. color: #fff;
  653. }
  654. .bg-info.light {
  655. background-color: #20beda;
  656. color: #fff;
  657. }
  658. .bg-warning {
  659. background-color: #f6d433;
  660. color: #fff;
  661. }
  662. .bg-warning.dark {
  663. background-color: #f1ca11;
  664. color: #fff;
  665. }
  666. .bg-warning.light {
  667. background-color: #fada44;
  668. color: #fff;
  669. }
  670. .bg-danger {
  671. background-color: #f25656;
  672. color: #fff;
  673. }
  674. .bg-danger.dark {
  675. background-color: #e54f4f;
  676. color: #fff;
  677. }
  678. .bg-danger.light {
  679. background-color: #f66d6d;
  680. color: #fff;
  681. }
  682. .bg-dark {
  683. background-color: #333;
  684. color: #fff;
  685. }
  686. .bg-dark.dark {
  687. background-color: #2b2b2b;
  688. color: #fff;
  689. }
  690. .bg-dark.light {
  691. background-color: #3b3b3b;
  692. color: #fff;
  693. }
  694. .bg-light {
  695. background-color: #f1f1f1;
  696. }
  697. .bg-light.dark {
  698. background-color: #e5e5e5;
  699. }
  700. .bg-light.light {
  701. background-color: #f9f9f9;
  702. }
  703. .bg-gray {
  704. background-color: #ccc;
  705. }
  706. .bg-gray.dark {
  707. background-color: #b9b9b9;
  708. }
  709. .bg-gray.light {
  710. background-color: #d7d7d7;
  711. }
  712. /* Buttons */
  713. /*放大鏡ICON跟日期ICON*/
  714. .input-group-addon {
  715. padding: 3px 12px;
  716. }
  717. .btn {
  718. font-size: 11px;
  719. border: 1px solid transparent;
  720. border-radius: 0;
  721. /*height: 25px;
  722. padding: 3px 12px;*/
  723. outline: none !important;
  724. }
  725. .btn-addon i {
  726. position: relative;
  727. float: left;
  728. width: 35px;
  729. height: 35px;
  730. margin: -7px -13px;
  731. margin-right: 12px;
  732. line-height: 34px;
  733. text-align: center;
  734. border-top-left-radius: 2px;
  735. border-bottom-left-radius: 2px;
  736. background-color: rgba(0, 0, 0, 0.1);
  737. }
  738. .btn-rounded.btn-addon i {
  739. margin: -7px -16px;
  740. margin-right: 15px;
  741. border-radius: 50px;
  742. }
  743. .btn-rounded.btn-addon.btn-sm i {
  744. margin: -7px -16px;
  745. margin-right: 10px;
  746. border-radius: 50px;
  747. }
  748. .btn-lg {
  749. line-height: inherit;
  750. }
  751. .btn-lg.btn-addon i {
  752. width: 45px;
  753. height: 45px;
  754. margin: -11px -17px;
  755. margin-right: 16px;
  756. line-height: 45px;
  757. }
  758. .btn-sm.btn-addon i {
  759. width: 30px;
  760. height: 30px;
  761. margin: -6px -11px;
  762. margin-right: 10px;
  763. line-height: 30px;
  764. }
  765. .btn-xs.btn-addon i {
  766. width: 22px;
  767. height: 22px;
  768. margin: -2px -6px;
  769. margin-right: 5px;
  770. line-height: 22px;
  771. font-size: 10px;
  772. }
  773. .btn-rounded {
  774. padding-left: 15px;
  775. padding-right: 15px;
  776. border-radius: 50px;
  777. }
  778. .btn-group.open .dropdown-toggle {
  779. box-shadow: none;
  780. }
  781. .btn-default {
  782. background-color: #fff;
  783. color: #333;
  784. border: 1px solid #e5e5e5;
  785. }
  786. .btn-default:focus,
  787. .btn-default.focus {
  788. color: #333;
  789. background-color: #f1f1f1;
  790. border-color: #e5e5e5;
  791. }
  792. .btn-default:hover {
  793. color: #333;
  794. background-color: #f1f1f1;
  795. border-color: #e5e5e5;
  796. }
  797. .btn-default:active,
  798. .btn-default.active,
  799. .open > .dropdown-toggle.btn-default {
  800. color: #333;
  801. background-color: #f1f1f1;
  802. border-color: #e5e5e5;
  803. }
  804. .btn-default:active:hover,
  805. .btn-default.active:hover,
  806. .open > .dropdown-toggle.btn-default:hover,
  807. .btn-default:active:focus,
  808. .btn-default.active:focus,
  809. .open > .dropdown-toggle.btn-default:focus,
  810. .btn-default:active.focus,
  811. .btn-default.active.focus,
  812. .open > .dropdown-toggle.btn-default.focus {
  813. color: #333;
  814. background-color: #f1f1f1;
  815. border-color: #e5e5e5;
  816. }
  817. .btn-default:active,
  818. .btn-default.active,
  819. .open > .dropdown-toggle.btn-default {
  820. background-image: none;
  821. }
  822. .btn-default.disabled,
  823. .btn-default[disabled],
  824. fieldset[disabled] .btn-default,
  825. .btn-default.disabled:hover,
  826. .btn-default[disabled]:hover,
  827. fieldset[disabled] .btn-default:hover,
  828. .btn-default.disabled:focus,
  829. .btn-default[disabled]:focus,
  830. fieldset[disabled] .btn-default:focus,
  831. .btn-default.disabled.focus,
  832. .btn-default[disabled].focus,
  833. fieldset[disabled] .btn-default.focus,
  834. .btn-default.disabled:active,
  835. .btn-default[disabled]:active,
  836. fieldset[disabled] .btn-default:active,
  837. .btn-default.disabled.active,
  838. .btn-default[disabled].active,
  839. fieldset[disabled] .btn-default.active {
  840. background-color: #ccc;
  841. border-color: #ccc;
  842. }
  843. .btn-default .badge {
  844. color: #fff;
  845. background-color: #333;
  846. }
  847. .btn-primary {
  848. color: #fff;
  849. background-color: #7a6fbe;
  850. border-color: transparent;
  851. }
  852. .btn-primary:focus,
  853. .btn-primary.focus {
  854. color: #fff;
  855. background-color: #6a5fac;
  856. border-color: transparent;
  857. }
  858. .btn-primary:hover {
  859. color: #fff;
  860. background-color: #6a5fac;
  861. border-color: transparent;
  862. }
  863. .btn-primary:active,
  864. .btn-primary.active,
  865. .open > .dropdown-toggle.btn-primary {
  866. color: #fff;
  867. background-color: #6a5fac;
  868. border-color: transparent;
  869. }
  870. .btn-primary:active:hover,
  871. .btn-primary.active:hover,
  872. .open > .dropdown-toggle.btn-primary:hover,
  873. .btn-primary:active:focus,
  874. .btn-primary.active:focus,
  875. .open > .dropdown-toggle.btn-primary:focus,
  876. .btn-primary:active.focus,
  877. .btn-primary.active.focus,
  878. .open > .dropdown-toggle.btn-primary.focus {
  879. color: #fff;
  880. background-color: #6a5fac;
  881. border-color: transparent;
  882. }
  883. .btn-primary:active,
  884. .btn-primary.active,
  885. .open > .dropdown-toggle.btn-primary {
  886. background-image: none;
  887. }
  888. .btn-primary.disabled,
  889. .btn-primary[disabled],
  890. fieldset[disabled] .btn-primary,
  891. .btn-primary.disabled:hover,
  892. .btn-primary[disabled]:hover,
  893. fieldset[disabled] .btn-primary:hover,
  894. .btn-primary.disabled:focus,
  895. .btn-primary[disabled]:focus,
  896. fieldset[disabled] .btn-primary:focus,
  897. .btn-primary.disabled.focus,
  898. .btn-primary[disabled].focus,
  899. fieldset[disabled] .btn-primary.focus,
  900. .btn-primary.disabled:active,
  901. .btn-primary[disabled]:active,
  902. fieldset[disabled] .btn-primary:active,
  903. .btn-primary.disabled.active,
  904. .btn-primary[disabled].active,
  905. fieldset[disabled] .btn-primary.active {
  906. background-color: #6a5fac;
  907. border-color: transparent;
  908. }
  909. .btn-primary .badge {
  910. color: #6a5fac;
  911. background-color: #fff;
  912. }
  913. .btn-eurotran {
  914. color: #fff;
  915. background-color: #ee7624;
  916. border-color: transparent;
  917. }
  918. .btn-eurotran:hover {
  919. color: #fff;
  920. background-color: #e67311;
  921. border-color: transparent;
  922. }
  923. .btn-success {
  924. color: #fff;
  925. background-color: #22BAA0;
  926. border-color: transparent;
  927. }
  928. .btn-success:focus,
  929. .btn-success.focus {
  930. color: #fff;
  931. background-color: #1DB198;
  932. border-color: transparent;
  933. }
  934. .btn-success:hover {
  935. color: #fff;
  936. background-color: #1DB198;
  937. border-color: transparent;
  938. }
  939. .btn-success:active,
  940. .btn-success.active,
  941. .open > .dropdown-toggle.btn-success {
  942. color: #fff;
  943. background-color: #1DB198;
  944. border-color: transparent;
  945. }
  946. .btn-success:active:hover,
  947. .btn-success.active:hover,
  948. .open > .dropdown-toggle.btn-success:hover,
  949. .btn-success:active:focus,
  950. .btn-success.active:focus,
  951. .open > .dropdown-toggle.btn-success:focus,
  952. .btn-success:active.focus,
  953. .btn-success.active.focus,
  954. .open > .dropdown-toggle.btn-success.focus {
  955. color: #fff;
  956. background-color: #1DB198;
  957. border-color: transparent;
  958. }
  959. .btn-success:active,
  960. .btn-success.active,
  961. .open > .dropdown-toggle.btn-success {
  962. background-image: none;
  963. }
  964. .btn-success.disabled,
  965. .btn-success[disabled],
  966. fieldset[disabled] .btn-success,
  967. .btn-success.disabled:hover,
  968. .btn-success[disabled]:hover,
  969. fieldset[disabled] .btn-success:hover,
  970. .btn-success.disabled:focus,
  971. .btn-success[disabled]:focus,
  972. fieldset[disabled] .btn-success:focus,
  973. .btn-success.disabled.focus,
  974. .btn-success[disabled].focus,
  975. fieldset[disabled] .btn-success.focus,
  976. .btn-success.disabled:active,
  977. .btn-success[disabled]:active,
  978. fieldset[disabled] .btn-success:active,
  979. .btn-success.disabled.active,
  980. .btn-success[disabled].active,
  981. fieldset[disabled] .btn-success.active {
  982. background-color: #1DB198;
  983. border-color: transparent;
  984. }
  985. .btn-success .badge {
  986. color: #1DB198;
  987. background-color: #fff;
  988. }
  989. .btn-info {
  990. color: #fff;
  991. background-color: #12AFCB;
  992. border-color: transparent;
  993. }
  994. .btn-info:focus,
  995. .btn-info.focus {
  996. color: #fff;
  997. background-color: #08A7C3;
  998. border-color: transparent;
  999. }
  1000. .btn-info:hover {
  1001. color: #fff;
  1002. background-color: #08A7C3;
  1003. border-color: transparent;
  1004. }
  1005. .btn-info:active,
  1006. .btn-info.active,
  1007. .open > .dropdown-toggle.btn-info {
  1008. color: #fff;
  1009. background-color: #08A7C3;
  1010. border-color: transparent;
  1011. }
  1012. .btn-info:active:hover,
  1013. .btn-info.active:hover,
  1014. .open > .dropdown-toggle.btn-info:hover,
  1015. .btn-info:active:focus,
  1016. .btn-info.active:focus,
  1017. .open > .dropdown-toggle.btn-info:focus,
  1018. .btn-info:active.focus,
  1019. .btn-info.active.focus,
  1020. .open > .dropdown-toggle.btn-info.focus {
  1021. color: #fff;
  1022. background-color: #08A7C3;
  1023. border-color: transparent;
  1024. }
  1025. .btn-info:active,
  1026. .btn-info.active,
  1027. .open > .dropdown-toggle.btn-info {
  1028. background-image: none;
  1029. }
  1030. .btn-info.disabled,
  1031. .btn-info[disabled],
  1032. fieldset[disabled] .btn-info,
  1033. .btn-info.disabled:hover,
  1034. .btn-info[disabled]:hover,
  1035. fieldset[disabled] .btn-info:hover,
  1036. .btn-info.disabled:focus,
  1037. .btn-info[disabled]:focus,
  1038. fieldset[disabled] .btn-info:focus,
  1039. .btn-info.disabled.focus,
  1040. .btn-info[disabled].focus,
  1041. fieldset[disabled] .btn-info.focus,
  1042. .btn-info.disabled:active,
  1043. .btn-info[disabled]:active,
  1044. fieldset[disabled] .btn-info:active,
  1045. .btn-info.disabled.active,
  1046. .btn-info[disabled].active,
  1047. fieldset[disabled] .btn-info.active {
  1048. background-color: #08A7C3;
  1049. border-color: transparent;
  1050. }
  1051. .btn-info .badge {
  1052. color: #12AFCB;
  1053. background-color: #fff;
  1054. }
  1055. .btn-warning {
  1056. color: #fff;
  1057. background-color: #f2ca4c;
  1058. border-color: transparent;
  1059. }
  1060. .btn-warning:focus,
  1061. .btn-warning.focus {
  1062. color: #fff;
  1063. background-color: #e8bf40;
  1064. border-color: transparent;
  1065. }
  1066. .btn-warning:hover {
  1067. color: #fff;
  1068. background-color: #e8bf40;
  1069. border-color: transparent;
  1070. }
  1071. .btn-warning:active,
  1072. .btn-warning.active,
  1073. .open > .dropdown-toggle.btn-warning {
  1074. color: #fff;
  1075. background-color: #e8bf40;
  1076. border-color: transparent;
  1077. }
  1078. .btn-warning:active:hover,
  1079. .btn-warning.active:hover,
  1080. .open > .dropdown-toggle.btn-warning:hover,
  1081. .btn-warning:active:focus,
  1082. .btn-warning.active:focus,
  1083. .open > .dropdown-toggle.btn-warning:focus,
  1084. .btn-warning:active.focus,
  1085. .btn-warning.active.focus,
  1086. .open > .dropdown-toggle.btn-warning.focus {
  1087. color: #fff;
  1088. background-color: #e8bf40;
  1089. border-color: transparent;
  1090. }
  1091. .btn-warning:active,
  1092. .btn-warning.active,
  1093. .open > .dropdown-toggle.btn-warning {
  1094. background-image: none;
  1095. }
  1096. .btn-warning.disabled,
  1097. .btn-warning[disabled],
  1098. fieldset[disabled] .btn-warning,
  1099. .btn-warning.disabled:hover,
  1100. .btn-warning[disabled]:hover,
  1101. fieldset[disabled] .btn-warning:hover,
  1102. .btn-warning.disabled:focus,
  1103. .btn-warning[disabled]:focus,
  1104. fieldset[disabled] .btn-warning:focus,
  1105. .btn-warning.disabled.focus,
  1106. .btn-warning[disabled].focus,
  1107. fieldset[disabled] .btn-warning.focus,
  1108. .btn-warning.disabled:active,
  1109. .btn-warning[disabled]:active,
  1110. fieldset[disabled] .btn-warning:active,
  1111. .btn-warning.disabled.active,
  1112. .btn-warning[disabled].active,
  1113. fieldset[disabled] .btn-warning.active {
  1114. background-color: #e8bf40;
  1115. border-color: transparent;
  1116. }
  1117. .btn-warning .badge {
  1118. color: #f2ca4c;
  1119. background-color: #fff;
  1120. }
  1121. .btn-danger {
  1122. color: #fff;
  1123. background-color: #ff0000;
  1124. border-color: transparent;
  1125. }
  1126. .btn-danger:focus,
  1127. .btn-danger.focus {
  1128. color: #fff;
  1129. background-color: #e14444;
  1130. border-color: transparent;
  1131. }
  1132. .btn-danger:hover {
  1133. color: #fff;
  1134. background-color: #d80f0f;
  1135. border-color: transparent;
  1136. }
  1137. .btn-danger:active,
  1138. .btn-danger.active,
  1139. .open > .dropdown-toggle.btn-danger {
  1140. color: #fff;
  1141. background-color: #e14444;
  1142. border-color: transparent;
  1143. }
  1144. .btn-danger:active:hover,
  1145. .btn-danger.active:hover,
  1146. .open > .dropdown-toggle.btn-danger:hover,
  1147. .btn-danger:active:focus,
  1148. .btn-danger.active:focus,
  1149. .open > .dropdown-toggle.btn-danger:focus,
  1150. .btn-danger:active.focus,
  1151. .btn-danger.active.focus,
  1152. .open > .dropdown-toggle.btn-danger.focus {
  1153. color: #fff;
  1154. background-color: #e14444;
  1155. border-color: transparent;
  1156. }
  1157. .btn-danger:active,
  1158. .btn-danger.active,
  1159. .open > .dropdown-toggle.btn-danger {
  1160. background-image: none;
  1161. }
  1162. .btn-danger.disabled,
  1163. .btn-danger[disabled],
  1164. fieldset[disabled] .btn-danger,
  1165. .btn-danger.disabled:hover,
  1166. .btn-danger[disabled]:hover,
  1167. fieldset[disabled] .btn-danger:hover,
  1168. .btn-danger.disabled:focus,
  1169. .btn-danger[disabled]:focus,
  1170. fieldset[disabled] .btn-danger:focus,
  1171. .btn-danger.disabled.focus,
  1172. .btn-danger[disabled].focus,
  1173. fieldset[disabled] .btn-danger.focus,
  1174. .btn-danger.disabled:active,
  1175. .btn-danger[disabled]:active,
  1176. fieldset[disabled] .btn-danger:active,
  1177. .btn-danger.disabled.active,
  1178. .btn-danger[disabled].active,
  1179. fieldset[disabled] .btn-danger.active {
  1180. background-color: #999;
  1181. border-color: transparent;
  1182. }
  1183. .btn-danger .badge {
  1184. color: #f25656;
  1185. background-color: #fff;
  1186. }
  1187. .btn-facebook {
  1188. background: #627AAC;
  1189. color: #fff;
  1190. }
  1191. .btn-facebook:hover,
  1192. .btn-facebook:focus,
  1193. .btn-facebook:active {
  1194. background: #3B5998;
  1195. color: #fff;
  1196. }
  1197. .btn-twitter {
  1198. background: #33BBF3;
  1199. color: #fff;
  1200. }
  1201. .btn-twitter:hover,
  1202. .btn-twitter:focus,
  1203. .btn-twitter:active {
  1204. background: #00ABF0;
  1205. color: #fff;
  1206. }
  1207. .btn-google {
  1208. background: #E0745B;
  1209. color: #fff;
  1210. }
  1211. .btn-google:hover,
  1212. .btn-google:focus,
  1213. .btn-google:active {
  1214. background: #D95232;
  1215. color: #fff;
  1216. }
  1217. .btn-youtube {
  1218. background: #D6464B;
  1219. color: #fff;
  1220. }
  1221. .btn-youtube:hover,
  1222. .btn-youtube:focus,
  1223. .btn-youtube:active {
  1224. background: #CC181E;
  1225. color: #fff;
  1226. }
  1227. .btn-vimeo {
  1228. background: #69C8FF;
  1229. color: #fff;
  1230. }
  1231. .btn-vimeo:hover,
  1232. .btn-vimeo:focus,
  1233. .btn-vimeo:active {
  1234. background: #44BBFF;
  1235. color: #fff;
  1236. }
  1237. .btn-dribbble {
  1238. background: #E094B7;
  1239. color: #fff;
  1240. }
  1241. .btn-dribbble:hover,
  1242. .btn-dribbble:focus,
  1243. .btn-dribbble:active {
  1244. background: #D97AA5;
  1245. color: #fff;
  1246. }
  1247. .btn-github {
  1248. background: #848484;
  1249. color: #fff;
  1250. }
  1251. .btn-github:hover,
  1252. .btn-github:focus,
  1253. .btn-github:active {
  1254. background: #666666;
  1255. color: #fff;
  1256. }
  1257. .btn-instagram {
  1258. background: #658EAF;
  1259. color: #fff;
  1260. }
  1261. .btn-instagram:hover,
  1262. .btn-instagram:focus,
  1263. .btn-instagram:active {
  1264. background: #3F729B;
  1265. color: #fff;
  1266. }
  1267. .btn-pinterest {
  1268. background: #BE464B;
  1269. color: #fff;
  1270. }
  1271. .btn-pinterest:hover,
  1272. .btn-pinterest:focus,
  1273. .btn-pinterest:active {
  1274. background: #AE181F;
  1275. color: #fff;
  1276. }
  1277. .btn-vk {
  1278. background: #7D9BBB;
  1279. color: #fff;
  1280. }
  1281. .btn-vk:hover,
  1282. .btn-vk:focus,
  1283. .btn-vk:active {
  1284. background: #5D83AA;
  1285. color: #fff;
  1286. }
  1287. .btn-rss {
  1288. background: #F19958;
  1289. color: #fff;
  1290. }
  1291. .btn-rss:hover,
  1292. .btn-rss:focus,
  1293. .btn-rss:active {
  1294. background: #EE802F;
  1295. color: #fff;
  1296. }
  1297. .btn-flickr {
  1298. background: #3395C4;
  1299. color: #fff;
  1300. }
  1301. .btn-flickr:hover,
  1302. .btn-flickr:focus,
  1303. .btn-flickr:active {
  1304. background: #007BB6;
  1305. color: #fff;
  1306. }
  1307. /* Box Shadow */
  1308. .bs-n {
  1309. -webkit-box-shadow: none;
  1310. -moz-box-shadow: none;
  1311. box-shadow: none;
  1312. }
  1313. .bs-dark {
  1314. -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .6);
  1315. -moz-box-shadow: 0 0 3px rgba(0, 0, 0, .6);
  1316. box-shadow: 0 0 3px rgba(0, 0, 0, .6);
  1317. }
  1318. .bs-light {
  1319. -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  1320. -moz-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  1321. box-shadow: 0 0 3px rgba(0, 0, 0, .3);
  1322. }
  1323. .bs-t {
  1324. -webkit-box-shadow: 0 -1px 1px rgba(0, 0, 0, .05);
  1325. -moz-box-shadow: 0 -1px 1px rgba(0, 0, 0, .05);
  1326. box-shadow: 0 -1px 1px rgba(0, 0, 0, .05);
  1327. }
  1328. .bs-r {
  1329. -webkit-box-shadow: 1px 0 1px rgba(0, 0, 0, .05);
  1330. -moz-box-shadow: 1px 0 1px rgba(0, 0, 0, .05);
  1331. box-shadow: 1px 0 1px rgba(0, 0, 0, .05);
  1332. }
  1333. .bs-b {
  1334. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  1335. -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  1336. box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  1337. }
  1338. .bs-l {
  1339. -webkit-box-shadow: -1px 0 1px rgba(0, 0, 0, .05);
  1340. -moz-box-shadow: -1px 0 1px rgba(0, 0, 0, .05);
  1341. box-shadow: -1px 0 1px rgba(0, 0, 0, .05);
  1342. }
  1343. /* Width & Height */
  1344. .full-height {
  1345. height: 100% !important;
  1346. }
  1347. .full-width {
  1348. width: 100% !important;
  1349. }
  1350. .w-xxs {
  1351. width: 50px;
  1352. }
  1353. .w-xs {
  1354. width: 90px;
  1355. }
  1356. .w-sm {
  1357. width: 140px;
  1358. }
  1359. .w {
  1360. width: 200px;
  1361. }
  1362. .w-md {
  1363. width: 240px;
  1364. }
  1365. .w-lg {
  1366. width: 280px;
  1367. }
  1368. .w-xl {
  1369. width: 330px;
  1370. }
  1371. .w-xxl {
  1372. width: 370px;
  1373. }
  1374. .w-auto {
  1375. width: auto;
  1376. }
  1377. .h-auto {
  1378. height: auto;
  1379. }
  1380. /* Tooltip */
  1381. .tooltip-inner {
  1382. border-radius: 0;
  1383. }
  1384. /* Panel */
  1385. .panel {
  1386. -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  1387. -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  1388. box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  1389. border: 0 !important;
  1390. margin-bottom: 25px;
  1391. border-radius: 0;
  1392. }
  1393. @media (min-width: 768px) {
  1394. .panel > .row > div:first-child {
  1395. padding-left: 15px;
  1396. padding-right: 0;
  1397. }
  1398. .panel > .row > div:last-child {
  1399. padding-left: 0;
  1400. padding-right: 15px;
  1401. }
  1402. }
  1403. .panel .panel-heading {
  1404. padding: 10px 15px;
  1405. overflow: hidden;
  1406. border-top-left-radius: 0;
  1407. border-top-right-radius: 0;
  1408. border: 0 !important;
  1409. /*height: 55px;*/
  1410. font-size: 14px;
  1411. font-weight: 600;
  1412. }
  1413. .panel .panel-heading .panel-title {
  1414. font-size: 14px;
  1415. float: left;
  1416. margin: 0px;
  1417. padding: 0px;
  1418. font-weight: 600;
  1419. }
  1420. .panel .panel-heading .panel-title small {
  1421. font-size: 80%;
  1422. }
  1423. .panel .panel-heading .panel-control {
  1424. float: right;
  1425. height: auto;
  1426. }
  1427. .panel .panel-heading .panel-control a {
  1428. text-decoration: none;
  1429. color: #ccc;
  1430. margin-left: 5px;
  1431. font-size: 14px;
  1432. float: left;
  1433. }
  1434. .panel .panel-heading .panel-control a:hover {
  1435. color: #a2a2a2;
  1436. }
  1437. .panel .panel-body {
  1438. position: relative;
  1439. /*padding: 10px;*/
  1440. border-bottom-left-radius: 0;
  1441. border-bottom-right-radius: 0;
  1442. }
  1443. .panel .panel-heading + .panel-body {
  1444. padding: 0 20px 20px 20px;
  1445. }
  1446. .panel-primary .panel-heading {
  1447. background: #7a6fbe;
  1448. color: #fff;
  1449. }
  1450. .panel-primary .panel-heading .panel-control a {
  1451. color: #fff;
  1452. }
  1453. .panel-primary .panel-heading .panel-control a:hover {
  1454. color: #f1f1f1;
  1455. }
  1456. .panel-success .panel-heading {
  1457. background: #22BAA0;
  1458. color: #fff;
  1459. }
  1460. .panel-success .panel-heading .panel-control a {
  1461. color: #fff;
  1462. }
  1463. .panel-success .panel-heading .panel-control a:hover {
  1464. color: #f1f1f1;
  1465. }
  1466. .panel-info .panel-heading {
  1467. background: #12AFCB;
  1468. color: #fff;
  1469. }
  1470. .panel-info .panel-heading .panel-control a {
  1471. color: #fff;
  1472. }
  1473. .panel-info .panel-heading .panel-control a:hover {
  1474. color: #f1f1f1;
  1475. }
  1476. .panel-warning .panel-heading {
  1477. background: #f6d433;
  1478. color: #fff;
  1479. }
  1480. .panel-warning .panel-heading .panel-control a {
  1481. color: #fff;
  1482. }
  1483. .panel-warning .panel-heading .panel-control a:hover {
  1484. color: #f1f1f1;
  1485. }
  1486. .panel-danger .panel-heading {
  1487. background: #f25656;
  1488. color: #fff;
  1489. }
  1490. .panel-danger .panel-heading .panel-control a {
  1491. color: #fff;
  1492. }
  1493. .panel-danger .panel-heading .panel-control a:hover {
  1494. color: #f1f1f1;
  1495. }
  1496. .panel-transparent {
  1497. background: transparent;
  1498. -webkit-box-shadow: none;
  1499. -moz-box-shadow: none;
  1500. box-shadow: none;
  1501. }
  1502. .panel-transparent .panel-heading .panel-control a {
  1503. color: #ccc;
  1504. }
  1505. .panel-transparent .panel-heading .panel-control a:hover {
  1506. color: #a2a2a2;
  1507. }
  1508. .panel-white {
  1509. background: #fff;
  1510. }
  1511. .panel-white .panel-heading .panel-control a {
  1512. color: #ccc;
  1513. }
  1514. .panel-white .panel-heading .panel-control a:hover {
  1515. color: #a2a2a2;
  1516. }
  1517. .panel-purple {
  1518. background: #7a6fbe;
  1519. }
  1520. .panel-purple .panel-heading {
  1521. color: #fff;
  1522. }
  1523. .panel-purple .panel-body {
  1524. color: #fff;
  1525. }
  1526. .panel-purple .panel-heading .panel-control a {
  1527. color: #fff;
  1528. }
  1529. .panel-purple .panel-heading .panel-control a:hover {
  1530. color: #f1f1f1;
  1531. }
  1532. .panel-gray {
  1533. background: #e5e5e5;
  1534. }
  1535. .panel-green .panel-heading {
  1536. color: #fff;
  1537. }
  1538. .panel-green .panel-body {
  1539. color: #fff;
  1540. }
  1541. .panel-green .panel-body label {
  1542. color: #333;
  1543. }
  1544. .panel-green .panel-heading .panel-control a {
  1545. color: #fff;
  1546. }
  1547. .panel-green .panel-heading .panel-control a:hover {
  1548. color: #f1f1f1;
  1549. }
  1550. .panel-green {
  1551. background: #22BAA0;
  1552. }
  1553. .panel-green .panel-heading {
  1554. color: #fff;
  1555. }
  1556. .panel-green .panel-body {
  1557. color: #fff;
  1558. }
  1559. .panel-green .panel-heading .panel-control a {
  1560. color: #fff;
  1561. }
  1562. .panel-green .panel-heading .panel-control a:hover {
  1563. color: #f1f1f1;
  1564. }
  1565. .panel-blue {
  1566. background: #12AFCB;
  1567. }
  1568. .panel-blue .panel-heading {
  1569. color: #fff;
  1570. }
  1571. .panel-blue .panel-body {
  1572. color: #fff;
  1573. }
  1574. .panel-blue .panel-heading .panel-control a {
  1575. color: #fff;
  1576. }
  1577. .panel-blue .panel-heading .panel-control a:hover {
  1578. color: #f1f1f1;
  1579. }
  1580. .panel-yellow {
  1581. background: #f6d433;
  1582. }
  1583. .panel-yellow .panel-heading {
  1584. color: #fff;
  1585. }
  1586. .panel-yellow .panel-body {
  1587. color: #fff;
  1588. }
  1589. .panel-yellow .panel-heading .panel-control a {
  1590. color: #fff;
  1591. }
  1592. .panel-yellow .panel-heading .panel-control a:hover {
  1593. color: #f1f1f1;
  1594. }
  1595. .panel-red {
  1596. background: #f25656;
  1597. }
  1598. .panel-red .panel-heading {
  1599. color: #fff;
  1600. }
  1601. .panel-red .panel-body {
  1602. color: #fff;
  1603. }
  1604. .panel-red .panel-heading .panel-control a {
  1605. color: #fff;
  1606. }
  1607. .panel-red .panel-heading .panel-control a:hover {
  1608. color: #f1f1f1;
  1609. }
  1610. .panel-default .panel-heading {
  1611. background: #e8e8e8;
  1612. border-color: #e8e8e8;
  1613. }
  1614. .panel-default .panel-heading .panel-control a {
  1615. color: #bbb;
  1616. }
  1617. .panel-default .panel-heading .panel-control a:hover {
  1618. color: #a2a2a2;
  1619. }
  1620. .panel-placeholder {
  1621. border: 2px dashed #ddd;
  1622. margin-bottom: 20px;
  1623. }
  1624. /* Wells */
  1625. .well {
  1626. border-radius: 0;
  1627. -webkit-box-shadow: none;
  1628. -moz-box-shadow: none;
  1629. box-shadow: none;
  1630. background-color: #F6F6F6;
  1631. border: 0;
  1632. }
  1633. /* Modals */
  1634. .modal {
  1635. z-index: 9999;
  1636. }
  1637. .modal-content {
  1638. -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  1639. -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  1640. box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  1641. border: 0;
  1642. border-radius: 0;
  1643. }
  1644. .modal-header {
  1645. padding: 20px 20px 20px 20px;
  1646. overflow: hidden;
  1647. border-top-left-radius: 0;
  1648. border-top-right-radius: 0;
  1649. border: 0 !important;
  1650. height: 55px;
  1651. font-size: 14px;
  1652. font-weight: 600;
  1653. }
  1654. .modal-body {
  1655. position: relative;
  1656. padding: 20px;
  1657. border-bottom-left-radius: 0;
  1658. border-bottom-right-radius: 0;
  1659. }
  1660. .modal-footer {
  1661. position: relative;
  1662. padding: 20px;
  1663. border-bottom-left-radius: 0;
  1664. border-bottom-right-radius: 0;
  1665. border: 0;
  1666. }
  1667. .modal-header + .modal-body {
  1668. padding: 0 20px 0 20px;
  1669. }
  1670. .modal-body + .modal-footer {
  1671. padding: 0 20px 20px 20px;
  1672. }
  1673. .modal-open {
  1674. overflow-y: auto !important;
  1675. }
  1676. .modal-open {
  1677. padding: 0 !important;
  1678. }
  1679. .modal-backdrop {
  1680. z-index: 999;
  1681. }
  1682. /* Pagination */
  1683. .pagination > li > a {
  1684. color: #5B5B5B;
  1685. }
  1686. .pagination > .active > a,
  1687. .pagination > .active > span,
  1688. .pagination > .active > a:hover,
  1689. .pagination > .active > span:hover,
  1690. .pagination > .active > a:focus,
  1691. .pagination > .active > span:focus {
  1692. background: #22BAA0;
  1693. border-color: #22BAA0;
  1694. }
  1695. /* Progress Bars */
  1696. .progress {
  1697. border-radius: 2px;
  1698. }
  1699. .progress-squared {
  1700. border-radius: 0;
  1701. }
  1702. .progress-xs {
  1703. height: 5px;
  1704. }
  1705. .progress-sm {
  1706. height: 10px;
  1707. }
  1708. .progress-md {
  1709. height: 15px;
  1710. }
  1711. .progress-lg {
  1712. height: 25px;
  1713. }
  1714. .progress-bar {
  1715. background-color: #7a6fbe;
  1716. }
  1717. .progress-bar-success {
  1718. background-color: #22BAA0;
  1719. }
  1720. .progress-bar-info {
  1721. background-color: #12AFCB;
  1722. }
  1723. .progress-bar-warning {
  1724. background-color: #f6d433;
  1725. }
  1726. .progress-bar-danger {
  1727. background-color: #f25656;
  1728. }
  1729. /* Tabs */
  1730. .tab-content {
  1731. padding: 5px;
  1732. background: #fff;
  1733. }
  1734. .nav-tabs > li > a {
  1735. border-radius: 0 !important;
  1736. color: #777;
  1737. border-bottom: 1px solid #DDDDDD;
  1738. }
  1739. .nav-tabs > li > a:hover {
  1740. background: #f1f1f1;
  1741. }
  1742. .nav-tabs > li.active > a,
  1743. .nav-tabs > li.active > a:hover,
  1744. .nav-tabs > li.active > a:focus {
  1745. color: #555;
  1746. cursor: default;
  1747. background-color: #fff;
  1748. border-bottom-color: #fff;
  1749. }
  1750. .nav-pills > li > a {
  1751. color: #fff;
  1752. border-radius: 0 !important;
  1753. }
  1754. .nav-pills > li.active > a,
  1755. .nav-pills > li.active > a:hover,
  1756. .nav-pills > li.active > a:focus {
  1757. color: #fff;
  1758. background-color: #7a6fbe;
  1759. }
  1760. .tabs-below > .nav-tabs,
  1761. .tabs-right > .nav-tabs,
  1762. .tabs-left > .nav-tabs {
  1763. border-bottom: 0;
  1764. }
  1765. .tab-content > .tab-pane,
  1766. .pill-content > .pill-pane {
  1767. display: none;
  1768. }
  1769. .tab-content > .active,
  1770. .pill-content > .active {
  1771. display: block;
  1772. }
  1773. .tabs-below > .nav-tabs {
  1774. border-top: 1px solid #ddd;
  1775. }
  1776. .tabs-below > .nav-tabs > li {
  1777. margin-top: -1px;
  1778. margin-bottom: 0;
  1779. }
  1780. .tabs-below > .nav-tabs > li > a {
  1781. -webkit-border-radius: 0;
  1782. -moz-border-radius: 0;
  1783. border-radius: 0;
  1784. }
  1785. .tabs-below > .nav-tabs > li > a:hover,
  1786. .tabs-below > .nav-tabs > li > a:focus {
  1787. border-top-color: #ddd;
  1788. border-bottom-color: transparent;
  1789. }
  1790. .tabs-below > .nav-tabs > .active > a,
  1791. .tabs-below > .nav-tabs > .active > a:hover,
  1792. .tabs-below > .nav-tabs > .active > a:focus {
  1793. border-color: #fff #ddd #ddd #ddd;
  1794. }
  1795. .tabs-left > .nav-tabs > li,
  1796. .tabs-right > .nav-tabs > li {
  1797. float: none;
  1798. }
  1799. .tabs-left > .nav-tabs > li > a,
  1800. .tabs-right > .nav-tabs > li > a {
  1801. min-width: 74px;
  1802. margin-right: 0;
  1803. margin-bottom: 3px;
  1804. border-bottom: 0;
  1805. }
  1806. .tabs-left > .nav-tabs {
  1807. float: left;
  1808. margin-right: 19px;
  1809. border-right: 1px solid #ddd;
  1810. }
  1811. .tabs-left > .nav-tabs > li > a {
  1812. margin-right: -1px;
  1813. -webkit-border-radius: 0;
  1814. -moz-border-radius: 0;
  1815. border-radius: 0;
  1816. }
  1817. .tabs-left > .nav-tabs > li > a:hover,
  1818. .tabs-left > .nav-tabs > li > a:focus {
  1819. border-color: #eeeeee #dddddd #eeeeee #eeeeee;
  1820. }
  1821. .tabs-left > .nav-tabs .active > a,
  1822. .tabs-left > .nav-tabs .active > a:hover,
  1823. .tabs-left > .nav-tabs .active > a:focus {
  1824. border-color: #ddd transparent #ddd #ddd;
  1825. border-right-color: #ffffff;
  1826. border-bottom: 1px solid #DDDDDD;
  1827. }
  1828. .tabs-right > .nav-tabs {
  1829. float: right;
  1830. margin-left: 19px;
  1831. border-left: 1px solid #ddd;
  1832. }
  1833. .tabs-right > .nav-tabs > li > a {
  1834. margin-left: -1px;
  1835. -webkit-border-radius: 0;
  1836. -moz-border-radius: 0;
  1837. border-radius: 0;
  1838. }
  1839. .tabs-right > .nav-tabs > li:hover,
  1840. .tabs-right > .nav-tabs > li:focus {
  1841. border-color: #F25656 #eeeeee #eeeeee #dddddd;
  1842. }
  1843. .tabs-right > .nav-tabs .active > a,
  1844. .tabs-right > .nav-tabs .active > a:hover,
  1845. .tabs-right > .nav-tabs .active > a:focus {
  1846. border-color: #ddd #ddd #ddd transparent;
  1847. border-left-color: #ffffff;
  1848. border-bottom: 1px solid #DDDDDD;
  1849. }
  1850. /* Accordions */
  1851. .panel-group .panel-heading .panel-title > a {
  1852. font-size: 10px;
  1853. }
  1854. .panel-group .panel-heading {
  1855. font-size: 14px;
  1856. }
  1857. .panel-group .panel-heading .panel-title > a {
  1858. text-decoration: none;
  1859. }
  1860. .panel-group .panel-heading {
  1861. border-bottom: 0 !important;
  1862. }
  1863. .panel > .panel-heading + .panel-collapse > .panel-body {
  1864. border-top-color: transparent;
  1865. }
  1866. .panel-group .panel-heading .panel-title {
  1867. position: relative;
  1868. width: 100%;
  1869. }
  1870. /* jsTree */
  1871. .jstree-default .jstree-clicked {
  1872. background: #f1f1f1;
  1873. border-radius: 0;
  1874. box-shadow: inset 0 0 1px #999;
  1875. }
  1876. .jstree-default li a:hover {
  1877. background: #f1f1f1;
  1878. border-radius: 0;
  1879. box-shadow: inset 0 0 1px #999;
  1880. }
  1881. /* Labels */
  1882. .label.label-default {
  1883. background: #fff;
  1884. border: 1px solid #e5e5e5;
  1885. }
  1886. .label.label-success {
  1887. background: #22BAA0;
  1888. }
  1889. .label.label-primary {
  1890. background: #7a6fbe;
  1891. }
  1892. .label.label-info {
  1893. background: #12AFCB;
  1894. }
  1895. .label.label-danger {
  1896. background: #f25656;
  1897. }
  1898. .label.label-warning {
  1899. background: #f6d433;
  1900. }
  1901. /* Forms */
  1902. label {
  1903. font-size: 1.2em;
  1904. /*font-weight: bold;*/
  1905. }
  1906. .controls label {
  1907. display: block;
  1908. }
  1909. .form-control {
  1910. background: #fff;
  1911. border-radius: 0;
  1912. border: 1px solid #dce1e4;
  1913. box-shadow: none !important;
  1914. font-size: 10px;
  1915. height: 34px;
  1916. padding: 2px 5px !important;
  1917. -webkit-transition: all 0.2s ease-in-out;
  1918. -moz-transition: all 0.2s ease-in-out;
  1919. -o-transition: all 0.2s ease-in-out;
  1920. transition: all 0.2s ease-in-out;
  1921. }
  1922. input[disabled] {
  1923. background: #f7f7f7;
  1924. border-color: #d2d7db;
  1925. }
  1926. .form-control:focus {
  1927. border: 1px solid #bdc5c9;
  1928. background: #fff;
  1929. }
  1930. .help-block {
  1931. margin-bottom: 5px;
  1932. }
  1933. .form-group.has-success .form-control,
  1934. .form-group.has-warning .form-control,
  1935. .form-group.has-error .form-control {
  1936. box-shadow: none;
  1937. }
  1938. .form-group.has-success .form-control:focus {
  1939. border: 1px solid #22BAA0;
  1940. background: #fff;
  1941. }
  1942. .form-group.has-warning .form-control:focus {
  1943. border: 1px solid #f6d433;
  1944. background: #fff;
  1945. }
  1946. .form-group.has-error .form-control:focus {
  1947. border: 1px solid #f25656;
  1948. background: #fff;
  1949. }
  1950. .form-group.has-success label {
  1951. color: #22BAA0;
  1952. }
  1953. .form-group.has-warning label {
  1954. color: #f6d433;
  1955. }
  1956. .form-group.has-error label {
  1957. color: #f25656;
  1958. }
  1959. label.error {
  1960. color: #F70C07;
  1961. font-weight: normal;
  1962. margin-top: 5px;
  1963. float: left;
  1964. font-size: 12px;
  1965. }
  1966. input.form-control.input-rounded {
  1967. border-radius: 30px;
  1968. }
  1969. .input-group .btn {
  1970. padding: 7px 12px;
  1971. }
  1972. ol.linenums {
  1973. margin: 0;
  1974. }
  1975. .select2-selection {
  1976. background: #fff !important;
  1977. border-radius: 0 !important;
  1978. border: 1px solid #dce1e4 !important;
  1979. box-shadow: none !important;
  1980. font-size: 13px !important;
  1981. padding: 6px 10px !important;
  1982. height: 34px !important;
  1983. -webkit-transition: all 0.2s ease-in-out !important;
  1984. -moz-transition: all 0.2s ease-in-out !important;
  1985. -o-transition: all 0.2s ease-in-out !important;
  1986. transition: all 0.2s ease-in-out !important;
  1987. }
  1988. .select2-dropdown {
  1989. background: #fff;
  1990. border-radius: 0;
  1991. border: 1px solid #dce1e4;
  1992. border-top: 0;
  1993. box-shadow: none !important;
  1994. font-size: 13px;
  1995. padding: 6px 10px !important;
  1996. -webkit-transition: all 0.2s ease-in-out;
  1997. -moz-transition: all 0.2s ease-in-out;
  1998. -o-transition: all 0.2s ease-in-out;
  1999. transition: all 0.2s ease-in-out;
  2000. z-index: 9999;
  2001. }
  2002. .select2-dropdown.select2-dropdown--above {
  2003. border: 1px solid #dce1e4;
  2004. border-bottom: 0;
  2005. }
  2006. .select2-selection--multiple .select2-selection__choice {
  2007. background: #f1f1f1 !important;
  2008. border-radius: 0 !important;
  2009. border: 1px solid #ccc !important;
  2010. }
  2011. .select2-container--default .select2-selection--single .select2-selection__rendered,
  2012. .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  2013. line-height: inherit !important;
  2014. padding: 0 !important;
  2015. }
  2016. .select2-container--default .select2-selection--multiple .select2-selection__choice,
  2017. .select2-container .select2-search--inline .select2-search__field {
  2018. margin-top: 0 !important;
  2019. }
  2020. .popover {
  2021. border: 1px solid #ebebeb;
  2022. border-radius: 0;
  2023. box-shadow: none;
  2024. padding: 0;
  2025. }
  2026. .popover-title {
  2027. border-radius: 0;
  2028. }
  2029. .popover.top > .arrow {
  2030. border-top-color: #ebebeb;
  2031. }
  2032. .popover.left > .arrow {
  2033. border-left-color: #ebebeb;
  2034. }
  2035. .popover.right > .arrow {
  2036. border-right-color: #ebebeb;
  2037. }
  2038. .popover.bottom > .arrow {
  2039. border-bottom-color: #ebebeb;
  2040. }
  2041. .input-group-lg > .form-control,
  2042. .input-group-lg > .input-group-addon,
  2043. .input-group-lg > .input-group-nn > .btn {
  2044. border-radius: 0 !important;
  2045. }
  2046. .bootstrap-tagsinput {
  2047. background: #fff;
  2048. border-radius: 0;
  2049. border: 1px solid #dce1e4;
  2050. box-shadow: none !important;
  2051. font-size: 13px;
  2052. padding: 6px 10px !important;
  2053. -webkit-transition: all .2s ease-in-out;
  2054. -moz-transition: all .2s ease-in-out;
  2055. -o-transition: all .2s ease-in-out;
  2056. transition: all .2s ease-in-out;
  2057. width: 100%;
  2058. margin: 0;
  2059. }
  2060. .bootstrap-tagsinput .tag {
  2061. line-height: inherit;
  2062. }
  2063. .input-group-addon {
  2064. border-radius: 0 !important;
  2065. background: #f1f1f1;
  2066. border-color: #dce1e4;
  2067. }
  2068. .bootstrap-timepicker-widget input {
  2069. background: #fff;
  2070. border-radius: 0;
  2071. border: 1px solid #dce1e4;
  2072. box-shadow: none !important;
  2073. font-size: 13px;
  2074. padding: 6px 10px !important;
  2075. -webkit-transition: all 0.2s ease-in-out;
  2076. -moz-transition: all 0.2s ease-in-out;
  2077. -o-transition: all 0.2s ease-in-out;
  2078. transition: all 0.2s ease-in-out;
  2079. width: 45px !important;
  2080. }
  2081. .bootstrap-timepicker-widget input:focus {
  2082. border: 1px solid #bdc5c9;
  2083. background: #fff;
  2084. }
  2085. .bootstrap-timepicker-widget .icon-chevron-up:before {
  2086. font-family: FontAwesome;
  2087. content: "\f106";
  2088. font-style: normal;
  2089. }
  2090. .bootstrap-timepicker-widget .icon-chevron-down:before {
  2091. font-family: FontAwesome;
  2092. content: "\f107";
  2093. font-style: normal;
  2094. }
  2095. .bootstrap-timepicker-widget a {
  2096. text-decoration: none;
  2097. }
  2098. /* Tables */
  2099. .table > tbody > tr > td,
  2100. .table > tbody > tr > th,
  2101. .table > tfoot > tr > td,
  2102. .table > tfoot > tr > th,
  2103. .table > thead > tr > td,
  2104. .table > thead > tr > th,
  2105. .table td {
  2106. padding: 5px 15px 5px 15px !important;
  2107. }
  2108. .dataTables_wrapper .dataTables_filter input,
  2109. .dataTables_wrapper .dataTables_length select {
  2110. background: #fff;
  2111. border-radius: 0;
  2112. border: 1px solid #dce1e4;
  2113. box-shadow: none !important;
  2114. font-size: 13px;
  2115. padding: 6px 10px !important;
  2116. -webkit-transition: all 0.2s ease-in-out;
  2117. -moz-transition: all 0.2s ease-in-out;
  2118. -o-transition: all 0.2s ease-in-out;
  2119. transition: all 0.2s ease-in-out;
  2120. }
  2121. .dataTables_wrapper .dataTables_filter input:focus {
  2122. border: 1px solid #bdc5c9;
  2123. background: #fff;
  2124. outline: 0;
  2125. }
  2126. .dataTables_wrapper .dataTables_length select:focus {
  2127. outline: 0;
  2128. }
  2129. .dataTables_wrapper .dataTables_paginate .paginate_button.current,
  2130. .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  2131. color: #5f5f5f !important;
  2132. border: 1px solid #ebebeb;
  2133. background: #f1f1f1 !important;
  2134. }
  2135. .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
  2136. .dataTables_wrapper .dataTables_paginate .paginate_button:active,
  2137. .dataTables_wrapper .dataTables_paginate .paginate_button:focus {
  2138. color: #5f5f5f !important;
  2139. border: 1px solid transparent;
  2140. background: #f7f7f7 !important;
  2141. box-shadow: none;
  2142. }
  2143. tr.group,
  2144. tr.group:hover {
  2145. background-color: #ddd !important;
  2146. }
  2147. /* Wysiwyg */
  2148. .note-editor {
  2149. border: 1px solid #DCE1E4;
  2150. border-radius: 0;
  2151. }
  2152. .note-dialog .note-modal-form {
  2153. margin: 0 15px 0 15px;
  2154. }
  2155. .note-editor .note-toolbar {
  2156. border-bottom: 0;
  2157. background: #fff;
  2158. padding: 10px;
  2159. }
  2160. .note-popover .popover .popover-content > .btn-group,
  2161. .note-toolbar > .btn-group {
  2162. margin-top: 0;
  2163. }
  2164. .note-editor .note-editable {
  2165. padding: 15px;
  2166. padding-top: 10px;
  2167. overflow: auto;
  2168. outline: 0;
  2169. }
  2170. .note-editor .note-statusbar {
  2171. background: transparent;
  2172. }
  2173. .note-editor .note-statusbar .note-resizebar {
  2174. border: 0;
  2175. }
  2176. /* Center */
  2177. .center {
  2178. margin: 0 auto;
  2179. float: none !important;
  2180. display: block;
  2181. }
  2182. /* Display */
  2183. .display-block {
  2184. display: block;
  2185. }
  2186. .display-inline {
  2187. display: inline-block;
  2188. }
  2189. /* Middle Box */
  2190. .box-middle {
  2191. position: absolute;
  2192. height: 400px;
  2193. width: 400px;
  2194. top: 50%;
  2195. left: 50%;
  2196. margin-left: -200px !important;
  2197. margin-top: -200px !important;
  2198. }
  2199. /* Date Picker */
  2200. .datepicker {
  2201. padding: 10px !important;
  2202. border: 1px solid #e0e0e0 !important;
  2203. border-radius: 0 !important;
  2204. -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1) !important;
  2205. -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1) !important;
  2206. box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1) !important;
  2207. }
  2208. .datepicker table tr td,
  2209. .datepicker table tr th,
  2210. .datepicker table tr td span {
  2211. border-radius: 0 !important;
  2212. }
  2213. .datepicker table tr td.active:hover,
  2214. .datepicker table tr td.active:hover:hover,
  2215. .datepicker table tr td.active.disabled:hover,
  2216. .datepicker table tr td.active.disabled:hover:hover,
  2217. .datepicker table tr td.active:focus,
  2218. .datepicker table tr td.active:hover:focus,
  2219. .datepicker table tr td.active.disabled:focus,
  2220. .datepicker table tr td.active.disabled:hover:focus,
  2221. .datepicker table tr td.active:active,
  2222. .datepicker table tr td.active:hover:active,
  2223. .datepicker table tr td.active.disabled:active,
  2224. .datepicker table tr td.active.disabled:hover:active,
  2225. .datepicker table tr td.active.active,
  2226. .datepicker table tr td.active:hover.active,
  2227. .datepicker table tr td.active.disabled.active,
  2228. .datepicker table tr td.active.disabled:hover.active,
  2229. .open .dropdown-toggle.datepicker table tr td.active,
  2230. .open .dropdown-toggle.datepicker table tr td.active:hover,
  2231. .open .dropdown-toggle.datepicker table tr td.active.disabled,
  2232. .open .dropdown-toggle.datepicker table tr td.active.disabled:hover {
  2233. color: #ffffff;
  2234. background-color: #7a6fbe;
  2235. border: 0;
  2236. }
  2237. .datepicker table tr td span.active:hover,
  2238. .datepicker table tr td span.active:hover:hover,
  2239. .datepicker table tr td span.active.disabled:hover,
  2240. .datepicker table tr td span.active.disabled:hover:hover,
  2241. .datepicker table tr td span.active:focus,
  2242. .datepicker table tr td span.active:hover:focus,
  2243. .datepicker table tr td span.active.disabled:focus,
  2244. .datepicker table tr td span.active.disabled:hover:focus,
  2245. .datepicker table tr td span.active:active,
  2246. .datepicker table tr td span.active:hover:active,
  2247. .datepicker table tr td span.active.disabled:active,
  2248. .datepicker table tr td span.active.disabled:hover:active,
  2249. .datepicker table tr td span.active.active,
  2250. .datepicker table tr td span.active:hover.active,
  2251. .datepicker table tr td span.active.disabled.active,
  2252. .datepicker table tr td span.active.disabled:hover.active,
  2253. .open .dropdown-toggle.datepicker table tr td span.active,
  2254. .open .dropdown-toggle.datepicker table tr td span.active:hover,
  2255. .open .dropdown-toggle.datepicker table tr td span.active.disabled,
  2256. .open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
  2257. color: #ffffff;
  2258. background-color: #7a6fbe;
  2259. border: 0;
  2260. }
  2261. /* Colorpicker */
  2262. .colorpicker {
  2263. padding: 10px !important;
  2264. }
  2265. /* Dropzone */
  2266. .dropzone {
  2267. border: 1px solid #f1f1f1;
  2268. border-radius: 0;
  2269. background: #f9f9f9;
  2270. }
  2271. /* Image Cropper */
  2272. .img-preview {
  2273. height: 150px;
  2274. width: 220px;
  2275. overflow: hidden;
  2276. text-align: center;
  2277. }
  2278. /* Sparkline Charts */
  2279. .jqstooltip {
  2280. box-sizing: content-box;
  2281. }
  2282. /* Flot Chart */
  2283. #flot1 {
  2284. width: 100%;
  2285. height: 250px;
  2286. }
  2287. #flot2 {
  2288. width: 100%;
  2289. height: 250px;
  2290. }
  2291. #flot3 {
  2292. margin: 0 auto;
  2293. width: 250px;
  2294. height: 250px;
  2295. }
  2296. #flot3 .pie-chart-legend {
  2297. padding: 5px;
  2298. }
  2299. #flot4 {
  2300. width: 100%;
  2301. height: 250px;
  2302. }
  2303. #flotTip {
  2304. border-radius: 0;
  2305. background: rgba(51, 51, 51, 0.8);
  2306. color: #fff;
  2307. padding: 5px;
  2308. font-size: 13px !important;
  2309. }
  2310. /* Vector Maps */
  2311. .jqvmap-zoomin,
  2312. .jqvmap-zoomout {
  2313. background-color: #7a6fbe;
  2314. color: #fff;
  2315. border: 1px solid transparent;
  2316. font-size: 13px;
  2317. border-radius: 0;
  2318. outline: none !important;
  2319. padding: 3px 5px;
  2320. height: auto;
  2321. width: auto;
  2322. margin-left: 7px;
  2323. }
  2324. .jqvmap-zoomin:hover,
  2325. .jqvmap-zoomin:focus,
  2326. .jqvmap-zoomin:active,
  2327. .jqvmap-zoomout:hover,
  2328. .jqvmap-zoomout:focus,
  2329. .jqvmap-zoomout:active {
  2330. background-color: #6a5fac;
  2331. border: 1px solid transparent;
  2332. }
  2333. /* Gritter Notifications */
  2334. .gritter-item {
  2335. font-size: 13px;
  2336. background: rgba(0, 0, 0, 0.7);
  2337. background-image: none !important;
  2338. padding: 15px;
  2339. }
  2340. .gritter-top {
  2341. background: none !important;
  2342. }
  2343. .gritter-bottom {
  2344. background: none !important;
  2345. }
  2346. .gritter-close {
  2347. top: 15px;
  2348. left: auto;
  2349. right: 5px;
  2350. }
  2351. .gritter-image {
  2352. width: 50px;
  2353. height: 50px;
  2354. border-radius: 100%;
  2355. }
  2356. .gritter-with-image {
  2357. padding-left: 10px;
  2358. }
  2359. /* Calendar */
  2360. .fc button {
  2361. height: auto;
  2362. padding: 6px 12px;
  2363. font-size: 13px;
  2364. }
  2365. .fc button::-moz-focus-inner {
  2366. margin: 0;
  2367. padding: 0;
  2368. }
  2369. .fc-state-default {
  2370. border: 1px solid;
  2371. }
  2372. .fc-state-default.fc-corner-left {
  2373. border-top-left-radius: 2px;
  2374. border-bottom-left-radius: 2px;
  2375. }
  2376. .fc-state-default.fc-corner-right {
  2377. border-top-right-radius: 2px;
  2378. border-bottom-right-radius: 2px;
  2379. }
  2380. .fc-state-default {
  2381. background-color: #fff;
  2382. background-image: none;
  2383. border-color: #e5e5e5;
  2384. color: #333;
  2385. text-shadow: 0;
  2386. box-shadow: 0;
  2387. outline: 0 !important;
  2388. }
  2389. .fc-state-hover,
  2390. .fc-state-down,
  2391. .fc-state-active,
  2392. .fc-state-disabled {
  2393. color: #333333;
  2394. background-color: #e6e6e6;
  2395. }
  2396. .fc-state-hover {
  2397. color: #333333;
  2398. text-decoration: none;
  2399. background-position: 0 -15px;
  2400. -webkit-transition: none;
  2401. -moz-transition: none;
  2402. -o-transition: none;
  2403. transition: none;
  2404. }
  2405. .fc-state-down,
  2406. .fc-state-active {
  2407. background-color: #f1f1f1;
  2408. border: 1px solid #e5e5e5;
  2409. box-shadow: 0 !important;
  2410. }
  2411. .fc-state-disabled {
  2412. cursor: default;
  2413. background-image: none;
  2414. opacity: 0.65;
  2415. filter: alpha(opacity=65);
  2416. box-shadow: none;
  2417. }
  2418. .fc-day-grid-event {
  2419. padding: 5px;
  2420. background: #22BAA0;
  2421. border: 0;
  2422. }
  2423. /* List Groups */
  2424. .list-group-item.active {
  2425. background: #f1f1f1;
  2426. border-color: #DDDDDD;
  2427. color: #333;
  2428. }
  2429. .list-group-item.active:hover {
  2430. background: #e7e7e7;
  2431. border-color: #DDDDDD;
  2432. color: #333;
  2433. }
  2434. /* Header */
  2435. .navbar {
  2436. border: none;
  2437. background: #FFF;
  2438. padding: 0px;
  2439. height: 60px;
  2440. margin: 0px;
  2441. z-index: 999;
  2442. border-radius: 0px;
  2443. border: none;
  2444. margin: auto;
  2445. position: relative;
  2446. -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  2447. -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  2448. box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  2449. }
  2450. .page-header-fixed .navbar {
  2451. position: fixed;
  2452. right: 0;
  2453. left: 0;
  2454. }
  2455. @media (min-width: 768px) {
  2456. .page-content.container .navbar {
  2457. width: 750px;
  2458. }
  2459. }
  2460. @media (min-width: 992px) {
  2461. .page-content.container .navbar {
  2462. width: 970px;
  2463. }
  2464. }
  2465. @media (min-width: 1200px) {
  2466. .page-content.container .navbar {
  2467. width: 1170px;
  2468. }
  2469. }
  2470. .topmenu-outer {
  2471. /*height: 60px;*/
  2472. background: #fff;
  2473. margin-left: 160px;
  2474. }
  2475. .small-sidebar .topmenu-outer {
  2476. margin-left: 65px;
  2477. }
  2478. .pace .pace-progress {
  2479. background: #22BAA0;
  2480. }
  2481. .pace .pace-progress-inner {
  2482. box-shadow: 0 0 10px #22BAA0, 0 0 5px #22BAA0;
  2483. }
  2484. .pace .pace-activity {
  2485. border-top-color: #22BAA0;
  2486. border-left-color: #22BAA0;
  2487. margin-top: 60px;
  2488. }
  2489. /* logo */
  2490. .navbar .logo-box {
  2491. position: relative;
  2492. width: 200px;
  2493. height: 50px;
  2494. float: left;
  2495. display: table;
  2496. }
  2497. .navbar .logo-box .logo-text {
  2498. font-size: 20px;
  2499. font-weight: bold;
  2500. line-height: 60px;
  2501. padding: 0 15px 0 15px;
  2502. vertical-align: middle;
  2503. display: table-cell;
  2504. text-align: center;
  2505. }
  2506. .navbar .logo-box a:hover,
  2507. .navbar .logo-box a:focus {
  2508. text-decoration: none;
  2509. }
  2510. .navbar .logo-box a {
  2511. margin: 0 auto;
  2512. }
  2513. .small-sidebar .navbar .logo-box {
  2514. width: 65px;
  2515. }
  2516. /* Top Menu */
  2517. .navbar-nav.navbar-right {
  2518. margin-right: 0;
  2519. }
  2520. .top-menu .navbar-nav > li {
  2521. height: 49px;
  2522. }
  2523. .top-menu .navbar-nav > li > a {
  2524. display: block;
  2525. padding: 20px 18px;
  2526. color: #5f5f5f;
  2527. border: none;
  2528. position: relative;
  2529. line-height: 20px;
  2530. }
  2531. .top-menu .nav > li > a:hover,
  2532. .top-menu .nav > li > a:focus,
  2533. .top-menu .nav > li > a:active,
  2534. .top-menu .nav .open > a,
  2535. .top-menu .nav .open > a:hover,
  2536. .top-menu .nav .open > a:focus {
  2537. background: transparent;
  2538. }
  2539. .top-menu .nav .open > a,
  2540. .top-menu .nav .open > a:hover,
  2541. .top-menu .nav .open > a:focus {
  2542. background: transparent;
  2543. border-color: none;
  2544. }
  2545. .top-menu .navbar-nav > li > a > i {
  2546. font-size: 14px;
  2547. }
  2548. .top-menu .navbar-nav > li > a > .badge {
  2549. font-family: "Open Sans", sans-serif;
  2550. position: absolute;
  2551. top: 1px;
  2552. right: 7px;
  2553. padding: 3px 6px;
  2554. font-size: 11px;
  2555. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  2556. }
  2557. .top-menu .navbar-nav > li > a > .user-name {
  2558. padding: 0 10px 0 0;
  2559. line-height: 20px;
  2560. }
  2561. .top-menu .navbar-nav > li > a > .user-name {
  2562. padding: 0 10px 0 0;
  2563. line-height: 20px;
  2564. }
  2565. @media (max-width: 991px) {
  2566. .top-menu .navbar-nav > li > a > .user-name {
  2567. display: none;
  2568. }
  2569. }
  2570. .top-menu .navbar-nav > li > a > .user-name > i {
  2571. margin-left: 5px;
  2572. }
  2573. .avatar {
  2574. padding: 0px;
  2575. margin: -19px 0 -15px 0;
  2576. position: relative;
  2577. display: inline-block;
  2578. }
  2579. /* Dropdowns */
  2580. .dropdown-menu {
  2581. position: absolute;
  2582. top: 100%;
  2583. z-index: 1000;
  2584. display: none;
  2585. float: left;
  2586. list-style: none;
  2587. text-shadow: none;
  2588. padding: 0px;
  2589. margin: 10px 0px 0px 0px;
  2590. background-color: #fffff;
  2591. -webkit-box-shadow: none;
  2592. -moz-box-shadow: none;
  2593. box-shadow: none;
  2594. border: 1px solid #d8dee4;
  2595. -webkit-border-radius: 0px;
  2596. -moz-border-radius: 0px;
  2597. -ms-border-radius: 0px;
  2598. -o-border-radius: 0px;
  2599. border-radius: 0px;
  2600. -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  2601. -moz-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  2602. box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
  2603. }
  2604. .dropdown-menu li {
  2605. font-size: 13px;
  2606. }
  2607. .dropdown-menu li a:hover {
  2608. background: #f7f7f7;
  2609. }
  2610. .navbar-nav > li > .dropdown-menu {
  2611. margin-top: 25px !important;
  2612. }
  2613. .dropdown-menu:before {
  2614. position: absolute;
  2615. top: -8px;
  2616. left: 9px;
  2617. right: auto;
  2618. display: inline-block !important;
  2619. border-right: 8px solid transparent;
  2620. border-bottom: 8px solid #d8dee4;
  2621. border-left: 8px solid transparent;
  2622. content: '';
  2623. }
  2624. .dropdown-menu:after {
  2625. position: absolute;
  2626. top: -7px;
  2627. left: 10px;
  2628. right: auto;
  2629. display: inline-block !important;
  2630. border-right: 7px solid transparent;
  2631. border-bottom: 7px solid #fff;
  2632. border-left: 7px solid transparent;
  2633. content: '';
  2634. }
  2635. .dropdown.dropup > .dropdown-menu:after,
  2636. .dropdown.dropup > .dropdown-menu:before,
  2637. .btn-group.dropup > .dropdown-menu:after,
  2638. .btn-group.dropup > .dropdown-menu:before,
  2639. .dropdown-toggle.dropup > .dropdown-menu:after,
  2640. .dropdown-toggle.dropup > .dropdown-menu:before {
  2641. display: none !important;
  2642. }
  2643. .navbar-left .dropdown-menu:before,
  2644. .dropdown-menu.dropdown-menu-left:before {
  2645. left: 16px;
  2646. right: auto;
  2647. }
  2648. .navbar-left .dropdown-menu:after,
  2649. .dropdown-menu.dropdown-menu-left:after {
  2650. left: 17px;
  2651. right: auto;
  2652. }
  2653. .navbar-right .dropdown-menu:before,
  2654. .dropdown-menu.dropdown-menu-right:before {
  2655. right: 16px;
  2656. left: auto;
  2657. }
  2658. .navbar-right .dropdown-menu:after,
  2659. .dropdown-menu.dropdown-menu-right:after {
  2660. right: 17px;
  2661. left: auto;
  2662. }
  2663. .dropdown-menu.title-caret:after {
  2664. border-bottom: 7px solid #fff;
  2665. }
  2666. .dropdown-menu > li.active > a:hover,
  2667. .dropdown-menu > li.active > a:focus,
  2668. .dropdown-menu > li.active > a:active,
  2669. .dropdown-menu > li.active > a,
  2670. .dropdown-menu > li.active > a:hover,
  2671. .dropdown-menu > li.active > a:focus {
  2672. background: #F7F7F7;
  2673. color: #333;
  2674. }
  2675. .drop-title {
  2676. display: block;
  2677. border-bottom: 1px solid #F3F3F3;
  2678. font-size: 14px;
  2679. background: #fff;
  2680. padding: 12px;
  2681. color: #6a6a6a;
  2682. margin: 0px;
  2683. }
  2684. .dropdown-menu li.drop-all a {
  2685. padding: 10px;
  2686. color: #707070;
  2687. background: #FFF;
  2688. font-size: 14px;
  2689. }
  2690. .dropdown-menu li.drop-all a:hover {
  2691. background: #f7f7f7;
  2692. }
  2693. .dropdown-sm {
  2694. width: 190px;
  2695. }
  2696. .dropdown-md {
  2697. width: 230px;
  2698. }
  2699. .dropdown-lg {
  2700. width: 280px;
  2701. }
  2702. .dropdown-tip {
  2703. width: 580px;
  2704. }
  2705. .dropdown-menu li a {
  2706. padding: 7px 10px 7px 10px;
  2707. /*color: #5f5f5f;*/
  2708. font-size: 13px;
  2709. text-decoration: none;
  2710. }
  2711. .dropdown-menu li a i {
  2712. margin-right: 10px;
  2713. }
  2714. .dropdown-menu li.no-link {
  2715. padding: 7px 10px 15px 10px;
  2716. }
  2717. .dropdown-menu li.li-group {
  2718. border-bottom: 1px solid #f1f1f1;
  2719. padding: 5px 0px 5px 0px;
  2720. }
  2721. .nav .open > a,
  2722. .nav .open > a:hover,
  2723. .nav .open > a:focus {
  2724. background-color: #eee;
  2725. border-color: transparent;
  2726. }
  2727. .navbar .dropdown .dropdown-menu {
  2728. display: block;
  2729. visibility: hidden;
  2730. opacity: 0;
  2731. transition: all 300ms ease;
  2732. -moz-transition: all 300ms ease;
  2733. -webkit-transition: all 300ms ease;
  2734. -o-transition: all 300ms ease;
  2735. -ms-transition: all 300ms ease;
  2736. margin-top: 40px !important;
  2737. }
  2738. .navbar .open .dropdown-menu {
  2739. visibility: visible;
  2740. opacity: 1;
  2741. margin-top: 0px !important;
  2742. }
  2743. .navbar .dropdown {
  2744. display: inline-block;
  2745. }
  2746. /* Messages */
  2747. .messages {
  2748. max-height: 300px;
  2749. }
  2750. .messages li a {
  2751. color: #bababa;
  2752. font-size: 13px;
  2753. padding-left: 15px;
  2754. text-decoration: none;
  2755. display: block;
  2756. padding-top: 8px;
  2757. padding-bottom: 8px;
  2758. position: relative;
  2759. }
  2760. .messages li a:hover {
  2761. background: #f7f7f7;
  2762. }
  2763. .messages li {
  2764. border-bottom: 1px solid #f3f3f3;
  2765. }
  2766. .messages li a .msg-img {
  2767. height: 100%;
  2768. display: block;
  2769. float: left;
  2770. position: relative;
  2771. }
  2772. .online {
  2773. position: absolute;
  2774. top: 1px;
  2775. right: 1px;
  2776. display: block;
  2777. width: 10px;
  2778. height: 10px;
  2779. border-radius: 50%;
  2780. border: 2px solid #FFF;
  2781. background: #ccc;
  2782. }
  2783. .online.on {
  2784. background: #44AEA1;
  2785. }
  2786. .online.off {
  2787. background: #f3565d;
  2788. }
  2789. .messages li a img {
  2790. width: 40px;
  2791. height: 40px;
  2792. }
  2793. .messages li a .msg-name {
  2794. display: block;
  2795. font-size: 14px;
  2796. color: #707070;
  2797. padding: 0 0 0 10px;
  2798. margin: 0px;
  2799. float: left;
  2800. }
  2801. .messages li a .msg-text {
  2802. display: block;
  2803. width: 210px;
  2804. text-overflow: ellipsis;
  2805. white-space: nowrap;
  2806. color: #a0a0a0;
  2807. margin: 0px;
  2808. float: left;
  2809. padding: 0 0 0 10px;
  2810. }
  2811. .messages li a .msg-time {
  2812. font-size: 11px;
  2813. display: block;
  2814. width: 210px;
  2815. padding: 0 4px 0 8px;
  2816. margin: 0px;
  2817. float: right;
  2818. }
  2819. /* Tasks */
  2820. .tasks {
  2821. max-height: 300px;
  2822. }
  2823. .tasks li a {
  2824. color: #bababa;
  2825. font-size: 13px;
  2826. padding-left: 15px;
  2827. text-decoration: none;
  2828. display: block;
  2829. padding-top: 10px;
  2830. padding-bottom: 10px;
  2831. position: relative;
  2832. }
  2833. .tasks li {
  2834. border-bottom: 1px solid #f3f3f3;
  2835. }
  2836. .tasks li a:hover {
  2837. background: #f7f7f7;
  2838. }
  2839. .task-icon.badge {
  2840. height: 25px;
  2841. width: 25px;
  2842. display: block;
  2843. float: left;
  2844. position: relative;
  2845. margin-right: 10px;
  2846. padding-top: 6px;
  2847. }
  2848. .task-icon i {
  2849. text-align: center;
  2850. font-size: 12px;
  2851. }
  2852. .tasks li a .task-details {
  2853. display: block;
  2854. font-size: 13px;
  2855. color: #868686;
  2856. padding: 3px 0 0 0;
  2857. margin: 0px;
  2858. float: left;
  2859. width: 375px;
  2860. }
  2861. .tasks li a .badge {
  2862. margin: 0px;
  2863. margin-right: 5px;
  2864. margin-top: 5px;
  2865. /*max-width: 85px;*/
  2866. }
  2867. /* Page Content */
  2868. .page-content {
  2869. -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  2870. -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  2871. box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  2872. background: #f7f8f8;
  2873. min-height: 100%;
  2874. }
  2875. .page-content.container {
  2876. padding-left: 0px;
  2877. padding-right: 0px;
  2878. }
  2879. /* Sidebar */
  2880. .page-sidebar {
  2881. width: 200px;
  2882. display: block;
  2883. z-index: 998;
  2884. float: left;
  2885. height: auto !important;
  2886. overflow: visible !important;
  2887. }
  2888. .sidebar .sidebar-title {
  2889. display: block;
  2890. margin: 0 0 10px 0;
  2891. }
  2892. .page-sidebar-fixed:not(.page-header-fixed) .logo-box {
  2893. position: fixed;
  2894. display: block;
  2895. }
  2896. .page-sidebar-fixed:not(.page-header-fixed) .topmenu-outer {
  2897. margin-left: 160px;
  2898. }
  2899. .small-sidebar.page-sidebar-fixed:not(.page-header-fixed) .topmenu-outer {
  2900. margin-left: 65px;
  2901. }
  2902. .page-header-fixed .page-sidebar {
  2903. padding-top: 60px;
  2904. }
  2905. .page-sidebar-fixed .sidebar {
  2906. position: fixed;
  2907. top: 0;
  2908. bottom: 0;
  2909. padding-top: 60px;
  2910. }
  2911. .page-sidebar-fixed .page-sidebar-inner {
  2912. height: 100%;
  2913. }
  2914. .page-sidebar .page-sidebar-inner {
  2915. height: 100% !important;
  2916. }
  2917. .small-sidebar .page-sidebar {
  2918. width: 65px;
  2919. }
  2920. .small-sidebar .page-sidebar-inner {
  2921. overflow: visible !important;
  2922. }
  2923. .sidebar-header {
  2924. overflow: hidden;
  2925. clear: both;
  2926. position: relative;
  2927. padding: 20px;
  2928. }
  2929. .sidebar-profile-image {
  2930. display: block;
  2931. }
  2932. .sidebar-profile {
  2933. overflow: hidden;
  2934. position: relative;
  2935. display: block;
  2936. }
  2937. .sidebar-profile a {
  2938. text-decoration: none;
  2939. }
  2940. .sidebar-profile img {
  2941. width: 60px;
  2942. display: block;
  2943. margin: 0 auto;
  2944. }
  2945. .sidebar-profile span {
  2946. color: #fff;
  2947. font-weight: 600;
  2948. display: block;
  2949. padding: 8px 0 0 0;
  2950. text-align: center;
  2951. }
  2952. .sidebar-profile span small {
  2953. color: #90999c;
  2954. padding: 5px 0;
  2955. }
  2956. .profile {
  2957. line-height: 60px;
  2958. margin-left: 5px;
  2959. font-size: 14px;
  2960. }
  2961. .small-sidebar .sidebar-header,
  2962. .page-horizontal-bar .sidebar-header {
  2963. display: none;
  2964. }
  2965. /* Horizontal Bar */
  2966. .horizontal-bar {
  2967. width: 100%;
  2968. display: block;
  2969. z-index: 9998;
  2970. float: none;
  2971. height: auto !important;
  2972. left: 0;
  2973. right: 0;
  2974. bottom: 0;
  2975. height: 74px;
  2976. }
  2977. @media (min-width: 768px) {
  2978. .page-sidebar-fixed.page-horizontal-bar .sidebar {
  2979. position: fixed;
  2980. top: 0;
  2981. bottom: auto;
  2982. padding-top: 60px;
  2983. }
  2984. }
  2985. .small-sidebar .horizontal-bar .slimScrollDiv {
  2986. overflow: visible !important;
  2987. }
  2988. .page-horizontal-bar.page-header-fixed .horizontal-bar {
  2989. padding-top: 60px;
  2990. }
  2991. .page-horizontal-bar.page-sidebar-fixed .navbar {
  2992. z-index: 9999;
  2993. }
  2994. @media (min-width: 768px) {
  2995. .page-horizontal-bar.page-sidebar-fixed .page-content.container .horizontal-bar {
  2996. width: 750px;
  2997. margin: 0 auto;
  2998. }
  2999. }
  3000. @media (min-width: 992px) {
  3001. .page-horizontal-bar.page-sidebar-fixed .page-content.container .horizontal-bar {
  3002. width: 970px;
  3003. margin: 0 auto;
  3004. }
  3005. }
  3006. @media (min-width: 1200px) {
  3007. .page-horizontal-bar.page-sidebar-fixed .page-content.container .horizontal-bar {
  3008. width: 1170px;
  3009. margin: 0 auto;
  3010. }
  3011. }
  3012. @media (max-width: 1200px) {
  3013. .horizontal-bar .accordion-menu > li > a > p {
  3014. display: none;
  3015. }
  3016. .compact-menu .horizontal-bar .accordion-menu > li > a > p {
  3017. display: none !important;
  3018. }
  3019. body:not(.small-sidebar) .horizontal-bar .accordion-menu > li > a > .menu-icon {
  3020. float: none !important;
  3021. margin: 0 !important;
  3022. }
  3023. .horizontal-bar .accordion-menu ul {
  3024. top: 50px !important;
  3025. }
  3026. }
  3027. .horizontal-bar .page-sidebar-inner {
  3028. overflow: visible !important;
  3029. }
  3030. .horizontal-bar .accordion-menu {
  3031. text-align: center;
  3032. font-size: 0;
  3033. width: 100% !important;
  3034. overflow: visible !important;
  3035. }
  3036. .horizontal-bar .accordion-menu li {
  3037. display: inline-block;
  3038. margin: 0px !important;
  3039. padding: 0px !important;
  3040. position: relative;
  3041. }
  3042. .small-sidebar.page-horizontal-bar .horizontal-bar .accordion-menu > li > a,
  3043. .horizontal-bar .accordion-menu > li > a {
  3044. padding: 16px !important;
  3045. }
  3046. .small-sidebar .horizontal-bar .accordion-menu li a span.menu-icon {
  3047. font-size: 15px;
  3048. }
  3049. .horizontal-bar .accordion-menu > li > a > p {
  3050. font-size: 13px;
  3051. }
  3052. .compact-menu .horizontal-bar .accordion-menu li a p {
  3053. display: inline;
  3054. }
  3055. .horizontal-bar .accordion-menu .sub-menu li a {
  3056. font-size: 13px;
  3057. padding: 10px;
  3058. padding-left: 15px;
  3059. padding-right: 15px;
  3060. }
  3061. .page-horizontal-bar.small-sidebar:not(.page-sidebar-fixed) .accordion-menu > li > a {
  3062. width: auto;
  3063. }
  3064. .horizontal-bar .accordion-menu > li > a > span.arrow:before {
  3065. display: none;
  3066. }
  3067. body:not(.small-sidebar) .horizontal-bar .menu.accordion-menu > li > a > .menu-icon {
  3068. font-size: 14px;
  3069. }
  3070. .small-sidebar.page-horizontal-bar .menu.accordion-menu > li > a > span.menu-icon {
  3071. margin: 0 !important;
  3072. }
  3073. .horizontal-bar .accordion-menu > li > ul {
  3074. left: 0 !important;
  3075. top: 74px;
  3076. width: 200px;
  3077. position: absolute;
  3078. }
  3079. .horizontal-bar .accordion-menu ul li {
  3080. display: block;
  3081. text-align: left;
  3082. }
  3083. .horizontal-bar .accordion-menu li.menu-title {
  3084. display: none;
  3085. }
  3086. .small-sidebar .horizontal-bar .accordion-menu > li > a > p {
  3087. display: none !important;
  3088. }
  3089. .small-sidebar .horizontal-bar .accordion-menu > li > ul {
  3090. top: 44px !important;
  3091. }
  3092. .small-sidebar.page-horizontal-bar.page-sidebar-fixed .page-inner {
  3093. padding-left: 0px;
  3094. }
  3095. .small-sidebar.page-sidebar-fixed.page-header-fixed.page-horizontal-bar .page-inner {
  3096. padding: 110px 0 50px 0;
  3097. }
  3098. .small-sidebar.page-sidebar-fixed.page-header-fixed .page-inner {
  3099. padding: 60px 0 50px 65px;
  3100. }
  3101. .small-sidebar.page-sidebar-fixed:not(.page-header-fixed) .page-inner {
  3102. padding: 0 0 50px 65px;
  3103. }
  3104. .small-sidebar.page-header-fixed.page-horizontal-bar:not(.page-sidebar-fixed) .page-inner {
  3105. padding: 0 0 50px 0;
  3106. }
  3107. .page-horizontal-bar:not(.page-sidebar-fixed) .checkout {
  3108. top: 0;
  3109. }
  3110. .page-horizontal-bar.page-sidebar-fixed:not(.compact-menu) .checkout {
  3111. top: 134px;
  3112. }
  3113. .page-horizontal-bar.page-sidebar-fixed.compact-menu .checkout {
  3114. top: 111px;
  3115. }
  3116. /* Search */
  3117. .search-form {
  3118. display: block;
  3119. width: 100%;
  3120. height: 60px;
  3121. z-index: 99999;
  3122. position: fixed;
  3123. background: #fff;
  3124. margin-top: -60px;
  3125. transition: all 0.3s ease;
  3126. -moz-transition: all 0.3s ease;
  3127. -webkit-transition: all 0.3s ease;
  3128. -o-transition: all 0.3s ease;
  3129. -ms-transition: all 0.3s ease;
  3130. }
  3131. .search-form .input-group {
  3132. height: 60px;
  3133. }
  3134. .search-form .input-group input {
  3135. color: #5f5f5f;
  3136. border: none;
  3137. box-shadow: none;
  3138. border-radius: 0px;
  3139. background: none;
  3140. height: 60px;
  3141. line-height: 60px;
  3142. font-size: 16px;
  3143. padding: 0 20px !important;
  3144. }
  3145. .search-form .input-group button,
  3146. .search-form .input-group button:hover,
  3147. .search-form .input-group button:focus {
  3148. background: none;
  3149. box-shadow: none;
  3150. border: none;
  3151. outline: none;
  3152. color: #5f5f5f;
  3153. font-size: 20px;
  3154. padding-left: 20px;
  3155. padding-right: 20px;
  3156. line-height: 46px;
  3157. }
  3158. /* Menu */
  3159. .menu li a .badge {
  3160. margin-left: 10px;
  3161. }
  3162. .menu.accordion-menu {
  3163. padding: 0px;
  3164. margin: 0px;
  3165. width: 190px;
  3166. color: white;
  3167. position: relative;
  3168. display: block;
  3169. }
  3170. .menu.accordion-menu a {
  3171. display: block;
  3172. padding: 15px;
  3173. padding-left: 18px;
  3174. padding-right: 18px;
  3175. background: transparent;
  3176. text-decoration: none;
  3177. font-size: 13px;
  3178. }
  3179. .menu.accordion-menu > li > a {
  3180. text-align: center;
  3181. }
  3182. body:not(.page-horizontal-bar):not(.small-sidebar) .menu.accordion-menu a {
  3183. text-align: center;
  3184. }
  3185. .menu.accordion-menu a p {
  3186. line-height: 1.42857143 !important;
  3187. margin: 0;
  3188. }
  3189. .menu.accordion-menu a span.menu-icon {
  3190. display: inline-block;
  3191. font-size: 20px;
  3192. margin-bottom: 10px;
  3193. }
  3194. .menu.accordion-menu li > a > .arrow:before {
  3195. width: 10px;
  3196. float: right;
  3197. display: block;
  3198. margin-top: -20px;
  3199. font-size: 16px;
  3200. font-family: FontAwesome;
  3201. height: auto;
  3202. content: "\f104";
  3203. font-weight: 300;
  3204. }
  3205. .menu.accordion-menu > li > a > .arrow:before {
  3206. margin-top: -39px;
  3207. }
  3208. .menu.accordion-menu li.open > a > .arrow:before {
  3209. -webkit-transform: rotate(-90deg);
  3210. -moz-transform: rotate(-90deg);
  3211. -o-transform: rotate(-90deg);
  3212. -ms-transform: rotate(-90deg);
  3213. transform: rotate(-90deg);
  3214. }
  3215. .menu.accordion-menu li {
  3216. list-style-type: none;
  3217. }
  3218. .menu.accordion-menu li a .badge {
  3219. float: right;
  3220. margin-top: 1px;
  3221. margin-right: 0px;
  3222. margin-left: 0px;
  3223. display: block;
  3224. }
  3225. .menu.accordion-menu ul {
  3226. z-index: 9999;
  3227. }
  3228. .menu.accordion-menu ul li a {
  3229. display: block;
  3230. padding: 10px;
  3231. background: transparent;
  3232. text-decoration: none;
  3233. font-size: 13px;
  3234. }
  3235. .menu.accordion-menu ul li ul {
  3236. padding: 2px 0 2px 0;
  3237. }
  3238. .compact-menu .menu.accordion-menu .sub-menu li a,
  3239. .hover-menu .menu.accordion-menu .sub-menu li a,
  3240. .page-horizontal-bar .menu.accordion-menu .sub-menu li a {
  3241. padding-left: 15px;
  3242. }
  3243. .compact-menu .menu.accordion-menu .sub-menu li .sub-menu li a,
  3244. .hover-menu .menu.accordion-menu .sub-menu li .sub-menu li a,
  3245. .page-horizontal-bar .menu.accordion-menu .sub-menu li .sub-menu li a {
  3246. padding-left: 26px;
  3247. }
  3248. .compact-menu .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li a,
  3249. .hover-menu .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li a,
  3250. .page-horizontal-bar .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li a {
  3251. padding-left: 31px;
  3252. }
  3253. .compact-menu .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li .sub-menu li a,
  3254. .hover-menu .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li .sub-menu li a,
  3255. .page-horizontal-bar .menu.accordion-menu .sub-menu li .sub-menu li .sub-menu li .sub-menu li a {
  3256. padding-left: 36px;
  3257. }
  3258. .menu ul {
  3259. padding: 10px;
  3260. z-index: 99;
  3261. }
  3262. .compact-menu:not(.small-sidebar) .menu.accordion-menu li a {
  3263. text-align: left !important;
  3264. }
  3265. .compact-menu:not(.page-horizontal-bar) .menu.accordion-menu > li > a > p {
  3266. display: inline !important;
  3267. }
  3268. .compact-menu .menu.accordion-menu a span.menu-icon {
  3269. display: inline-block !important;
  3270. font-size: 14px !important;
  3271. margin-bottom: 0 !important;
  3272. margin-right: 10px !important;
  3273. }
  3274. .compact-menu .menu.accordion-menu li a .arrow:before {
  3275. margin-top: -2px;
  3276. }
  3277. .page-horizontal-bar.compact-menu .menu.accordion-menu ul {
  3278. top: 50px;
  3279. }
  3280. .page-horizontal-bar.compact-menu.small-sidebar .menu.accordion-menu ul {
  3281. top: 46px !important;
  3282. }
  3283. .hover-menu:not(.page-horizontal-bar) .menu.accordion-menu > li > a > span.arrow {
  3284. display: none;
  3285. }
  3286. .hover-menu .menu.accordion-menu > li:hover > ul,
  3287. .hover-menu .menu.accordion-menu > li.open:hover > ul {
  3288. display: inline-block !important;
  3289. }
  3290. .hover-menu .accordion-menu li {
  3291. position: relative;
  3292. }
  3293. .hover-menu .accordion-menu > li > ul {
  3294. position: absolute;
  3295. left: 160px;
  3296. width: 200px;
  3297. }
  3298. .hover-menu:not(.page-horizontal-bar) .accordion-menu > li > ul {
  3299. position: absolute;
  3300. top: 0;
  3301. left: 160px;
  3302. width: 200px;
  3303. }
  3304. .hover-menu .sidebar,
  3305. .hover-menu .sidebar .page-sidebar-inner,
  3306. .hover-menu .sidebar .menu,
  3307. .hover-menu .sidebar .slimScrollDiv {
  3308. overflow: visible !important;
  3309. }
  3310. .hover-menu .accordion-menu ul li a {
  3311. text-align: left !important;
  3312. }
  3313. .compact-menu .accordion-menu li a p {
  3314. display: inline;
  3315. }
  3316. .hover-menu .sidebar .slimScrollBar,
  3317. .hover-menu .slimScrollBar {
  3318. display: none !important;
  3319. }
  3320. /* Small Menu */
  3321. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu {
  3322. width: 65px;
  3323. }
  3324. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .page-sidebar-inner {
  3325. overflow: hidden !important;
  3326. }
  3327. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover,
  3328. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu {
  3329. width: 160px !important;
  3330. }
  3331. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu > li > a {
  3332. padding: 15px;
  3333. text-align: center;
  3334. }
  3335. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu > li > a {
  3336. padding: 15px;
  3337. padding-left: 18px;
  3338. padding-right: 18px;
  3339. }
  3340. .compact-menu.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu > li > a {
  3341. text-align: left;
  3342. }
  3343. .compact-menu.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu > li > a > .menu-icon {
  3344. margin-right: 10px !important;
  3345. }
  3346. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu ul li a {
  3347. text-align: center;
  3348. }
  3349. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a .menu-icon {
  3350. float: none;
  3351. margin: 0 !important;
  3352. font-size: 14px;
  3353. }
  3354. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li a .menu-icon {
  3355. font-size: 20px;
  3356. }
  3357. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a p,
  3358. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a .arrow,
  3359. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li.menu-title,
  3360. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a .badge {
  3361. display: none !important;
  3362. }
  3363. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li a p {
  3364. margin: 0;
  3365. }
  3366. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .menu.accordion-menu li.open .sub-menu {
  3367. visibility: hidden;
  3368. height: 0 !important;
  3369. padding: 0;
  3370. }
  3371. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .sidebar-widget,
  3372. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .sidebar-header {
  3373. display: block !important;
  3374. }
  3375. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li a p,
  3376. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li.menu-title {
  3377. display: block !important;
  3378. }
  3379. .compact-menu.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li a p,
  3380. .compact-menu.small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li.menu-title {
  3381. display: inline !important;
  3382. }
  3383. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li.open .sub-menu {
  3384. visibility: visible;
  3385. height: auto !important;
  3386. padding: 10px;
  3387. }
  3388. .small-sidebar.page-sidebar-fixed:not(.page-horizontal-bar) .sidebar:hover .menu.accordion-menu li a .arrow {
  3389. display: block !important;
  3390. float: right;
  3391. }
  3392. .small-sidebar:not(.page-sidebar-fixed) .sidebar,
  3393. .small-sidebar:not(.page-sidebar-fixed) .sidebar > *,
  3394. .horizontal-bar,
  3395. .horizontal-bar > * {
  3396. overflow: visible !important;
  3397. }
  3398. .small-sidebar:not(.page-sidebar-fixed) .sidebar .slimScrollBar,
  3399. .horizontal-bar .slimScrollBar {
  3400. display: none !important;
  3401. }
  3402. .small-sidebar:not(.page-sidebar-fixed) .menu.accordion-menu {
  3403. width: auto;
  3404. oveflow: visible !important;
  3405. }
  3406. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu,
  3407. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu li {
  3408. padding: 0;
  3409. margin: 0;
  3410. }
  3411. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu li {
  3412. list-style: none;
  3413. position: relative;
  3414. width: auto;
  3415. }
  3416. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a {
  3417. text-decoration: none;
  3418. display: block;
  3419. }
  3420. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu > li > a {
  3421. padding: 15px 25px 15px 25px;
  3422. text-align: center;
  3423. position: relative;
  3424. width: 265px;
  3425. }
  3426. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a span.menu-icon {
  3427. font-size: 14px;
  3428. margin: 0 50px 0 0 !important;
  3429. float: left;
  3430. }
  3431. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a p {
  3432. margin: 0;
  3433. float: left;
  3434. }
  3435. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a .arrow:before {
  3436. width: 10px;
  3437. float: right;
  3438. margin-left: 15px;
  3439. margin-top: -2px;
  3440. display: inline;
  3441. font-size: 16px;
  3442. font-family: FontAwesome;
  3443. height: 18px;
  3444. content: "\f104";
  3445. font-weight: 300;
  3446. }
  3447. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu li:hover > a {
  3448. z-index: 999;
  3449. }
  3450. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu > li > ul {
  3451. position: absolute;
  3452. left: 65px;
  3453. top: 48px;
  3454. width: 200px;
  3455. }
  3456. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu ul li a {
  3457. display: block;
  3458. padding: 10px !important;
  3459. padding-left: 15px !important;
  3460. padding-right: 15px !important;
  3461. background: transparent;
  3462. font-size: 13px;
  3463. }
  3464. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu ul li span.menu-icon {
  3465. margin-right: 15px;
  3466. }
  3467. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu > li > a > span.arrow {
  3468. display: none;
  3469. }
  3470. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu li a p {
  3471. display: block;
  3472. text-align: left;
  3473. }
  3474. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu li.menu-title {
  3475. display: none;
  3476. }
  3477. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu > li:hover > ul,
  3478. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu > li.open:hover > ul {
  3479. display: inline-block !important;
  3480. }
  3481. .page-horizontal-bar .accordion-menu > li:hover > ul,
  3482. .page-horizontal-bar .accordion-menu > li.open:hover > ul {
  3483. display: inline-block !important;
  3484. }
  3485. .small-sidebar:not(.page-sidebar-fixed) .accordion-menu > li.open > ul {
  3486. display: none !important;
  3487. }
  3488. .page-horizontal-bar .accordion-menu > li.open > ul {
  3489. display: none !important;
  3490. }
  3491. /* Page Inner */
  3492. .page-inner {
  3493. padding: 0 5px 0 5px;
  3494. /*background: #F1F4F9;*/
  3495. background: #f9f9f9;
  3496. position: relative;
  3497. }
  3498. .page-header-fixed:not(.page-sidebar-fixed):not(.page-horizontal-bar) .page-inner {
  3499. padding: 60px 0 50px 0;
  3500. }
  3501. .page-sidebar-fixed.page-header-fixed .page-inner {
  3502. padding: 50px 0 50px 200px;
  3503. }
  3504. .page-horizontal-bar.page-sidebar-fixed.page-header-fixed .page-inner {
  3505. padding: 134px 0 50px 0;
  3506. }
  3507. .page-horizontal-bar.page-sidebar-fixed.page-header-fixed.compact-menu .page-inner {
  3508. padding: 111px 0 0 0;
  3509. }
  3510. .page-sidebar-fixed:not(.page-header-fixed) .page-inner {
  3511. padding: 0px 0 50px 160px;
  3512. }
  3513. .small-sidebar.page-sidebar-fixed.page-header-fixed .page-inner {
  3514. padding: 60px 0 50px 65px;
  3515. }
  3516. .small-sidebar.page-sidebar-fixed:not(.page-header-fixed) .page-inner {
  3517. padding: 0 0 50px 65px;
  3518. }
  3519. .small-sidebar.page-header-fixed:not(.page-sidebar-fixed) .page-inner {
  3520. padding: 60px 0 50px 0;
  3521. }
  3522. /* Page Title */
  3523. .page-title {
  3524. padding: 10px 20px 20px 20px;
  3525. background: #fbfbfb;
  3526. border-bottom: 1px solid #dee2e8;
  3527. }
  3528. .page-title h3 {
  3529. font-size: 24px;
  3530. font-weight: 300;
  3531. color: #74767d;
  3532. padding: 0px;
  3533. margin: 0 0 4px 0;
  3534. }
  3535. /* Page Settings */
  3536. .page-breadcrumb .breadcrumb {
  3537. float: left;
  3538. background: transparent;
  3539. padding: 0px;
  3540. margin-top: 30px;
  3541. }
  3542. .page-breadcrumb ol.breadcrumb {
  3543. margin: 0px;
  3544. }
  3545. .page-breadcrumb ol.breadcrumb li a {
  3546. font-size: 13px;
  3547. color: #060606;
  3548. }
  3549. .page-breadcrumb ol.breadcrumb li.active {
  3550. font-size: 13px;
  3551. color: #060606;
  3552. }
  3553. .page-breadcrumb ul {
  3554. margin: 0px;
  3555. }
  3556. .page-breadcrumb ul li {
  3557. float: left;
  3558. display: inline;
  3559. }
  3560. .page-breadcrumb ul li a {
  3561. font-size: 13px;
  3562. color: #060606;
  3563. }
  3564. /* Main Wrapper */
  3565. #main-wrapper {
  3566. /*margin: 20px;*/
  3567. padding: 0px;
  3568. }
  3569. /* Footer */
  3570. .page-footer {
  3571. /*background: #fff;*/
  3572. width: 100%;
  3573. display: block;
  3574. position: absolute;
  3575. bottom: 0;
  3576. padding-left: 25px;
  3577. padding-right: 25px;
  3578. padding-top: 19px;
  3579. padding-bottom: 19px;
  3580. }
  3581. /* Sidebar Pusher */
  3582. .sidebar-pusher {
  3583. position: absolute;
  3584. top: 50%;
  3585. -webkit-transform: translateY(-50%);
  3586. transform: translateY(-50%);
  3587. z-index: 9999;
  3588. display: none;
  3589. }
  3590. .push-sidebar {
  3591. display: inline-block !important;
  3592. padding: 20px 18px;
  3593. color: #5F5F5F;
  3594. border: none;
  3595. position: relative;
  3596. line-height: 20px;
  3597. float: left;
  3598. font-size: 17px;
  3599. text-decoration: none;
  3600. }
  3601. .push-sidebar:hover {
  3602. color: #5F5F5F;
  3603. }
  3604. /* Search Button */
  3605. .search-button {
  3606. position: absolute;
  3607. top: 50%;
  3608. -webkit-transform: translateY(-50%);
  3609. transform: translateY(-50%);
  3610. z-index: 9999;
  3611. display: none;
  3612. right: 0;
  3613. }
  3614. .search-button a {
  3615. display: inline-block !important;
  3616. padding: 20px 18px;
  3617. color: #5F5F5F;
  3618. border: none;
  3619. position: relative;
  3620. line-height: 20px;
  3621. float: right;
  3622. font-size: 17px;
  3623. text-decoration: none;
  3624. }
  3625. /* Icons */
  3626. /* FontAwesome */
  3627. .fontawesome-icon-list .fa-item {
  3628. padding: 10px 20px 10px 20px;
  3629. color: #333;
  3630. }
  3631. .fontawesome-icon-list .fa-item i {
  3632. margin-right: 5px;
  3633. }
  3634. .fontawesome-icon-list .fa-item:hover {
  3635. background: #f1f1f1;
  3636. }
  3637. .line-icons .line-icon-item {
  3638. padding: 10px 20px 10px 20px;
  3639. color: #333;
  3640. display: block;
  3641. }
  3642. .line-icons .line-icon-item:hover {
  3643. background: #f1f1f1;
  3644. }
  3645. .bs-glyphicons-list li span.glyphicon {
  3646. margin: 5px 0 10px 0;
  3647. float: none;
  3648. font-size: 24px;
  3649. }
  3650. .bs-glyphicons-list li span {
  3651. text-align: center;
  3652. display: block;
  3653. }
  3654. .bs-glyphicons-list li {
  3655. display: block;
  3656. float: left;
  3657. width: 25%;
  3658. height: 115px;
  3659. padding: 10px;
  3660. font-size: 10px;
  3661. line-height: 1.4;
  3662. text-align: center;
  3663. background-color: #f9f9f9;
  3664. border: 1px solid #fff;
  3665. list-style-type: none;
  3666. }
  3667. @media (min-width: 768px) {
  3668. .bs-glyphicons-list li {
  3669. width: 12.5%;
  3670. font-size: 13px;
  3671. }
  3672. }
  3673. @media (min-width: 768px) {
  3674. .bs-glyphicons-list li {
  3675. width: 12.5%;
  3676. font-size: 13px;
  3677. }
  3678. }
  3679. /* Calendar */
  3680. .calendar-event {
  3681. /*padding: 7px 10px;*/
  3682. color: #5B5B5B;
  3683. background: #FCF8E3;
  3684. margin-bottom: 5px;
  3685. overflow: hidden;
  3686. }
  3687. .calendar-event p {
  3688. float: left;
  3689. margin: 0;
  3690. }
  3691. .calendar-event .remove-calendar-event {
  3692. float: right;
  3693. color: #5B5B5B;
  3694. }
  3695. /* FAQ */
  3696. .faq-link:hover {
  3697. text-decoration: none;
  3698. }
  3699. .faq-popular {
  3700. padding: 0;
  3701. }
  3702. .faq-popular li a {
  3703. padding: 8px 10px;
  3704. font-size: 14px;
  3705. display: inline-block;
  3706. }
  3707. /* Todo */
  3708. .todo-nav {
  3709. margin-top: 10px;
  3710. }
  3711. .todo-list .todo-item {
  3712. padding: 10px;
  3713. margin: 5px 0;
  3714. border: 1px solid #e9e9e9;
  3715. background: #f9f9f9;
  3716. }
  3717. .todo-list {
  3718. margin: 10px 0;
  3719. }
  3720. .todo-list.only-active .todo-item.complete {
  3721. display: none;
  3722. }
  3723. .todo-list.only-active .todo-item:not(.complete) {
  3724. display: block;
  3725. }
  3726. .todo-list.only-complete .todo-item:not(.complete) {
  3727. display: none;
  3728. }
  3729. .todo-list.only-complete .todo-item.complete {
  3730. display: block;
  3731. }
  3732. .todo-list .todo-item.complete span {
  3733. text-decoration: line-through;
  3734. }
  3735. .remove-todo-item {
  3736. color: #ccc;
  3737. visibility: hidden;
  3738. }
  3739. .remove-todo-item:hover {
  3740. color: #5f5f5f;
  3741. }
  3742. .todo-item:hover .remove-todo-item {
  3743. visibility: visible;
  3744. }
  3745. #uniform-all-complete {
  3746. margin-left: 11px;
  3747. }
  3748. /* Dashboard */
  3749. .info-box .progress {
  3750. margin: 0;
  3751. }
  3752. .info-box .info-box-icon {
  3753. float: right;
  3754. }
  3755. .info-box .info-box-icon i {
  3756. font-size: 31px;
  3757. color: #B0B0B0;
  3758. }
  3759. .info-box .info-box-stats {
  3760. float: left;
  3761. margin-top: 5px;
  3762. }
  3763. .info-box .info-box-stats p {
  3764. font-size: 28px;
  3765. margin-bottom: 14px;
  3766. color: #374051;
  3767. font-weight: 300;
  3768. }
  3769. .info-box .info-box-stats span.info-box-title {
  3770. display: block;
  3771. font-size: 13px;
  3772. margin-bottom: 10px;
  3773. color: #B0B0B0;
  3774. }
  3775. .info-box .info-box-progress {
  3776. clear: both;
  3777. }
  3778. @media (min-width: 768px) {
  3779. .visitors-chart {
  3780. border-right: 1px solid #eee;
  3781. }
  3782. }
  3783. .stats-info ul {
  3784. margin: 0;
  3785. }
  3786. .stats-info ul li {
  3787. border-bottom: 1px solid #eee;
  3788. padding: 12px 0;
  3789. }
  3790. .stats-info ul li:last-child {
  3791. border-bottom: 0;
  3792. }
  3793. .stats-info ul li i {
  3794. margin-left: 5px;
  3795. }
  3796. #flotchart1 {
  3797. height: 340px;
  3798. width: 100%;
  3799. }
  3800. #flotchart2 {
  3801. height: 278px;
  3802. width: 100%;
  3803. }
  3804. #flotchart3 {
  3805. height: 200px;
  3806. width: 100%;
  3807. }
  3808. .server-load > .server-stat {
  3809. display: inline-block;
  3810. margin-right: 5px;
  3811. margin-bottom: 20px;
  3812. }
  3813. .server-load .server-stat span {
  3814. font-size: 11px;
  3815. margin-bottom: 3px;
  3816. }
  3817. .server-load .server-stat p {
  3818. font-weight: 600;
  3819. font-size: 16px;
  3820. margin-bottom: 3px;
  3821. }
  3822. .weather-current {
  3823. overflow: hidden;
  3824. }
  3825. .weather-current p {
  3826. font-size: 12px;
  3827. margin: 5px 0 0 0;
  3828. float: left;
  3829. color: #8e8e8e;
  3830. }
  3831. .weather-current p span {
  3832. font-size: 42px;
  3833. clear: both;
  3834. margin-top: 15px;
  3835. display: block;
  3836. color: #4E5E6A;
  3837. font-weight: 300;
  3838. }
  3839. .weather-current p span sup {
  3840. font-size: 25px;
  3841. }
  3842. .weather-current .weather-icon {
  3843. font-size: 40px;
  3844. display: block;
  3845. float: left;
  3846. margin: 15px 15px 0 0;
  3847. }
  3848. .weather-day {
  3849. margin: 0;
  3850. font-weight: 600;
  3851. text-align: right;
  3852. font-size: 22px;
  3853. }
  3854. .weather-day small {
  3855. font-size: 11px;
  3856. color: #8e8e8e;
  3857. margin: 0;
  3858. }
  3859. .weather-info {
  3860. width: 100%;
  3861. display: block;
  3862. overflow: hidden;
  3863. }
  3864. .weather-info li {
  3865. padding: 8px 0;
  3866. }
  3867. .weather-top {
  3868. border-bottom: 1px solid #f1f1f1;
  3869. overflow: hidden;
  3870. padding: 0 0 15px 0;
  3871. margin: 0 0 15px 0;
  3872. }
  3873. .weather-days {
  3874. margin: 15px 0 0 0;
  3875. padding: 15px 0 0 0;
  3876. border-top: 1px solid #f1f1f1;
  3877. }
  3878. .weather-days li span {
  3879. display: block;
  3880. text-align: center;
  3881. }
  3882. .weather-days li i {
  3883. display: block;
  3884. font-size: 22px;
  3885. text-align: center;
  3886. margin: 10px 0 10px 0;
  3887. }
  3888. @media (max-width: 768px) {
  3889. .weather-days li {
  3890. margin-bottom: 15px;
  3891. }
  3892. }
  3893. .live-tile {
  3894. width: 100%;
  3895. margin: 0;
  3896. height: 155.5px;
  3897. }
  3898. .twitter-box {
  3899. background: #5EA9DD;
  3900. }
  3901. .facebook-box {
  3902. background: #3B5998;
  3903. }
  3904. .twitter-box i,
  3905. .facebook-box i {
  3906. position: absolute;
  3907. right: 10px;
  3908. bottom: 0;
  3909. font-size: 50px;
  3910. color: rgba(255, 255, 255, 0.3);
  3911. }
  3912. .tile-date {
  3913. display: block;
  3914. margin-top: 15px;
  3915. color: rgba(255, 255, 255, 0.7);
  3916. }
  3917. .inbox-widget {
  3918. height: 341px !important;
  3919. }
  3920. .inbox-widget a {
  3921. display: block;
  3922. overflow: hidden;
  3923. text-decoration: none;
  3924. }
  3925. .inbox-widget .inbox-item {
  3926. padding: 10px 0;
  3927. border-bottom: 1px solid #f1f1f1;
  3928. overflow: hidden;
  3929. position: relative;
  3930. }
  3931. .inbox-widget a:last-child > .inbox-item {
  3932. border-bottom: 0;
  3933. }
  3934. .inbox-widget .inbox-item .inbox-item-img {
  3935. float: left;
  3936. width: 40px;
  3937. display: block;
  3938. margin-right: 15px;
  3939. }
  3940. .inbox-widget .inbox-item img {
  3941. width: 40px;
  3942. }
  3943. .inbox-widget .inbox-item .inbox-item-author {
  3944. color: #333;
  3945. font-weight: 600;
  3946. display: block;
  3947. margin: 0 0 0 0;
  3948. }
  3949. .inbox-widget .inbox-item .inbox-item-text {
  3950. color: #a0a0a0;
  3951. display: block;
  3952. margin: 0;
  3953. font-size: 11px;
  3954. }
  3955. .inbox-widget .inbox-item .inbox-item-date {
  3956. position: absolute;
  3957. top: 2px;
  3958. right: 7px;
  3959. color: #a9a9a9;
  3960. font-size: 11px;
  3961. }
  3962. #rickshaw-chart {
  3963. margin: 0 -22px -25px -20px;
  3964. height: 100px;
  3965. }
  3966. .project-stats .progress {
  3967. margin: 3px 0 0 0;
  3968. }
  3969. /* Profile */
  3970. .profile-cover {
  3971. background: url('../images/profile-cover.png');
  3972. background-size: cover;
  3973. width: 100%;
  3974. height: 300px;
  3975. position: relative;
  3976. }
  3977. .profile-image {
  3978. position: absolute;
  3979. margin: 200px 20px 20px 20px;
  3980. }
  3981. .profile-image img {
  3982. display: block;
  3983. margin: 0 auto;
  3984. width: 150px;
  3985. border-radius: 50%;
  3986. -webkit-box-shadow: 0 0 0 5px #fff;
  3987. -moz-box-shadow: 0 0 0 5px #fff;
  3988. -o-box-shadow: 0 0 0 5px #fff;
  3989. box-shadow: 0 0 0 5px #fff;
  3990. }
  3991. .profile-info {
  3992. position: absolute;
  3993. bottom: 10px;
  3994. right: 20px;
  3995. padding: 0;
  3996. margin: 0;
  3997. text-align: right;
  3998. }
  3999. .profile-info-value {
  4000. color: #fff;
  4001. display: inline-block;
  4002. margin-left: 40px;
  4003. }
  4004. .user-profile {
  4005. margin-top: 60px;
  4006. }
  4007. .team .team-member {
  4008. display: block;
  4009. overflow: hidden;
  4010. margin-bottom: 10px;
  4011. float: left;
  4012. position: relative;
  4013. }
  4014. .team .team-member .online {
  4015. top: 5px;
  4016. left: 40px;
  4017. }
  4018. .team .team-member img {
  4019. width: 40px;
  4020. float: left;
  4021. border-radius: 50%;
  4022. margin: 0 5px 0 5px;
  4023. }
  4024. .team .more-members a {
  4025. display: block;
  4026. text-align: center;
  4027. }
  4028. .profile-timeline ul li .timeline-item-header {
  4029. width: 100%;
  4030. overflow: hidden;
  4031. }
  4032. .profile-timeline ul li .timeline-item-header img {
  4033. width: 40px;
  4034. height: 40px;
  4035. float: left;
  4036. margin-right: 10px;
  4037. border-radius: 50%;
  4038. }
  4039. .profile-timeline ul li .timeline-item-header p {
  4040. margin: 0;
  4041. color: #000;
  4042. font-weight: bold;
  4043. }
  4044. .profile-timeline ul li .timeline-item-header p span {
  4045. margin: 0;
  4046. color: #8E8E8E;
  4047. font-weight: normal;
  4048. }
  4049. .profile-timeline ul li .timeline-item-header small {
  4050. margin: 0;
  4051. color: #8E8E8E;
  4052. }
  4053. .profile-timeline ul li .timeline-item-post {
  4054. padding: 20px 0 0 0;
  4055. position: relative;
  4056. }
  4057. .profile-timeline ul li .timeline-item-post > img {
  4058. width: 100%;
  4059. }
  4060. .timeline-options {
  4061. overflow: hidden;
  4062. margin-top: 20px;
  4063. margin-bottom: 20px;
  4064. border-bottom: 1px solid #f1f1f1;
  4065. padding: 10px 0 10px 0;
  4066. }
  4067. .timeline-options a {
  4068. display: block;
  4069. margin-right: 20px;
  4070. float: left;
  4071. color: #333;
  4072. text-decoration: none;
  4073. }
  4074. .timeline-options a i {
  4075. margin-right: 3px;
  4076. }
  4077. .timeline-options a:hover {
  4078. color: #22BAA0;
  4079. }
  4080. .timeline-comment {
  4081. overflow: hidden;
  4082. margin-bottom: 10px;
  4083. width: 100%;
  4084. border-bottom: 1px solid #f1f1f1;
  4085. padding-bottom: 5px;
  4086. }
  4087. .timeline-comment .timeline-comment-header {
  4088. overflow: hidden;
  4089. }
  4090. .timeline-comment .timeline-comment-header img {
  4091. width: 30px;
  4092. border-radius: 50%;
  4093. float: left;
  4094. margin-right: 10px;
  4095. }
  4096. .timeline-comment .timeline-comment-header p {
  4097. color: #000;
  4098. float: left;
  4099. margin: 0;
  4100. font-weight: bold;
  4101. }
  4102. .timeline-comment .timeline-comment-header small {
  4103. font-weight: normal;
  4104. color: #8E8E8E;
  4105. }
  4106. .timeline-comment p.timeline-comment-text {
  4107. display: block;
  4108. color: #333;
  4109. font-size: 12px;
  4110. padding-left: 40px;
  4111. }
  4112. .post-options {
  4113. overflow: hidden;
  4114. margin-top: 15px;
  4115. margin-left: 15px;
  4116. }
  4117. .post-options a {
  4118. display: block;
  4119. margin-top: 5px;
  4120. margin-right: 20px;
  4121. float: left;
  4122. color: #333;
  4123. text-decoration: none;
  4124. font-size: 17px;
  4125. }
  4126. .post-options a:hover {
  4127. color: #22BAA0;
  4128. }
  4129. #gallery .mix {
  4130. display: none;
  4131. }
  4132. /* Mailbox */
  4133. .mailbox-nav li a {
  4134. display: block;
  4135. padding: 10px 7px;
  4136. color: #999;
  4137. text-decoration: none;
  4138. border-bottom: 1px solid #E7EAEC;
  4139. overflow: hidden;
  4140. }
  4141. .mailbox-nav li a:hover,
  4142. .mailbox-nav .active a {
  4143. color: #333;
  4144. }
  4145. .mailbox-nav li a i {
  4146. margin-right: 5px;
  4147. }
  4148. .mailbox-content {
  4149. background: #fff;
  4150. padding: 15px;
  4151. }
  4152. .mailbox-header {
  4153. margin-bottom: 20px;
  4154. }
  4155. .mailbox-header h2 {
  4156. margin: 3px 0;
  4157. }
  4158. .mailbox-content {
  4159. overflow: hidden;
  4160. }
  4161. .mailbox-content table thead tr th {
  4162. border-bottom: 1px solid #ddd;
  4163. }
  4164. .mailbox-content table tbody tr td {
  4165. cursor: pointer;
  4166. }
  4167. .mailbox-content table tbody tr:hover {
  4168. background: #FAFAFA;
  4169. }
  4170. .mailbox-content table tbody tr.read {
  4171. background: #F9F9F9;
  4172. color: #7F7F7F;
  4173. }
  4174. .mailbox-content table tbody tr.checked {
  4175. background: #FFFFCC;
  4176. }
  4177. .mail-hidden-options {
  4178. display: none;
  4179. }
  4180. .message-header {
  4181. overflow: hidden;
  4182. border-bottom: 1px solid #f1f1f1;
  4183. padding: 5px 0 15px 0;
  4184. margin-bottom: 10px;
  4185. }
  4186. .message-header h3 {
  4187. float: left;
  4188. font-size: 18px;
  4189. margin: 0;
  4190. color: #666;
  4191. }
  4192. .message-header p {
  4193. float: right;
  4194. margin: 0;
  4195. }
  4196. .message-sender {
  4197. overflow: hidden;
  4198. border-bottom: 1px solid #f1f1f1;
  4199. padding: 0 0 5px 0;
  4200. margin-bottom: 10px;
  4201. }
  4202. .message-sender img {
  4203. width: 30px;
  4204. border-radius: 50%;
  4205. display: inline-block;
  4206. margin-right: 5px;
  4207. }
  4208. .message-sender p {
  4209. display: inline-block;
  4210. }
  4211. .message-sender span {
  4212. color: #7F7F7F;
  4213. }
  4214. .message-content {
  4215. overflow: hidden;
  4216. border-bottom: 1px solid #f1f1f1;
  4217. padding: 0 0 5px 0;
  4218. margin-bottom: 10px;
  4219. }
  4220. .message-attachments {
  4221. overflow: hidden;
  4222. border-bottom: 1px solid #f1f1f1;
  4223. padding: 0 0 15px 0;
  4224. margin-bottom: 10px;
  4225. }
  4226. .message-attachment {
  4227. position: relative;
  4228. width: 200px;
  4229. float: left;
  4230. margin-right: 10px;
  4231. border: 1px solid #f1f1f1;
  4232. }
  4233. .message-attachment a {
  4234. text-decoration: none;
  4235. }
  4236. .message-attachment img {
  4237. display: block;
  4238. width: 100%;
  4239. }
  4240. .attachment-info {
  4241. background: #f9f9f9;
  4242. padding: 10px;
  4243. }
  4244. .attachment-info p {
  4245. margin: 0;
  4246. }
  4247. .attachment-info span {
  4248. font-size: 11px;
  4249. color: #aaa;
  4250. }
  4251. .compose-message {
  4252. overflow: hidden;
  4253. padding: 0 0 10px 0;
  4254. }
  4255. .compose-options {
  4256. width: 100%;
  4257. overflow: hidden;
  4258. display: block;
  4259. }
  4260. /* Shop */
  4261. /* Notifications */
  4262. .box-notifications {
  4263. max-height: 312px;
  4264. overflow-y: scroll;
  4265. }
  4266. .box-notifications ul li {
  4267. display: block;
  4268. padding: 11px 0 11px 0;
  4269. border-bottom: 1px solid #f1f1f1;
  4270. }
  4271. .box-notifications ul li:first-child {
  4272. padding: 0 0 11px 0;
  4273. }
  4274. .box-notifications ul li:last-child {
  4275. padding: 11px 0 0 0;
  4276. border-bottom: 0;
  4277. }
  4278. .box-notifications ul li p {
  4279. margin: 0;
  4280. }
  4281. /* Extra */
  4282. .page-error #main-wrapper {
  4283. margin: 5%;
  4284. }
  4285. .page-error .details {
  4286. margin-bottom: 20px;
  4287. text-align: center;
  4288. }
  4289. .coming-soon .page-inner {
  4290. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/coming-soon.jpg');
  4291. background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/coming-soon.jpg');
  4292. background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/coming-soon.jpg');
  4293. background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/coming-soon.jpg');
  4294. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url('../images/coming-soon.jpg');
  4295. background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/coming-soon.jpg');
  4296. background-size: cover;
  4297. }
  4298. /* Login */
  4299. .page-login #main-wrapper,
  4300. .page-register #main-wrapper,
  4301. .page-forgot #main-wrapper,
  4302. .page-lock-screen #main-wrapper {
  4303. margin: 5%;
  4304. }
  4305. .login-box {
  4306. margin: auto;
  4307. max-width: 400px;
  4308. }
  4309. .login-box .logo-name {
  4310. display: block;
  4311. font-size: 22px;
  4312. font-weight: bold;
  4313. text-decoration: none;
  4314. color: #6c6c6c;
  4315. }
  4316. .login-box .user-box {
  4317. display: block;
  4318. clear: both;
  4319. overflow: hidden;
  4320. }
  4321. .login-box .user-box img {
  4322. width: 60px;
  4323. height: 60px;
  4324. display: block;
  4325. margin: 0 auto;
  4326. }
  4327. .login-box .user-box form {
  4328. overflow: hidden;
  4329. }
  4330. /* Login alt */
  4331. .login-alt .login-box {
  4332. max-width: 100%;
  4333. }
  4334. .login-info {
  4335. margin-top: 19px;
  4336. }
  4337. /* Search Results */
  4338. .search-item {
  4339. padding-bottom: 15px;
  4340. margin-bottom: 20px;
  4341. border-bottom: 1px solid #f1f1f1;
  4342. }
  4343. .search-item p {
  4344. margin: 0;
  4345. }
  4346. .search-item a {
  4347. text-decoration: none;
  4348. }
  4349. .search-item a.search-link {
  4350. color: #22BAA0;
  4351. }
  4352. /* Chat */
  4353. .chat {
  4354. position: relative;
  4355. padding-bottom: 100px;
  4356. }
  4357. .chat .chat-item {
  4358. display: block;
  4359. padding: 10px 15px;
  4360. width: 100%;
  4361. overflow: hidden;
  4362. }
  4363. .chat .chat-item-right .chat-message {
  4364. float: right;
  4365. }
  4366. .chat .chat-item .chat-image {
  4367. float: left;
  4368. display: inline-block;
  4369. }
  4370. .chat-item-left .chat-message {
  4371. margin-top: 5px;
  4372. }
  4373. .chat .chat-item .chat-message {
  4374. position: relative;
  4375. border-radius: 12px;
  4376. padding: 4px 12px;
  4377. max-width: 75%;
  4378. background: #f1f1f1;
  4379. display: inline-block;
  4380. }
  4381. .chat .chat-item img {
  4382. display: block;
  4383. width: 40px;
  4384. border-radius: 50%;
  4385. margin-right: 5px;
  4386. }
  4387. .chat .chat-item-right .chat-message {
  4388. background: #22BAA0;
  4389. float: right;
  4390. color: #fff;
  4391. }
  4392. .chat-write {
  4393. padding: 5px;
  4394. background: #fff;
  4395. position: absolute;
  4396. bottom: 0;
  4397. width: 240px;
  4398. }
  4399. .chat-write input {
  4400. width: 100%;
  4401. }
  4402. /* Transitions */
  4403. .top-menu .navbar-nav > li > a > .badge,
  4404. .menu li a .arrow:before,
  4405. .menu li.open > a > .arrow:before {
  4406. -webkit-transition: all 0.1s ease-in-out;
  4407. -moz-transition: all 0.1s ease-in-out;
  4408. -o-transition: all 0.1s ease-in-out;
  4409. transition: all 0.1s ease-in-out;
  4410. }
  4411. /* Overflow */
  4412. .navbar .logo-box,
  4413. .navbar .logo-box a,
  4414. .top-menu .navbar-nav > li > a > img,
  4415. .info,
  4416. .messages li a,
  4417. .messages li a .msg-img,
  4418. .messages li a .msg-text,
  4419. .messages li a .msg-time,
  4420. .tasks li a,
  4421. .tasks li a .task-icon,
  4422. .search-form,
  4423. body:not(.small-sidebar):not(.page-horizontal-bar) .menu.accordion-menu,
  4424. .page-inner,
  4425. .small-sidebar .page-sidebar-fixed .page-inner,
  4426. .page-breadcrumb,
  4427. .page-breadcrumb .breadcrumb,
  4428. .page-breadcrumb ul,
  4429. .info-box,
  4430. .text-box,
  4431. .small-sidebar .accordion-menu li a,
  4432. .page-footer,
  4433. .color-switcher {
  4434. overflow: hidden;
  4435. }
  4436. /* Settings */
  4437. .color-switcher {
  4438. display: block;
  4439. width: 100%;
  4440. margin: 10px 0 5px 0;
  4441. }
  4442. .color-switcher .colorbox {
  4443. dipslay: block;
  4444. width: 28px;
  4445. height: 28px;
  4446. margin: 0 5px 0 0;
  4447. padding: 0px;
  4448. border: 2px solid #f1f1f1;
  4449. cursor: pointer;
  4450. float: left;
  4451. border-radius: 50%;
  4452. }
  4453. .color-switcher .colorbox:hover {
  4454. border: 2px solid #dedede;
  4455. }
  4456. /* Blue */
  4457. .color-switcher .colorbox.color-blue {
  4458. background-color: #12afcb;
  4459. }
  4460. /* Red */
  4461. .color-switcher .colorbox.color-red {
  4462. background-color: #F25656;
  4463. }
  4464. /* Green */
  4465. .color-switcher .colorbox.color-green {
  4466. background-color: #22baa0;
  4467. }
  4468. /* Purple */
  4469. .color-switcher .colorbox.color-purple {
  4470. background-color: #7a6fbe;
  4471. }
  4472. /* Black */
  4473. .color-switcher .colorbox.color-dark {
  4474. background-color: #34425A;
  4475. }
  4476. /* White */
  4477. .color-switcher .colorbox.color-white {
  4478. background-color: #fff;
  4479. }
  4480. /* Media Queries */
  4481. @media (max-width: 991px) {
  4482. .profile-image {
  4483. right: 0;
  4484. left: 0;
  4485. }
  4486. .profile-info {
  4487. top: 10px;
  4488. right: 0;
  4489. left: 0;
  4490. bottom: auto;
  4491. text-align: center;
  4492. }
  4493. .profile-info-value {
  4494. color: #fff;
  4495. float: none;
  4496. margin: 0 10px 0 10px;
  4497. display: inline-block;
  4498. }
  4499. .mailbox-header h2 {
  4500. margin: 20px 0;
  4501. text-align: center;
  4502. }
  4503. }
  4504. @media (max-width: 767px) {
  4505. .sidebar {
  4506. opacity: 0;
  4507. visibility: hidden;
  4508. display: none;
  4509. width: 0;
  4510. -webkit-transition: opacity 0.3s ease-in-out;
  4511. -moz-transition: opacity 0.3s ease-in-out;
  4512. -o-transition: opacity 0.3s ease-in-out;
  4513. transition: opacity 0.3s ease-in-out;
  4514. }
  4515. body:not(.page-header-fixed) .sidebar {
  4516. padding-top: 0 !important;
  4517. }
  4518. .small-sidebar .sidebar.visible,
  4519. .page-horizontal-bar .sidebar.visible {
  4520. margin-right: -65px;
  4521. opacity: 1;
  4522. visibility: visible;
  4523. width: 65px;
  4524. display: block;
  4525. -webkit-transition: opacity 0.3s ease-in-out;
  4526. -moz-transition: opacity 0.3s ease-in-out;
  4527. -o-transition: opacity 0.3s ease-in-out;
  4528. transition: opacity 0.3s ease-in-out;
  4529. }
  4530. body:not(.small-sidebar) .sidebar.visible {
  4531. margin-right: -160px;
  4532. opacity: 1;
  4533. visibility: visible;
  4534. display: block;
  4535. width: 160px;
  4536. -webkit-transition: opacity 0.3s ease-in-out;
  4537. -moz-transition: opacity 0.3s ease-in-out;
  4538. -o-transition: opacity 0.3s ease-in-out;
  4539. transition: opacity 0.3s ease-in-out;
  4540. }
  4541. .small-sidebar .sidebar,
  4542. .horizontal-bar {
  4543. -webkit-transition: opacity 0.3s ease-in-out;
  4544. -moz-transition: opacity 0.3s ease-in-out;
  4545. -o-transition: opacity 0.3s ease-in-out;
  4546. transition: opacity 0.3s ease-in-out;
  4547. }
  4548. .navbar .logo-box {
  4549. margin: 0 auto;
  4550. background: transparent !important;
  4551. text-align: center;
  4552. width: 100% !important;
  4553. border: 0 !important;
  4554. }
  4555. .navbar .logo-box a {
  4556. color: #5F5F5F !important;
  4557. }
  4558. .navbar .logo-box .logo-text {
  4559. width: 100%;
  4560. display: inline-block !important;
  4561. }
  4562. .page-sidebar-fixed:not(.page-header-fixed) .logo-box {
  4563. position: relative;
  4564. display: block;
  4565. }
  4566. .small-sidebar .navbar .logo-box a span {
  4567. display: inline-block;
  4568. }
  4569. .sidebar-pusher {
  4570. display: block;
  4571. }
  4572. .search-button {
  4573. display: block;
  4574. }
  4575. .topmenu-outer,
  4576. .small-sidebar .topmenu-outer,
  4577. .page-sidebar-fixed:not(.page-header-fixed) .topmenu-outer {
  4578. margin: 0;
  4579. }
  4580. .top-menu {
  4581. display: none;
  4582. }
  4583. .page-inner {
  4584. -webkit-transition: all 0.1s ease-in-out;
  4585. -moz-transition: all 0.1s ease-in-out;
  4586. -o-transition: all 0.1s ease-in-out;
  4587. transition: all 0.1s ease-in-out;
  4588. }
  4589. .page-inner.sidebar-visible {
  4590. -webkit-transform: translate3d(160px, 0, 0);
  4591. transform: translate3d(160px, 0, 0);
  4592. }
  4593. .small-sidebar .page-inner.sidebar-visible,
  4594. .page-horizontal-bar .page-inner.sidebar-visible {
  4595. -webkit-transform: translate3d(65px, 0, 0);
  4596. transform: translate3d(65px, 0, 0);
  4597. }
  4598. .page-sidebar-fixed.page-header-fixed .page-inner {
  4599. padding: 60px 0 50px 0 !important;
  4600. }
  4601. .horizontal-bar {
  4602. float: left;
  4603. height: auto !important;
  4604. display: block;
  4605. z-index: 1029;
  4606. overflow: visible !important;
  4607. }
  4608. .small-sidebar .horizontal-bar {
  4609. height: auto !important;
  4610. }
  4611. .horizontal-bar .menu li {
  4612. float: none;
  4613. display: block;
  4614. }
  4615. .horizontal-bar .accordion-menu li > ul,
  4616. .small-sidebar .horizontal-bar .accordion-menu li > ul {
  4617. left: 65px !important;
  4618. top: 0 !important;
  4619. }
  4620. .small-sidebar.page-horizontal-bar .accordion-menu > li > a,
  4621. .small-sidebar.page-horizontal-bar:not(.page-sidebar-fixed) .accordion-menu > li > a {
  4622. padding: 15px !important;
  4623. text-align: center;
  4624. width: 65px;
  4625. }
  4626. .horizontal-bar .menu li a p {
  4627. display: none;
  4628. }
  4629. .small-sidebar.page-horizontal-bar .horizontal-bar .accordion-menu > li > a > .menu-icon {
  4630. margin-right: 0 !important;
  4631. font-size: 16px;
  4632. float: none !important;
  4633. }
  4634. .horizontal-bar .accordion-menu > li > a,
  4635. .page-horizontal-bar.compact-menu:not(.small-sidebar) .menu.accordion-menu > li > a {
  4636. padding: 15px !important;
  4637. text-align: center !important;
  4638. width: 65px;
  4639. }
  4640. .page-horizontal-bar .page-inner {
  4641. padding: 60px 0 50px 0;
  4642. }
  4643. .page-horizontal-bar.page-sidebar-fixed.page-header-fixed .page-inner {
  4644. padding: 60px 0 50px 0;
  4645. }
  4646. .small-sidebar.page-sidebar-fixed.page-header-fixed.page-horizontal-bar .page-inner {
  4647. padding: 60px 0 50px 0;
  4648. }
  4649. .small-sidebar.page-header-fixed.page-horizontal-bar:not(.page-sidebar-fixed) .page-inner {
  4650. padding: 60px 0 50px 0;
  4651. }
  4652. body:not(.page-header-fixed) .page-inner {
  4653. padding: 0 0 50px 0;
  4654. }
  4655. .page-horizontal-bar:not(.page-sidebar-fixed) .checkout,
  4656. .page-horizontal-bar.page-sidebar-fixed.compact-menu .checkout,
  4657. .page-horizontal-bar.page-sidebar-fixed:not(.compact-menu) .checkout {
  4658. top: 60px;
  4659. }
  4660. }
  4661. .overlay {
  4662. background: rgba(0, 0, 0, 0.4);
  4663. z-index: 1000;
  4664. position: fixed;
  4665. top: 0;
  4666. bottom: 0;
  4667. left: 0;
  4668. right: 0;
  4669. display: none;
  4670. }
  4671. .show-menu .overlay {
  4672. display: block;
  4673. }
  4674. .nav-tabs > li,
  4675. .nav-tabs > li.active {
  4676. height: 30px !important;
  4677. }
  4678. select.form-control {
  4679. font-size: 13px;
  4680. }
  4681. .control-label {
  4682. padding: 6px 0 0 0;
  4683. text-align: right;
  4684. font-weight: bold;
  4685. }
  4686. .menu.accordion-menu li.open > a > .menu-icon:before {
  4687. content: "\f07c";
  4688. }
  4689. .panel-group .panel-heading.collapsed .panel-title > div > a:after {
  4690. content: "\f067";
  4691. }
  4692. .panel-group .panel-heading .panel-title > div > a:after {
  4693. font-family: 'FontAwesome';
  4694. content: "\f068";
  4695. position: absolute;
  4696. right: 0;
  4697. color: #777;
  4698. height: 15px;
  4699. top: 50%;
  4700. margin-top: -7.5px;
  4701. }