style.css 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088
  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. }