style.css 21 KB

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