custom.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  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: 20px;
  231. }
  232. .theme-form input.is-invalid[type="password"] ~ .show-hide {
  233. right: 30px;
  234. }
  235. .login-card input[type="password"] {
  236. padding: 6px 60px 6px 14px !important;
  237. }
  238. .theme-form input[type="text"],
  239. .theme-form input[type="email"],
  240. .theme-form input[type="search"],
  241. .theme-form input[type="password"],
  242. .theme-form input[type="number"],
  243. .theme-form input[type="tel"],
  244. .theme-form input[type="date"],
  245. .theme-form input[type="datetime-local"],
  246. .theme-form input[type="time"],
  247. .theme-form input[type="datetime-local"],
  248. .theme-form input[type="month"],
  249. .theme-form input[type="week"],
  250. .theme-form input[type="url"],
  251. .theme-form input[type="file"],
  252. .theme-form textarea,
  253. .theme-form select {
  254. border-color: var(--border-color);
  255. background-color: transparent;
  256. font-size: 14px;
  257. padding: 6px 14px;
  258. box-shadow: none;
  259. font-weight: 300;
  260. height: 35px;
  261. }
  262. .theme-form textarea {
  263. padding: 9.7px 14px;
  264. }
  265. @media (max-width: 991.98px) {
  266. .login-card .login-main {
  267. width: 550px;
  268. }
  269. }
  270. @media (max-width: 575.98px) {
  271. .login-card .login-main .theme-form .form-group {
  272. margin-bottom: 0;
  273. }
  274. }
  275. /* END - Frontend */
  276. /* sidebar */
  277. .page-header .logo-wrapper .sidebar-logo {
  278. height: 46px;
  279. margin: auto;
  280. }
  281. .page-sidebar {
  282. margin-top: 83px;
  283. background: var(--theme-default);
  284. }
  285. .page-sidebar .sidebar-menu::-webkit-scrollbar {
  286. width: 5px;
  287. height: 7px;
  288. border-color: var(--theme-default);
  289. }
  290. .page-sidebar .sidebar-menu::-webkit-scrollbar-thumb {
  291. background-color: var(--white);
  292. border-radius: 10px;
  293. }
  294. .page-sidebar .sidebar-menu::-webkit-scrollbar-track {
  295. background: var(--theme-default);
  296. border-color: var(--theme-default);
  297. }
  298. .simplebar-wrapper {
  299. width: 100%;
  300. }
  301. .page-wrapper.compact-wrapper
  302. .page-body-wrapper
  303. .page-sidebar
  304. .sidebar-menu
  305. .simplebar-wrapper
  306. .simplebar-content {
  307. gap: 10px;
  308. }
  309. .sidebar-menu {
  310. padding: 15px 31px 15px 11px;
  311. }
  312. .page-sidebar .sidebar-menu .sidebar-list {
  313. border: none;
  314. }
  315. .page-sidebar .sidebar-submenu {
  316. margin-left: 88px;
  317. margin-bottom: 15px;
  318. margin-top: 2px;
  319. border-left: 1px solid var(--white);
  320. }
  321. .page-sidebar .sidebar-submenu li {
  322. list-style-type: none;
  323. padding: 0 5px;
  324. }
  325. .page-sidebar .sidebar-submenu a {
  326. padding-left: 4px;
  327. color: var(--white);
  328. font-size: 14px;
  329. font-weight: 400;
  330. }
  331. .page-sidebar .sidebar-submenu a::before {
  332. display: none;
  333. }
  334. .sidebar-menu .sidebar-list:hover .sidebar-link,
  335. .sidebar-menu .sidebar-list .sidebar-link.active {
  336. background: transparent;
  337. color: var(--white);
  338. border: none;
  339. }
  340. .page-sidebar .sidebar-menu .sidebar-list:has(.active) {
  341. background-color: var(--color-lilla);
  342. border-radius: 10px;
  343. color: var(--white);
  344. }
  345. .page-sidebar .sidebar-submenu:has(.active) {
  346. display: block !important;
  347. }
  348. .sidebar-menu .sidebar-list:hover .sidebar-link i,
  349. .sidebar-menu .sidebar-list:hover .sidebar-link a,
  350. .sidebar-menu .sidebar-list:hover .sidebar-link span {
  351. color: var(--white);
  352. }
  353. .sidebar-menu .sidebar-list .sidebar-link {
  354. color: var(--white);
  355. font-size: 16px;
  356. font-weight: 400;
  357. }
  358. .sidebar-menu .sidebar-list .sidebar-link .main-icon {
  359. margin-left: 0;
  360. margin-right: 28px;
  361. font-size: 20px;
  362. }
  363. .sidebar-menu .sidebar-list .sidebar-link {
  364. background-color: transparent;
  365. color: var(--white);
  366. border-radius: unset;
  367. font-size: 16px;
  368. font-weight: 400;
  369. padding: 15px 26px;
  370. }
  371. .page-sidebar .sidebar-menu .sidebar-list:has(.active) .arrow {
  372. transform: rotate(180deg);
  373. }
  374. /* END - sidebar */
  375. .row.w-100 {
  376. width: calc(100% + var(--bs-gutter-x)) !important;
  377. }
  378. .notification-icon {
  379. display: flex;
  380. width: 40px;
  381. height: 40px;
  382. justify-content: center;
  383. align-items: center;
  384. border: 1px solid;
  385. border-radius: 100%;
  386. cursor: pointer;
  387. color: var(--theme-default);
  388. }
  389. .user-img {
  390. display: flex;
  391. width: 40px;
  392. height: 40px;
  393. justify-content: center;
  394. align-items: center;
  395. border: 1px solid var(--theme-default);
  396. border-radius: 100%;
  397. cursor: pointer;
  398. background-color: var(--theme-default);
  399. text-align: center;
  400. color: var(--theme-tertiary);
  401. font-weight: normal;
  402. font-size: 20px;
  403. overflow: hidden;
  404. }
  405. /* Content */
  406. .page-wrapper .page-body-wrapper .page-body {
  407. min-height: calc(100dvh - 83px);
  408. padding-bottom: 10px;
  409. }
  410. .slot-info {
  411. padding: 39px 22px;
  412. }
  413. .page-body .slot-title {
  414. font-size: 24px;
  415. text-transform: uppercase;
  416. }
  417. .slot-breadcrumbs {
  418. display: flex;
  419. flex-direction: row;
  420. flex-wrap: wrap;
  421. align-content: flex-start;
  422. justify-content: flex-start;
  423. align-items: center;
  424. gap: 20px;
  425. }
  426. .slot-breadcrumbs a {
  427. font-size: 16px;
  428. font-weight: 700;
  429. position: relative;
  430. }
  431. .slot-breadcrumbs a:not(:first-of-type):before {
  432. content: "/";
  433. position: absolute;
  434. left: -13px;
  435. }
  436. .page-wrapper .page-body-wrapper .page-body .page-content {
  437. padding: 24px;
  438. border-radius: 16px;
  439. background-color: #ffffff;
  440. margin-bottom: 10px;
  441. }
  442. /* End - Content */
  443. /* Tabs */
  444. .section-tabs {
  445. padding-bottom: 40px;
  446. display: flex;
  447. column-gap: 64px;
  448. row-gap: 10px;
  449. flex-direction: row;
  450. flex-wrap: wrap;
  451. align-content: flex-start;
  452. justify-content: flex-start;
  453. align-items: baseline;
  454. }
  455. .section-tabs .section-tab {
  456. position: relative;
  457. font-size: 16px;
  458. font-weight: 500;
  459. cursor: pointer;
  460. padding-inline: 1px;
  461. user-select: none;
  462. }
  463. .section-tabs .section-tab::after {
  464. content: "";
  465. position: absolute;
  466. width: 100%;
  467. height: 3px;
  468. left: 0;
  469. bottom: -2px;
  470. opacity: 0;
  471. background-color: var(--theme-tertiary);
  472. }
  473. .section-tabs .section-tab:hover::after {
  474. opacity: 0.25;
  475. }
  476. .section-tabs .section-tab.active::after {
  477. opacity: 1;
  478. }
  479. .section-content {
  480. display: none;
  481. padding: 0 16px;
  482. }
  483. .section-content.active {
  484. display: block;
  485. }
  486. /* END - Tabs */
  487. /* Table */
  488. div.dt-container div.dt-layout-row {
  489. margin: 24px 0 0 0;
  490. }
  491. div.dt-container div.dt-layout-row.dt-layout-table {
  492. margin-top: 0;
  493. }
  494. div.dt-container select.dt-input {
  495. border-radius: 8px;
  496. padding-inline: 16px;
  497. padding-block: 3px 5px;
  498. margin-left: 16px;
  499. font-size: 16px;
  500. font-weight: 400;
  501. height: 28px;
  502. border: 1px solid var(--border-color);
  503. }
  504. div.dt-container .dt-search input {
  505. border-color: #00000080;
  506. border-radius: 8px;
  507. height: 32px;
  508. padding-inline: 36px 12px;
  509. margin: 0;
  510. }
  511. div.dt-container .dt-search label {
  512. position: absolute;
  513. top: 0;
  514. left: 0;
  515. height: 32px;
  516. width: 40px;
  517. display: flex;
  518. flex-direction: row;
  519. flex-wrap: nowrap;
  520. align-content: center;
  521. justify-content: center;
  522. align-items: center;
  523. color: var(--theme-default);
  524. font-size: 16px;
  525. font-weight: 900;
  526. font-family: "Font Awesome 6 Free";
  527. -webkit-font-smoothing: antialiased;
  528. font-style: normal;
  529. font-variant: normal;
  530. line-height: 1;
  531. text-rendering: auto;
  532. }
  533. div.dt-container .dt-search {
  534. position: relative;
  535. }
  536. div.dt-container .dt-search label:after {
  537. content: "\f002";
  538. }
  539. table.dataTable thead > tr > th.dt-orderable-asc:hover,
  540. table.dataTable thead > tr > th.dt-orderable-desc:hover,
  541. table.dataTable thead > tr > td.dt-orderable-asc:hover,
  542. table.dataTable thead > tr > td.dt-orderable-desc:hover {
  543. outline: none;
  544. }
  545. table.dataTable.order-column > tbody tr:not(:hover) > .sorting_1,
  546. table.dataTable.order-column > tbody tr:not(:hover) > .sorting_2,
  547. table.dataTable.order-column > tbody tr:not(:hover) > .sorting_3,
  548. table.dataTable.display > tbody tr:not(:hover) > .sorting_1,
  549. table.dataTable.display > tbody tr:not(:hover) > .sorting_2,
  550. table.dataTable.display > tbody tr:not(:hover) > .sorting_3,
  551. table.dataTable.display tbody tr:not(:hover) > .sorting_1,
  552. table.dataTable.order-column.hover tbody tr:not(:hover) > .sorting_1,
  553. table.dataTable.stripe > tbody > tr:not(:hover):nth-child(odd) > *,
  554. table.dataTable.display > tbody > tr:not(:hover):nth-child(odd) > * {
  555. box-shadow: unset;
  556. }
  557. table.dataTable > thead > tr > th,
  558. table.dataTable > thead > tr > td {
  559. padding: 24px 24px 16px 24px;
  560. }
  561. table.dataTable > tbody > tr > th,
  562. table.dataTable > tbody > tr > td {
  563. padding: 22px 24px;
  564. }
  565. table.dataTable .dt-actions {
  566. display: flex;
  567. justify-content: center;
  568. gap: 12px;
  569. }
  570. table.dataTable .dt-actions .dt-action {
  571. font-size: 16px;
  572. cursor: pointer;
  573. height: 24px;
  574. width: 24px;
  575. display: flex;
  576. flex-direction: row;
  577. flex-wrap: nowrap;
  578. align-content: center;
  579. justify-content: center;
  580. align-items: center;
  581. }
  582. div.dt-container .dt-info {
  583. font-size: 14px;
  584. }
  585. div.dt-container .dt-paging nav {
  586. display: flex;
  587. flex-direction: row;
  588. flex-wrap: nowrap;
  589. align-content: center;
  590. justify-content: center;
  591. align-items: center;
  592. gap: 6px;
  593. }
  594. div.dt-container .dt-paging .dt-paging-button,
  595. div.dt-container .dt-paging .dt-paging-button:hover,
  596. div.dt-container .dt-paging .dt-paging-button.current,
  597. div.dt-container .dt-paging .dt-paging-button.current:hover {
  598. width: 26px;
  599. height: 26px;
  600. padding: 0px;
  601. margin: 0;
  602. border: none;
  603. border-radius: 4px;
  604. background: unset;
  605. background-color: rgb(0 0 0 / 8%);
  606. font-size: 14px;
  607. box-shadow: none;
  608. }
  609. div.dt-container .dt-paging .dt-paging-button:hover,
  610. div.dt-container .dt-paging .dt-paging-button.current,
  611. div.dt-container .dt-paging .dt-paging-button.current:hover {
  612. background-color: var(--theme-default);
  613. color: var(--white) !important;
  614. }
  615. div.dt-container .dt-paging .dt-paging-button.first,
  616. div.dt-container .dt-paging .dt-paging-button.first.disabled,
  617. div.dt-container .dt-paging .dt-paging-button.first:hover,
  618. div.dt-container .dt-paging .dt-paging-button.first.disabled:hover,
  619. div.dt-container .dt-paging .dt-paging-button.previous,
  620. div.dt-container .dt-paging .dt-paging-button.previous.disabled,
  621. div.dt-container .dt-paging .dt-paging-button.previous:hover,
  622. div.dt-container .dt-paging .dt-paging-button.previous.disabled:hover,
  623. div.dt-container .dt-paging .dt-paging-button.next,
  624. div.dt-container .dt-paging .dt-paging-button.next.disabled,
  625. div.dt-container .dt-paging .dt-paging-button.next:hover,
  626. div.dt-container .dt-paging .dt-paging-button.next.disabled:hover,
  627. div.dt-container .dt-paging .dt-paging-button.last,
  628. div.dt-container .dt-paging .dt-paging-button.last.disabled,
  629. div.dt-container .dt-paging .dt-paging-button.last:hover,
  630. div.dt-container .dt-paging .dt-paging-button.last.disabled:hover {
  631. background: transparent;
  632. color: #ababab !important;
  633. opacity: 1;
  634. border: none;
  635. position: relative;
  636. font-size: 0;
  637. }
  638. div.dt-container .dt-paging .dt-paging-button.first:not(.disabled):hover:after,
  639. div.dt-container
  640. .dt-paging
  641. .dt-paging-button.previous:not(.disabled):hover:after,
  642. div.dt-container .dt-paging .dt-paging-button.next:not(.disabled):hover:after,
  643. div.dt-container .dt-paging .dt-paging-button.last:not(.disabled):hover:after {
  644. opacity: 0.66;
  645. }
  646. div.dt-container .dt-paging .dt-paging-button.first:after,
  647. div.dt-container .dt-paging .dt-paging-button.previous:after,
  648. div.dt-container .dt-paging .dt-paging-button.next:after,
  649. div.dt-container .dt-paging .dt-paging-button.last:after {
  650. content: "";
  651. width: 100%;
  652. height: 100%;
  653. display: flex;
  654. position: absolute;
  655. top: 0;
  656. left: 0;
  657. flex-direction: row;
  658. flex-wrap: nowrap;
  659. align-content: center;
  660. justify-content: center;
  661. align-items: center;
  662. opacity: 0.33;
  663. }
  664. div.dt-container .dt-paging .dt-paging-button.first:after {
  665. content: url(/assets/images/pagination/first.svg);
  666. }
  667. div.dt-container .dt-paging .dt-paging-button.previous:after {
  668. content: url(/assets/images/pagination/previous.svg);
  669. }
  670. div.dt-container .dt-paging .dt-paging-button.next:after {
  671. content: url(/assets/images/pagination/next.svg);
  672. }
  673. div.dt-container .dt-paging .dt-paging-button.last:after {
  674. content: url(/assets/images/pagination/last.svg);
  675. }
  676. /* END - Table */