custom.css 17 KB

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