layout.css 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103
  1. @charset "UTF-8";
  2. /* ------------------------------------------------------------------------------
  3. *
  4. * # Core layout
  5. *
  6. * Content area, sidebar, page header and boxed layout styles
  7. *
  8. * ---------------------------------------------------------------------------- */
  9. /* ------------------------------------------------------------------------------
  10. *
  11. * # Global configuration
  12. *
  13. * Here you can change main theme, enable or disable certain components and
  14. * optional styles. This allows you to include only components that you need.
  15. *
  16. * 'true' - enables component and includes it to main CSS file.
  17. * 'false' - disables component and excludes it from main CSS file.
  18. *
  19. * Layout helper: @if $layout == 'base' {...}
  20. * Theme helper: @if $theme == 'material' {...}
  21. * Component helper: @if $enable-* {...}
  22. *
  23. * ---------------------------------------------------------------------------- */
  24. /* ------------------------------------------------------------------------------
  25. *
  26. * # Custom Limitless functions
  27. *
  28. * Utility mixins and functions for evalutating source code across our variables, maps, and mixins.
  29. *
  30. * ---------------------------------------------------------------------------- */
  31. /* ------------------------------------------------------------------------------
  32. *
  33. * # Custom template mixins
  34. *
  35. * All custom mixins are prefixed with "ll-" to avoid conflicts
  36. *
  37. * ---------------------------------------------------------------------------- */
  38. /* ------------------------------------------------------------------------------
  39. *
  40. * # Main colors
  41. *
  42. * List of the template main color palettes
  43. *
  44. * ---------------------------------------------------------------------------- */
  45. /* ------------------------------------------------------------------------------
  46. *
  47. * # Default Bootstrap variable overrides
  48. *
  49. * Variables should follow the `$component-state-property-size` formula for
  50. * consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
  51. * Also includes custom variables, all marked with "!default" flag.
  52. *
  53. * ---------------------------------------------------------------------------- */
  54. /* ------------------------------------------------------------------------------
  55. *
  56. * # Additional variables
  57. *
  58. * Mainly 3rd party libraries and additional variables for default
  59. * Bootstrap components.
  60. *
  61. * ---------------------------------------------------------------------------- */
  62. /* ------------------------------------------------------------------------------
  63. *
  64. * # Mixins
  65. *
  66. * Import Bootstrap mixins with overrides
  67. *
  68. * ---------------------------------------------------------------------------- */
  69. /* ------------------------------------------------------------------------------
  70. *
  71. * # Badge mixin
  72. *
  73. * Override and extend default badge mixin.
  74. *
  75. * ---------------------------------------------------------------------------- */
  76. /* ------------------------------------------------------------------------------
  77. *
  78. * # Forms mixin
  79. *
  80. * Override and extend default forms mixin.
  81. *
  82. * ---------------------------------------------------------------------------- */
  83. /* ------------------------------------------------------------------------------
  84. *
  85. * # Buttons mixin
  86. *
  87. * Override and extend default buttons mixin.
  88. *
  89. * ---------------------------------------------------------------------------- */
  90. /* ------------------------------------------------------------------------------
  91. *
  92. * # Caret mixin
  93. *
  94. * Override and extend default cared mixin.
  95. *
  96. * ---------------------------------------------------------------------------- */
  97. /* ------------------------------------------------------------------------------
  98. *
  99. * # Background mixin
  100. *
  101. * Override and extend default background mixin.
  102. *
  103. * ---------------------------------------------------------------------------- */
  104. /* ------------------------------------------------------------------------------
  105. *
  106. * # Main content layout
  107. *
  108. * Styles for main structure of content area
  109. *
  110. * ---------------------------------------------------------------------------- */
  111. html {
  112. display: -ms-flexbox;
  113. display: flex;
  114. -ms-flex-direction: column;
  115. flex-direction: column; }
  116. body {
  117. min-height: 100vh;
  118. display: -ms-flexbox;
  119. display: flex;
  120. -ms-flex-direction: column;
  121. flex-direction: column;
  122. -ms-flex: 1;
  123. flex: 1; }
  124. .page-content {
  125. display: -ms-flexbox;
  126. display: flex;
  127. -ms-flex-positive: 1;
  128. flex-grow: 1; }
  129. .content-wrapper {
  130. display: -ms-flexbox;
  131. display: flex;
  132. -ms-flex-direction: column;
  133. flex-direction: column;
  134. -ms-flex: 1;
  135. flex: 1;
  136. overflow: auto; }
  137. .content {
  138. padding: 1.25rem 1.25rem;
  139. -ms-flex-positive: 1;
  140. flex-grow: 1; }
  141. .content::after {
  142. display: block;
  143. clear: both;
  144. content: ""; }
  145. /* ------------------------------------------------------------------------------
  146. *
  147. * # Page header
  148. *
  149. * Page header components and color options
  150. *
  151. * ---------------------------------------------------------------------------- */
  152. .page-title {
  153. padding: 2rem 0;
  154. position: relative; }
  155. .page-title small {
  156. display: inline-block;
  157. margin-left: 0.625rem; }
  158. .page-title small:before {
  159. content: '/';
  160. margin-right: 0.875rem; }
  161. .page-title small.d-block {
  162. margin-left: 0; }
  163. .page-title small.d-block:before {
  164. content: none; }
  165. .page-title small.d-block,
  166. .page-title .breadcrumb {
  167. margin-left: 1.875rem; }
  168. .page-title h1, .page-title h2, .page-title h3, .page-title h4, .page-title h5, .page-title h6 {
  169. margin: 0; }
  170. .page-header-content {
  171. position: relative;
  172. padding: 0 1.25rem; }
  173. .page-header-content[class*=border-bottom-] + .breadcrumb-line {
  174. border-top: 0; }
  175. .page-header-light {
  176. background-color: #fff;
  177. border-bottom: 1px solid #ddd; }
  178. .page-header-light.has-cover {
  179. background: url(../../../../../../global_assets/images/backgrounds/seamless.png); }
  180. .page-header-dark {
  181. background-color: #273246;
  182. color: #fff;
  183. margin-bottom: 1.25rem; }
  184. .page-header-dark > .breadcrumb > li > a,
  185. .page-header-dark > .breadcrumb > li + li:before,
  186. .page-header-dark .page-header-content .breadcrumb > li > a,
  187. .page-header-dark .page-header-content .breadcrumb > li + li:before {
  188. color: rgba(255, 255, 255, 0.9); }
  189. .page-header-dark > .breadcrumb > li > a:hover, .page-header-dark > .breadcrumb > li > a:focus,
  190. .page-header-dark .page-header-content .breadcrumb > li > a:hover,
  191. .page-header-dark .page-header-content .breadcrumb > li > a:focus {
  192. color: #fff;
  193. opacity: 1; }
  194. .page-header-dark > .breadcrumb > .active,
  195. .page-header-dark .page-header-content .breadcrumb > .active {
  196. color: rgba(255, 255, 255, 0.5); }
  197. .page-header-dark.has-cover {
  198. background: url(../../../../../../global_assets/images/login_cover.jpg);
  199. background-size: cover; }
  200. /* ------------------------------------------------------------------------------
  201. *
  202. * # Sidebar layouts
  203. *
  204. * Sidebar components, main navigation and sidebar itself
  205. *
  206. * ---------------------------------------------------------------------------- */
  207. .sidebar {
  208. -ms-flex: 0 0 auto;
  209. flex: 0 0 auto;
  210. width: 16.875rem; }
  211. .sidebar:not(.sidebar-component) {
  212. position: fixed;
  213. top: 0;
  214. bottom: 0;
  215. box-sizing: content-box;
  216. z-index: 1040;
  217. transition: all ease-in-out 0.15s; }
  218. @media (prefers-reduced-motion: reduce) {
  219. .sidebar:not(.sidebar-component) {
  220. transition: none; } }
  221. .sidebar-main,
  222. .sidebar-main .sidebar-content, .sidebar-secondary,
  223. .sidebar-secondary .sidebar-content {
  224. left: -18.5625rem; }
  225. .sidebar-right,
  226. .sidebar-right .sidebar-content {
  227. right: -18.5625rem; }
  228. .sidebar.sidebar-fullscreen {
  229. width: 100%; }
  230. .sidebar:not(.sidebar-component) .sidebar-content {
  231. position: fixed;
  232. top: 3.12503rem;
  233. bottom: 0;
  234. width: inherit;
  235. overflow-y: scroll;
  236. -webkit-overflow-scrolling: touch;
  237. transition: left ease-in-out 0.15s, right ease-in-out 0.15s; }
  238. @media (prefers-reduced-motion: reduce) {
  239. .sidebar:not(.sidebar-component) .sidebar-content {
  240. transition: none; } }
  241. .navbar-lg:first-child ~ .page-content .sidebar:not(.sidebar-component) .sidebar-content {
  242. top: 3.37503rem; }
  243. .navbar-sm:first-child ~ .page-content .sidebar:not(.sidebar-component) .sidebar-content {
  244. top: 2.87503rem; }
  245. .sidebar-mobile-main .sidebar-main {
  246. box-shadow: 0.25rem 0 1rem rgba(0, 0, 0, 0.35); }
  247. .sidebar-mobile-main .sidebar-main,
  248. .sidebar-mobile-main .sidebar-main .sidebar-content {
  249. left: 0; }
  250. .sidebar-mobile-secondary .sidebar-secondary {
  251. box-shadow: 0.25rem 0 1rem rgba(0, 0, 0, 0.35); }
  252. .sidebar-mobile-secondary .sidebar-secondary,
  253. .sidebar-mobile-secondary .sidebar-secondary .sidebar-content {
  254. left: 0; }
  255. .sidebar-mobile-right .sidebar-right {
  256. display: block;
  257. box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.35); }
  258. .sidebar-mobile-right .sidebar-right,
  259. .sidebar-mobile-right .sidebar-right .sidebar-content {
  260. right: 0; }
  261. .sidebar-mobile-component .sidebar-component {
  262. display: block; }
  263. .nav-sidebar {
  264. -ms-flex-direction: column;
  265. flex-direction: column; }
  266. .nav-sidebar .nav-item:not(.nav-item-header):first-child {
  267. padding-top: 0.5rem; }
  268. .nav-sidebar .nav-item:not(.nav-item-header):last-child {
  269. padding-bottom: 0.5rem; }
  270. .nav-sidebar .nav-item:not(.nav-item-divider) {
  271. margin-bottom: 1px; }
  272. .nav-sidebar .nav-item:not(.nav-item-divider):last-child {
  273. margin-bottom: 0; }
  274. .nav-sidebar > .nav-item > .nav-link {
  275. font-weight: 500; }
  276. .nav-sidebar .nav-link {
  277. position: relative;
  278. display: -ms-flexbox;
  279. display: flex;
  280. -ms-flex-align: start;
  281. align-items: flex-start;
  282. padding: 0.75rem 1.25rem;
  283. transition: background-color ease-in-out 0.15s, color ease-in-out 0.15s; }
  284. @media (prefers-reduced-motion: reduce) {
  285. .nav-sidebar .nav-link {
  286. transition: none; } }
  287. .nav-sidebar .nav-link i {
  288. margin-right: 1.25rem;
  289. margin-top: 0.12502rem;
  290. margin-bottom: 0.12502rem;
  291. top: 0; }
  292. .nav-sidebar .nav-link .badge {
  293. transition: background-color ease-in-out 0.15s, border-color ease-in-out 0.15s; }
  294. @media (prefers-reduced-motion: reduce) {
  295. .nav-sidebar .nav-link .badge {
  296. transition: none; } }
  297. .nav-sidebar .nav-link.disabled, .nav-sidebar .nav-link.disabled:hover, .nav-sidebar .nav-link.disabled:focus {
  298. background-color: transparent;
  299. opacity: 0.5; }
  300. .nav-sidebar .nav-item-header {
  301. padding: 0.75rem 1.25rem;
  302. margin-top: 0.5rem; }
  303. .nav-sidebar .nav-item-header > i {
  304. display: none; }
  305. .nav-sidebar .nav-item-divider {
  306. margin: 0.5rem 0;
  307. height: 1px; }
  308. .nav-item-submenu > .nav-link {
  309. padding-right: 2.75rem; }
  310. .nav-item-submenu > .nav-link:after {
  311. content: "";
  312. font-family: "icomoon";
  313. display: inline-block;
  314. font-size: 1rem;
  315. vertical-align: middle;
  316. line-height: 1;
  317. position: absolute;
  318. top: 0.75rem;
  319. margin-top: 0.12502rem;
  320. right: 1.25rem;
  321. transition: -webkit-transform 0.25s ease-in-out;
  322. transition: transform 0.25s ease-in-out;
  323. transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  324. -webkit-font-smoothing: antialiased;
  325. -moz-osx-font-smoothing: grayscale; }
  326. @media (prefers-reduced-motion: reduce) {
  327. .nav-item-submenu > .nav-link:after {
  328. transition: none; } }
  329. .nav-item-submenu.nav-item-open > .nav-link:after {
  330. -webkit-transform: rotate(90deg);
  331. transform: rotate(90deg); }
  332. .nav-group-sub {
  333. display: none; }
  334. .nav-group-sub .nav-link {
  335. padding: 0.625rem 1.25rem 0.625rem 3.5rem; }
  336. .nav-group-sub .nav-group-sub .nav-link {
  337. padding-left: 4.75rem; }
  338. .nav-group-sub .nav-group-sub .nav-group-sub .nav-link {
  339. padding-left: 6rem; }
  340. .nav-group-sub .nav-item-submenu > .nav-link:after {
  341. top: 0.625rem; }
  342. .nav-item-expanded > .nav-group-sub {
  343. display: block; }
  344. .nav-scrollspy .nav-link.active + .nav,
  345. .nav-scrollspy .nav-item-open .nav-link:not(.active) + .nav {
  346. display: block; }
  347. .nav-scrollspy .nav-link.active:after {
  348. -webkit-transform: rotate(90deg);
  349. transform: rotate(90deg); }
  350. .nav-sidebar-icons-reverse .nav-link {
  351. padding-right: 3.5rem; }
  352. .nav-sidebar-icons-reverse .nav-link i {
  353. position: absolute;
  354. top: 0.75rem;
  355. right: 1.25rem;
  356. margin-right: 0; }
  357. .nav-sidebar-icons-reverse .nav-item-submenu .nav-link {
  358. padding-right: 4.5rem; }
  359. .nav-sidebar-icons-reverse .nav-item-submenu .nav-link:after {
  360. right: 3.25rem; }
  361. .nav-sidebar-icons-reverse .nav-group-sub .nav-link {
  362. padding-left: 2.5rem; }
  363. .nav-sidebar-icons-reverse .nav-group-sub .nav-link i {
  364. top: 0.625rem; }
  365. .nav-sidebar-icons-reverse .nav-group-sub .nav-group-sub .nav-link {
  366. padding-left: 3.75rem; }
  367. .nav-sidebar-icons-reverse .nav-group-sub .nav-group-sub .nav-group-sub .nav-link {
  368. padding-left: 5rem; }
  369. .nav-sidebar-bordered > .nav-item + .nav-item:not(.nav-item-divider) {
  370. margin-bottom: 0; }
  371. .sidebar .card:first-child .nav-sidebar-bordered {
  372. padding-top: 0; }
  373. .sidebar .card:first-child .nav-sidebar-bordered > .nav-item:first-child,
  374. .sidebar .card:first-child .nav-sidebar-bordered > .nav-item-header:first-child {
  375. border-top: 0; }
  376. .sidebar .card:last-child .nav-sidebar-bordered {
  377. padding-bottom: 0; }
  378. .sidebar .card:last-child .nav-sidebar-bordered > .nav-item:last-child,
  379. .sidebar .card:last-child .nav-sidebar-bordered > .nav-item-header:last-child {
  380. border-bottom: 0; }
  381. .sidebar-dark .nav-sidebar-bordered > .nav-item {
  382. border-top: 1px solid rgba(255, 255, 255, 0.1); }
  383. .sidebar-dark .nav-sidebar-bordered > .nav-item:last-child {
  384. border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  385. .sidebar-dark .nav-sidebar-bordered > .nav-item-header {
  386. background-color: rgba(0, 0, 0, 0.1);
  387. border-top: 1px solid rgba(255, 255, 255, 0.1);
  388. margin: 0; }
  389. .sidebar-light .nav-sidebar-bordered > .nav-item {
  390. border-top: 1px solid #eee; }
  391. .sidebar-light .nav-sidebar-bordered > .nav-item:last-child {
  392. border-bottom: 1px solid #eee; }
  393. .sidebar-light .nav-sidebar-bordered > .nav-item-header {
  394. background-color: #fafafa;
  395. border-top: 1px solid #eee;
  396. margin: 0; }
  397. .sidebar-mobile-toggler {
  398. display: -ms-flexbox;
  399. display: flex;
  400. -ms-flex-pack: justify;
  401. justify-content: space-between;
  402. -ms-flex-align: center;
  403. align-items: center;
  404. border-top: 1px solid transparent;
  405. border-bottom: 1px solid transparent; }
  406. .sidebar-mobile-toggler a {
  407. padding: 0.875rem 1.25rem;
  408. transition: all ease-in-out 0.15s; }
  409. @media (prefers-reduced-motion: reduce) {
  410. .sidebar-mobile-toggler a {
  411. transition: none; } }
  412. .navbar-lg:first-child ~ .page-content .sidebar-mobile-toggler a {
  413. padding: 1rem 1.25rem; }
  414. .navbar-sm:first-child ~ .page-content .sidebar-mobile-toggler a {
  415. padding: 0.75rem 1.25rem; }
  416. .sidebar-mobile-expand i:last-child:not(:first-child) {
  417. display: none; }
  418. .sidebar-fullscreen .sidebar-mobile-expand i:first-child {
  419. display: none; }
  420. .sidebar-fullscreen .sidebar-mobile-expand i:last-child {
  421. display: inline-block; }
  422. .sidebar-dark {
  423. background-color: #263238;
  424. color: #fff; }
  425. .sidebar-dark .sidebar-mobile-toggler {
  426. color: rgba(255, 255, 255, 0.9);
  427. border-bottom-color: rgba(255, 255, 255, 0.1); }
  428. .sidebar-dark .sidebar-mobile-toggler:not([class*=bg-]) {
  429. background-color: #1e272c; }
  430. .sidebar-dark .sidebar-mobile-toggler a {
  431. color: rgba(255, 255, 255, 0.9); }
  432. .sidebar-dark .sidebar-mobile-toggler a:hover {
  433. color: #fff;
  434. background-color: transparent; }
  435. .sidebar-dark .card-header {
  436. border-color: rgba(255, 255, 255, 0.1); }
  437. .sidebar-dark .nav-sidebar .nav-link,
  438. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar .nav-link {
  439. color: rgba(255, 255, 255, 0.9); }
  440. .sidebar-dark .nav-sidebar .nav-link:not(.disabled):hover,
  441. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar .nav-link:not(.disabled):hover {
  442. color: #fff;
  443. background-color: rgba(255, 255, 255, 0.1); }
  444. .sidebar-dark .nav-sidebar .nav-item > .nav-link.active,
  445. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar .nav-item > .nav-link.active {
  446. background-color: rgba(255, 255, 255, 0.1);
  447. color: #fff; }
  448. .sidebar-dark .nav-sidebar .nav-item-open > .nav-link:not(.disabled),
  449. .sidebar-dark .nav-sidebar > .nav-item-expanded:not(.nav-item-open) > .nav-link,
  450. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar .nav-item-open > .nav-link:not(.disabled),
  451. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar > .nav-item-expanded:not(.nav-item-open) > .nav-link {
  452. background-color: rgba(255, 255, 255, 0.1);
  453. color: #fff; }
  454. .sidebar-dark .nav-sidebar > .nav-item-open > .nav-link:not(.disabled),
  455. .sidebar-dark .nav-sidebar > .nav-item > .nav-link.active,
  456. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar > .nav-item-open > .nav-link:not(.disabled),
  457. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar > .nav-item > .nav-link.active {
  458. background-color: #26A69A;
  459. color: #fff; }
  460. .sidebar-dark .nav-sidebar .nav-item-header,
  461. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar .nav-item-header {
  462. color: rgba(255, 255, 255, 0.5); }
  463. .sidebar-dark .nav-sidebar .nav-item-divider,
  464. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar .nav-item-divider {
  465. background-color: rgba(255, 255, 255, 0.1); }
  466. .sidebar-dark .nav-sidebar > .nav-item-submenu > .nav-group-sub,
  467. .sidebar-light .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar > .nav-item-submenu > .nav-group-sub {
  468. background-color: rgba(0, 0, 0, 0.15); }
  469. .sidebar-dark[class*=bg-] .nav-sidebar > .nav-item-open > .nav-link:not(.disabled),
  470. .sidebar-dark[class*=bg-] .nav-sidebar > .nav-item > .nav-link.active,
  471. .sidebar .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar > .nav-item-open > .nav-link:not(.disabled),
  472. .sidebar .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-sidebar > .nav-item > .nav-link.active {
  473. background-color: rgba(255, 255, 255, 0.25); }
  474. .sidebar-light {
  475. background-color: #fff;
  476. color: #333;
  477. border-right: 1px solid rgba(0, 0, 0, 0.125);
  478. background-clip: content-box; }
  479. .sidebar-light.sidebar-right {
  480. border-right: 0;
  481. border-left: 1px solid rgba(0, 0, 0, 0.125); }
  482. .sidebar-light .nav-sidebar .nav-link {
  483. color: rgba(51, 51, 51, 0.85); }
  484. .sidebar-light .nav-sidebar .nav-link:not(.disabled):hover {
  485. color: #333;
  486. background-color: #f5f5f5; }
  487. .sidebar-light .nav-sidebar .nav-item > .nav-link.active {
  488. background-color: #f5f5f5;
  489. color: #333; }
  490. .sidebar-light .nav-sidebar .nav-item-open > .nav-link:not(.disabled),
  491. .sidebar-light .nav-sidebar > .nav-item-expanded:not(.nav-item-open) > .nav-link {
  492. background-color: #f5f5f5;
  493. color: #333; }
  494. .sidebar-light .nav-sidebar > .nav-item-open > .nav-link:not(.disabled),
  495. .sidebar-light .nav-sidebar > .nav-item > .nav-link.active {
  496. background-color: #f5f5f5;
  497. color: #333; }
  498. .sidebar-light .nav-sidebar .nav-item-header {
  499. color: rgba(51, 51, 51, 0.5); }
  500. .sidebar-light .nav-sidebar .nav-item-divider {
  501. background-color: rgba(0, 0, 0, 0.125); }
  502. .sidebar-light .nav-sidebar > .nav-item-submenu > .nav-group-sub {
  503. background-color: transparent; }
  504. .sidebar-light .sidebar-mobile-toggler {
  505. color: rgba(51, 51, 51, 0.8);
  506. border-bottom-color: rgba(0, 0, 0, 0.125); }
  507. .sidebar-light .sidebar-mobile-toggler:not([class*=bg-]) {
  508. background-color: whitesmoke; }
  509. .sidebar-light .sidebar-mobile-toggler a {
  510. color: rgba(51, 51, 51, 0.8); }
  511. .sidebar-light .sidebar-mobile-toggler a:hover {
  512. color: #333;
  513. background-color: transparent; }
  514. .sidebar-light .sidebar-mobile-toggler[class*=bg-]:not(.bg-white):not(.bg-light):not(.bg-transparent) {
  515. color: rgba(255, 255, 255, 0.9);
  516. border-bottom-color: rgba(255, 255, 255, 0.1); }
  517. .sidebar-light .sidebar-mobile-toggler[class*=bg-]:not(.bg-white):not(.bg-light):not(.bg-transparent) a {
  518. color: rgba(255, 255, 255, 0.9); }
  519. .sidebar-light .sidebar-mobile-toggler[class*=bg-]:not(.bg-white):not(.bg-light):not(.bg-transparent) a:hover {
  520. color: #fff;
  521. background-color: transparent; }
  522. .sidebar-component {
  523. display: none;
  524. width: 100%;
  525. border: 1px solid transparent;
  526. border-radius: 0.1875rem;
  527. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
  528. .sidebar-component.sidebar-dark {
  529. border-color: rgba(255, 255, 255, 0.1); }
  530. .sidebar-component.sidebar-light {
  531. border-color: rgba(0, 0, 0, 0.125); }
  532. .sidebar-fixed .sidebar-content {
  533. z-index: 1041; }
  534. @media (min-width: 768px) {
  535. .sidebar-xs .sidebar-main {
  536. width: 3.5rem; }
  537. .sidebar-xs .sidebar-main .sidebar-content::-webkit-scrollbar {
  538. width: 0 !important; }
  539. .sidebar-xs .sidebar-main .card:not(.card-sidebar-mobile),
  540. .sidebar-xs .sidebar-main .card-title {
  541. display: none; }
  542. .sidebar-xs .sidebar-main .card-header h6 + .header-elements {
  543. padding-top: 0.22117rem;
  544. padding-bottom: 0.22117rem; }
  545. .sidebar-xs .sidebar-main .card-header h5 + .header-elements {
  546. padding-top: 0.31733rem;
  547. padding-bottom: 0.31733rem; }
  548. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item {
  549. position: relative;
  550. margin: 0; }
  551. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item > .nav-link {
  552. -ms-flex-pack: center;
  553. justify-content: center;
  554. padding-left: 0;
  555. padding-right: 0; }
  556. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item > .nav-link > i {
  557. position: static;
  558. margin-left: 0;
  559. margin-right: 0;
  560. display: block;
  561. padding-bottom: 1px; }
  562. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item > .nav-link > span {
  563. display: none; }
  564. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item-submenu:hover > .nav-group-sub, .sidebar-xs .sidebar-main .nav-sidebar > .nav-item-submenu:focus > .nav-group-sub {
  565. display: block !important; }
  566. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item-submenu > .nav-group-sub {
  567. position: absolute;
  568. top: -0.5rem;
  569. right: -16.875rem;
  570. width: 16.875rem;
  571. display: none;
  572. z-index: 1000;
  573. box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  574. border-top-right-radius: 0.1875rem;
  575. border-bottom-right-radius: 0.1875rem; }
  576. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item-submenu > .nav-group-sub[data-submenu-title]:before {
  577. content: attr(data-submenu-title);
  578. display: block;
  579. padding: 0.75rem 1.25rem;
  580. padding-bottom: 0;
  581. margin-top: 0.5rem;
  582. opacity: 0.5; }
  583. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item-submenu > .nav-link:after {
  584. content: none; }
  585. .sidebar-xs .sidebar-main .nav-sidebar .nav-group-sub .nav-link {
  586. padding-left: 1.25rem; }
  587. .sidebar-xs .sidebar-main .nav-sidebar .nav-group-sub .nav-group-sub .nav-link {
  588. padding-left: 2.25rem; }
  589. .sidebar-xs .sidebar-main .nav-sidebar .nav-group-sub .nav-group-sub .nav-group-sub .nav-link {
  590. padding-left: 3.5rem; }
  591. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item-header {
  592. padding: 0;
  593. text-align: center; }
  594. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item-header > i {
  595. display: block;
  596. top: 0;
  597. padding: 0.75rem 1.25rem;
  598. margin-top: 0.12502rem;
  599. margin-bottom: 0.12502rem; }
  600. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item-header > div {
  601. display: none; }
  602. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item-open > .nav-group-sub {
  603. display: none !important; }
  604. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item:hover > .nav-link.disabled + .nav-group-sub,
  605. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item:hover > .nav-link.disabled > span, .sidebar-xs .sidebar-main .nav-sidebar > .nav-item:focus > .nav-link.disabled + .nav-group-sub,
  606. .sidebar-xs .sidebar-main .nav-sidebar > .nav-item:focus > .nav-link.disabled > span {
  607. display: none !important; }
  608. .sidebar-xs .sidebar-main .sidebar-user .card-body {
  609. padding-left: 0;
  610. padding-right: 0; }
  611. .sidebar-xs .sidebar-main .sidebar-user .media {
  612. -ms-flex-pack: center;
  613. justify-content: center; }
  614. .sidebar-xs .sidebar-main .sidebar-user .media > div:not(:first-child) {
  615. display: none !important; }
  616. .sidebar-xs .sidebar-main .sidebar-user .media > div:first-child {
  617. margin: 0 !important; }
  618. .sidebar-xs .sidebar-main .nav-item-submenu-reversed .nav-group-sub {
  619. top: auto !important;
  620. bottom: 0; }
  621. .sidebar-xs .sidebar-main.sidebar-dark .nav-sidebar > .nav-item:not(.nav-item-open):hover > .nav-link:not(.active):not(.disabled) {
  622. color: #fff;
  623. background-color: rgba(255, 255, 255, 0.1); }
  624. .sidebar-xs .sidebar-main.sidebar-dark .nav-sidebar > .nav-item-submenu > .nav-group-sub {
  625. background-color: #304047;
  626. border-left: 1px solid rgba(255, 255, 255, 0.1); }
  627. .sidebar-xs .sidebar-main.sidebar-light .nav-sidebar > .nav-item:not(.nav-item-open):hover > .nav-link:not(.active):not(.disabled) {
  628. color: #333;
  629. background-color: #f5f5f5; }
  630. .sidebar-xs .sidebar-main.sidebar-light .nav-sidebar > .nav-item-submenu > .nav-group-sub {
  631. background-color: #fcfcfc;
  632. border: 1px solid rgba(0, 0, 0, 0.125); }
  633. .sidebar-xs .sidebar-main.sidebar-fixed .nav-sidebar > .nav-item-submenu:hover > .nav-group-sub, .sidebar-xs .sidebar-main.sidebar-fixed .nav-sidebar > .nav-item-submenu:focus > .nav-group-sub {
  634. position: fixed;
  635. left: 3.5rem;
  636. top: 3.12503rem;
  637. bottom: 0;
  638. width: 16.875rem;
  639. overflow-y: auto;
  640. border-radius: 0; }
  641. .sidebar-xs .navbar-lg:first-child ~ .page-content .sidebar-fixed.sidebar-main .nav-sidebar > .nav-item-submenu:hover > .nav-group-sub, .sidebar-xs .navbar-lg:first-child ~ .page-content .sidebar-fixed.sidebar-main .nav-sidebar > .nav-item-submenu:focus > .nav-group-sub {
  642. top: 3.37503rem; }
  643. .sidebar-xs .navbar-sm:first-child ~ .page-content .sidebar-fixed.sidebar-main .nav-sidebar > .nav-item-submenu:hover > .nav-group-sub, .sidebar-xs .navbar-sm:first-child ~ .page-content .sidebar-fixed.sidebar-main .nav-sidebar > .nav-item-submenu:focus > .nav-group-sub {
  644. top: 2.87503rem; } }
  645. @media (min-width: 576px) {
  646. .sidebar-expand-sm.sidebar-main {
  647. z-index: 99;
  648. box-shadow: none; }
  649. .sidebar-expand-sm.sidebar-main .sidebar-content {
  650. left: 0; }
  651. .sidebar-expand-sm.sidebar-secondary {
  652. z-index: 98;
  653. box-shadow: none; }
  654. .sidebar-expand-sm.sidebar-secondary .sidebar-content {
  655. left: 0; }
  656. .sidebar-expand-sm.sidebar-right {
  657. z-index: 97;
  658. box-shadow: none; }
  659. .sidebar-expand-sm.sidebar-right .sidebar-content {
  660. right: 0; }
  661. .sidebar-expand-sm.sidebar-component {
  662. z-index: 96; }
  663. .sidebar-expand-sm:not(.sidebar-component) {
  664. position: static;
  665. transition: none; } }
  666. @media (min-width: 576px) and (prefers-reduced-motion: reduce) {
  667. .sidebar-expand-sm:not(.sidebar-component) {
  668. transition: none; } }
  669. @media (min-width: 576px) {
  670. .sidebar-expand-sm:not(.sidebar-component):not(.sidebar-fixed) .sidebar-content {
  671. position: static;
  672. overflow: visible;
  673. width: auto; }
  674. .sidebar-expand-sm.sidebar-dark:not(.sidebar-component) + .sidebar-dark:not(.sidebar-component) {
  675. border-left: 1px solid rgba(255, 255, 255, 0.1); }
  676. .sidebar-expand-sm .sidebar-mobile-toggler {
  677. display: none; }
  678. .sidebar-expand-sm.sidebar-fullscreen {
  679. width: 16.875rem; }
  680. .sidebar-main-hidden .sidebar-expand-sm.sidebar-main,
  681. .sidebar-component-hidden .sidebar-expand-sm.sidebar-component,
  682. .sidebar-secondary-hidden .sidebar-expand-sm.sidebar-secondary,
  683. .sidebar-mobile-right .sidebar-expand-sm.sidebar-right {
  684. display: none; }
  685. .sidebar-expand-sm.sidebar-right {
  686. display: none; }
  687. .sidebar-right-visible .sidebar-expand-sm.sidebar-right {
  688. display: block; }
  689. .sidebar-expand-sm.sidebar-component {
  690. display: block;
  691. width: 16.875rem; }
  692. .sidebar-expand-sm.sidebar-component-left {
  693. margin-right: 1.25rem; }
  694. .sidebar-expand-sm.sidebar-component-right {
  695. margin-left: 1.25rem; } }
  696. @media (max-width: 575.98px) {
  697. .sidebar-expand-sm:not(.sidebar-component) {
  698. border: 0; } }
  699. @media (min-width: 768px) {
  700. .sidebar-expand-md.sidebar-main {
  701. z-index: 99;
  702. box-shadow: none; }
  703. .sidebar-expand-md.sidebar-main .sidebar-content {
  704. left: 0; }
  705. .sidebar-expand-md.sidebar-secondary {
  706. z-index: 98;
  707. box-shadow: none; }
  708. .sidebar-expand-md.sidebar-secondary .sidebar-content {
  709. left: 0; }
  710. .sidebar-expand-md.sidebar-right {
  711. z-index: 97;
  712. box-shadow: none; }
  713. .sidebar-expand-md.sidebar-right .sidebar-content {
  714. right: 0; }
  715. .sidebar-expand-md.sidebar-component {
  716. z-index: 96; }
  717. .sidebar-expand-md:not(.sidebar-component) {
  718. position: static;
  719. transition: none; } }
  720. @media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  721. .sidebar-expand-md:not(.sidebar-component) {
  722. transition: none; } }
  723. @media (min-width: 768px) {
  724. .sidebar-expand-md:not(.sidebar-component):not(.sidebar-fixed) .sidebar-content {
  725. position: static;
  726. overflow: visible;
  727. width: auto; }
  728. .sidebar-expand-md.sidebar-dark:not(.sidebar-component) + .sidebar-dark:not(.sidebar-component) {
  729. border-left: 1px solid rgba(255, 255, 255, 0.1); }
  730. .sidebar-expand-md .sidebar-mobile-toggler {
  731. display: none; }
  732. .sidebar-expand-md.sidebar-fullscreen {
  733. width: 16.875rem; }
  734. .sidebar-main-hidden .sidebar-expand-md.sidebar-main,
  735. .sidebar-component-hidden .sidebar-expand-md.sidebar-component,
  736. .sidebar-secondary-hidden .sidebar-expand-md.sidebar-secondary,
  737. .sidebar-mobile-right .sidebar-expand-md.sidebar-right {
  738. display: none; }
  739. .sidebar-expand-md.sidebar-right {
  740. display: none; }
  741. .sidebar-right-visible .sidebar-expand-md.sidebar-right {
  742. display: block; }
  743. .sidebar-expand-md.sidebar-component {
  744. display: block;
  745. width: 16.875rem; }
  746. .sidebar-expand-md.sidebar-component-left {
  747. margin-right: 1.25rem; }
  748. .sidebar-expand-md.sidebar-component-right {
  749. margin-left: 1.25rem; } }
  750. @media (max-width: 767.98px) {
  751. .sidebar-expand-md:not(.sidebar-component) {
  752. border: 0; } }
  753. @media (min-width: 992px) {
  754. .sidebar-expand-lg.sidebar-main {
  755. z-index: 99;
  756. box-shadow: none; }
  757. .sidebar-expand-lg.sidebar-main .sidebar-content {
  758. left: 0; }
  759. .sidebar-expand-lg.sidebar-secondary {
  760. z-index: 98;
  761. box-shadow: none; }
  762. .sidebar-expand-lg.sidebar-secondary .sidebar-content {
  763. left: 0; }
  764. .sidebar-expand-lg.sidebar-right {
  765. z-index: 97;
  766. box-shadow: none; }
  767. .sidebar-expand-lg.sidebar-right .sidebar-content {
  768. right: 0; }
  769. .sidebar-expand-lg.sidebar-component {
  770. z-index: 96; }
  771. .sidebar-expand-lg:not(.sidebar-component) {
  772. position: static;
  773. transition: none; } }
  774. @media (min-width: 992px) and (prefers-reduced-motion: reduce) {
  775. .sidebar-expand-lg:not(.sidebar-component) {
  776. transition: none; } }
  777. @media (min-width: 992px) {
  778. .sidebar-expand-lg:not(.sidebar-component):not(.sidebar-fixed) .sidebar-content {
  779. position: static;
  780. overflow: visible;
  781. width: auto; }
  782. .sidebar-expand-lg.sidebar-dark:not(.sidebar-component) + .sidebar-dark:not(.sidebar-component) {
  783. border-left: 1px solid rgba(255, 255, 255, 0.1); }
  784. .sidebar-expand-lg .sidebar-mobile-toggler {
  785. display: none; }
  786. .sidebar-expand-lg.sidebar-fullscreen {
  787. width: 16.875rem; }
  788. .sidebar-main-hidden .sidebar-expand-lg.sidebar-main,
  789. .sidebar-component-hidden .sidebar-expand-lg.sidebar-component,
  790. .sidebar-secondary-hidden .sidebar-expand-lg.sidebar-secondary,
  791. .sidebar-mobile-right .sidebar-expand-lg.sidebar-right {
  792. display: none; }
  793. .sidebar-expand-lg.sidebar-right {
  794. display: none; }
  795. .sidebar-right-visible .sidebar-expand-lg.sidebar-right {
  796. display: block; }
  797. .sidebar-expand-lg.sidebar-component {
  798. display: block;
  799. width: 16.875rem; }
  800. .sidebar-expand-lg.sidebar-component-left {
  801. margin-right: 1.25rem; }
  802. .sidebar-expand-lg.sidebar-component-right {
  803. margin-left: 1.25rem; } }
  804. @media (max-width: 991.98px) {
  805. .sidebar-expand-lg:not(.sidebar-component) {
  806. border: 0; } }
  807. @media (min-width: 1200px) {
  808. .sidebar-expand-xl.sidebar-main {
  809. z-index: 99;
  810. box-shadow: none; }
  811. .sidebar-expand-xl.sidebar-main .sidebar-content {
  812. left: 0; }
  813. .sidebar-expand-xl.sidebar-secondary {
  814. z-index: 98;
  815. box-shadow: none; }
  816. .sidebar-expand-xl.sidebar-secondary .sidebar-content {
  817. left: 0; }
  818. .sidebar-expand-xl.sidebar-right {
  819. z-index: 97;
  820. box-shadow: none; }
  821. .sidebar-expand-xl.sidebar-right .sidebar-content {
  822. right: 0; }
  823. .sidebar-expand-xl.sidebar-component {
  824. z-index: 96; }
  825. .sidebar-expand-xl:not(.sidebar-component) {
  826. position: static;
  827. transition: none; } }
  828. @media (min-width: 1200px) and (prefers-reduced-motion: reduce) {
  829. .sidebar-expand-xl:not(.sidebar-component) {
  830. transition: none; } }
  831. @media (min-width: 1200px) {
  832. .sidebar-expand-xl:not(.sidebar-component):not(.sidebar-fixed) .sidebar-content {
  833. position: static;
  834. overflow: visible;
  835. width: auto; }
  836. .sidebar-expand-xl.sidebar-dark:not(.sidebar-component) + .sidebar-dark:not(.sidebar-component) {
  837. border-left: 1px solid rgba(255, 255, 255, 0.1); }
  838. .sidebar-expand-xl .sidebar-mobile-toggler {
  839. display: none; }
  840. .sidebar-expand-xl.sidebar-fullscreen {
  841. width: 16.875rem; }
  842. .sidebar-main-hidden .sidebar-expand-xl.sidebar-main,
  843. .sidebar-component-hidden .sidebar-expand-xl.sidebar-component,
  844. .sidebar-secondary-hidden .sidebar-expand-xl.sidebar-secondary,
  845. .sidebar-mobile-right .sidebar-expand-xl.sidebar-right {
  846. display: none; }
  847. .sidebar-expand-xl.sidebar-right {
  848. display: none; }
  849. .sidebar-right-visible .sidebar-expand-xl.sidebar-right {
  850. display: block; }
  851. .sidebar-expand-xl.sidebar-component {
  852. display: block;
  853. width: 16.875rem; }
  854. .sidebar-expand-xl.sidebar-component-left {
  855. margin-right: 1.25rem; }
  856. .sidebar-expand-xl.sidebar-component-right {
  857. margin-left: 1.25rem; } }
  858. @media (max-width: 1199.98px) {
  859. .sidebar-expand-xl:not(.sidebar-component) {
  860. border: 0; } }
  861. .sidebar-expand.sidebar-main {
  862. z-index: 99;
  863. box-shadow: none; }
  864. .sidebar-expand.sidebar-main .sidebar-content {
  865. left: 0; }
  866. .sidebar-expand.sidebar-secondary {
  867. z-index: 98;
  868. box-shadow: none; }
  869. .sidebar-expand.sidebar-secondary .sidebar-content {
  870. left: 0; }
  871. .sidebar-expand.sidebar-right {
  872. z-index: 97;
  873. box-shadow: none; }
  874. .sidebar-expand.sidebar-right .sidebar-content {
  875. right: 0; }
  876. .sidebar-expand.sidebar-component {
  877. z-index: 96; }
  878. .sidebar-expand:not(.sidebar-component) {
  879. position: static;
  880. transition: none; }
  881. @media (prefers-reduced-motion: reduce) {
  882. .sidebar-expand:not(.sidebar-component) {
  883. transition: none; } }
  884. .sidebar-expand:not(.sidebar-component):not(.sidebar-fixed) .sidebar-content {
  885. position: static;
  886. overflow: visible;
  887. width: auto; }
  888. .sidebar-expand.sidebar-dark:not(.sidebar-component) + .sidebar-dark:not(.sidebar-component) {
  889. border-left: 1px solid rgba(255, 255, 255, 0.1); }
  890. .sidebar-expand .sidebar-mobile-toggler {
  891. display: none; }
  892. .sidebar-expand.sidebar-fullscreen {
  893. width: 16.875rem; }
  894. .sidebar-main-hidden .sidebar-expand.sidebar-main,
  895. .sidebar-component-hidden .sidebar-expand.sidebar-component,
  896. .sidebar-secondary-hidden .sidebar-expand.sidebar-secondary,
  897. .sidebar-mobile-right .sidebar-expand.sidebar-right {
  898. display: none; }
  899. .sidebar-expand.sidebar-right {
  900. display: none; }
  901. .sidebar-right-visible .sidebar-expand.sidebar-right {
  902. display: block; }
  903. .sidebar-expand.sidebar-component {
  904. display: block;
  905. width: 16.875rem; }
  906. .sidebar-expand.sidebar-component-left {
  907. margin-right: 1.25rem; }
  908. .sidebar-expand.sidebar-component-right {
  909. margin-left: 1.25rem; }
  910. .sidebar-expand:not(.sidebar-component) {
  911. border: 0; }
  912. .sidebar:not(.bg-transparent) .card {
  913. border-width: 0;
  914. margin-bottom: 0;
  915. border-radius: 0;
  916. box-shadow: none; }
  917. .sidebar:not(.bg-transparent) .card .card {
  918. border-width: 1px; }
  919. .sidebar:not(.bg-transparent) .card:not([class*=bg-]):not(.fixed-top) {
  920. background-color: transparent; }
  921. .sidebar .card-footer {
  922. border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  923. .sidebar .row:not(.no-gutters) {
  924. margin-left: -0.3125rem;
  925. margin-right: -0.3125rem; }
  926. .sidebar .row:not(.no-gutters) [class*=col] {
  927. padding-left: 0.3125rem;
  928. padding-right: 0.3125rem; }
  929. .sidebar .form-group:last-child {
  930. margin-bottom: 0; }
  931. .sidebar .nav-tabs .nav-item:first-child .nav-link {
  932. border-left: 0; }
  933. .sidebar .nav-tabs .nav-item:last-child .nav-link {
  934. border-right: 0; }
  935. .sidebar .nav-tabs .nav-link {
  936. border-top: 0;
  937. border-bottom-width: 0; }
  938. .sidebar .nav-tabs .nav-link.active {
  939. border-bottom-color: transparent; }
  940. .sidebar-dark .nav-tabs {
  941. background-color: #1e272c;
  942. border-bottom-color: rgba(255, 255, 255, 0.1); }
  943. .sidebar-dark .nav-tabs .nav-link {
  944. color: rgba(255, 255, 255, 0.9); }
  945. .sidebar-dark .nav-tabs .nav-link:hover, .sidebar-dark .nav-tabs .nav-link:focus {
  946. color: #fff; }
  947. .sidebar-dark .nav-tabs .nav-link.active {
  948. color: #fff; }
  949. .sidebar-dark .nav-tabs:not(.nav-tabs-bottom) .nav-link.active {
  950. background-color: #263238;
  951. border-color: rgba(255, 255, 255, 0.1); }
  952. .sidebar-dark .nav-tabs .nav-item.show .nav-link:not(.active) {
  953. color: #fff; }
  954. .sidebar-light .nav-tabs {
  955. background-color: whitesmoke;
  956. border-bottom-color: rgba(0, 0, 0, 0.125); }
  957. .sidebar-light .nav-tabs .nav-link:hover, .sidebar-light .nav-tabs .nav-link:focus {
  958. color: #333; }
  959. .sidebar-light .nav-tabs .nav-link.active {
  960. color: #333; }
  961. .sidebar-light .nav-tabs:not(.nav-tabs-bottom) .nav-link.active {
  962. background-color: #fff; }
  963. .row-tile div[class*=col] .btn {
  964. border-radius: 0; }
  965. .row-tile div[class*=col]:first-child .btn:first-child {
  966. border-top-left-radius: 0.1875rem; }
  967. .row-tile div[class*=col]:first-child .btn:last-child {
  968. border-bottom-left-radius: 0.1875rem; }
  969. .row-tile div[class*=col]:last-child .btn:first-child {
  970. border-top-right-radius: 0.1875rem; }
  971. .row-tile div[class*=col]:last-child .btn:last-child {
  972. border-bottom-right-radius: 0.1875rem; }
  973. .row-tile div[class*=col] .btn + .btn {
  974. border-top: 0; }
  975. .row-tile div[class*=col] + div[class*=col] .btn {
  976. border-left: 0; }
  977. /* ------------------------------------------------------------------------------
  978. *
  979. * # Boxed layout
  980. *
  981. * Styles for main structure of content area in boxed layout
  982. *
  983. * ---------------------------------------------------------------------------- */
  984. .layout-boxed-bg {
  985. background: url(../../../../../../global_assets/images/backgrounds/boxed_bg.png) repeat; }
  986. .layout-boxed {
  987. box-shadow: -4px 2px 4px rgba(0, 0, 0, 0.15), 4px 2px 4px rgba(0, 0, 0, 0.15); }
  988. @media (min-width: 992px) {
  989. .layout-boxed,
  990. .layout-boxed > .navbar {
  991. width: 992px;
  992. margin-left: auto;
  993. margin-right: auto; } }
  994. @media (min-width: 1200px) {
  995. .layout-boxed,
  996. .layout-boxed > .navbar {
  997. width: 1200px; } }
  998. .layout-boxed .page-content {
  999. background-color: #f5f5f5; }
  1000. @media (min-width: 992px) {
  1001. .content-boxed:not(.navbar-collapse) {
  1002. margin-left: 6%;
  1003. margin-right: 6%; }
  1004. .navbar > .content-boxed > *:first-child {
  1005. margin-left: 6%; }
  1006. .navbar > .content-boxed > *:last-child {
  1007. margin-right: 6%; }
  1008. .breadcrumb-line > .content-boxed > *:first-child {
  1009. margin-left: 1.25rem; }
  1010. .breadcrumb-line > .content-boxed > *:last-child {
  1011. margin-right: 1.25rem; } }