style.css 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084
  1. /**
  2. * Template Name: NiceAdmin - v2.2.0
  3. * Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
  4. * Author: BootstrapMade.com
  5. * License: https://bootstrapmade.com/license/
  6. */
  7. /*--------------------------------------------------------------
  8. # General
  9. --------------------------------------------------------------*/
  10. :root {
  11. scroll-behavior: smooth;
  12. }
  13. body {
  14. font-family: "Open Sans", sans-serif;
  15. background: #f6f9ff;
  16. color: #444444;
  17. }
  18. a {
  19. color: #4154f1;
  20. text-decoration: none;
  21. }
  22. a:hover {
  23. color: #717ff5;
  24. text-decoration: none;
  25. }
  26. h1, h2, h3, h4, h5, h6 {
  27. font-family: "Nunito", sans-serif;
  28. }
  29. /*--------------------------------------------------------------
  30. # Main
  31. --------------------------------------------------------------*/
  32. #main {
  33. margin-top: 60px;
  34. padding: 20px 30px;
  35. transition: all 0.3s;
  36. }
  37. @media (max-width: 1199px) {
  38. #main {
  39. padding: 20px;
  40. }
  41. }
  42. /*--------------------------------------------------------------
  43. # Page Title
  44. --------------------------------------------------------------*/
  45. .pagetitle {
  46. margin-bottom: 10px;
  47. }
  48. .pagetitle h1 {
  49. font-size: 24px;
  50. margin-bottom: 0;
  51. font-weight: 600;
  52. color: #012970;
  53. }
  54. /*--------------------------------------------------------------
  55. # Back to top button
  56. --------------------------------------------------------------*/
  57. .back-to-top {
  58. position: fixed;
  59. visibility: hidden;
  60. opacity: 0;
  61. right: 15px;
  62. bottom: 15px;
  63. z-index: 99999;
  64. background: #4154f1;
  65. width: 40px;
  66. height: 40px;
  67. border-radius: 4px;
  68. transition: all 0.4s;
  69. }
  70. .back-to-top i {
  71. font-size: 24px;
  72. color: #fff;
  73. line-height: 0;
  74. }
  75. .back-to-top:hover {
  76. background: #6776f4;
  77. color: #fff;
  78. }
  79. .back-to-top.active {
  80. visibility: visible;
  81. opacity: 1;
  82. }
  83. /*--------------------------------------------------------------
  84. # Override some default Bootstrap stylings
  85. --------------------------------------------------------------*/
  86. /* Dropdown menus */
  87. .dropdown-menu {
  88. border-radius: 4px;
  89. padding: 10px 0;
  90. -webkit-animation-name: dropdown-animate;
  91. animation-name: dropdown-animate;
  92. -webkit-animation-duration: 0.2s;
  93. animation-duration: 0.2s;
  94. -webkit-animation-fill-mode: both;
  95. animation-fill-mode: both;
  96. border: 0;
  97. box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
  98. }
  99. @media (max-width: 480px) {
  100. .dropdown-menu {
  101. width: 100vw !important;
  102. }
  103. }
  104. .dropdown-menu .dropdown-header, .dropdown-menu .dropdown-footer {
  105. text-align: center;
  106. font-size: 15px;
  107. padding: 10px 25px;
  108. }
  109. .dropdown-menu .dropdown-footer a {
  110. color: #444444;
  111. text-decoration: underline;
  112. }
  113. .dropdown-menu .dropdown-footer a:hover {
  114. text-decoration: none;
  115. }
  116. .dropdown-menu .dropdown-divider {
  117. color: #a5c5fe;
  118. margin: 0;
  119. }
  120. .dropdown-menu .dropdown-item {
  121. font-size: 14px;
  122. padding: 10px 15px;
  123. transition: 0.3s;
  124. }
  125. .dropdown-menu .dropdown-item i {
  126. margin-right: 10px;
  127. font-size: 18px;
  128. line-height: 0;
  129. }
  130. .dropdown-menu .dropdown-item:hover {
  131. background-color: #f6f9ff;
  132. }
  133. @media (min-width: 768px) {
  134. .dropdown-menu-arrow::before {
  135. content: "";
  136. width: 13px;
  137. height: 13px;
  138. background: #fff;
  139. position: absolute;
  140. top: -7px;
  141. right: 20px;
  142. transform: rotate(45deg);
  143. border-top: 1px solid #eaedf1;
  144. border-left: 1px solid #eaedf1;
  145. }
  146. }
  147. @-webkit-keyframes dropdown-animate {
  148. 0% {
  149. opacity: 0;
  150. }
  151. 100% {
  152. opacity: 1;
  153. }
  154. 0% {
  155. opacity: 0;
  156. }
  157. }
  158. @keyframes dropdown-animate {
  159. 0% {
  160. opacity: 0;
  161. }
  162. 100% {
  163. opacity: 1;
  164. }
  165. 0% {
  166. opacity: 0;
  167. }
  168. }
  169. /* Light Backgrounds */
  170. .bg-primary-light {
  171. background-color: #cfe2ff;
  172. border-color: #cfe2ff;
  173. }
  174. .bg-secondary-light {
  175. background-color: #e2e3e5;
  176. border-color: #e2e3e5;
  177. }
  178. .bg-success-light {
  179. background-color: #d1e7dd;
  180. border-color: #d1e7dd;
  181. }
  182. .bg-danger-light {
  183. background-color: #f8d7da;
  184. border-color: #f8d7da;
  185. }
  186. .bg-warning-light {
  187. background-color: #fff3cd;
  188. border-color: #fff3cd;
  189. }
  190. .bg-info-light {
  191. background-color: #cff4fc;
  192. border-color: #cff4fc;
  193. }
  194. .bg-dark-light {
  195. background-color: #d3d3d4;
  196. border-color: #d3d3d4;
  197. }
  198. /* Card */
  199. .card {
  200. margin-bottom: 30px;
  201. border: none;
  202. border-radius: 5px;
  203. box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  204. overflow: hidden;
  205. }
  206. .card-header, .card-footer {
  207. border-color: #ebeef4;
  208. background-color: #fff;
  209. color: #798eb3;
  210. padding: 15px;
  211. }
  212. .card-title {
  213. padding: 20px 0 15px 0;
  214. font-size: 18px;
  215. font-weight: 500;
  216. color: #012970;
  217. font-family: "Poppins", sans-serif;
  218. }
  219. .card-title span {
  220. color: #899bbd;
  221. font-size: 14px;
  222. font-weight: 400;
  223. }
  224. .card-body {
  225. padding: 0 20px 20px 20px;
  226. }
  227. .card-img-overlay {
  228. background-color: rgba(255, 255, 255, 0.6);
  229. }
  230. /* Alerts */
  231. .alert-heading {
  232. font-weight: 500;
  233. font-family: "Poppins", sans-serif;
  234. font-size: 20px;
  235. }
  236. /* Close Button */
  237. .btn-close {
  238. background-size: 25%;
  239. }
  240. .btn-close:focus {
  241. outline: 0;
  242. box-shadow: none;
  243. }
  244. /* Accordion */
  245. .accordion-item {
  246. border: 1px solid #ebeef4;
  247. }
  248. .accordion-button:focus {
  249. outline: 0;
  250. box-shadow: none;
  251. }
  252. .accordion-button:not(.collapsed) {
  253. color: #012970;
  254. background-color: #f6f9ff;
  255. }
  256. .accordion-flush .accordion-button {
  257. padding: 15px 0;
  258. background: none;
  259. border: 0;
  260. }
  261. .accordion-flush .accordion-button:not(.collapsed) {
  262. box-shadow: none;
  263. color: #4154f1;
  264. }
  265. .accordion-flush .accordion-body {
  266. padding: 0 0 15px 0;
  267. color: #3e4f6f;
  268. font-size: 15px;
  269. }
  270. /* Breadcrumbs */
  271. .breadcrumb {
  272. font-size: 14px;
  273. font-family: "Nunito", sans-serif;
  274. color: #899bbd;
  275. font-weight: 600;
  276. }
  277. .breadcrumb a {
  278. color: #899bbd;
  279. transition: 0.3s;
  280. }
  281. .breadcrumb a:hover {
  282. color: #51678f;
  283. }
  284. .breadcrumb .breadcrumb-item::before {
  285. color: #899bbd;
  286. }
  287. .breadcrumb .active {
  288. color: #51678f;
  289. font-weight: 600;
  290. }
  291. /* Bordered Tabs */
  292. .nav-tabs-bordered {
  293. border-bottom: 2px solid #ebeef4;
  294. }
  295. .nav-tabs-bordered .nav-link {
  296. margin-bottom: -2px;
  297. border: none;
  298. color: #2c384e;
  299. }
  300. .nav-tabs-bordered .nav-link:hover, .nav-tabs-bordered .nav-link:focus {
  301. color: #4154f1;
  302. }
  303. .nav-tabs-bordered .nav-link.active {
  304. background-color: #fff;
  305. color: #4154f1;
  306. border-bottom: 2px solid #4154f1;
  307. }
  308. /*--------------------------------------------------------------
  309. # Header
  310. --------------------------------------------------------------*/
  311. .logo {
  312. line-height: 1;
  313. }
  314. @media (min-width: 1200px) {
  315. .logo {
  316. width: 280px;
  317. }
  318. }
  319. .logo img {
  320. max-height: 26px;
  321. margin-right: 6px;
  322. }
  323. .logo span {
  324. font-size: 26px;
  325. font-weight: 700;
  326. color: #012970;
  327. font-family: "Nunito", sans-serif;
  328. }
  329. .header {
  330. transition: all 0.5s;
  331. z-index: 997;
  332. height: 60px;
  333. box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  334. background-color: #fff;
  335. padding-left: 20px;
  336. /* Toggle Sidebar Button */
  337. /* Search Bar */
  338. }
  339. .header .toggle-sidebar-btn {
  340. font-size: 32px;
  341. padding-left: 10px;
  342. cursor: pointer;
  343. color: #012970;
  344. }
  345. .header .search-bar {
  346. min-width: 360px;
  347. padding: 0 20px;
  348. }
  349. @media (max-width: 1199px) {
  350. .header .search-bar {
  351. position: fixed;
  352. top: 50px;
  353. left: 0;
  354. right: 0;
  355. padding: 20px;
  356. box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
  357. background: white;
  358. z-index: 9999;
  359. transition: 0.3s;
  360. visibility: hidden;
  361. opacity: 0;
  362. }
  363. .header .search-bar-show {
  364. top: 60px;
  365. visibility: visible;
  366. opacity: 1;
  367. }
  368. }
  369. .header .search-form {
  370. width: 100%;
  371. }
  372. .header .search-form input {
  373. border: 0;
  374. font-size: 14px;
  375. color: #012970;
  376. border: 1px solid rgba(1, 41, 112, 0.2);
  377. padding: 7px 38px 7px 8px;
  378. border-radius: 3px;
  379. transition: 0.3s;
  380. width: 100%;
  381. }
  382. .header .search-form input:focus, .header .search-form input:hover {
  383. outline: none;
  384. box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  385. border: 1px solid rgba(1, 41, 112, 0.3);
  386. }
  387. .header .search-form button {
  388. border: 0;
  389. padding: 0;
  390. margin-left: -30px;
  391. background: none;
  392. }
  393. .header .search-form button i {
  394. color: #012970;
  395. }
  396. /*--------------------------------------------------------------
  397. # Header Nav
  398. --------------------------------------------------------------*/
  399. .header-nav ul {
  400. list-style: none;
  401. }
  402. .header-nav > ul {
  403. margin: 0;
  404. padding: 0;
  405. }
  406. .header-nav .nav-icon {
  407. font-size: 20px;
  408. color: #012970;
  409. }
  410. .header-nav .nav-profile {
  411. color: #012970;
  412. }
  413. .header-nav .nav-profile img {
  414. max-height: 36px;
  415. }
  416. .header-nav .nav-profile span {
  417. font-size: 14px;
  418. font-weight: 600;
  419. }
  420. .header-nav .badge-number {
  421. position: absolute;
  422. inset: 4px 6px auto auto;
  423. font-weight: normal;
  424. font-size: 11px;
  425. padding: 3px 6px;
  426. }
  427. .header-nav .notifications .notification-item {
  428. display: flex;
  429. align-items: center;
  430. padding: 15px 10px;
  431. transition: 0.3s;
  432. }
  433. .header-nav .notifications .notification-item i {
  434. margin: 0 20px 0 10px;
  435. font-size: 24px;
  436. }
  437. .header-nav .notifications .notification-item h4 {
  438. font-size: 16px;
  439. font-weight: 600;
  440. margin-bottom: 5px;
  441. }
  442. .header-nav .notifications .notification-item p {
  443. font-size: 13px;
  444. margin-bottom: 3px;
  445. color: #919191;
  446. }
  447. .header-nav .notifications .notification-item:hover {
  448. background-color: #f6f9ff;
  449. }
  450. .header-nav .messages .message-item {
  451. padding: 15px 10px;
  452. transition: 0.3s;
  453. }
  454. .header-nav .messages .message-item a {
  455. display: flex;
  456. }
  457. .header-nav .messages .message-item img {
  458. margin: 0 20px 0 10px;
  459. max-height: 40px;
  460. }
  461. .header-nav .messages .message-item h4 {
  462. font-size: 16px;
  463. font-weight: 600;
  464. margin-bottom: 5px;
  465. color: #444444;
  466. }
  467. .header-nav .messages .message-item p {
  468. font-size: 13px;
  469. margin-bottom: 3px;
  470. color: #919191;
  471. }
  472. .header-nav .messages .message-item:hover {
  473. background-color: #f6f9ff;
  474. }
  475. .header-nav .profile {
  476. min-width: 240px;
  477. padding-bottom: 0;
  478. }
  479. .header-nav .profile .dropdown-header h6 {
  480. font-size: 18px;
  481. margin-bottom: 0;
  482. font-weight: 600;
  483. color: #444444;
  484. }
  485. .header-nav .profile .dropdown-header span {
  486. font-size: 14px;
  487. }
  488. .header-nav .profile .dropdown-item {
  489. font-size: 14px;
  490. padding: 10px 15px;
  491. transition: 0.3s;
  492. }
  493. .header-nav .profile .dropdown-item i {
  494. margin-right: 10px;
  495. font-size: 18px;
  496. line-height: 0;
  497. }
  498. .header-nav .profile .dropdown-item:hover {
  499. background-color: #f6f9ff;
  500. }
  501. /*--------------------------------------------------------------
  502. # Sidebar
  503. --------------------------------------------------------------*/
  504. .sidebar {
  505. position: fixed;
  506. top: 60px;
  507. left: 0;
  508. bottom: 0;
  509. width: 300px;
  510. z-index: 996;
  511. transition: all 0.3s;
  512. padding: 20px;
  513. overflow-y: auto;
  514. scrollbar-width: thin;
  515. scrollbar-color: #aab7cf transparent;
  516. box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  517. background-color: #fff;
  518. }
  519. @media (max-width: 1199px) {
  520. .sidebar {
  521. left: -300px;
  522. }
  523. }
  524. .sidebar::-webkit-scrollbar {
  525. width: 5px;
  526. height: 8px;
  527. background-color: #fff;
  528. }
  529. .sidebar::-webkit-scrollbar-thumb {
  530. background-color: #aab7cf;
  531. }
  532. @media (min-width: 1200px) {
  533. #main, #footer {
  534. margin-left: 300px;
  535. }
  536. }
  537. @media (max-width: 1199px) {
  538. .toggle-sidebar .sidebar {
  539. left: 0;
  540. }
  541. }
  542. @media (min-width: 1200px) {
  543. .toggle-sidebar #main, .toggle-sidebar #footer {
  544. margin-left: 0;
  545. }
  546. .toggle-sidebar .sidebar {
  547. left: -300px;
  548. }
  549. }
  550. .sidebar-nav {
  551. padding: 0;
  552. margin: 0;
  553. list-style: none;
  554. }
  555. .sidebar-nav li {
  556. padding: 0;
  557. margin: 0;
  558. list-style: none;
  559. }
  560. .sidebar-nav .nav-item {
  561. margin-bottom: 5px;
  562. }
  563. .sidebar-nav .nav-heading {
  564. font-size: 11px;
  565. text-transform: uppercase;
  566. color: #899bbd;
  567. font-weight: 600;
  568. margin: 10px 0 5px 15px;
  569. }
  570. .sidebar-nav .nav-link {
  571. display: flex;
  572. align-items: center;
  573. font-size: 15px;
  574. font-weight: 600;
  575. color: #4154f1;
  576. transition: 0.3;
  577. background: #f6f9ff;
  578. padding: 10px 15px;
  579. border-radius: 4px;
  580. }
  581. .sidebar-nav .nav-link i {
  582. font-size: 16px;
  583. margin-right: 10px;
  584. color: #4154f1;
  585. }
  586. .sidebar-nav .nav-link.collapsed {
  587. color: #012970;
  588. background: #fff;
  589. }
  590. .sidebar-nav .nav-link.collapsed i {
  591. color: #899bbd;
  592. }
  593. .sidebar-nav .nav-link:hover {
  594. color: #4154f1;
  595. background: #f6f9ff;
  596. }
  597. .sidebar-nav .nav-link:hover i {
  598. color: #4154f1;
  599. }
  600. .sidebar-nav .nav-link .bi-chevron-down {
  601. margin-right: 0;
  602. transition: transform 0.2s ease-in-out;
  603. }
  604. .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  605. transform: rotate(180deg);
  606. }
  607. .sidebar-nav .nav-content {
  608. padding: 5px 0 0 0;
  609. margin: 0;
  610. list-style: none;
  611. }
  612. .sidebar-nav .nav-content a {
  613. display: flex;
  614. align-items: center;
  615. font-size: 14px;
  616. font-weight: 600;
  617. color: #012970;
  618. transition: 0.3;
  619. padding: 10px 0 10px 40px;
  620. transition: 0.3s;
  621. }
  622. .sidebar-nav .nav-content a i {
  623. font-size: 6px;
  624. margin-right: 8px;
  625. line-height: 0;
  626. border-radius: 50%;
  627. }
  628. .sidebar-nav .nav-content a:hover, .sidebar-nav .nav-content a.active {
  629. color: #4154f1;
  630. }
  631. .sidebar-nav .nav-content a.active i {
  632. background-color: #4154f1;
  633. }
  634. /*--------------------------------------------------------------
  635. # Dashboard
  636. --------------------------------------------------------------*/
  637. /* Filter dropdown */
  638. .dashboard .filter {
  639. position: absolute;
  640. right: 0px;
  641. top: 15px;
  642. }
  643. .dashboard .filter .icon {
  644. color: #aab7cf;
  645. padding-right: 20px;
  646. padding-bottom: 5px;
  647. transition: 0.3s;
  648. font-size: 16px;
  649. }
  650. .dashboard .filter .icon:hover, .dashboard .filter .icon:focus {
  651. color: #4154f1;
  652. }
  653. .dashboard .filter .dropdown-header {
  654. padding: 8px 15px;
  655. }
  656. .dashboard .filter .dropdown-header h6 {
  657. text-transform: uppercase;
  658. font-size: 14px;
  659. font-weight: 600;
  660. letter-spacing: 1px;
  661. color: #aab7cf;
  662. margin-bottom: 0;
  663. padding: 0;
  664. }
  665. .dashboard .filter .dropdown-item {
  666. padding: 8px 15px;
  667. }
  668. /* Info Cards */
  669. .dashboard .info-card {
  670. padding-bottom: 10px;
  671. }
  672. .dashboard .info-card h6 {
  673. font-size: 28px;
  674. color: #012970;
  675. font-weight: 700;
  676. margin: 0;
  677. padding: 0;
  678. }
  679. .dashboard .card-icon {
  680. font-size: 32px;
  681. line-height: 0;
  682. width: 64px;
  683. height: 64px;
  684. flex-shrink: 0;
  685. flex-grow: 0;
  686. }
  687. .dashboard .sales-card .card-icon {
  688. color: #4154f1;
  689. background: #f6f6fe;
  690. }
  691. .dashboard .revenue-card .card-icon {
  692. color: #2eca6a;
  693. background: #e0f8e9;
  694. }
  695. .dashboard .customers-card .card-icon {
  696. color: #ff771d;
  697. background: #ffecdf;
  698. }
  699. /* Activity */
  700. .dashboard .activity {
  701. font-size: 14px;
  702. }
  703. .dashboard .activity .activity-item .activite-label {
  704. color: #888;
  705. position: relative;
  706. flex-shrink: 0;
  707. flex-grow: 0;
  708. min-width: 64px;
  709. }
  710. .dashboard .activity .activity-item .activite-label::before {
  711. content: "";
  712. position: absolute;
  713. right: -11px;
  714. width: 4px;
  715. top: 0;
  716. bottom: 0;
  717. background-color: #eceefe;
  718. }
  719. .dashboard .activity .activity-item .activity-badge {
  720. margin-top: 3px;
  721. z-index: 1;
  722. font-size: 11px;
  723. line-height: 0;
  724. border-radius: 50%;
  725. flex-shrink: 0;
  726. border: 3px solid #fff;
  727. flex-grow: 0;
  728. }
  729. .dashboard .activity .activity-item .activity-content {
  730. padding-left: 10px;
  731. padding-bottom: 20px;
  732. }
  733. .dashboard .activity .activity-item:first-child .activite-label::before {
  734. top: 5px;
  735. }
  736. .dashboard .activity .activity-item:last-child .activity-content {
  737. padding-bottom: 0;
  738. }
  739. /* News & Updates */
  740. .dashboard .news .post-item + .post-item {
  741. margin-top: 15px;
  742. }
  743. .dashboard .news img {
  744. width: 80px;
  745. float: left;
  746. border-radius: 5px;
  747. }
  748. .dashboard .news h4 {
  749. font-size: 15px;
  750. margin-left: 95px;
  751. font-weight: bold;
  752. margin-bottom: 5px;
  753. }
  754. .dashboard .news h4 a {
  755. color: #012970;
  756. transition: 0.3s;
  757. }
  758. .dashboard .news h4 a:hover {
  759. color: #4154f1;
  760. }
  761. .dashboard .news p {
  762. font-size: 14px;
  763. color: #777777;
  764. margin-left: 95px;
  765. }
  766. /* Recent Sales */
  767. .dashboard .recent-sales {
  768. font-size: 14px;
  769. }
  770. .dashboard .recent-sales .table thead {
  771. background: #f6f6fe;
  772. }
  773. .dashboard .recent-sales .table thead th {
  774. border: 0;
  775. }
  776. .dashboard .recent-sales .dataTable-top {
  777. padding: 0 0 10px 0;
  778. }
  779. .dashboard .recent-sales .dataTable-bottom {
  780. padding: 10px 0 0 0;
  781. }
  782. /* Top Selling */
  783. .dashboard .top-selling {
  784. font-size: 14px;
  785. }
  786. .dashboard .top-selling .table thead {
  787. background: #f6f6fe;
  788. }
  789. .dashboard .top-selling .table thead th {
  790. border: 0;
  791. }
  792. .dashboard .top-selling .table tbody td {
  793. vertical-align: middle;
  794. }
  795. .dashboard .top-selling img {
  796. border-radius: 5px;
  797. max-width: 60px;
  798. }
  799. /*--------------------------------------------------------------
  800. # Icons list page
  801. --------------------------------------------------------------*/
  802. .iconslist {
  803. display: grid;
  804. max-width: 100%;
  805. grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  806. gap: 1.25rem;
  807. padding-top: 15px;
  808. }
  809. .iconslist .icon {
  810. background-color: #fff;
  811. border-radius: 0.25rem;
  812. text-align: center;
  813. color: #012970;
  814. padding: 15px 0;
  815. }
  816. .iconslist i {
  817. margin: 0.25rem;
  818. font-size: 2.5rem;
  819. }
  820. .iconslist .label {
  821. font-family: var(--bs-font-monospace);
  822. display: inline-block;
  823. width: 100%;
  824. overflow: hidden;
  825. padding: 0.25rem;
  826. font-size: 12px;
  827. text-overflow: ellipsis;
  828. white-space: nowrap;
  829. color: #666;
  830. }
  831. /*--------------------------------------------------------------
  832. # Profie Page
  833. --------------------------------------------------------------*/
  834. .profile .profile-card img {
  835. max-width: 120px;
  836. }
  837. .profile .profile-card h2 {
  838. font-size: 24px;
  839. font-weight: 700;
  840. color: #2c384e;
  841. margin: 10px 0 0 0;
  842. }
  843. .profile .profile-card h3 {
  844. font-size: 18px;
  845. }
  846. .profile .profile-card .social-links a {
  847. font-size: 20px;
  848. display: inline-block;
  849. color: rgba(1, 41, 112, 0.5);
  850. line-height: 0;
  851. margin-right: 10px;
  852. transition: 0.3s;
  853. }
  854. .profile .profile-card .social-links a:hover {
  855. color: #012970;
  856. }
  857. .profile .profile-overview .row {
  858. margin-bottom: 20px;
  859. font-size: 15px;
  860. }
  861. .profile .profile-overview .card-title {
  862. color: #012970;
  863. }
  864. .profile .profile-overview .label {
  865. font-weight: 600;
  866. color: rgba(1, 41, 112, 0.6);
  867. }
  868. .profile .profile-edit label {
  869. font-weight: 600;
  870. color: rgba(1, 41, 112, 0.6);
  871. }
  872. .profile .profile-edit img {
  873. max-width: 120px;
  874. }
  875. /*--------------------------------------------------------------
  876. # F.A.Q Page
  877. --------------------------------------------------------------*/
  878. .faq .basic h6 {
  879. font-size: 18px;
  880. font-weight: 600;
  881. color: #4154f1;
  882. }
  883. .faq .basic p {
  884. color: #6980aa;
  885. }
  886. /*--------------------------------------------------------------
  887. # Contact
  888. --------------------------------------------------------------*/
  889. .contact .info-box {
  890. padding: 28px 30px;
  891. }
  892. .contact .info-box i {
  893. font-size: 38px;
  894. line-height: 0;
  895. color: #4154f1;
  896. }
  897. .contact .info-box h3 {
  898. font-size: 20px;
  899. color: #012970;
  900. font-weight: 700;
  901. margin: 20px 0 10px 0;
  902. }
  903. .contact .info-box p {
  904. padding: 0;
  905. line-height: 24px;
  906. font-size: 14px;
  907. margin-bottom: 0;
  908. }
  909. .contact .php-email-form .error-message {
  910. display: none;
  911. color: #fff;
  912. background: #ed3c0d;
  913. text-align: left;
  914. padding: 15px;
  915. margin-bottom: 24px;
  916. font-weight: 600;
  917. }
  918. .contact .php-email-form .sent-message {
  919. display: none;
  920. color: #fff;
  921. background: #18d26e;
  922. text-align: center;
  923. padding: 15px;
  924. margin-bottom: 24px;
  925. font-weight: 600;
  926. }
  927. .contact .php-email-form .loading {
  928. display: none;
  929. background: #fff;
  930. text-align: center;
  931. padding: 15px;
  932. margin-bottom: 24px;
  933. }
  934. .contact .php-email-form .loading:before {
  935. content: "";
  936. display: inline-block;
  937. border-radius: 50%;
  938. width: 24px;
  939. height: 24px;
  940. margin: 0 10px -6px 0;
  941. border: 3px solid #18d26e;
  942. border-top-color: #eee;
  943. -webkit-animation: animate-loading 1s linear infinite;
  944. animation: animate-loading 1s linear infinite;
  945. }
  946. .contact .php-email-form input, .contact .php-email-form textarea {
  947. border-radius: 0;
  948. box-shadow: none;
  949. font-size: 14px;
  950. border-radius: 0;
  951. }
  952. .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  953. border-color: #4154f1;
  954. }
  955. .contact .php-email-form input {
  956. padding: 10px 15px;
  957. }
  958. .contact .php-email-form textarea {
  959. padding: 12px 15px;
  960. }
  961. .contact .php-email-form button[type=submit] {
  962. background: #4154f1;
  963. border: 0;
  964. padding: 10px 30px;
  965. color: #fff;
  966. transition: 0.4s;
  967. border-radius: 4px;
  968. }
  969. .contact .php-email-form button[type=submit]:hover {
  970. background: #5969f3;
  971. }
  972. @-webkit-keyframes animate-loading {
  973. 0% {
  974. transform: rotate(0deg);
  975. }
  976. 100% {
  977. transform: rotate(360deg);
  978. }
  979. }
  980. @keyframes animate-loading {
  981. 0% {
  982. transform: rotate(0deg);
  983. }
  984. 100% {
  985. transform: rotate(360deg);
  986. }
  987. }
  988. /*--------------------------------------------------------------
  989. # Error 404
  990. --------------------------------------------------------------*/
  991. .error-404 {
  992. padding: 30px;
  993. }
  994. .error-404 h1 {
  995. font-size: 180px;
  996. font-weight: 700;
  997. color: #4154f1;
  998. margin-bottom: 0;
  999. line-height: 150px;
  1000. }
  1001. .error-404 h2 {
  1002. font-size: 24px;
  1003. font-weight: 700;
  1004. color: #012970;
  1005. margin-bottom: 30px;
  1006. }
  1007. .error-404 .btn {
  1008. background: #51678f;
  1009. color: #fff;
  1010. padding: 8px 30px;
  1011. }
  1012. .error-404 .btn:hover {
  1013. background: #3e4f6f;
  1014. }
  1015. @media (min-width: 992px) {
  1016. .error-404 img {
  1017. max-width: 50%;
  1018. }
  1019. }
  1020. /*--------------------------------------------------------------
  1021. # Footer
  1022. --------------------------------------------------------------*/
  1023. .footer {
  1024. padding: 20px 0;
  1025. font-size: 14px;
  1026. transition: all 0.3s;
  1027. border-top: 1px solid #cddfff;
  1028. }
  1029. .footer .copyright {
  1030. text-align: center;
  1031. color: #012970;
  1032. }
  1033. .footer .credits {
  1034. padding-top: 5px;
  1035. text-align: center;
  1036. font-size: 13px;
  1037. color: #012970;
  1038. }