custom.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719
  1. ul.standard-list {
  2. margin-left: 2em;
  3. }
  4. ul.standard-list li {
  5. list-style: disc;
  6. }
  7. /* Form */
  8. .form-control {
  9. padding: 6px 14px;
  10. font-size: 14px;
  11. font-weight: 300;
  12. color: var(--black);
  13. line-height: 1em;
  14. }
  15. .form-control:focus {
  16. color: var(--black);
  17. }
  18. .form-control::placeholder {
  19. color: var(--black);
  20. opacity: 0.75;
  21. }
  22. .theme-form input[type="text"].form-control.input-white,
  23. .theme-form input[type="email"].form-control.input-white,
  24. .theme-form input[type="search"].form-control.input-white,
  25. .theme-form input[type="password"].form-control.input-white,
  26. .theme-form input[type="number"].form-control.input-white,
  27. .theme-form input[type="tel"].form-control.input-white,
  28. .theme-form input[type="date"].form-control.input-white,
  29. .theme-form input[type="datetime-local"].form-control.input-white,
  30. .theme-form input[type="time"].form-control.input-white,
  31. .theme-form input[type="datetime-local"].form-control.input-white,
  32. .theme-form input[type="month"].form-control.input-white,
  33. .theme-form input[type="week"].form-control.input-white,
  34. .theme-form input[type="url"].form-control.input-white,
  35. .theme-form input[type="file"].form-control.input-white,
  36. .theme-form textarea.form-control.input-white,
  37. .theme-form select.form-control.input-white {
  38. color: var(--white);
  39. background-color: transparent;
  40. border-color: var(--white);
  41. box-shadow: none;
  42. }
  43. textarea.form-control {
  44. min-height: 70px;
  45. line-height: 1.2em;
  46. }
  47. .theme-form .form-control.input-white::placeholder {
  48. color: var(--white);
  49. opacity: 0.75;
  50. }
  51. .form-control::placeholder {
  52. color: currentColor;
  53. opacity: 1;
  54. }
  55. .form-control::file-selector-button {
  56. padding-right: 30px;
  57. border-radius: var(--bs-border-radius);
  58. border: 1px solid;
  59. border-radius: var(--bs-border-radius);
  60. display: inline-block;
  61. margin-left: -0.74rem;
  62. scale: 1.06;
  63. height: 33px;
  64. background-color: transparent;
  65. font-size: 12px;
  66. border-color: var(--border-color);
  67. color: var(--black);
  68. }
  69. .form-check-input:checked {
  70. background-color: var(--theme-default);
  71. border-color: var(--white);
  72. }
  73. .form-wizard .step {
  74. height: 8px;
  75. width: 8px;
  76. background-color: var(--theme-tertiary);
  77. border-radius: 8px;
  78. will-change: width;
  79. transition: width 0.5s ease;
  80. }
  81. .form-wizard .step.active {
  82. width: 24px;
  83. }
  84. .form-wizard .step.finish {
  85. background-color: var(--theme-tertiary);
  86. }
  87. a#prevBtn {
  88. position: absolute;
  89. font-size: 25px;
  90. }
  91. .form-group.has-switch {
  92. display: flex;
  93. flex-direction: row;
  94. align-items: center;
  95. gap: 5px;
  96. }
  97. .switch input + .switch-state.bg-primary {
  98. background-color: var(--color-grey) !important;
  99. }
  100. .switch input:checked + .switch-state.bg-primary {
  101. background-color: var(--theme-default) !important;
  102. }
  103. .switch-state:before {
  104. box-shadow: 0px 3px 1px 0 rgba(0, 0, 0, 0.06),
  105. 0px 3px 8px 0 rgba(0, 0, 0, 0.15);
  106. }
  107. /* END - Form */
  108. /* Buttons */
  109. .btn {
  110. text-transform: uppercase;
  111. font-size: 16px;
  112. }
  113. .btn:focus {
  114. color: var(--bs-btn-hover-color);
  115. }
  116. .btn-secondary {
  117. background-color: var(--theme-secondary);
  118. border: 1px solid var(--theme-secondary);
  119. color: var(--theme-default);
  120. }
  121. .btn-secondary:hover,
  122. .btn-secondary:focus,
  123. .btn-secondary.active,
  124. .btn-secondary:active:focus,
  125. .btn-secondary.show {
  126. background-color: var(--theme-primary);
  127. }
  128. .btn-medium {
  129. width: 110px;
  130. max-width: 100%;
  131. font-weight: 500;
  132. }
  133. .btn-large {
  134. width: 200px;
  135. max-width: 100%;
  136. }
  137. /* END - Buttons */
  138. .badge {
  139. pointer-events: none;
  140. }
  141. .text-underline {
  142. text-decoration: underline !important;
  143. }
  144. /* Frontend */
  145. .login-card,
  146. .registration-card,
  147. .onboarding-card {
  148. min-height: 100vh;
  149. display: flex;
  150. align-items: center;
  151. justify-content: center;
  152. margin: 0 auto;
  153. padding: 30px 12px;
  154. background: none;
  155. background-color: var(--bs-body-bg);
  156. }
  157. .registration-card,
  158. .onboarding-card {
  159. background-color: var(--primary-color);
  160. }
  161. .login-card .login-main,
  162. .registration-card .registration-main,
  163. .onboarding-card .onboarding-main {
  164. max-width: 650px;
  165. width: calc(100dvw - 15px);
  166. padding: 80px 40px;
  167. border-radius: 40px;
  168. box-shadow: 0 0 37px rgba(0, 0, 0, 0.05);
  169. margin: 0 auto;
  170. background-color: var(--bs-body-bg);
  171. min-height: 700px;
  172. }
  173. .registration-card .registration-main,
  174. .onboarding-card .onboarding-main {
  175. max-width: 1075px;
  176. background-color: var(--bs-body-bg);
  177. }
  178. .login-card .login-main .login-inner {
  179. max-width: 422px;
  180. }
  181. .registration-card .registration-main .registration-inner {
  182. max-width: 860px;
  183. }
  184. .onboarding-card .onboarding-main .onboarding-inner {
  185. max-width: 690px;
  186. }
  187. .login-card .login-main .login-inner .form-logo,
  188. .registration-card .registration-main .registration-inner .form-logo,
  189. .onboarding-card .onboarding-main .onboarding-inner .form-logo {
  190. max-width: min(330px, 100%);
  191. }
  192. .login-card .login-main .theme-form label,
  193. .registration-card .registration-main .theme-form label {
  194. font-size: 16px;
  195. font-weight: 600;
  196. }
  197. .onboarding-card .onboarding-main .theme-form label {
  198. font-size: 16px;
  199. font-weight: 400;
  200. }
  201. .login-card .login-main .theme-form input::-webkit-input-placeholder {
  202. color: inherit;
  203. }
  204. .login-card .login-main .theme-form .form-group {
  205. margin-bottom: 0;
  206. }
  207. .show-hide span {
  208. cursor: pointer;
  209. font-size: 18px;
  210. color: var(--theme-default);
  211. font-family: "iconly" !important;
  212. speak: never;
  213. font-style: normal;
  214. font-variant: normal;
  215. text-transform: none;
  216. font-weight: normal;
  217. -webkit-font-smoothing: antialiased;
  218. -moz-osx-font-smoothing: grayscale;
  219. font-weight: 300;
  220. }
  221. .show-hide span.show:before {
  222. content: "\e950";
  223. }
  224. .show-hide span:before {
  225. content: "\e932";
  226. }
  227. .login-card .login-main .theme-form .show-hide,
  228. .registration-card .registration-main .theme-form .show-hide,
  229. .onboarding-card .onboarding-main .theme-form .show-hide {
  230. /* top: 50%; */
  231. top: 20px;
  232. }
  233. .login-card input[type="password"] {
  234. padding: 6px 60px 6px 14px !important;
  235. }
  236. .theme-form input[type="text"],
  237. .theme-form input[type="email"],
  238. .theme-form input[type="search"],
  239. .theme-form input[type="password"],
  240. .theme-form input[type="number"],
  241. .theme-form input[type="tel"],
  242. .theme-form input[type="date"],
  243. .theme-form input[type="datetime-local"],
  244. .theme-form input[type="time"],
  245. .theme-form input[type="datetime-local"],
  246. .theme-form input[type="month"],
  247. .theme-form input[type="week"],
  248. .theme-form input[type="url"],
  249. .theme-form input[type="file"],
  250. .theme-form textarea,
  251. .theme-form select {
  252. border-color: var(--border-color);
  253. background-color: transparent;
  254. font-size: 14px;
  255. padding: 6px 14px;
  256. box-shadow: none;
  257. font-weight: 300;
  258. height: 35px;
  259. }
  260. .theme-form textarea {
  261. padding: 9.7px 14px;
  262. }
  263. @media (max-width: 991.98px) {
  264. .login-card .login-main {
  265. width: 550px;
  266. }
  267. }
  268. @media (max-width: 575.98px) {
  269. .login-card .login-main .theme-form .form-group {
  270. margin-bottom: 0;
  271. }
  272. }
  273. /* END - Frontend */
  274. /* sidebar */
  275. .page-header .logo-wrapper .sidebar-logo {
  276. height: 46px;
  277. margin: auto;
  278. }
  279. .page-sidebar {
  280. margin-top: 83px;
  281. background: var(--theme-default);
  282. }
  283. .page-sidebar .sidebar-menu::-webkit-scrollbar {
  284. width: 5px;
  285. height: 7px;
  286. border-color: var(--theme-default);
  287. }
  288. .page-sidebar .sidebar-menu::-webkit-scrollbar-thumb {
  289. background-color: var(--white);
  290. border-radius: 10px;
  291. }
  292. .page-sidebar .sidebar-menu::-webkit-scrollbar-track {
  293. background: var(--theme-default);
  294. border-color: var(--theme-default);
  295. }
  296. .simplebar-wrapper {
  297. width: 100%;
  298. }
  299. .page-wrapper.compact-wrapper
  300. .page-body-wrapper
  301. .page-sidebar
  302. .sidebar-menu
  303. .simplebar-wrapper
  304. .simplebar-content {
  305. gap: 10px;
  306. }
  307. .sidebar-menu {
  308. padding: 15px 31px 15px 11px;
  309. }
  310. .page-sidebar .sidebar-menu .sidebar-list {
  311. border: none;
  312. }
  313. .page-sidebar .sidebar-submenu {
  314. margin-left: 88px;
  315. margin-bottom: 15px;
  316. margin-top: 2px;
  317. border-left: 1px solid var(--white);
  318. }
  319. .page-sidebar .sidebar-submenu li {
  320. list-style-type: none;
  321. padding: 0 5px;
  322. }
  323. .page-sidebar .sidebar-submenu a {
  324. padding-left: 4px;
  325. color: var(--white);
  326. font-size: 14px;
  327. font-weight: 400;
  328. }
  329. .page-sidebar .sidebar-submenu a::before {
  330. display: none;
  331. }
  332. .sidebar-menu .sidebar-list:hover .sidebar-link,
  333. .sidebar-menu .sidebar-list .sidebar-link.active {
  334. background: transparent;
  335. color: var(--white);
  336. border: none;
  337. }
  338. .page-sidebar .sidebar-menu .sidebar-list:has(.active) {
  339. background-color: var(--color-lilla);
  340. border-radius: 10px;
  341. color: var(--white);
  342. }
  343. .page-sidebar .sidebar-submenu:has(.active) {
  344. display: block !important;
  345. }
  346. .sidebar-menu .sidebar-list:hover .sidebar-link i,
  347. .sidebar-menu .sidebar-list:hover .sidebar-link a,
  348. .sidebar-menu .sidebar-list:hover .sidebar-link span {
  349. color: var(--white);
  350. }
  351. .sidebar-menu .sidebar-list .sidebar-link {
  352. color: var(--white);
  353. font-size: 16px;
  354. font-weight: 400;
  355. }
  356. .sidebar-menu .sidebar-list .sidebar-link .main-icon {
  357. margin-left: 0;
  358. margin-right: 28px;
  359. font-size: 20px;
  360. }
  361. .sidebar-menu .sidebar-list .sidebar-link {
  362. background-color: transparent;
  363. color: var(--white);
  364. border-radius: unset;
  365. font-size: 16px;
  366. font-weight: 400;
  367. padding: 15px 26px;
  368. }
  369. .page-sidebar .sidebar-menu .sidebar-list:has(.active) .arrow {
  370. transform: rotate(180deg);
  371. }
  372. /* END - sidebar */
  373. .row.w-100 {
  374. width: calc(100% + var(--bs-gutter-x)) !important;
  375. }
  376. .notification-icon {
  377. display: flex;
  378. width: 40px;
  379. height: 40px;
  380. justify-content: center;
  381. align-items: center;
  382. border: 1px solid;
  383. border-radius: 100%;
  384. cursor: pointer;
  385. color: var(--theme-default);
  386. }
  387. .user-img {
  388. display: flex;
  389. width: 40px;
  390. height: 40px;
  391. justify-content: center;
  392. align-items: center;
  393. border: 1px solid var(--theme-default);
  394. border-radius: 100%;
  395. cursor: pointer;
  396. background-color: var(--theme-default);
  397. text-align: center;
  398. color: var(--theme-tertiary);
  399. font-weight: normal;
  400. font-size: 20px;
  401. overflow: hidden;
  402. }
  403. /* Content */
  404. .page-wrapper .page-body-wrapper .page-body {
  405. min-height: calc(100dvh - 83px);
  406. padding-bottom: 10px;
  407. }
  408. .slot-info {
  409. padding: 39px 22px;
  410. }
  411. .page-body .slot-title {
  412. font-size: 24px;
  413. text-transform: uppercase;
  414. }
  415. .slot-breadcrumbs {
  416. display: flex;
  417. flex-direction: row;
  418. flex-wrap: wrap;
  419. align-content: flex-start;
  420. justify-content: flex-start;
  421. align-items: center;
  422. gap: 20px;
  423. }
  424. .slot-breadcrumbs a {
  425. font-size: 16px;
  426. font-weight: 700;
  427. position: relative;
  428. }
  429. .slot-breadcrumbs a:not(:first-of-type):before {
  430. content: "/";
  431. position: absolute;
  432. left: -13px;
  433. }
  434. .page-wrapper .page-body-wrapper .page-body .page-content {
  435. padding: 24px;
  436. border-radius: 16px;
  437. background-color: #ffffff;
  438. margin-bottom: 10px;
  439. }
  440. /* End - Content */
  441. /* Tabs */
  442. .section-tabs {
  443. padding-bottom: 40px;
  444. display: flex;
  445. column-gap: 64px;
  446. row-gap: 10px;
  447. flex-direction: row;
  448. flex-wrap: wrap;
  449. align-content: flex-start;
  450. justify-content: flex-start;
  451. align-items: baseline;
  452. }
  453. .section-tabs .section-tab {
  454. position: relative;
  455. font-size: 16px;
  456. font-weight: 500;
  457. cursor: pointer;
  458. padding-inline: 1px;
  459. user-select: none;
  460. }
  461. .section-tabs .section-tab::after {
  462. content: "";
  463. position: absolute;
  464. width: 100%;
  465. height: 3px;
  466. left: 0;
  467. bottom: -2px;
  468. opacity: 0;
  469. background-color: var(--theme-tertiary);
  470. }
  471. .section-tabs .section-tab:hover::after {
  472. opacity: 0.25;
  473. }
  474. .section-tabs .section-tab.active::after {
  475. opacity: 1;
  476. }
  477. .section-content {
  478. display: none;
  479. padding: 0 16px;
  480. }
  481. .section-content.active {
  482. display: block;
  483. }
  484. /* END - Tabs */
  485. /* Table */
  486. div.dt-container div.dt-layout-row {
  487. margin: 24px 0 0 0;
  488. }
  489. div.dt-container div.dt-layout-row.dt-layout-table {
  490. margin-top: 0;
  491. }
  492. div.dt-container select.dt-input {
  493. border-radius: 8px;
  494. padding-inline: 16px;
  495. padding-block: 3px 5px;
  496. margin-left: 16px;
  497. font-size: 16px;
  498. font-weight: 400;
  499. height: 28px;
  500. border: 1px solid var(--border-color);
  501. }
  502. div.dt-container .dt-search input {
  503. border-color: #00000080;
  504. border-radius: 8px;
  505. height: 32px;
  506. padding-inline: 36px 12px;
  507. margin: 0;
  508. }
  509. div.dt-container .dt-search label {
  510. position: absolute;
  511. top: 0;
  512. left: 0;
  513. height: 32px;
  514. width: 40px;
  515. display: flex;
  516. flex-direction: row;
  517. flex-wrap: nowrap;
  518. align-content: center;
  519. justify-content: center;
  520. align-items: center;
  521. color: var(--theme-default);
  522. font-size: 16px;
  523. font-weight: 900;
  524. font-family: "Font Awesome 6 Free";
  525. -webkit-font-smoothing: antialiased;
  526. font-style: normal;
  527. font-variant: normal;
  528. line-height: 1;
  529. text-rendering: auto;
  530. }
  531. div.dt-container .dt-search {
  532. position: relative;
  533. }
  534. div.dt-container .dt-search label:after {
  535. content: "\f002";
  536. }
  537. table.dataTable thead > tr > th.dt-orderable-asc:hover,
  538. table.dataTable thead > tr > th.dt-orderable-desc:hover,
  539. table.dataTable thead > tr > td.dt-orderable-asc:hover,
  540. table.dataTable thead > tr > td.dt-orderable-desc:hover {
  541. outline: none;
  542. }
  543. table.dataTable.order-column > tbody tr:not(:hover) > .sorting_1,
  544. table.dataTable.order-column > tbody tr:not(:hover) > .sorting_2,
  545. table.dataTable.order-column > tbody tr:not(:hover) > .sorting_3,
  546. table.dataTable.display > tbody tr:not(:hover) > .sorting_1,
  547. table.dataTable.display > tbody tr:not(:hover) > .sorting_2,
  548. table.dataTable.display > tbody tr:not(:hover) > .sorting_3,
  549. table.dataTable.display tbody tr:not(:hover) > .sorting_1,
  550. table.dataTable.order-column.hover tbody tr:not(:hover) > .sorting_1,
  551. table.dataTable.stripe > tbody > tr:not(:hover):nth-child(odd) > *,
  552. table.dataTable.display > tbody > tr:not(:hover):nth-child(odd) > * {
  553. box-shadow: unset;
  554. }
  555. table.dataTable > thead > tr > th,
  556. table.dataTable > thead > tr > td {
  557. padding: 24px 24px 16px 24px;
  558. }
  559. table.dataTable > tbody > tr > th,
  560. table.dataTable > tbody > tr > td {
  561. padding: 22px 24px;
  562. }
  563. table.dataTable .dt-actions {
  564. display: flex;
  565. justify-content: center;
  566. gap: 12px;
  567. }
  568. table.dataTable .dt-actions .dt-action {
  569. font-size: 16px;
  570. cursor: pointer;
  571. height: 24px;
  572. width: 24px;
  573. display: flex;
  574. flex-direction: row;
  575. flex-wrap: nowrap;
  576. align-content: center;
  577. justify-content: center;
  578. align-items: center;
  579. }
  580. div.dt-container .dt-info {
  581. font-size: 14px;
  582. }
  583. div.dt-container .dt-paging nav {
  584. display: flex;
  585. flex-direction: row;
  586. flex-wrap: nowrap;
  587. align-content: center;
  588. justify-content: center;
  589. align-items: center;
  590. gap: 6px;
  591. }
  592. div.dt-container .dt-paging .dt-paging-button,
  593. div.dt-container .dt-paging .dt-paging-button:hover,
  594. div.dt-container .dt-paging .dt-paging-button.current,
  595. div.dt-container .dt-paging .dt-paging-button.current:hover {
  596. width: 26px;
  597. height: 26px;
  598. padding: 0px;
  599. margin: 0;
  600. border: none;
  601. border-radius: 4px;
  602. background: unset;
  603. background-color: rgb(0 0 0 / 8%);
  604. font-size: 14px;
  605. box-shadow: none;
  606. }
  607. div.dt-container .dt-paging .dt-paging-button:hover,
  608. div.dt-container .dt-paging .dt-paging-button.current,
  609. div.dt-container .dt-paging .dt-paging-button.current:hover {
  610. background-color: var(--theme-default);
  611. color: var(--white) !important;
  612. }
  613. div.dt-container .dt-paging .dt-paging-button.first,
  614. div.dt-container .dt-paging .dt-paging-button.first.disabled,
  615. div.dt-container .dt-paging .dt-paging-button.first:hover,
  616. div.dt-container .dt-paging .dt-paging-button.first.disabled:hover,
  617. div.dt-container .dt-paging .dt-paging-button.previous,
  618. div.dt-container .dt-paging .dt-paging-button.previous.disabled,
  619. div.dt-container .dt-paging .dt-paging-button.previous:hover,
  620. div.dt-container .dt-paging .dt-paging-button.previous.disabled:hover,
  621. div.dt-container .dt-paging .dt-paging-button.next,
  622. div.dt-container .dt-paging .dt-paging-button.next.disabled,
  623. div.dt-container .dt-paging .dt-paging-button.next:hover,
  624. div.dt-container .dt-paging .dt-paging-button.next.disabled:hover,
  625. div.dt-container .dt-paging .dt-paging-button.last,
  626. div.dt-container .dt-paging .dt-paging-button.last.disabled,
  627. div.dt-container .dt-paging .dt-paging-button.last:hover,
  628. div.dt-container .dt-paging .dt-paging-button.last.disabled:hover {
  629. background: transparent;
  630. color: #ababab !important;
  631. opacity: 1;
  632. border: none;
  633. position: relative;
  634. font-size: 0;
  635. }
  636. div.dt-container .dt-paging .dt-paging-button.first:not(.disabled):hover:after,
  637. div.dt-container
  638. .dt-paging
  639. .dt-paging-button.previous:not(.disabled):hover:after,
  640. div.dt-container .dt-paging .dt-paging-button.next:not(.disabled):hover:after,
  641. div.dt-container .dt-paging .dt-paging-button.last:not(.disabled):hover:after {
  642. opacity: 0.66;
  643. }
  644. div.dt-container .dt-paging .dt-paging-button.first:after,
  645. div.dt-container .dt-paging .dt-paging-button.previous:after,
  646. div.dt-container .dt-paging .dt-paging-button.next:after,
  647. div.dt-container .dt-paging .dt-paging-button.last:after {
  648. content: "";
  649. width: 100%;
  650. height: 100%;
  651. display: flex;
  652. position: absolute;
  653. top: 0;
  654. left: 0;
  655. flex-direction: row;
  656. flex-wrap: nowrap;
  657. align-content: center;
  658. justify-content: center;
  659. align-items: center;
  660. opacity: 0.33;
  661. }
  662. div.dt-container .dt-paging .dt-paging-button.first:after {
  663. content: url(/assets/images/pagination/first.svg);
  664. }
  665. div.dt-container .dt-paging .dt-paging-button.previous:after {
  666. content: url(/assets/images/pagination/previous.svg);
  667. }
  668. div.dt-container .dt-paging .dt-paging-button.next:after {
  669. content: url(/assets/images/pagination/next.svg);
  670. }
  671. div.dt-container .dt-paging .dt-paging-button.last:after {
  672. content: url(/assets/images/pagination/last.svg);
  673. }
  674. /* END - Table */