bootstrap_limitless.css 103 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264
  1. /* ------------------------------------------------------------------------------
  2. *
  3. * # Bootstrap v4.1.1 (https://getbootstrap.com)
  4. *
  5. * Copyright 2011-2018 The Bootstrap Authors
  6. * Copyright 2011-2018 Twitter, Inc.
  7. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  8. *
  9. * ---------------------------------------------------------------------------- */
  10. /* ------------------------------------------------------------------------------
  11. *
  12. * # Global configuration
  13. *
  14. * Here you can change main theme, enable or disable certain components and
  15. * optional styles. This allows you to include only components that you need.
  16. *
  17. * 'true' - enables component and includes it to main CSS file.
  18. * 'false' - disables component and excludes it from main CSS file.
  19. *
  20. * Layout helper: @if $layout == 'base' {...}
  21. * Theme helper: @if $theme == 'material' {...}
  22. * Component helper: @if $enable-* {...}
  23. *
  24. * ---------------------------------------------------------------------------- */
  25. /* ------------------------------------------------------------------------------
  26. *
  27. * # Custom Limitless functions
  28. *
  29. * Utility mixins and functions for evalutating source code across our variables, maps, and mixins.
  30. *
  31. * ---------------------------------------------------------------------------- */
  32. /* ------------------------------------------------------------------------------
  33. *
  34. * # Custom template mixins
  35. *
  36. * All custom mixins are prefixed with "ll-" to avoid conflicts
  37. *
  38. * ---------------------------------------------------------------------------- */
  39. /* ------------------------------------------------------------------------------
  40. *
  41. * # Main colors
  42. *
  43. * List of the template main color palettes
  44. *
  45. * ---------------------------------------------------------------------------- */
  46. /* ------------------------------------------------------------------------------
  47. *
  48. * # Default Bootstrap variable overrides
  49. *
  50. * Variables should follow the `$component-state-property-size` formula for
  51. * consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
  52. * Also includes custom variables, all marked with "!default" flag.
  53. *
  54. * ---------------------------------------------------------------------------- */
  55. /* ------------------------------------------------------------------------------
  56. *
  57. * # Additional variables
  58. *
  59. * Mainly 3rd party libraries and additional variables for default
  60. * Bootstrap components.
  61. *
  62. * ---------------------------------------------------------------------------- */
  63. /* ------------------------------------------------------------------------------
  64. *
  65. * # Mixins
  66. *
  67. * Import Bootstrap mixins with overrides
  68. *
  69. * ---------------------------------------------------------------------------- */
  70. /* ------------------------------------------------------------------------------
  71. *
  72. * # Badge mixin
  73. *
  74. * Override and extend default badge mixin.
  75. *
  76. * ---------------------------------------------------------------------------- */
  77. /* ------------------------------------------------------------------------------
  78. *
  79. * # Buttons mixin
  80. *
  81. * Override and extend default buttons mixin.
  82. *
  83. * ---------------------------------------------------------------------------- */
  84. /* ------------------------------------------------------------------------------
  85. *
  86. * # Caret mixin
  87. *
  88. * Override and extend default cared mixin.
  89. *
  90. * ---------------------------------------------------------------------------- */
  91. /* ------------------------------------------------------------------------------
  92. *
  93. * # Forms mixin
  94. *
  95. * Override and extend default forms mixin.
  96. *
  97. * ---------------------------------------------------------------------------- */
  98. /* ------------------------------------------------------------------------------
  99. *
  100. * # Background mixin
  101. *
  102. * Override and extend default background mixin.
  103. *
  104. * ---------------------------------------------------------------------------- */
  105. /* ------------------------------------------------------------------------------
  106. *
  107. * # Reboot
  108. *
  109. * Normalization of HTML elements - overrides of default Bootstrap styles
  110. *
  111. * ---------------------------------------------------------------------------- */
  112. body {
  113. position: relative; }
  114. dt {
  115. margin-bottom: 0.3125rem; }
  116. dd {
  117. margin-bottom: 1.25rem; }
  118. dd:last-child {
  119. margin-bottom: 0; }
  120. dl:last-child {
  121. margin-bottom: 0; }
  122. pre {
  123. -moz-tab-size: 4;
  124. -o-tab-size: 4;
  125. tab-size: 4;
  126. border: 1px solid #ddd;
  127. padding: 1.25rem 1.25rem;
  128. margin-bottom: 0;
  129. -webkit-hyphens: none;
  130. -moz-hyphens: none;
  131. -ms-hyphens: none;
  132. hyphens: none; }
  133. svg {
  134. display: block; }
  135. .svg-inline svg {
  136. display: inline-block; }
  137. .svg-center svg {
  138. margin: auto; }
  139. input[type="file"] {
  140. display: block; }
  141. /* ------------------------------------------------------------------------------
  142. *
  143. * # Text styling
  144. *
  145. * Override and extend default Bootstrap styles.
  146. *
  147. * ---------------------------------------------------------------------------- */
  148. h1, h2, h3, h4, h5, h6,
  149. .h1, .h2, .h3, .h4, .h5, .h6 {
  150. letter-spacing: -0.015em; }
  151. .list > li,
  152. .list > li .list > li {
  153. margin-top: 0.3125rem; }
  154. .list > li:first-child {
  155. margin-top: 0; }
  156. .list-extended > li,
  157. .list-extended > li .list > li {
  158. margin-top: 0.625rem; }
  159. ul.list-square {
  160. list-style-type: square; }
  161. ul.list-circle {
  162. list-style-type: circle; }
  163. .list-inline-item {
  164. position: relative; }
  165. .list-inline-condensed .list-inline-item:not(:last-child) {
  166. margin-right: 0.625rem; }
  167. .list-inline-dotted .list-inline-item:not(:last-child) {
  168. margin-right: 0.625rem; }
  169. .list-inline-dotted .list-inline-item:not(:last-child):after {
  170. content: '\f052';
  171. font-family: "icomoon";
  172. font-size: 0.5rem;
  173. width: 0.4rem;
  174. text-align: center;
  175. display: inline-block;
  176. margin-left: 0.825rem;
  177. opacity: 0.25; }
  178. .list-inline-dotted.list-inline-condensed .list-inline-item:not(:last-child) {
  179. margin-right: 0.41667rem; }
  180. .list-inline-dotted.list-inline-condensed .list-inline-item:not(:last-child):after {
  181. margin-left: 0.54167rem; }
  182. .list-icons {
  183. display: -ms-inline-flexbox;
  184. display: inline-flex;
  185. -ms-flex-align: center;
  186. align-items: center; }
  187. .list-icons > *:not(:last-child) {
  188. margin-right: 0.375rem; }
  189. .list-icons-extended > *:not(:last-child) {
  190. margin-right: 0.75rem; }
  191. .list-icons-item {
  192. display: inline-block;
  193. line-height: 1; }
  194. a.list-icons-item {
  195. transition: all ease-in-out 0.15s; }
  196. @media screen and (prefers-reduced-motion: reduce) {
  197. a.list-icons-item {
  198. transition: none; } }
  199. a.list-icons-item:not([class*=text-]) {
  200. color: inherit; }
  201. a.list-icons-item:hover, a.list-icons-item:focus,
  202. .show > a.list-icons-item {
  203. outline: 0;
  204. opacity: 0.75; }
  205. .font-weight-black {
  206. font-weight: 900; }
  207. .font-weight-semibold {
  208. font-weight: 500; }
  209. .font-weight-thin {
  210. font-weight: 100; }
  211. .text-white {
  212. color: #fff; }
  213. a.text-white:not(.btn) {
  214. transition: color ease-in-out 0.15s; }
  215. @media screen and (prefers-reduced-motion: reduce) {
  216. a.text-white:not(.btn) {
  217. transition: none; } }
  218. a.text-white:hover, a.text-white:focus {
  219. color: rgba(255, 255, 255, 0.75); }
  220. .text-default {
  221. color: #333; }
  222. a.text-default:not(.btn) {
  223. transition: color ease-in-out 0.15s; }
  224. @media screen and (prefers-reduced-motion: reduce) {
  225. a.text-default:not(.btn) {
  226. transition: none; } }
  227. a.text-default:hover, a.text-default:focus {
  228. color: rgba(51, 51, 51, 0.75); }
  229. .blockquote-bordered {
  230. border-left: 5px solid #eee; }
  231. .blockquote-bordered-reverse {
  232. border-left: 0;
  233. border-right: 5px solid #eee; }
  234. .blockquote-footer {
  235. font-size: 0.8125rem; }
  236. .blockquote-footer::before {
  237. content: "\2014 \00A0 \00A0 \00A0"; }
  238. .list-feed-item {
  239. position: relative;
  240. padding-bottom: 1.25rem;
  241. padding-left: 1.75rem; }
  242. .list-feed-item:before {
  243. content: '';
  244. position: absolute;
  245. left: 0;
  246. top: 0.31252rem;
  247. background-color: #fff;
  248. display: inline-block;
  249. border: 2px solid #607D8B;
  250. z-index: 3;
  251. width: 0.5rem;
  252. height: 0.5rem;
  253. border-radius: 50%; }
  254. .list-feed-item:after {
  255. content: '';
  256. position: absolute;
  257. top: 0.31252rem;
  258. left: 0.1875rem;
  259. bottom: -0.43752rem;
  260. width: 0;
  261. border-left: 1px solid #607D8B;
  262. border-right: 1px solid #607D8B;
  263. z-index: 2; }
  264. .list-feed-item:first-child:after {
  265. top: 0.5rem; }
  266. .list-feed-item:last-child {
  267. padding-bottom: 0; }
  268. .list-feed-item:last-child:after {
  269. content: none; }
  270. .list-feed-item[class*=border-]:before, .list-feed-item[class*=border-]:after {
  271. border-color: inherit; }
  272. .list-feed-solid .list-feed-item:before {
  273. content: '';
  274. border-width: 0.25rem;
  275. width: 0;
  276. height: 0; }
  277. .list-feed-square .list-feed-item:before {
  278. content: '';
  279. border-radius: 0; }
  280. .list-feed-rhombus .list-feed-item:before {
  281. content: '';
  282. -webkit-transform: rotate(45deg);
  283. transform: rotate(45deg);
  284. border-radius: 0; }
  285. .list-feed-time .list-feed-item {
  286. margin-left: 3.25rem; }
  287. .list-feed-time .list-feed-item .feed-time {
  288. position: absolute;
  289. left: -3.25rem;
  290. top: 0; }
  291. .content-divider {
  292. text-align: center;
  293. position: relative;
  294. z-index: 1; }
  295. .content-divider > span {
  296. background-color: #eeeded;
  297. display: inline-block; }
  298. .card .content-divider > span,
  299. .tab-content-bordered .content-divider > span {
  300. background-color: #fff; }
  301. .modal .content-divider > span {
  302. background-color: #fff; }
  303. .content-divider > span:before {
  304. content: "";
  305. position: absolute;
  306. top: 50%;
  307. left: 0;
  308. height: 1px;
  309. background-color: #ddd;
  310. width: 100%;
  311. z-index: -1; }
  312. .letter-icon {
  313. width: 1rem;
  314. height: 1.25003rem;
  315. display: block; }
  316. .btn-lg .letter-icon {
  317. height: 1.25003rem; }
  318. .btn-sm .letter-icon {
  319. height: 1.25002rem; }
  320. /* ------------------------------------------------------------------------------
  321. *
  322. * # Code blocks
  323. *
  324. * Overrides of default code block styles
  325. *
  326. * ---------------------------------------------------------------------------- */
  327. code {
  328. padding: 0.2rem 0.4rem;
  329. background-color: #fafafa; }
  330. pre {
  331. white-space: pre-wrap;
  332. /*rtl:ignore*/
  333. text-align: left;
  334. border-radius: 0.1875rem; }
  335. /* ------------------------------------------------------------------------------
  336. *
  337. * # Table styling
  338. *
  339. * Override and extend default Bootstrap styles.
  340. *
  341. * ---------------------------------------------------------------------------- */
  342. .table {
  343. margin-bottom: 0; }
  344. .table th,
  345. .table td {
  346. vertical-align: middle; }
  347. .table th {
  348. font-weight: 500; }
  349. .table thead th {
  350. vertical-align: middle;
  351. border-bottom: 1px solid #b7b7b7; }
  352. .table tfoot th {
  353. border-top-color: #b7b7b7; }
  354. .table caption + thead tr:first-child th,
  355. .table caption + thead tr:first-child td,
  356. .table colgroup + thead tr:first-child th,
  357. .table colgroup + thead tr:first-child td,
  358. .table thead:first-child tr:first-child th,
  359. .table thead:first-child tr:first-child td {
  360. border-top-width: 0; }
  361. .table tr,
  362. .table th,
  363. .table td {
  364. transition: background-color ease-in-out 0.15s; }
  365. @media screen and (prefers-reduced-motion: reduce) {
  366. .table tr,
  367. .table th,
  368. .table td {
  369. transition: none; } }
  370. .table-primary,
  371. .table-primary > th,
  372. .table-primary > td {
  373. background-color: #e4f2fe; }
  374. .table-hover .table-primary:hover {
  375. background-color: #cbe6fd; }
  376. .table-hover .table-primary:hover > td,
  377. .table-hover .table-primary:hover > th {
  378. background-color: #cbe6fd; }
  379. .table-secondary,
  380. .table-secondary > th,
  381. .table-secondary > td {
  382. background-color: #efefef; }
  383. .table-hover .table-secondary:hover {
  384. background-color: #e2e2e2; }
  385. .table-hover .table-secondary:hover > td,
  386. .table-hover .table-secondary:hover > th {
  387. background-color: #e2e2e2; }
  388. .table-success,
  389. .table-success > th,
  390. .table-success > td {
  391. background-color: #eaf5ea; }
  392. .table-hover .table-success:hover {
  393. background-color: #d9edd9; }
  394. .table-hover .table-success:hover > td,
  395. .table-hover .table-success:hover > th {
  396. background-color: #d9edd9; }
  397. .table-info,
  398. .table-info > th,
  399. .table-info > td {
  400. background-color: #e0f7fa; }
  401. .table-hover .table-info:hover {
  402. background-color: #caf1f6; }
  403. .table-hover .table-info:hover > td,
  404. .table-hover .table-info:hover > th {
  405. background-color: #caf1f6; }
  406. .table-warning,
  407. .table-warning > th,
  408. .table-warning > td {
  409. background-color: #ffeee8; }
  410. .table-hover .table-warning:hover {
  411. background-color: #ffdbcf; }
  412. .table-hover .table-warning:hover > td,
  413. .table-hover .table-warning:hover > th {
  414. background-color: #ffdbcf; }
  415. .table-danger,
  416. .table-danger > th,
  417. .table-danger > td {
  418. background-color: #fee8e7; }
  419. .table-hover .table-danger:hover {
  420. background-color: #fdd1cf; }
  421. .table-hover .table-danger:hover > td,
  422. .table-hover .table-danger:hover > th {
  423. background-color: #fdd1cf; }
  424. .table-light,
  425. .table-light > th,
  426. .table-light > td {
  427. background-color: #fefefe; }
  428. .table-hover .table-light:hover {
  429. background-color: #f1f1f1; }
  430. .table-hover .table-light:hover > td,
  431. .table-hover .table-light:hover > th {
  432. background-color: #f1f1f1; }
  433. .table-dark,
  434. .table-dark > th,
  435. .table-dark > td {
  436. background-color: #e6e8e9; }
  437. .table-hover .table-dark:hover {
  438. background-color: #d8dcdd; }
  439. .table-hover .table-dark:hover > td,
  440. .table-hover .table-dark:hover > th {
  441. background-color: #d8dcdd; }
  442. .table-dark thead th,
  443. .table-dark thead td {
  444. border-color: rgba(255, 255, 255, 0.5); }
  445. @media (max-width: 575.98px) {
  446. .table-responsive-sm > .table-bordered {
  447. border: 1px solid #ddd; } }
  448. @media (max-width: 767.98px) {
  449. .table-responsive-md > .table-bordered {
  450. border: 1px solid #ddd; } }
  451. @media (max-width: 991.98px) {
  452. .table-responsive-lg > .table-bordered {
  453. border: 1px solid #ddd; } }
  454. @media (max-width: 1199.98px) {
  455. .table-responsive-xl > .table-bordered {
  456. border: 1px solid #ddd; } }
  457. .table-responsive > .table-bordered {
  458. border: 1px solid #ddd; }
  459. .table-scrollable {
  460. max-height: 22.5rem;
  461. overflow: auto; }
  462. .table-columned tbody td,
  463. .table-columned tbody th,
  464. .table-columned tfoot td,
  465. .table-columned tfoot th {
  466. border: 0;
  467. border-left: 1px solid #ddd; }
  468. .table-columned tbody td:first-child,
  469. .table-columned tbody th:first-child,
  470. .table-columned tfoot td:first-child,
  471. .table-columned tfoot th:first-child {
  472. border-left: 0; }
  473. .table-columned thead th,
  474. .table-columned thead td {
  475. border-left: 1px solid #ddd; }
  476. .table-columned thead th:first-child,
  477. .table-columned thead td:first-child {
  478. border-left: 0; }
  479. .table-borderless td,
  480. .table-borderless th {
  481. border: 0; }
  482. .table-xl th,
  483. .table-xl td {
  484. padding: 1.25rem 1.25rem; }
  485. .table-lg th,
  486. .table-lg td {
  487. padding: 1rem 1.25rem; }
  488. .table-xs th,
  489. .table-xs td {
  490. padding: 0.5rem 1.25rem; }
  491. thead .table-border-solid th,
  492. thead .table-border-solid td {
  493. border-bottom-width: 2px; }
  494. tbody .table-border-solid td,
  495. tbody .table-border-solid th,
  496. tfoot .table-border-solid td,
  497. tfoot .table-border-solid th {
  498. border-top-width: 2px; }
  499. thead .table-border-double th,
  500. thead .table-border-double td {
  501. border-bottom-width: 3px;
  502. border-bottom-style: double; }
  503. .table-bordered thead .table-border-double:first-child th,
  504. .table-bordered thead .table-border-double:first-child td {
  505. border-bottom-width: 3px;
  506. border-bottom-style: double; }
  507. tbody .table-border-double td,
  508. tbody .table-border-double th,
  509. tfoot .table-border-double td,
  510. tfoot .table-border-double th {
  511. border-top-width: 3px;
  512. border-top-style: double; }
  513. .table-border-dashed td,
  514. .table-border-dashed th {
  515. border-top-style: dashed; }
  516. .table thead tr[class*=border-bottom-] th,
  517. .table thead tr[class*=border-bottom-] td {
  518. border-bottom-color: inherit; }
  519. .table tbody tr[class*=border-top-] th,
  520. .table tbody tr[class*=border-top-] td,
  521. .table tfoot tr[class*=border-top-] th,
  522. .table tfoot tr[class*=border-top-] td {
  523. border-top-color: inherit; }
  524. .card > .table:first-child caption + thead tr:first-child th,
  525. .card > .table:first-child caption + thead tr:first-child td,
  526. .card > .table:first-child colgroup + thead tr:first-child th,
  527. .card > .table:first-child colgroup + thead tr:first-child td,
  528. .card > .table:first-child thead:first-child tr:first-child th,
  529. .card > .table:first-child thead:first-child tr:first-child td,
  530. .card > [class*=table-responsive]:first-child > .table:first-child caption + thead tr:first-child th,
  531. .card > [class*=table-responsive]:first-child > .table:first-child caption + thead tr:first-child td,
  532. .card > [class*=table-responsive]:first-child > .table:first-child colgroup + thead tr:first-child th,
  533. .card > [class*=table-responsive]:first-child > .table:first-child colgroup + thead tr:first-child td,
  534. .card > [class*=table-responsive]:first-child > .table:first-child thead:first-child tr:first-child th,
  535. .card > [class*=table-responsive]:first-child > .table:first-child thead:first-child tr:first-child td {
  536. border-top-width: 0; }
  537. .card.card-table {
  538. border-width: 1px;
  539. border-color: #ddd; }
  540. .card > .table caption,
  541. .card > [class*=table-responsive] > .table caption {
  542. padding-left: 1.25rem;
  543. padding-right: 1.25rem; }
  544. .card > .table:first-child,
  545. .card > [class*=table-responsive]:first-child > .table:first-child {
  546. border-top-left-radius: 0.125rem;
  547. border-top-right-radius: 0.125rem; }
  548. .card > .table:first-child thead:first-child tr:first-child,
  549. .card > .table:first-child tbody:first-child tr:first-child,
  550. .card > [class*=table-responsive]:first-child > .table:first-child thead:first-child tr:first-child,
  551. .card > [class*=table-responsive]:first-child > .table:first-child tbody:first-child tr:first-child {
  552. border-top-left-radius: 0.125rem;
  553. border-top-right-radius: 0.125rem; }
  554. .card > .table:first-child thead:first-child tr:first-child td:first-child,
  555. .card > .table:first-child thead:first-child tr:first-child th:first-child,
  556. .card > .table:first-child tbody:first-child tr:first-child td:first-child,
  557. .card > .table:first-child tbody:first-child tr:first-child th:first-child,
  558. .card > [class*=table-responsive]:first-child > .table:first-child thead:first-child tr:first-child td:first-child,
  559. .card > [class*=table-responsive]:first-child > .table:first-child thead:first-child tr:first-child th:first-child,
  560. .card > [class*=table-responsive]:first-child > .table:first-child tbody:first-child tr:first-child td:first-child,
  561. .card > [class*=table-responsive]:first-child > .table:first-child tbody:first-child tr:first-child th:first-child {
  562. border-top-left-radius: 0.125rem; }
  563. .card > .table:first-child thead:first-child tr:first-child td:last-child,
  564. .card > .table:first-child thead:first-child tr:first-child th:last-child,
  565. .card > .table:first-child tbody:first-child tr:first-child td:last-child,
  566. .card > .table:first-child tbody:first-child tr:first-child th:last-child,
  567. .card > [class*=table-responsive]:first-child > .table:first-child thead:first-child tr:first-child td:last-child,
  568. .card > [class*=table-responsive]:first-child > .table:first-child thead:first-child tr:first-child th:last-child,
  569. .card > [class*=table-responsive]:first-child > .table:first-child tbody:first-child tr:first-child td:last-child,
  570. .card > [class*=table-responsive]:first-child > .table:first-child tbody:first-child tr:first-child th:last-child {
  571. border-top-right-radius: 0.125rem; }
  572. .card > .table:last-child,
  573. .card > [class*=table-responsive]:last-child > .table:last-child {
  574. border-bottom-right-radius: 0.125rem;
  575. border-bottom-left-radius: 0.125rem; }
  576. .card > .table:last-child tbody:last-child tr:last-child,
  577. .card > .table:last-child tfoot:last-child tr:last-child,
  578. .card > [class*=table-responsive]:last-child > .table:last-child tbody:last-child tr:last-child,
  579. .card > [class*=table-responsive]:last-child > .table:last-child tfoot:last-child tr:last-child {
  580. border-bottom-left-radius: 0.125rem;
  581. border-bottom-right-radius: 0.125rem; }
  582. .card > .table:last-child tbody:last-child tr:last-child td:first-child,
  583. .card > .table:last-child tbody:last-child tr:last-child th:first-child,
  584. .card > .table:last-child tfoot:last-child tr:last-child td:first-child,
  585. .card > .table:last-child tfoot:last-child tr:last-child th:first-child,
  586. .card > [class*=table-responsive]:last-child > .table:last-child tbody:last-child tr:last-child td:first-child,
  587. .card > [class*=table-responsive]:last-child > .table:last-child tbody:last-child tr:last-child th:first-child,
  588. .card > [class*=table-responsive]:last-child > .table:last-child tfoot:last-child tr:last-child td:first-child,
  589. .card > [class*=table-responsive]:last-child > .table:last-child tfoot:last-child tr:last-child th:first-child {
  590. border-bottom-left-radius: 0.125rem; }
  591. .card > .table:last-child tbody:last-child tr:last-child td:last-child,
  592. .card > .table:last-child tbody:last-child tr:last-child th:last-child,
  593. .card > .table:last-child tfoot:last-child tr:last-child td:last-child,
  594. .card > .table:last-child tfoot:last-child tr:last-child th:last-child,
  595. .card > [class*=table-responsive]:last-child > .table:last-child tbody:last-child tr:last-child td:last-child,
  596. .card > [class*=table-responsive]:last-child > .table:last-child tbody:last-child tr:last-child th:last-child,
  597. .card > [class*=table-responsive]:last-child > .table:last-child tfoot:last-child tr:last-child td:last-child,
  598. .card > [class*=table-responsive]:last-child > .table:last-child tfoot:last-child tr:last-child th:last-child {
  599. border-bottom-right-radius: 0.125rem; }
  600. .card > .table-bordered,
  601. .card > [class*=table-responsive] > .table-bordered {
  602. border: 0; }
  603. .card > .table-bordered thead th:first-child,
  604. .card > .table-bordered thead td:first-child,
  605. .card > .table-bordered tbody th:first-child,
  606. .card > .table-bordered tbody td:first-child,
  607. .card > .table-bordered tfoot th:first-child,
  608. .card > .table-bordered tfoot td:first-child,
  609. .card > [class*=table-responsive] > .table-bordered thead th:first-child,
  610. .card > [class*=table-responsive] > .table-bordered thead td:first-child,
  611. .card > [class*=table-responsive] > .table-bordered tbody th:first-child,
  612. .card > [class*=table-responsive] > .table-bordered tbody td:first-child,
  613. .card > [class*=table-responsive] > .table-bordered tfoot th:first-child,
  614. .card > [class*=table-responsive] > .table-bordered tfoot td:first-child {
  615. border-left: 0; }
  616. .card > .table-bordered thead th:last-child,
  617. .card > .table-bordered thead td:last-child,
  618. .card > .table-bordered tbody th:last-child,
  619. .card > .table-bordered tbody td:last-child,
  620. .card > .table-bordered tfoot th:last-child,
  621. .card > .table-bordered tfoot td:last-child,
  622. .card > [class*=table-responsive] > .table-bordered thead th:last-child,
  623. .card > [class*=table-responsive] > .table-bordered thead td:last-child,
  624. .card > [class*=table-responsive] > .table-bordered tbody th:last-child,
  625. .card > [class*=table-responsive] > .table-bordered tbody td:last-child,
  626. .card > [class*=table-responsive] > .table-bordered tfoot th:last-child,
  627. .card > [class*=table-responsive] > .table-bordered tfoot td:last-child {
  628. border-right: 0; }
  629. .card-header:not([class*=bg-]) + .table,
  630. .card-header:not([class*=bg-]) + div[class*=table-responsive],
  631. .card-body + .table,
  632. .card-body + div[class*=table-responsive],
  633. .table + .card-body,
  634. div[class*=table-responsive] + .card-body,
  635. .navbar-light + div[class*=table-responsive],
  636. .navbar-light + .table {
  637. border-top: 1px solid #ddd; }
  638. .table tbody:first-child tr:first-child th,
  639. div[class*=table-responsive] > .table tbody:first-child tr:first-child th,
  640. .table tbody:first-child tr:first-child td,
  641. div[class*=table-responsive] > .table tbody:first-child tr:first-child td {
  642. border-top: 0; }
  643. .card-footer + [class*=table-responsive],
  644. .card-footer + .table {
  645. border-top: 1px solid #ddd; }
  646. /* ------------------------------------------------------------------------------
  647. *
  648. * # Form styles
  649. *
  650. * Basic form styles and overrides of default Bootstrap styles
  651. *
  652. * ---------------------------------------------------------------------------- */
  653. legend {
  654. padding-top: 0.625rem;
  655. padding-bottom: 0.625rem;
  656. margin-bottom: 1.25rem;
  657. border-bottom: 1px solid #ddd;
  658. font-size: 0.8125rem; }
  659. fieldset:first-child legend:first-child {
  660. padding-top: 0; }
  661. select[multiple],
  662. select[size] {
  663. height: 200px;
  664. padding: 0; }
  665. select[multiple] option,
  666. select[size] option {
  667. padding: 0.5rem 1.25rem;
  668. border-radius: 0.1875rem; }
  669. select[multiple] option + option,
  670. select[size] option + option {
  671. margin-top: 1px; }
  672. .form-control {
  673. background-clip: border-box;
  674. border-width: 1px 0;
  675. border-top-color: transparent !important; }
  676. .form-control:disabled, .form-control[readonly] {
  677. border-bottom-style: dashed; }
  678. .form-control:disabled {
  679. color: #999; }
  680. .form-control[readonly] {
  681. box-shadow: none;
  682. border-bottom-color: #ddd !important; }
  683. .form-control.border-success:focus {
  684. box-shadow: 0 1px 0 #4CAF50; }
  685. .form-control.border-danger:focus {
  686. box-shadow: 0 1px 0 #F44336; }
  687. .form-control.border-warning:focus {
  688. box-shadow: 0 1px 0 #FF7043; }
  689. .form-control.border-primary:focus {
  690. box-shadow: 0 1px 0 #2196F3; }
  691. .form-control.border-info:focus {
  692. box-shadow: 0 1px 0 #00BCD4; }
  693. .form-control.text-white {
  694. border-bottom-color: rgba(255, 255, 255, 0.5); }
  695. .form-control.text-white:focus {
  696. border-bottom-color: #fff;
  697. box-shadow: 0 1px 0 #fff; }
  698. .form-control.text-white::-webkit-input-placeholder {
  699. color: #fff; }
  700. .form-control.text-white::-moz-placeholder {
  701. color: #fff; }
  702. .form-control.text-white:-ms-input-placeholder {
  703. color: #fff; }
  704. .form-control.text-white::-ms-input-placeholder {
  705. color: #fff; }
  706. .form-control.text-white::placeholder {
  707. color: #fff; }
  708. .form-group .form-group:last-child {
  709. margin-bottom: 0; }
  710. @media (max-width: 767.98px) {
  711. .form-group [class*="col-md-"]:not([class*=col-form-label]) + [class*="col-md-"] {
  712. margin-top: 1.25rem; } }
  713. @media (max-width: 991.98px) {
  714. .form-group [class*="col-lg-"]:not([class*=col-form-label]) + [class*="col-lg-"] {
  715. margin-top: 1.25rem; } }
  716. @media (max-width: 1199.98px) {
  717. .form-group [class*="col-xl-"]:not([class*=col-form-label]) + [class*="col-xl-"] {
  718. margin-top: 1.25rem; } }
  719. @media (max-width: 767.98px) {
  720. [class*=col-form-label][class*="col-md-"] {
  721. padding-top: 0; } }
  722. @media (max-width: 991.98px) {
  723. [class*=col-form-label][class*="col-lg-"] {
  724. padding-top: 0; } }
  725. @media (max-width: 1199.98px) {
  726. [class*=col-form-label][class*="col-xl-"] {
  727. padding-top: 0; } }
  728. .form-check:not(.form-check-inline) {
  729. margin-bottom: 0.5rem; }
  730. .form-check:not(.form-check-inline):last-child {
  731. margin-bottom: 0; }
  732. .form-group.row .form-check:not(.dropdown-item) {
  733. margin-top: 0.5625rem; }
  734. .form-check.disabled {
  735. color: #999; }
  736. .form-check.disabled .form-check-label {
  737. cursor: default; }
  738. .form-check-input:disabled ~ .form-check-label {
  739. cursor: default; }
  740. .form-check-label {
  741. cursor: pointer; }
  742. .form-check-inline .form-check-label {
  743. display: -ms-inline-flexbox;
  744. display: inline-flex;
  745. -ms-flex-align: start;
  746. align-items: flex-start; }
  747. .form-check-inline .form-check-input {
  748. margin-top: 0.3rem; }
  749. .form-check-inline:last-child {
  750. margin-right: 0; }
  751. .form-check-inline input {
  752. position: static; }
  753. .form-check-right {
  754. padding-left: 0;
  755. padding-right: 1.875rem; }
  756. .form-check-right .form-check-input,
  757. .form-check-right input {
  758. left: auto;
  759. right: 0; }
  760. .form-check-right.form-check-inline {
  761. padding: 0; }
  762. .form-check-right.form-check-inline .form-check-input {
  763. margin-right: 0;
  764. margin-left: 0.625rem; }
  765. .form-group-feedback {
  766. position: relative; }
  767. .form-group-feedback-left .form-control-feedback {
  768. left: 0; }
  769. .form-group-feedback-left .form-control {
  770. padding-left: 2rem; }
  771. .form-group-feedback-left .form-control-lg {
  772. padding-left: 2.125rem; }
  773. .form-group-feedback-left .form-control-sm {
  774. padding-left: 1.875rem; }
  775. .form-group-feedback-right .form-control-feedback {
  776. right: 0; }
  777. .form-group-feedback-right .form-control {
  778. padding-right: 2rem; }
  779. .form-group-feedback-right .form-control-lg {
  780. padding-right: 2.125rem; }
  781. .form-group-feedback-right .form-control-sm {
  782. padding-right: 1.875rem; }
  783. .form-control-feedback {
  784. position: absolute;
  785. top: 0;
  786. color: #333;
  787. padding-left: 0;
  788. padding-right: 0;
  789. line-height: 2.37503rem;
  790. min-width: 1rem; }
  791. .form-control-feedback-lg {
  792. padding-left: 0;
  793. padding-right: 0;
  794. line-height: 2.62502rem; }
  795. .form-control-feedback-sm {
  796. padding-left: 0;
  797. padding-right: 0;
  798. line-height: 2.12502rem; }
  799. input[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) + .form-control-feedback {
  800. color: #fff; }
  801. /* ------------------------------------------------------------------------------
  802. *
  803. * # Button component
  804. *
  805. * Overrides for button bootstrap component
  806. *
  807. * ---------------------------------------------------------------------------- */
  808. .btn {
  809. position: relative;
  810. text-transform: uppercase; }
  811. .btn:not(.bg-transparent):not([class*=btn-outline]):not(.btn-light):not(.btn-link):not([class*=alpha-]):not(.fab-menu-btn):hover, .btn:not(.bg-transparent):not([class*=btn-outline]):not(.btn-light):not(.btn-link):not([class*=alpha-]):not(.fab-menu-btn):focus, .btn:not(.bg-transparent):not([class*=btn-outline]):not(.btn-light):not(.btn-link):not([class*=alpha-]):not(.fab-menu-btn).focus, .btn:not(.bg-transparent):not([class*=btn-outline]):not(.btn-light):not(.btn-link):not([class*=alpha-]):not(.fab-menu-btn):active, .btn:not(.bg-transparent):not([class*=btn-outline]):not(.btn-light):not(.btn-link):not([class*=alpha-]):not(.fab-menu-btn).active,
  812. .show > .btn:not(.bg-transparent):not([class*=btn-outline]):not(.btn-light):not(.btn-link):not([class*=alpha-]):not(.fab-menu-btn).dropdown-toggle {
  813. box-shadow: 0 0 0 62.5rem rgba(0, 0, 0, 0.075) inset; }
  814. .btn:not(.bg-transparent):not([class*=btn-outline]):not(.btn-light):not(.btn-link):not([class*=alpha-]):not(.fab-menu-btn).disabled, .btn:not(.bg-transparent):not([class*=btn-outline]):not(.btn-light):not(.btn-link):not([class*=alpha-]):not(.fab-menu-btn):disabled {
  815. box-shadow: none; }
  816. .btn.disabled, .btn:disabled {
  817. cursor: default; }
  818. .btn-light {
  819. color: #333;
  820. background-color: #f5f5f5;
  821. border-color: transparent; }
  822. .btn-light:hover, .btn-light:focus, .btn-light.focus, .btn-light:not([disabled]):not(.disabled):active, .btn-light:not([disabled]):not(.disabled).active,
  823. .show > .btn-light.dropdown-toggle {
  824. color: #333;
  825. background-color: #eee;
  826. border-color: transparent; }
  827. .btn-light.disabled, .btn-light:disabled {
  828. background-color: #f5f5f5;
  829. border-color: transparent; }
  830. .btn-outline:not(:hover):not(:active):not(.active):not([aria-expanded=true]), .btn-outline.disabled, .btn-outline:disabled {
  831. background-color: transparent !important; }
  832. .btn-outline:not(.disabled):not(:disabled):not([class*=alpha-]):hover, .btn-outline:not(.disabled):not(:disabled):not([class*=alpha-]):not([disabled]):not(.disabled):active, .btn-outline:not(.disabled):not(:disabled):not([class*=alpha-]):not([disabled]):not(.disabled).active,
  833. .show > .btn-outline:not(.disabled):not(:disabled):not([class*=alpha-]).dropdown-toggle {
  834. color: #fff !important; }
  835. .btn-outline.bg-white:not(.disabled):not(:disabled):hover, .btn-outline.bg-white:not(.disabled):not(:disabled):not([disabled]):not(.disabled):active, .btn-outline.bg-white:not(.disabled):not(:disabled):not([disabled]):not(.disabled).active,
  836. .show > .btn-outline.bg-white:not(.disabled):not(:disabled).dropdown-toggle {
  837. color: #333 !important; }
  838. .btn-link {
  839. font-weight: 500; }
  840. .show > .btn-link.dropdown-toggle {
  841. color: #0a6ebd; }
  842. .btn-icon {
  843. padding-left: 0.62502rem;
  844. padding-right: 0.62502rem; }
  845. .btn-icon input[type=checkbox],
  846. .btn-icon input[type=radio] {
  847. display: block; }
  848. .btn-icon.btn-sm {
  849. padding-left: 0.50002rem;
  850. padding-right: 0.50002rem; }
  851. .btn-icon.btn-lg {
  852. padding-left: 0.75002rem;
  853. padding-right: 0.75002rem; }
  854. .btn-float {
  855. padding: 1rem;
  856. border-radius: 0.1875rem; }
  857. .btn-float.btn-link {
  858. padding: 0.8rem; }
  859. .btn-float i {
  860. display: block;
  861. top: 0; }
  862. .btn-float > span {
  863. display: block;
  864. padding-top: 0.625rem;
  865. margin-bottom: -0.40625rem;
  866. overflow: hidden;
  867. text-overflow: ellipsis; }
  868. .btn.border-2 {
  869. padding-top: 0.4375rem;
  870. padding-bottom: 0.4375rem; }
  871. .btn.border-2.btn-lg {
  872. padding-top: 0.5625rem;
  873. padding-bottom: 0.5625rem; }
  874. .btn.border-2.btn-sm {
  875. padding-top: 0.3125rem;
  876. padding-bottom: 0.3125rem; }
  877. .btn.border-2.btn-icon {
  878. padding-left: 0.56252rem;
  879. padding-right: 0.56252rem; }
  880. .btn.border-2.btn-icon.btn-lg {
  881. padding-left: 0.68752rem;
  882. padding-right: 0.68752rem; }
  883. .btn.border-2.btn-icon.btn-sm {
  884. padding-left: 0.43752rem;
  885. padding-right: 0.43752rem; }
  886. .btn.border-2.btn-float {
  887. padding: 0.9375rem; }
  888. .btn-labeled > b {
  889. position: absolute;
  890. top: -1px;
  891. background-color: rgba(0, 0, 0, 0.15);
  892. display: block;
  893. line-height: 1;
  894. padding: 0.68753rem; }
  895. .btn-labeled > b > i {
  896. top: 0; }
  897. .btn-labeled.rounded-round > b {
  898. border-radius: 100px; }
  899. .btn-labeled.btn-lg > b {
  900. padding: 0.81253rem; }
  901. .btn-labeled.btn-sm > b {
  902. padding: 0.56253rem; }
  903. .btn-labeled-left {
  904. padding-left: 3.37506rem; }
  905. .btn-labeled-left > b {
  906. left: -1px;
  907. border-top-left-radius: 0.1875rem;
  908. border-bottom-left-radius: 0.1875rem; }
  909. .btn-labeled-left.btn-lg {
  910. padding-left: 3.75005rem; }
  911. .btn-labeled-left.btn-lg > b {
  912. border-top-left-radius: 0.25rem;
  913. border-bottom-left-radius: 0.25rem; }
  914. .btn-labeled-left.btn-sm {
  915. padding-left: 3.00006rem; }
  916. .btn-labeled-left.btn-sm > b {
  917. border-top-left-radius: 0.125rem;
  918. border-bottom-left-radius: 0.125rem; }
  919. .btn-labeled-right {
  920. padding-right: 3.37506rem; }
  921. .btn-labeled-right > b {
  922. right: -1px;
  923. border-top-right-radius: 0.1875rem;
  924. border-bottom-right-radius: 0.1875rem; }
  925. /* ------------------------------------------------------------------------------
  926. *
  927. * # Dropdown menu component
  928. *
  929. * Overrides for dropdown menu bootstrap component
  930. *
  931. * ---------------------------------------------------------------------------- */
  932. .dropdown-menu {
  933. background-clip: border-box; }
  934. .dropdown-menu-right {
  935. left: auto;
  936. right: 0; }
  937. .dropdown-item {
  938. display: -ms-flexbox;
  939. display: flex;
  940. -ms-flex-align: center;
  941. align-items: center;
  942. position: relative;
  943. outline: 0;
  944. overflow: hidden;
  945. text-overflow: ellipsis;
  946. cursor: pointer;
  947. margin-bottom: 0;
  948. transition: background-color ease-in-out 0.15s, color ease-in-out 0.15s; }
  949. @media screen and (prefers-reduced-motion: reduce) {
  950. .dropdown-item {
  951. transition: none; } }
  952. .dropdown-item + .dropdown-item,
  953. .dropdown-submenu + .dropdown-item,
  954. .dropdown-item + .dropdown-submenu {
  955. margin-top: 1px; }
  956. .dropdown-item:active {
  957. color: #333;
  958. background-color: #f5f5f5; }
  959. .dropdown-item.active {
  960. color: #fff;
  961. background-color: #26A69A; }
  962. .dropdown-item.active .badge:not(.badge-mark) {
  963. background-color: #fff !important;
  964. color: #333 !important; }
  965. .dropdown-item.active .badge-mark[class*=bg-] {
  966. background-color: #fff !important;
  967. border-color: #fff !important; }
  968. .dropdown-item.active .badge-mark[class*=border-] {
  969. border-color: #fff !important; }
  970. .dropdown-item.disabled, .dropdown-item:disabled {
  971. color: #999;
  972. background-color: transparent;
  973. cursor: default; }
  974. .dropdown-item.disabled > .badge,
  975. .dropdown-item.disabled > img, .dropdown-item:disabled > .badge,
  976. .dropdown-item:disabled > img {
  977. opacity: 0.8; }
  978. .dropdown-item-open {
  979. background-color: #f5f5f5;
  980. color: #333; }
  981. .dropdown-header {
  982. display: -ms-flexbox;
  983. display: flex;
  984. -ms-flex-align: center;
  985. align-items: center;
  986. margin-top: 0.25rem;
  987. margin-bottom: 0.25rem;
  988. line-height: 1.6667; }
  989. .dropdown-header-highlight {
  990. margin-top: 0;
  991. background-color: #f8f8f8; }
  992. .dropdown-item + .dropdown-header-highlight,
  993. .dropdown-header-highlight + .dropdown-item {
  994. margin-top: 0.5rem; }
  995. .dropdown-header-highlight:first-child {
  996. margin-top: 0; }
  997. .dropdown-item > i,
  998. .dropdown-item > img,
  999. .dropdown-header > i,
  1000. .dropdown-header > img {
  1001. margin-right: 1.25rem; }
  1002. .dropdown-item > i,
  1003. .dropdown-header > i {
  1004. top: 0; }
  1005. .dropdown-item > img,
  1006. .dropdown-header > img {
  1007. max-height: 1.25003rem; }
  1008. .dropdown-divider {
  1009. margin: 0.5rem 0; }
  1010. .dropdown-item.form-check {
  1011. padding: 0;
  1012. margin-bottom: 0; }
  1013. .dropdown-item.form-check .form-check-label {
  1014. -ms-flex: 1;
  1015. flex: 1;
  1016. padding: 0.5rem 1.25rem; }
  1017. .dropdown-item.form-check.form-check-right .form-check-label {
  1018. padding-left: 1.25rem; }
  1019. .dropdown-scrollable {
  1020. max-height: 340px;
  1021. overflow-y: auto; }
  1022. .dropdown-menu > .dropdown-submenu {
  1023. position: relative; }
  1024. .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1025. padding-right: 2.75rem; }
  1026. .dropdown-menu > .dropdown-submenu > .dropdown-item:after {
  1027. content: '\e9c7';
  1028. font-family: "icomoon";
  1029. position: absolute;
  1030. top: 50%;
  1031. margin-top: -0.5rem;
  1032. right: 1.25rem;
  1033. font-size: 1rem;
  1034. line-height: 1;
  1035. -webkit-font-smoothing: antialiased;
  1036. -moz-osx-font-smoothing: grayscale; }
  1037. .dropdown-menu > .dropdown-submenu.show > .dropdown-item, .dropdown-menu > .dropdown-submenu:hover > .dropdown-item {
  1038. background-color: #f5f5f5;
  1039. color: #333; }
  1040. .dropdown-menu > .dropdown-submenu:hover > .dropdown-item:not(.dropdown-toggle) ~ .dropdown-menu,
  1041. .dropdown-menu > .dropdown-submenu:focus > .dropdown-item:not(.dropdown-toggle) ~ .dropdown-menu {
  1042. display: block; }
  1043. .dropdown-menu > .dropdown-submenu.disabled > .dropdown-menu {
  1044. display: none; }
  1045. .dropdown-menu > .dropdown-submenu.disabled > .dropdown-item {
  1046. background-color: transparent;
  1047. color: #999;
  1048. cursor: default; }
  1049. .dropdown-menu > .dropdown-submenu > .dropdown-menu {
  1050. top: 0;
  1051. left: 100%;
  1052. margin-top: -0.5rem; }
  1053. .dropdown-menu > .dropdown-submenu.dropdown-submenu-left > .dropdown-menu {
  1054. left: auto;
  1055. right: 100%; }
  1056. @media (max-width: 991.98px) {
  1057. .dropdown-menu > .dropdown-submenu .dropdown-toggle:after {
  1058. content: '\e9c5'; }
  1059. .dropdown-menu > .dropdown-submenu .dropdown-menu, .dropdown-menu > .dropdown-submenu.dropdown-submenu-left .dropdown-menu {
  1060. position: static;
  1061. margin: 0 !important;
  1062. border-width: 0;
  1063. box-shadow: none;
  1064. border-radius: 0; }
  1065. .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1066. .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1067. padding-left: 2.5rem; }
  1068. .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1069. .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1070. padding-left: 3.75rem; } }
  1071. .dropdown-menu .dropup > .dropdown-menu {
  1072. top: auto;
  1073. bottom: 0;
  1074. margin-top: 0;
  1075. margin-bottom: -0.5rem; }
  1076. .dropdown-menu .dropdown-submenu + .dropdown-submenu {
  1077. margin-top: 1px; }
  1078. .dropright .dropdown-toggle::after {
  1079. vertical-align: middle; }
  1080. .dropleft .dropdown-toggle::before {
  1081. vertical-align: middle; }
  1082. .dropleft .dropdown-submenu .dropdown-toggle::before {
  1083. content: none; }
  1084. .dropdown-menu-lg .dropdown-item {
  1085. padding-top: 0.625rem;
  1086. padding-bottom: 0.625rem;
  1087. font-size: 0.875rem;
  1088. line-height: 1.4286; }
  1089. .dropdown-menu-sm .dropdown-item {
  1090. padding-top: 0.375rem;
  1091. padding-bottom: 0.375rem;
  1092. font-size: 0.75rem;
  1093. line-height: 1.6667; }
  1094. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-item,
  1095. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-submenu > .dropdown-item {
  1096. color: #fff; }
  1097. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-item:hover, .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-item:focus,
  1098. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-submenu > .dropdown-item:hover,
  1099. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-submenu > .dropdown-item:focus {
  1100. background-color: rgba(0, 0, 0, 0.1); }
  1101. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-item.active,
  1102. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-submenu > .dropdown-item.active {
  1103. background-color: rgba(0, 0, 0, 0.2); }
  1104. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-item.disabled,
  1105. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-submenu > .dropdown-item.disabled {
  1106. background-color: transparent;
  1107. color: rgba(255, 255, 255, 0.6); }
  1108. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-submenu.show > .dropdown-item, .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-submenu:hover > .dropdown-item {
  1109. background-color: rgba(0, 0, 0, 0.1);
  1110. color: #fff; }
  1111. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-submenu.disabled > .dropdown-item {
  1112. background-color: transparent;
  1113. color: rgba(255, 255, 255, 0.6); }
  1114. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-header {
  1115. color: rgba(255, 255, 255, 0.6); }
  1116. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-header-highlight {
  1117. background-color: rgba(0, 0, 0, 0.1); }
  1118. .dropdown-menu[class*=bg-]:not(.bg-white):not(.bg-light) > .dropdown-divider {
  1119. border-top-color: rgba(255, 255, 255, 0.4); }
  1120. /* ------------------------------------------------------------------------------
  1121. *
  1122. * # Button group component
  1123. *
  1124. * Overrides for button group bootstrap component
  1125. *
  1126. * ---------------------------------------------------------------------------- */
  1127. .btn-group .btn + .btn.border-2,
  1128. .btn-group .btn.border-2 + .btn-group,
  1129. .btn-group .btn-group + .btn.border-2,
  1130. .btn-group-vertical .btn + .btn.border-2,
  1131. .btn-group-vertical .btn.border-2 + .btn-group,
  1132. .btn-group-vertical .btn-group + .btn.border-2 {
  1133. margin-left: -2px; }
  1134. .btn-group .btn + .btn.border-3,
  1135. .btn-group .btn.border-3 + .btn-group,
  1136. .btn-group .btn-group + .btn.border-3,
  1137. .btn-group-vertical .btn + .btn.border-3,
  1138. .btn-group-vertical .btn.border-3 + .btn-group,
  1139. .btn-group-vertical .btn-group + .btn.border-3 {
  1140. margin-left: -3px; }
  1141. .btn-group-justified {
  1142. display: -ms-flexbox;
  1143. display: flex; }
  1144. .btn-group-justified .btn,
  1145. .btn-group-justified .btn-group {
  1146. -ms-flex: 1;
  1147. flex: 1; }
  1148. /* ------------------------------------------------------------------------------
  1149. *
  1150. * # Input group component
  1151. *
  1152. * Overrides for input group component
  1153. *
  1154. * ---------------------------------------------------------------------------- */
  1155. .input-group .form-group-feedback {
  1156. position: relative;
  1157. -ms-flex: 1 1 auto;
  1158. flex: 1 1 auto;
  1159. width: 1%;
  1160. z-index: 4; }
  1161. .input-group .form-group-feedback:not(:last-child) .form-control {
  1162. border-top-right-radius: 0;
  1163. border-bottom-right-radius: 0; }
  1164. .input-group .form-group-feedback:not(:first-child) .form-control {
  1165. border-top-left-radius: 0;
  1166. border-bottom-left-radius: 0; }
  1167. .input-group + .form-control-feedback,
  1168. .form-control-feedback + .input-group {
  1169. z-index: 4; }
  1170. .input-group-text i {
  1171. display: block;
  1172. top: 0; }
  1173. .input-group-prepend {
  1174. margin-right: 1.25rem; }
  1175. .input-group > .input-group-prepend > .btn:last-of-type {
  1176. border-top-right-radius: 0.1875rem;
  1177. border-bottom-right-radius: 0.1875rem; }
  1178. .input-group-append {
  1179. margin-left: 1.25rem; }
  1180. .input-group > .input-group-append > .btn:first-of-type {
  1181. border-top-left-radius: 0.1875rem;
  1182. border-bottom-left-radius: 0.1875rem; }
  1183. .input-group-lg > .input-group-prepend > .btn,
  1184. .input-group-lg > .input-group-append > .btn {
  1185. padding-left: 1.125rem;
  1186. padding-right: 1.125rem; }
  1187. .input-group-lg > .input-group-prepend > .btn:first-of-type,
  1188. .input-group-lg > .input-group-append > .btn:first-of-type {
  1189. border-top-left-radius: 0.25rem;
  1190. border-bottom-left-radius: 0.25rem; }
  1191. .input-group-lg > .input-group-prepend > .btn:last-of-type,
  1192. .input-group-lg > .input-group-append > .btn:last-of-type {
  1193. border-top-right-radius: 0.25rem;
  1194. border-bottom-right-radius: 0.25rem; }
  1195. .input-group-lg > .input-group-prepend > .btn-icon,
  1196. .input-group-lg > .input-group-append > .btn-icon {
  1197. padding-left: 0.75002rem;
  1198. padding-right: 0.75002rem; }
  1199. .input-group-sm > .input-group-prepend > .btn,
  1200. .input-group-sm > .input-group-append > .btn {
  1201. padding-left: 0.875rem;
  1202. padding-right: 0.875rem; }
  1203. .input-group-sm > .input-group-prepend > .btn:first-of-type,
  1204. .input-group-sm > .input-group-append > .btn:first-of-type {
  1205. border-top-left-radius: 0.125rem;
  1206. border-bottom-left-radius: 0.125rem; }
  1207. .input-group-sm > .input-group-prepend > .btn:last-of-type,
  1208. .input-group-sm > .input-group-append > .btn:last-of-type {
  1209. border-top-right-radius: 0.125rem;
  1210. border-bottom-right-radius: 0.125rem; }
  1211. .input-group-sm > .input-group-prepend > .btn-icon,
  1212. .input-group-sm > .input-group-append > .btn-icon {
  1213. padding-left: 0.50002rem;
  1214. padding-right: 0.50002rem; }
  1215. /* ------------------------------------------------------------------------------
  1216. *
  1217. * # Custom form inputs
  1218. *
  1219. * Custom checkboxes, radios, selects and file inputs
  1220. *
  1221. * ---------------------------------------------------------------------------- */
  1222. .custom-control {
  1223. margin-bottom: 0.5rem; }
  1224. .custom-control:last-child {
  1225. margin-bottom: 0; }
  1226. .custom-control-inline {
  1227. margin-bottom: 0; }
  1228. .custom-control-inline:last-child {
  1229. margin-right: 0; }
  1230. .custom-control-input:active ~ .custom-control-label::before {
  1231. transition: all ease-in-out 0.15s; }
  1232. @media screen and (prefers-reduced-motion: reduce) {
  1233. .custom-control-input:active ~ .custom-control-label::before {
  1234. transition: none; } }
  1235. .custom-control-input:disabled ~ .custom-control-label {
  1236. cursor: default; }
  1237. .custom-control-label {
  1238. cursor: pointer; }
  1239. .custom-control-label::before {
  1240. top: 0.00002rem; }
  1241. .custom-control-label::after {
  1242. top: 0.00002rem; }
  1243. .custom-control-right {
  1244. padding-left: 0;
  1245. padding-right: 1.875rem; }
  1246. .custom-control-right .custom-control-input {
  1247. right: 0; }
  1248. .custom-control-right .custom-control-label:before, .custom-control-right .custom-control-label:after {
  1249. left: auto;
  1250. right: 0; }
  1251. .custom-select {
  1252. cursor: pointer;
  1253. border-width: 1px 0;
  1254. border-top-color: transparent;
  1255. transition: all ease-in-out 0.15s; }
  1256. @media screen and (prefers-reduced-motion: reduce) {
  1257. .custom-select {
  1258. transition: none; } }
  1259. .custom-select:focus {
  1260. box-shadow: 0 1px 0 #009688; }
  1261. .custom-select:disabled {
  1262. cursor: default;
  1263. border-bottom-style: dashed; }
  1264. .custom-select:disabled:hover, .custom-select:disabled:focus {
  1265. box-shadow: none; }
  1266. .custom-file-label {
  1267. border-width: 1px 0;
  1268. border-top-color: transparent;
  1269. margin-bottom: 0; }
  1270. .custom-file-label:after {
  1271. border-left: 0;
  1272. font-weight: 500;
  1273. text-transform: uppercase; }
  1274. /* ------------------------------------------------------------------------------
  1275. *
  1276. * # Nav components
  1277. *
  1278. * Overrides for nav components
  1279. *
  1280. * ---------------------------------------------------------------------------- */
  1281. .nav-link {
  1282. position: relative;
  1283. transition: all ease-in-out 0.15s; }
  1284. @media screen and (prefers-reduced-motion: reduce) {
  1285. .nav-link {
  1286. transition: none; } }
  1287. .nav-link.disabled {
  1288. cursor: default; }
  1289. .nav-tabs {
  1290. margin-bottom: 1.25rem; }
  1291. .nav-tabs .nav-link {
  1292. border-top-left-radius: 0;
  1293. border-top-right-radius: 0;
  1294. color: #777; }
  1295. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  1296. color: #333; }
  1297. .nav-tabs .nav-link.disabled {
  1298. color: #999; }
  1299. .nav-tabs .nav-item.show .nav-link:not(.active) {
  1300. border-color: transparent;
  1301. background-color: transparent; }
  1302. .nav-tabs.border-top-1 {
  1303. border-top-color: #ddd; }
  1304. .nav-tabs-responsive {
  1305. overflow-x: auto;
  1306. box-shadow: 0 -1px 0 #ddd inset; }
  1307. .nav-tabs-highlight .nav-link,
  1308. .nav-tabs-top .nav-link,
  1309. .nav-tabs-bottom .nav-link {
  1310. position: relative; }
  1311. .nav-tabs-highlight .nav-link:before,
  1312. .nav-tabs-top .nav-link:before,
  1313. .nav-tabs-bottom .nav-link:before {
  1314. content: '';
  1315. position: absolute;
  1316. top: 0;
  1317. left: 0;
  1318. right: 0;
  1319. transition: background-color ease-in-out 0.15s; }
  1320. @media screen and (prefers-reduced-motion: reduce) {
  1321. .nav-tabs-highlight .nav-link:before,
  1322. .nav-tabs-top .nav-link:before,
  1323. .nav-tabs-bottom .nav-link:before {
  1324. transition: none; } }
  1325. .nav-tabs-highlight .nav-link {
  1326. border-top-left-radius: 0;
  1327. border-top-right-radius: 0; }
  1328. .nav-tabs-highlight .nav-link:before {
  1329. height: 2px;
  1330. top: -1px;
  1331. left: -1px;
  1332. right: -1px; }
  1333. .nav-tabs-highlight .nav-link.active {
  1334. border-top-color: #2196F3; }
  1335. .nav-tabs-highlight .nav-link.active:before {
  1336. background-color: #2196F3; }
  1337. .nav-tabs-top .nav-item {
  1338. margin-bottom: 0; }
  1339. .nav-tabs-top .nav-link {
  1340. border-width: 0;
  1341. border-top-left-radius: 0;
  1342. border-top-right-radius: 0; }
  1343. .nav-tabs-top .nav-link:hover:before, .nav-tabs-top .nav-link:focus:before {
  1344. background-color: #ddd; }
  1345. .nav-tabs-top .nav-link:before {
  1346. height: 2px; }
  1347. .nav-tabs-top .nav-link.disabled:before {
  1348. content: none; }
  1349. .nav-tabs-top .nav-item.show .nav-link:not(.active):before {
  1350. background-color: #ddd; }
  1351. .nav-tabs-top .nav-link.active:before {
  1352. background-color: #EC407A; }
  1353. .nav-tabs-top .nav-link.active,
  1354. .nav-tabs-top .nav-item.show .nav-link {
  1355. background-color: transparent; }
  1356. .nav-tabs-top .dropdown-menu {
  1357. margin-top: 0; }
  1358. .nav-tabs-top.border-top-1 .nav-item {
  1359. margin-top: -1px; }
  1360. .nav-tabs-bottom .nav-item {
  1361. margin-bottom: 0; }
  1362. .nav-tabs-bottom .nav-link {
  1363. border-width: 0;
  1364. margin-bottom: -1px; }
  1365. .nav-tabs-bottom .nav-link:before {
  1366. height: 2px;
  1367. top: auto;
  1368. bottom: 0; }
  1369. .nav-tabs-bottom .nav-link.active:before {
  1370. background-color: #EC407A; }
  1371. .nav-tabs-bottom .nav-link.active,
  1372. .nav-tabs-bottom .nav-item.show .nav-link {
  1373. background-color: transparent; }
  1374. .nav-tabs-bottom .dropdown-menu {
  1375. margin-top: 0; }
  1376. .nav-tabs-solid {
  1377. background-color: #fafafa;
  1378. border: 1px solid #ddd;
  1379. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  1380. .nav-tabs-solid .nav-item {
  1381. margin-bottom: 0; }
  1382. .nav-tabs-solid .nav-link {
  1383. border-width: 0; }
  1384. .nav-tabs-solid .nav-item.show .nav-link {
  1385. background-color: transparent; }
  1386. .nav-tabs-solid .nav-link.active,
  1387. .nav-tabs-solid .nav-item.show .nav-link.active {
  1388. color: #fff;
  1389. background-color: #26A69A; }
  1390. .nav-tabs-solid[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-link {
  1391. color: rgba(255, 255, 255, 0.9); }
  1392. .nav-tabs-solid[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-link:hover, .nav-tabs-solid[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-link:focus {
  1393. color: #fff; }
  1394. .nav-tabs-solid[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-link.disabled {
  1395. color: rgba(255, 255, 255, 0.6); }
  1396. .nav-tabs-solid[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-item.show .nav-link {
  1397. color: #fff; }
  1398. .nav-tabs-solid[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-link.active,
  1399. .nav-tabs-solid[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .nav-item.show .nav-link.active {
  1400. color: #fff;
  1401. background-color: rgba(0, 0, 0, 0.1); }
  1402. .nav-tabs-solid[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) + .tab-content[class*=bg-] {
  1403. border-top-color: rgba(255, 255, 255, 0.5); }
  1404. .nav-tabs-vertical .nav-link {
  1405. -ms-flex-pack: start;
  1406. justify-content: flex-start;
  1407. border-left-width: 0; }
  1408. .nav-tabs-vertical .nav-link, .nav-tabs-vertical .nav-link:hover, .nav-tabs-vertical .nav-link:focus, .nav-tabs-vertical .nav-link.disabled {
  1409. border-color: transparent #ddd transparent transparent; }
  1410. .nav-tabs-vertical .nav-link:before {
  1411. content: '';
  1412. position: absolute;
  1413. top: -1px;
  1414. bottom: -1px;
  1415. left: 0;
  1416. width: 2px;
  1417. transition: background-color ease-in-out 0.15s; }
  1418. @media screen and (prefers-reduced-motion: reduce) {
  1419. .nav-tabs-vertical .nav-link:before {
  1420. transition: none; } }
  1421. .nav-tabs-vertical .nav-item.show .nav-link:not(.active) {
  1422. border-right-color: #ddd;
  1423. border-bottom-color: transparent; }
  1424. .nav-tabs-vertical-right .nav-link, .nav-tabs-vertical-right .nav-link:hover, .nav-tabs-vertical-right .nav-link:focus, .nav-tabs-vertical-right .nav-link.disabled {
  1425. border-color: transparent transparent transparent #ddd; }
  1426. .nav-tabs-vertical-right .nav-link:before {
  1427. left: auto;
  1428. right: 0; }
  1429. .nav-tabs-vertical-right .nav-item.show .nav-link:not(.active) {
  1430. border-right-color: transparent;
  1431. border-left-color: #ddd; }
  1432. .nav-tabs-vertical .nav-link.active:before {
  1433. background-color: #2196F3; }
  1434. .nav-tabs-vertical .nav-link.active,
  1435. .nav-tabs-vertical .nav-item.show .nav-link {
  1436. background-color: transparent;
  1437. border-color: #ddd transparent; }
  1438. .nav-pills {
  1439. margin-bottom: 1.25rem; }
  1440. .nav-pills .nav-link {
  1441. color: #777; }
  1442. .nav-pills .nav-link:not(.active):hover, .nav-pills .nav-link:not(.active):focus {
  1443. color: #333; }
  1444. .nav-pills .nav-link.active .badge:not(.bg-transparent):not(.bg-light):not(.bg-white) {
  1445. background-color: #fff;
  1446. color: #333;
  1447. transition: all ease-in-out 0.15s; }
  1448. @media screen and (prefers-reduced-motion: reduce) {
  1449. .nav-pills .nav-link.active .badge:not(.bg-transparent):not(.bg-light):not(.bg-white) {
  1450. transition: none; } }
  1451. .nav-pills .nav-link.disabled, .nav-pills .nav-link.disabled:hover, .nav-pills .nav-link.disabled:focus {
  1452. color: #999; }
  1453. .nav-pills .nav-item.show .nav-link:not(.active) {
  1454. color: #333;
  1455. background-color: transparent; }
  1456. .nav-pills.flex-column .nav-link {
  1457. -ms-flex-pack: start;
  1458. justify-content: flex-start; }
  1459. .nav-pills-bordered .nav-item + .nav-item {
  1460. margin-left: 0.625rem; }
  1461. .nav-pills-bordered .nav-link {
  1462. border: 1px solid #ddd; }
  1463. .nav-pills-bordered .nav-link:not(.active):hover,
  1464. .nav-pills-bordered .nav-link:not(.active):focus,
  1465. .nav-pills-bordered .nav-item.show .nav-link:not(.active) {
  1466. background-color: #f5f5f5; }
  1467. .nav-pills-bordered .nav-link.active {
  1468. border-color: #26A69A; }
  1469. .nav-pills-bordered .nav-link.disabled, .nav-pills-bordered .nav-link.disabled:hover, .nav-pills-bordered .nav-link.disabled:focus {
  1470. background-color: #fafafa; }
  1471. .nav-pills-bordered.flex-column .nav-item + .nav-item {
  1472. margin-left: 0;
  1473. margin-top: 0.625rem; }
  1474. .nav-pills-toolbar .nav-item + .nav-item {
  1475. margin-left: -1px; }
  1476. .nav-pills-toolbar .nav-link {
  1477. border-radius: 0; }
  1478. .nav-pills-toolbar .nav-link.active {
  1479. z-index: 3; }
  1480. .nav-pills-toolbar .nav-item:first-child .nav-link {
  1481. border-top-left-radius: 0.1875rem;
  1482. border-bottom-left-radius: 0.1875rem; }
  1483. .nav-pills-toolbar .nav-item:last-child .nav-link {
  1484. border-top-right-radius: 0.1875rem;
  1485. border-bottom-right-radius: 0.1875rem; }
  1486. .nav-pills-toolbar.flex-column .nav-item:first-child .nav-link {
  1487. border-top-left-radius: 0;
  1488. border-bottom-left-radius: 0;
  1489. border-top-left-radius: 0.1875rem;
  1490. border-top-right-radius: 0.1875rem; }
  1491. .nav-pills-toolbar.flex-column .nav-item:last-child .nav-link {
  1492. border-top-right-radius: 0;
  1493. border-bottom-right-radius: 0;
  1494. border-bottom-right-radius: 0.1875rem;
  1495. border-bottom-left-radius: 0.1875rem; }
  1496. .nav-pills-toolbar.flex-column .nav-item + .nav-item {
  1497. margin-left: 0;
  1498. margin-top: -1px; }
  1499. /* ------------------------------------------------------------------------------
  1500. *
  1501. * # Navbar component
  1502. *
  1503. * Overrides for navbar component
  1504. *
  1505. * ---------------------------------------------------------------------------- */
  1506. .navbar {
  1507. -ms-flex-align: stretch;
  1508. align-items: stretch;
  1509. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  1510. .navbar-component {
  1511. border: 1px solid transparent;
  1512. margin-bottom: 1.25rem; }
  1513. .page-header .navbar-component {
  1514. margin-left: 1.25rem;
  1515. margin-right: 1.25rem; }
  1516. .navbar-brand img {
  1517. height: 1rem;
  1518. display: block; }
  1519. .navbar-text {
  1520. padding-top: 0.875rem;
  1521. padding-bottom: 0.875rem; }
  1522. .navbar-nav .nav-link {
  1523. padding-left: 1.25rem;
  1524. padding-right: 1.25rem; }
  1525. .navbar-nav-link {
  1526. position: relative;
  1527. display: block;
  1528. cursor: pointer;
  1529. padding: 0.875rem 1rem;
  1530. outline: 0;
  1531. transition: all ease-in-out 0.15s; }
  1532. @media screen and (prefers-reduced-motion: reduce) {
  1533. .navbar-nav-link {
  1534. transition: none; } }
  1535. .navbar-nav-link.disabled {
  1536. cursor: default; }
  1537. .navbar-nav-link.disabled .badge,
  1538. .navbar-nav-link.disabled img {
  1539. opacity: 0.5; }
  1540. .navbar-nav-link .badge {
  1541. position: absolute;
  1542. top: 0;
  1543. right: 0; }
  1544. .navbar-nav-link .badge-mark {
  1545. top: 0.4375rem;
  1546. right: 0.5rem; }
  1547. .navbar-nav-highlight .navbar-nav-link {
  1548. text-transform: uppercase;
  1549. font-size: 0.75rem;
  1550. line-height: 1.6667;
  1551. font-weight: 500; }
  1552. .navbar-nav-highlight .navbar-nav-link:before {
  1553. content: '';
  1554. position: absolute;
  1555. top: 0;
  1556. bottom: 0;
  1557. left: 0;
  1558. background-color: transparent;
  1559. width: 2px; }
  1560. .navbar-light .navbar-nav-highlight .navbar-nav-link.active:before {
  1561. background-color: #EC407A; }
  1562. .navbar-dark .navbar-nav-highlight .navbar-nav-link.active:before {
  1563. background-color: #fff; }
  1564. .navbar-collapse {
  1565. margin-left: -1.25rem;
  1566. margin-right: -1.25rem;
  1567. padding-left: 1.25rem;
  1568. padding-right: 1.25rem; }
  1569. .navbar-toggler {
  1570. border: 0;
  1571. line-height: 1.5385;
  1572. cursor: pointer;
  1573. transition: all ease-in-out 0.15s; }
  1574. @media screen and (prefers-reduced-motion: reduce) {
  1575. .navbar-toggler {
  1576. transition: none; } }
  1577. .navbar-toggler + .navbar-toggler {
  1578. margin-left: 1.25rem; }
  1579. .navbar-toggler:hover, .navbar-toggler:focus {
  1580. outline: 0; }
  1581. .navbar-dark .navbar-toggler:hover, .navbar-dark .navbar-toggler:focus {
  1582. color: #fff; }
  1583. .navbar-light .navbar-toggler {
  1584. color: rgba(51, 51, 51, 0.75); }
  1585. .navbar-light .navbar-toggler:hover, .navbar-light .navbar-toggler:focus, .navbar-light .navbar-toggler[aria-expanded=true] {
  1586. color: #333; }
  1587. @media (max-width: 575.98px) {
  1588. .navbar-expand-sm .navbar-nav:first-child > .nav-item:first-child {
  1589. margin-top: 0.625rem; }
  1590. .navbar-expand-sm .navbar-nav:last-child > .nav-item:not(.show):last-child {
  1591. margin-bottom: 0.625rem; }
  1592. .navbar-expand-sm .navbar-nav-link {
  1593. display: -ms-flexbox;
  1594. display: flex;
  1595. -ms-flex-align: center;
  1596. align-items: center;
  1597. margin-left: -1.25rem;
  1598. margin-right: -1.25rem;
  1599. padding-left: 1.25rem;
  1600. padding-right: 1.25rem; }
  1601. .navbar-expand-sm .navbar-nav-link .badge:not(.position-static) {
  1602. position: static; }
  1603. .navbar-expand-sm .navbar-nav-link.dropdown-toggle:not(.caret-0) {
  1604. padding-right: 2.5rem; }
  1605. .navbar-expand-sm .navbar-nav-link.dropdown-toggle:not(.caret-0):after {
  1606. position: absolute;
  1607. top: 50%;
  1608. right: 1.25rem;
  1609. margin: 0;
  1610. -webkit-transform: translateY(-50%);
  1611. transform: translateY(-50%); }
  1612. .navbar-expand-sm.navbar-dark .navbar-collapse {
  1613. border-top: 1px solid rgba(255, 255, 255, 0.1); }
  1614. .navbar-expand-sm.navbar-light .navbar-collapse {
  1615. border-top: 1px solid #ddd; }
  1616. .navbar-expand-sm .navbar-nav > .nav-item > .dropdown-menu {
  1617. margin-top: 1.25rem;
  1618. margin-bottom: 1.25rem; }
  1619. .navbar-expand-sm .dropdown-submenu .dropdown-toggle:after {
  1620. content: '\e9c5'; }
  1621. .navbar-expand-sm .dropdown-submenu .dropdown-menu, .navbar-expand-sm .dropdown-submenu.dropdown-submenu-left .dropdown-menu {
  1622. margin: 0;
  1623. border-width: 0;
  1624. box-shadow: none;
  1625. border-radius: 0; }
  1626. .navbar-expand-sm .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1627. .navbar-expand-sm .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1628. padding-left: 2.5rem; }
  1629. .navbar-expand-sm .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1630. .navbar-expand-sm .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1631. padding-left: 3.75rem; }
  1632. .navbar-expand-sm.fixed-top .navbar-collapse,
  1633. .navbar-expand-sm.fixed-bottom .navbar-collapse {
  1634. max-height: 440px;
  1635. overflow-y: auto; } }
  1636. @media (min-width: 576px) {
  1637. .navbar-expand-sm .navbar-brand {
  1638. min-width: 15.625rem; }
  1639. .navbar-expand-sm .navbar-nav-link:before {
  1640. top: auto;
  1641. right: 0;
  1642. width: auto;
  1643. height: 2px; } }
  1644. @media (max-width: 767.98px) {
  1645. .navbar-expand-md .navbar-nav:first-child > .nav-item:first-child {
  1646. margin-top: 0.625rem; }
  1647. .navbar-expand-md .navbar-nav:last-child > .nav-item:not(.show):last-child {
  1648. margin-bottom: 0.625rem; }
  1649. .navbar-expand-md .navbar-nav-link {
  1650. display: -ms-flexbox;
  1651. display: flex;
  1652. -ms-flex-align: center;
  1653. align-items: center;
  1654. margin-left: -1.25rem;
  1655. margin-right: -1.25rem;
  1656. padding-left: 1.25rem;
  1657. padding-right: 1.25rem; }
  1658. .navbar-expand-md .navbar-nav-link .badge:not(.position-static) {
  1659. position: static; }
  1660. .navbar-expand-md .navbar-nav-link.dropdown-toggle:not(.caret-0) {
  1661. padding-right: 2.5rem; }
  1662. .navbar-expand-md .navbar-nav-link.dropdown-toggle:not(.caret-0):after {
  1663. position: absolute;
  1664. top: 50%;
  1665. right: 1.25rem;
  1666. margin: 0;
  1667. -webkit-transform: translateY(-50%);
  1668. transform: translateY(-50%); }
  1669. .navbar-expand-md.navbar-dark .navbar-collapse {
  1670. border-top: 1px solid rgba(255, 255, 255, 0.1); }
  1671. .navbar-expand-md.navbar-light .navbar-collapse {
  1672. border-top: 1px solid #ddd; }
  1673. .navbar-expand-md .navbar-nav > .nav-item > .dropdown-menu {
  1674. margin-top: 1.25rem;
  1675. margin-bottom: 1.25rem; }
  1676. .navbar-expand-md .dropdown-submenu .dropdown-toggle:after {
  1677. content: '\e9c5'; }
  1678. .navbar-expand-md .dropdown-submenu .dropdown-menu, .navbar-expand-md .dropdown-submenu.dropdown-submenu-left .dropdown-menu {
  1679. margin: 0;
  1680. border-width: 0;
  1681. box-shadow: none;
  1682. border-radius: 0; }
  1683. .navbar-expand-md .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1684. .navbar-expand-md .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1685. padding-left: 2.5rem; }
  1686. .navbar-expand-md .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1687. .navbar-expand-md .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1688. padding-left: 3.75rem; }
  1689. .navbar-expand-md.fixed-top .navbar-collapse,
  1690. .navbar-expand-md.fixed-bottom .navbar-collapse {
  1691. max-height: 440px;
  1692. overflow-y: auto; } }
  1693. @media (min-width: 768px) {
  1694. .navbar-expand-md .navbar-brand {
  1695. min-width: 15.625rem; }
  1696. .navbar-expand-md .navbar-nav-link:before {
  1697. top: auto;
  1698. right: 0;
  1699. width: auto;
  1700. height: 2px; } }
  1701. @media (max-width: 991.98px) {
  1702. .navbar-expand-lg .navbar-nav:first-child > .nav-item:first-child {
  1703. margin-top: 0.625rem; }
  1704. .navbar-expand-lg .navbar-nav:last-child > .nav-item:not(.show):last-child {
  1705. margin-bottom: 0.625rem; }
  1706. .navbar-expand-lg .navbar-nav-link {
  1707. display: -ms-flexbox;
  1708. display: flex;
  1709. -ms-flex-align: center;
  1710. align-items: center;
  1711. margin-left: -1.25rem;
  1712. margin-right: -1.25rem;
  1713. padding-left: 1.25rem;
  1714. padding-right: 1.25rem; }
  1715. .navbar-expand-lg .navbar-nav-link .badge:not(.position-static) {
  1716. position: static; }
  1717. .navbar-expand-lg .navbar-nav-link.dropdown-toggle:not(.caret-0) {
  1718. padding-right: 2.5rem; }
  1719. .navbar-expand-lg .navbar-nav-link.dropdown-toggle:not(.caret-0):after {
  1720. position: absolute;
  1721. top: 50%;
  1722. right: 1.25rem;
  1723. margin: 0;
  1724. -webkit-transform: translateY(-50%);
  1725. transform: translateY(-50%); }
  1726. .navbar-expand-lg.navbar-dark .navbar-collapse {
  1727. border-top: 1px solid rgba(255, 255, 255, 0.1); }
  1728. .navbar-expand-lg.navbar-light .navbar-collapse {
  1729. border-top: 1px solid #ddd; }
  1730. .navbar-expand-lg .navbar-nav > .nav-item > .dropdown-menu {
  1731. margin-top: 1.25rem;
  1732. margin-bottom: 1.25rem; }
  1733. .navbar-expand-lg .dropdown-submenu .dropdown-toggle:after {
  1734. content: '\e9c5'; }
  1735. .navbar-expand-lg .dropdown-submenu .dropdown-menu, .navbar-expand-lg .dropdown-submenu.dropdown-submenu-left .dropdown-menu {
  1736. margin: 0;
  1737. border-width: 0;
  1738. box-shadow: none;
  1739. border-radius: 0; }
  1740. .navbar-expand-lg .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1741. .navbar-expand-lg .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1742. padding-left: 2.5rem; }
  1743. .navbar-expand-lg .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1744. .navbar-expand-lg .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1745. padding-left: 3.75rem; }
  1746. .navbar-expand-lg.fixed-top .navbar-collapse,
  1747. .navbar-expand-lg.fixed-bottom .navbar-collapse {
  1748. max-height: 440px;
  1749. overflow-y: auto; } }
  1750. @media (min-width: 992px) {
  1751. .navbar-expand-lg .navbar-brand {
  1752. min-width: 15.625rem; }
  1753. .navbar-expand-lg .navbar-nav-link:before {
  1754. top: auto;
  1755. right: 0;
  1756. width: auto;
  1757. height: 2px; } }
  1758. @media (max-width: 1199.98px) {
  1759. .navbar-expand-xl .navbar-nav:first-child > .nav-item:first-child {
  1760. margin-top: 0.625rem; }
  1761. .navbar-expand-xl .navbar-nav:last-child > .nav-item:not(.show):last-child {
  1762. margin-bottom: 0.625rem; }
  1763. .navbar-expand-xl .navbar-nav-link {
  1764. display: -ms-flexbox;
  1765. display: flex;
  1766. -ms-flex-align: center;
  1767. align-items: center;
  1768. margin-left: -1.25rem;
  1769. margin-right: -1.25rem;
  1770. padding-left: 1.25rem;
  1771. padding-right: 1.25rem; }
  1772. .navbar-expand-xl .navbar-nav-link .badge:not(.position-static) {
  1773. position: static; }
  1774. .navbar-expand-xl .navbar-nav-link.dropdown-toggle:not(.caret-0) {
  1775. padding-right: 2.5rem; }
  1776. .navbar-expand-xl .navbar-nav-link.dropdown-toggle:not(.caret-0):after {
  1777. position: absolute;
  1778. top: 50%;
  1779. right: 1.25rem;
  1780. margin: 0;
  1781. -webkit-transform: translateY(-50%);
  1782. transform: translateY(-50%); }
  1783. .navbar-expand-xl.navbar-dark .navbar-collapse {
  1784. border-top: 1px solid rgba(255, 255, 255, 0.1); }
  1785. .navbar-expand-xl.navbar-light .navbar-collapse {
  1786. border-top: 1px solid #ddd; }
  1787. .navbar-expand-xl .navbar-nav > .nav-item > .dropdown-menu {
  1788. margin-top: 1.25rem;
  1789. margin-bottom: 1.25rem; }
  1790. .navbar-expand-xl .dropdown-submenu .dropdown-toggle:after {
  1791. content: '\e9c5'; }
  1792. .navbar-expand-xl .dropdown-submenu .dropdown-menu, .navbar-expand-xl .dropdown-submenu.dropdown-submenu-left .dropdown-menu {
  1793. margin: 0;
  1794. border-width: 0;
  1795. box-shadow: none;
  1796. border-radius: 0; }
  1797. .navbar-expand-xl .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1798. .navbar-expand-xl .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1799. padding-left: 2.5rem; }
  1800. .navbar-expand-xl .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1801. .navbar-expand-xl .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1802. padding-left: 3.75rem; }
  1803. .navbar-expand-xl.fixed-top .navbar-collapse,
  1804. .navbar-expand-xl.fixed-bottom .navbar-collapse {
  1805. max-height: 440px;
  1806. overflow-y: auto; } }
  1807. @media (min-width: 1200px) {
  1808. .navbar-expand-xl .navbar-brand {
  1809. min-width: 15.625rem; }
  1810. .navbar-expand-xl .navbar-nav-link:before {
  1811. top: auto;
  1812. right: 0;
  1813. width: auto;
  1814. height: 2px; } }
  1815. .navbar-expand .navbar-nav:first-child > .nav-item:first-child {
  1816. margin-top: 0.625rem; }
  1817. .navbar-expand .navbar-nav:last-child > .nav-item:not(.show):last-child {
  1818. margin-bottom: 0.625rem; }
  1819. .navbar-expand .navbar-nav-link {
  1820. display: -ms-flexbox;
  1821. display: flex;
  1822. -ms-flex-align: center;
  1823. align-items: center;
  1824. margin-left: -1.25rem;
  1825. margin-right: -1.25rem;
  1826. padding-left: 1.25rem;
  1827. padding-right: 1.25rem; }
  1828. .navbar-expand .navbar-nav-link .badge:not(.position-static) {
  1829. position: static; }
  1830. .navbar-expand .navbar-nav-link.dropdown-toggle:not(.caret-0) {
  1831. padding-right: 2.5rem; }
  1832. .navbar-expand .navbar-nav-link.dropdown-toggle:not(.caret-0):after {
  1833. position: absolute;
  1834. top: 50%;
  1835. right: 1.25rem;
  1836. margin: 0;
  1837. -webkit-transform: translateY(-50%);
  1838. transform: translateY(-50%); }
  1839. .navbar-expand.navbar-dark .navbar-collapse {
  1840. border-top: 1px solid rgba(255, 255, 255, 0.1); }
  1841. .navbar-expand.navbar-light .navbar-collapse {
  1842. border-top: 1px solid #ddd; }
  1843. .navbar-expand .navbar-nav > .nav-item > .dropdown-menu {
  1844. margin-top: 1.25rem;
  1845. margin-bottom: 1.25rem; }
  1846. .navbar-expand .dropdown-submenu .dropdown-toggle:after {
  1847. content: '\e9c5'; }
  1848. .navbar-expand .dropdown-submenu .dropdown-menu, .navbar-expand .dropdown-submenu.dropdown-submenu-left .dropdown-menu {
  1849. margin: 0;
  1850. border-width: 0;
  1851. box-shadow: none;
  1852. border-radius: 0; }
  1853. .navbar-expand .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1854. .navbar-expand .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1855. padding-left: 2.5rem; }
  1856. .navbar-expand .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-item,
  1857. .navbar-expand .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-menu > .dropdown-submenu > .dropdown-item {
  1858. padding-left: 3.75rem; }
  1859. .navbar-expand.fixed-top .navbar-collapse,
  1860. .navbar-expand.fixed-bottom .navbar-collapse {
  1861. max-height: 440px;
  1862. overflow-y: auto; }
  1863. .navbar-expand .navbar-brand {
  1864. min-width: 15.625rem; }
  1865. .navbar-expand .navbar-nav-link:before {
  1866. top: auto;
  1867. right: 0;
  1868. width: auto;
  1869. height: 2px; }
  1870. .navbar-light {
  1871. color: rgba(51, 51, 51, 0.75);
  1872. background-color: #fff; }
  1873. .page-header-content + .navbar-light,
  1874. .content + .navbar-light,
  1875. .page-content + .navbar-light,
  1876. .fixed-bottom > .navbar-light:first-child {
  1877. border-top: 1px solid transparent; }
  1878. .navbar-light .navbar-nav .nav-link {
  1879. color: #333; }
  1880. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  1881. color: #333; }
  1882. .navbar-light .navbar-nav .nav-link.disabled {
  1883. color: #999; }
  1884. .navbar-light .navbar-nav .show > .nav-link,
  1885. .navbar-light .navbar-nav .active > .nav-link,
  1886. .navbar-light .navbar-nav .nav-link.show,
  1887. .navbar-light .navbar-nav .nav-link.active {
  1888. color: #333; }
  1889. .navbar-light .navbar-nav-link {
  1890. color: rgba(51, 51, 51, 0.75); }
  1891. .navbar-light .navbar-nav-link:hover, .navbar-light .navbar-nav-link:focus {
  1892. color: #333;
  1893. background-color: transparent; }
  1894. .navbar-light .navbar-nav-link.disabled {
  1895. color: rgba(0, 0, 0, 0.5);
  1896. background-color: transparent; }
  1897. .navbar-light .show > .navbar-nav-link,
  1898. .navbar-light .active > .navbar-nav-link,
  1899. .navbar-light .navbar-nav-link.show,
  1900. .navbar-light .navbar-nav-link.active {
  1901. color: #333;
  1902. background-color: transparent; }
  1903. .navbar-light .navbar-text a {
  1904. color: #2196F3; }
  1905. .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  1906. color: #0a6ebd; }
  1907. .navbar-dark {
  1908. color: rgba(255, 255, 255, 0.9);
  1909. background-color: #324148; }
  1910. .navbar-dark .navbar-nav .nav-link {
  1911. color: #333; }
  1912. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  1913. color: #333; }
  1914. .navbar-dark .navbar-nav .nav-link.disabled {
  1915. color: #999; }
  1916. .navbar-dark .navbar-nav .show > .nav-link,
  1917. .navbar-dark .navbar-nav .active > .nav-link,
  1918. .navbar-dark .navbar-nav .nav-link.show,
  1919. .navbar-dark .navbar-nav .nav-link.active {
  1920. color: #333; }
  1921. .navbar-dark .navbar-nav-link {
  1922. color: rgba(255, 255, 255, 0.9); }
  1923. .navbar-dark .navbar-nav-link:hover, .navbar-dark .navbar-nav-link:focus {
  1924. color: #fff;
  1925. background-color: transparent; }
  1926. .navbar-dark .navbar-nav-link.disabled {
  1927. color: rgba(255, 255, 255, 0.5);
  1928. background-color: transparent; }
  1929. .navbar-dark .show > .navbar-nav-link,
  1930. .navbar-dark .active > .navbar-nav-link,
  1931. .navbar-dark .navbar-nav-link.show,
  1932. .navbar-dark .navbar-nav-link.active {
  1933. color: #fff;
  1934. background-color: transparent; }
  1935. .navbar-nav .nav-tabs .nav-link {
  1936. color: #777; }
  1937. .navbar-nav .nav-tabs .nav-link:hover, .navbar-nav .nav-tabs .nav-link:focus {
  1938. color: #333; }
  1939. .navbar-nav .nav-tabs .nav-link.disabled {
  1940. color: #999; }
  1941. .navbar-nav .nav-tabs .show > .nav-link,
  1942. .navbar-nav .nav-tabs .active > .nav-link,
  1943. .navbar-nav .nav-tabs .nav-link.show,
  1944. .navbar-nav .nav-tabs .nav-link.active {
  1945. color: #333; }
  1946. .navbar-nav .nav-pills .nav-link {
  1947. color: #777; }
  1948. .navbar-nav .nav-pills .nav-link:not(.active):hover, .navbar-nav .nav-pills .nav-link:not(.active):focus {
  1949. color: #333; }
  1950. .navbar-nav .nav-pills .nav-link.active .badge:not(.badge-mark) {
  1951. background-color: #fff !important;
  1952. color: #333 !important; }
  1953. .navbar-nav .nav-pills .nav-link.active .badge-mark[class*=bg-] {
  1954. background-color: #fff !important;
  1955. border-color: #fff !important; }
  1956. .navbar-nav .nav-pills .nav-link.active .badge-mark[class*=border-] {
  1957. border-color: #fff !important; }
  1958. .navbar-nav .nav-pills .nav-link.active,
  1959. .show:not(.navbar-collapse) > .navbar-nav .nav-pills .nav-link {
  1960. color: #fff; }
  1961. .navbar-nav .nav-pills .nav-link.disabled:hover, .navbar-nav .nav-pills .nav-link.disabled:focus {
  1962. color: #999; }
  1963. .navbar .btn-group .dropdown-menu-right {
  1964. /*rtl:begin:ignore*/
  1965. right: 0;
  1966. left: auto;
  1967. /*rtl:end:ignore*/ }
  1968. .dropdown-user .navbar-nav-link,
  1969. .dropdown-user .navbar-nav-link > span {
  1970. padding-top: 0.4375rem;
  1971. padding-bottom: 0.4375rem; }
  1972. .img-flag {
  1973. height: 0.875rem;
  1974. margin-top: 0.18752rem;
  1975. vertical-align: top;
  1976. -ms-flex-item-align: start;
  1977. align-self: flex-start; }
  1978. .mega-menu-left > .dropdown-menu {
  1979. /*rtl:ignore*/
  1980. left: auto; }
  1981. .mega-menu-right > .dropdown-menu {
  1982. left: auto;
  1983. right: 0; }
  1984. .mega-menu-full > .dropdown-menu {
  1985. left: 1.25rem;
  1986. right: 1.25rem; }
  1987. .navbar-component .mega-menu-full > .dropdown-menu {
  1988. left: 0;
  1989. right: 0; }
  1990. .dropdown-content-header {
  1991. display: -ms-flexbox;
  1992. display: flex;
  1993. -ms-flex-pack: justify;
  1994. justify-content: space-between;
  1995. padding-left: 1.25rem;
  1996. padding-right: 1.25rem;
  1997. border-top-left-radius: 0.1875rem;
  1998. border-top-right-radius: 0.1875rem; }
  1999. .dropdown-content-header:not([class*=bg-]) {
  2000. padding-top: 1.25rem;
  2001. padding-bottom: 1.25rem; }
  2002. .dropdown-content-header[class*=bg-] {
  2003. padding-top: 1rem;
  2004. padding-bottom: 1rem; }
  2005. .dropdown-content-header + .table-responsive,
  2006. .dropdown-content-header + .table {
  2007. border-top: 1px solid #ddd; }
  2008. .dropdown-content:not(ul) {
  2009. padding-top: 0;
  2010. padding-bottom: 0; }
  2011. .dropdown-content-body {
  2012. padding: 1.25rem 1.25rem; }
  2013. .dropdown-content-header:not([class*=bg-]) + .dropdown-content-body {
  2014. padding-top: 0; }
  2015. .dropdown-content-footer {
  2016. display: -ms-flexbox;
  2017. display: flex;
  2018. -ms-flex-align: center;
  2019. align-items: center;
  2020. padding: 0.75rem 1.25rem;
  2021. border-top: 1px solid #ddd;
  2022. border-bottom-right-radius: 0.1875rem;
  2023. border-bottom-left-radius: 0.1875rem; }
  2024. .navbar-top {
  2025. padding-top: 3.00003rem; }
  2026. .navbar-lg-top {
  2027. padding-top: 3.25003rem; }
  2028. .navbar-sm-top {
  2029. padding-top: 2.75003rem; }
  2030. .navbar-lg-md-top {
  2031. padding-top: 6.25006rem; }
  2032. .navbar-md-md-top {
  2033. padding-top: 6.00006rem; }
  2034. .navbar-sm-md-top {
  2035. padding-top: 5.75006rem; }
  2036. .navbar-lg-sm-top {
  2037. padding-top: 6.00006rem; }
  2038. .navbar-bottom {
  2039. padding-bottom: 3.00003rem; }
  2040. .navbar-lg-md-bottom {
  2041. padding-bottom: 6.25006rem; }
  2042. .navbar-md-md-bottom {
  2043. padding-bottom: 6.00006rem; }
  2044. .navbar-sm-md-bottom {
  2045. padding-bottom: 5.75006rem; }
  2046. .navbar-lg-sm-bottom {
  2047. padding-bottom: 6.00006rem; }
  2048. .navbar-lg .navbar-brand {
  2049. padding-top: 1.12502rem;
  2050. padding-bottom: 1.12502rem; }
  2051. .navbar-lg .navbar-nav-link {
  2052. padding: 1rem 1.25rem; }
  2053. .navbar-lg .navbar-nav-link .badge-mark {
  2054. top: 0.5rem;
  2055. right: 0.625rem; }
  2056. .navbar-lg .navbar-text {
  2057. padding-top: 1rem;
  2058. padding-bottom: 1rem; }
  2059. .navbar-lg .dropdown-user > .navbar-nav-link,
  2060. .navbar-lg .dropdown-user > .navbar-nav-link > span {
  2061. padding-top: 0.5rem;
  2062. padding-bottom: 0.5rem; }
  2063. .navbar-lg .dropdown-user > .navbar-nav-link > img {
  2064. max-height: 2.25003rem; }
  2065. .navbar-sm .navbar-brand {
  2066. padding-top: 0.87502rem;
  2067. padding-bottom: 0.87502rem; }
  2068. .navbar-sm .navbar-nav-link {
  2069. padding: 0.75rem 0.875rem; }
  2070. .navbar-sm .navbar-nav-link .badge-mark {
  2071. top: 0.375rem;
  2072. right: 0.4375rem; }
  2073. .navbar-sm .navbar-text {
  2074. padding-top: 0.75rem;
  2075. padding-bottom: 0.75rem; }
  2076. .navbar-sm .dropdown-user > .navbar-nav-link,
  2077. .navbar-sm .dropdown-user > .navbar-nav-link > span {
  2078. padding-top: 0.375rem;
  2079. padding-bottom: 0.375rem; }
  2080. .navbar-sm .dropdown-user > .navbar-nav-link > img {
  2081. max-height: 2.00003rem; }
  2082. .navbar-header {
  2083. margin-left: -1.25rem;
  2084. margin-right: 1.25rem; }
  2085. .navbar-header .navbar-brand {
  2086. margin-left: 1.25rem;
  2087. margin-right: 0; }
  2088. .navbar-header .navbar-brand-xs {
  2089. display: none; }
  2090. .sidebar-xs .navbar-header .navbar-brand-md {
  2091. display: none; }
  2092. .sidebar-xs .navbar-header .navbar-brand-xs {
  2093. display: inline-block;
  2094. min-width: 3.5rem;
  2095. margin-left: 0;
  2096. text-align: center; }
  2097. .navbar-static {
  2098. z-index: 100; }
  2099. /* ------------------------------------------------------------------------------
  2100. *
  2101. * # Card component
  2102. *
  2103. * Overrides for card bootstrap component
  2104. *
  2105. * ---------------------------------------------------------------------------- */
  2106. .card {
  2107. margin-bottom: 1.25rem;
  2108. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  2109. border-width: 0; }
  2110. .card.fixed-top {
  2111. overflow: auto;
  2112. max-height: 100%; }
  2113. .card-body:not(.card) + .card-body:not(.card) {
  2114. border-top: 1px solid rgba(0, 0, 0, 0.125); }
  2115. .card-title {
  2116. position: relative; }
  2117. .card:not([class*=border-]) .card-header {
  2118. border-top-left-radius: 0.1875rem;
  2119. border-top-right-radius: 0.1875rem; }
  2120. .card-header .card-title {
  2121. margin-bottom: 0; }
  2122. .card[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .card-header {
  2123. border-bottom-color: rgba(255, 255, 255, 0.1); }
  2124. .card-header:not([class*=bg-]):not([class*=alpha-]) {
  2125. background-color: transparent;
  2126. padding-top: 1.25rem;
  2127. padding-bottom: 1.25rem;
  2128. border-bottom-width: 0; }
  2129. .card-header:not([class*=bg-]):not([class*=alpha-]) + .card-body,
  2130. .card-header:not([class*=bg-]):not([class*=alpha-]) + * > .card-body:first-child {
  2131. padding-top: 0; }
  2132. .card-footer:first-child,
  2133. .card-header + .card-footer,
  2134. .card-header + * > .card-footer:first-child {
  2135. border-top: 0;
  2136. border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  2137. .card-footer.border-bottom-1 {
  2138. border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  2139. .card-header-tabs {
  2140. margin-bottom: 0; }
  2141. .card-header-tabs .nav-link {
  2142. border-top-width: 0; }
  2143. .card-body .card-img {
  2144. border-radius: 0.1875rem; }
  2145. .card-img-actions {
  2146. position: relative; }
  2147. .card-img-actions:hover .card-img-actions-overlay, .card-img-actions:focus .card-img-actions-overlay {
  2148. opacity: 1;
  2149. visibility: visible; }
  2150. .card-img-actions-overlay {
  2151. display: -ms-flexbox;
  2152. display: flex;
  2153. -ms-flex-align: center;
  2154. align-items: center;
  2155. -ms-flex-pack: center;
  2156. justify-content: center;
  2157. position: absolute;
  2158. top: 0;
  2159. bottom: 0;
  2160. left: 0;
  2161. right: 0;
  2162. background-color: rgba(0, 0, 0, 0.75);
  2163. color: #fff;
  2164. opacity: 0;
  2165. visibility: hidden;
  2166. transition: all ease-in-out 0.15s; }
  2167. @media screen and (prefers-reduced-motion: reduce) {
  2168. .card-img-actions-overlay {
  2169. transition: none; } }
  2170. [data-action] {
  2171. cursor: pointer; }
  2172. [data-action]:after {
  2173. font-family: "icomoon";
  2174. font-size: 1rem;
  2175. min-width: 1rem;
  2176. text-align: center;
  2177. display: inline-block;
  2178. vertical-align: middle;
  2179. -webkit-font-smoothing: antialiased;
  2180. -moz-osx-font-smoothing: grayscale; }
  2181. [data-action="collapse"]:after {
  2182. content: '\e9c1'; }
  2183. [data-action="reload"]:after {
  2184. content: '\e9fb'; }
  2185. [data-action="remove"]:after {
  2186. content: '\ed6a';
  2187. font-size: 0.8125rem; }
  2188. [data-action="move"] {
  2189. cursor: default; }
  2190. [data-action="move"]:after {
  2191. content: '\e986'; }
  2192. [data-action="fullscreen"]:after {
  2193. content: '\e9f9'; }
  2194. [data-action="fullscreen"][data-fullscreen="active"]:after {
  2195. content: '\e9fa'; }
  2196. [data-action="modal"]:after {
  2197. content: '\e9eb'; }
  2198. .card-group-control .card-title > a {
  2199. display: inline-block; }
  2200. .card-group-control .card-title > a:before {
  2201. content: '\ed5b';
  2202. font-family: "icomoon";
  2203. position: absolute;
  2204. top: 50%;
  2205. margin-top: -0.5rem;
  2206. font-size: 1rem;
  2207. font-weight: 400;
  2208. line-height: 1;
  2209. -webkit-font-smoothing: antialiased;
  2210. -moz-osx-font-smoothing: grayscale; }
  2211. .card-group-control .card-title > a.collapsed:before {
  2212. content: '\ed5a'; }
  2213. .card-group-control-left .card-title > a {
  2214. padding-left: 1.625rem; }
  2215. .card-group-control-left .card-title > a:before {
  2216. left: 0; }
  2217. .card-group-control-right .card-title > a {
  2218. padding-right: 1.625rem; }
  2219. .card-group-control-right .card-title > a:before {
  2220. right: 0; }
  2221. .card-group {
  2222. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  2223. border-bottom-right-radius: 0.1875rem;
  2224. border-bottom-left-radius: 0.1875rem; }
  2225. .card-group .card:not(:last-child) {
  2226. border-right-width: 1px; }
  2227. /* ------------------------------------------------------------------------------
  2228. *
  2229. * # Breadcrumb component
  2230. *
  2231. * Overrides for breadcrumb bootstrap component
  2232. *
  2233. * ---------------------------------------------------------------------------- */
  2234. .breadcrumb {
  2235. padding: 0; }
  2236. .breadcrumb-item {
  2237. padding: 0.625rem 0;
  2238. color: inherit; }
  2239. .breadcrumb-item i {
  2240. font-size: 0.75rem; }
  2241. a.breadcrumb-item, a.breadcrumb-elements-item {
  2242. display: inline-block;
  2243. color: inherit;
  2244. transition: opacity ease-in-out 0.15s; }
  2245. @media screen and (prefers-reduced-motion: reduce) {
  2246. a.breadcrumb-item, a.breadcrumb-elements-item {
  2247. transition: none; } }
  2248. a.breadcrumb-item:hover, a.breadcrumb-elements-item:hover, a.breadcrumb-item:focus, a.breadcrumb-elements-item:focus,
  2249. .show > a.breadcrumb-item,
  2250. .show > a.breadcrumb-elements-item {
  2251. opacity: 0.75; }
  2252. .page-header-content > .breadcrumb {
  2253. padding-top: 0;
  2254. padding-bottom: 1.25rem; }
  2255. .page-header-content > .breadcrumb:first-child {
  2256. padding-bottom: 0;
  2257. padding-top: 1.25rem; }
  2258. .breadcrumb-dash > .breadcrumb-item + .breadcrumb-item:before {
  2259. content: '\2013\00a0'; }
  2260. .breadcrumb-arrow > .breadcrumb-item + .breadcrumb-item:before {
  2261. content: '\2192\00a0'; }
  2262. .breadcrumb-arrows > .breadcrumb-item + .breadcrumb-item:before {
  2263. content: '\00bb\00a0'; }
  2264. .breadcrumb-caret > .breadcrumb-item + .breadcrumb-item:before {
  2265. content: '\203A\00a0'; }
  2266. .breadcrumb-line {
  2267. position: relative;
  2268. padding-left: 1.25rem;
  2269. padding-right: 1.25rem;
  2270. border-top: 1px solid transparent;
  2271. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  2272. .breadcrumb-line:not(.breadcrumb-line-component):first-child {
  2273. border-top-width: 0; }
  2274. .breadcrumb-line:last-child {
  2275. margin-bottom: 1.25rem; }
  2276. .page-header-light .breadcrumb-line:last-child,
  2277. .page-header-dark .breadcrumb-line:last-child {
  2278. margin-bottom: 0; }
  2279. .breadcrumb-line-light {
  2280. background-color: #fafafa;
  2281. border-color: #ddd;
  2282. color: #333; }
  2283. .page-header-dark .breadcrumb-line-light:not(.breadcrumb-line-component) {
  2284. border-top-width: 0; }
  2285. .breadcrumb-line-dark {
  2286. background-color: #273246;
  2287. border-color: transparent;
  2288. color: #fff; }
  2289. .breadcrumb-line-dark .breadcrumb-item.active {
  2290. color: inherit; }
  2291. .breadcrumb-line-component {
  2292. border: 0;
  2293. border-radius: 0.1875rem; }
  2294. .page-header .breadcrumb-line-component {
  2295. margin-left: 1.25rem;
  2296. margin-right: 1.25rem; }
  2297. .breadcrumb-elements-item {
  2298. padding: 0.625rem 0; }
  2299. .breadcrumb-elements-item + .breadcrumb-elements-item {
  2300. margin-left: 1.25rem; }
  2301. /* ------------------------------------------------------------------------------
  2302. *
  2303. * # Pagination component
  2304. *
  2305. * Overrides for pagination component
  2306. *
  2307. * ---------------------------------------------------------------------------- */
  2308. .pagination {
  2309. margin-bottom: 0; }
  2310. .page-link {
  2311. text-align: center;
  2312. min-width: 2.25003rem;
  2313. transition: all ease-in-out 0.15s; }
  2314. @media screen and (prefers-reduced-motion: reduce) {
  2315. .page-link {
  2316. transition: none; } }
  2317. .page-link-white {
  2318. background-color: #fff; }
  2319. .pagination-lg .page-link {
  2320. min-width: 2.50002rem; }
  2321. .pagination-sm .page-link {
  2322. min-width: 2.00002rem; }
  2323. .pagination-rounded .page-item:first-child .page-link {
  2324. border-top-left-radius: 100px;
  2325. border-bottom-left-radius: 100px; }
  2326. .pagination-rounded .page-item:last-child .page-link {
  2327. border-top-right-radius: 100px;
  2328. border-bottom-right-radius: 100px; }
  2329. .pagination-flat .page-item.active .page-link {
  2330. background-color: #26A69A; }
  2331. .pagination-flat .page-item.disabled .page-link {
  2332. border-color: transparent; }
  2333. .pagination-flat .page-link {
  2334. background-color: transparent;
  2335. border-color: transparent;
  2336. margin-left: 2px;
  2337. border-radius: 0.1875rem; }
  2338. .pagination-flat .page-link:hover, .pagination-flat .page-link:focus {
  2339. background-color: #eee; }
  2340. .pagination-flat.pagination-rounded .page-link {
  2341. border-radius: 100px; }
  2342. .pagination-separated .page-link {
  2343. margin-left: 0.625rem;
  2344. border-radius: 0.1875rem; }
  2345. .pagination-separated.pagination-rounded .page-link {
  2346. border-radius: 100px; }
  2347. .pagination-pager .page-item {
  2348. border-radius: 0.1875rem; }
  2349. .pagination-pager .page-link {
  2350. margin-left: 1.25rem;
  2351. border-radius: 0.1875rem; }
  2352. .pagination-pager.pagination-rounded .page-link {
  2353. border-radius: 100px; }
  2354. .pagination-pager-linked .page-item.disabled .page-link {
  2355. background-color: transparent;
  2356. border-color: transparent; }
  2357. .pagination-pager-linked .page-link {
  2358. color: #2196F3;
  2359. background-color: transparent;
  2360. border-color: transparent; }
  2361. .pagination-pager-linked .page-link:hover, .pagination-pager-linked .page-link:focus {
  2362. color: #fff;
  2363. background-color: #26A69A;
  2364. border-color: #26A69A; }
  2365. .pagination-pager:not(.pagination-rounded).pagination-lg .page-link {
  2366. border-radius: 0.25rem; }
  2367. .pagination-pager:not(.pagination-rounded).pagination-sm .page-link {
  2368. border-radius: 0.125rem; }
  2369. /* ------------------------------------------------------------------------------
  2370. *
  2371. * # Badge component
  2372. *
  2373. * Overrides for badge bootstrap component
  2374. *
  2375. * ---------------------------------------------------------------------------- */
  2376. .badge.dropdown-toggle:after {
  2377. font-size: 85%;
  2378. vertical-align: baseline; }
  2379. .badge-light {
  2380. background-color: #f5f5f5; }
  2381. a.badge {
  2382. transition: all ease-in-out 0.15s; }
  2383. @media screen and (prefers-reduced-motion: reduce) {
  2384. a.badge {
  2385. transition: none; } }
  2386. a.badge[class*=bg-]:not(.bg-transparent):not(.bg-white):not(.bg-light):hover, a.badge[class*=bg-]:not(.bg-transparent):not(.bg-white):not(.bg-light):focus,
  2387. .show > a.badge[class*=bg-]:not(.bg-transparent):not(.bg-white):not(.bg-light).dropdown-toggle {
  2388. box-shadow: 0 0 0 62.5rem rgba(0, 0, 0, 0.075) inset; }
  2389. .btn .badge {
  2390. top: 0; }
  2391. .badge-flat {
  2392. background-color: transparent;
  2393. border: 1px solid transparent;
  2394. padding: calc(0.3125rem - 1px) calc(0.375rem - 1px); }
  2395. .badge-flat[href]:hover, .badge-flat[href]:focus {
  2396. background-color: transparent;
  2397. box-shadow: none; }
  2398. .badge-flat.badge-pill {
  2399. padding-left: calc(0.4375rem - 1px);
  2400. padding-right: calc(0.4375rem - 1px); }
  2401. .badge-striped {
  2402. padding: 0.4375rem 0.5rem;
  2403. position: relative; }
  2404. .badge-striped:before {
  2405. content: '';
  2406. width: 0;
  2407. position: absolute;
  2408. top: 0;
  2409. bottom: 0; }
  2410. .badge-striped-left {
  2411. padding-left: calc(0.375rem + 2px);
  2412. border-top-left-radius: 0;
  2413. border-bottom-left-radius: 0; }
  2414. .badge-striped-left:before {
  2415. left: 0;
  2416. border-left: 2px solid;
  2417. border-left-color: inherit; }
  2418. .badge-striped-right {
  2419. padding-right: calc(0.375rem + 2px);
  2420. border-top-right-radius: 0;
  2421. border-bottom-right-radius: 0; }
  2422. .badge-striped-right:before {
  2423. right: 0;
  2424. border-right: 2px solid;
  2425. border-right-color: inherit; }
  2426. .badge-icon {
  2427. padding: 0.375rem;
  2428. line-height: 1; }
  2429. .badge-icon > i {
  2430. top: 0; }
  2431. .badge-float {
  2432. position: absolute;
  2433. right: -0.5rem;
  2434. top: -0.5rem; }
  2435. .badge-mark {
  2436. padding: 0;
  2437. border: 2px solid;
  2438. width: 0.5rem;
  2439. height: 0.5rem;
  2440. border-radius: 100px; }
  2441. .badge-mark:empty {
  2442. display: inline-block; }
  2443. /* ------------------------------------------------------------------------------
  2444. *
  2445. * # Alert component
  2446. *
  2447. * Overrides for alert bootstrap component
  2448. *
  2449. * ---------------------------------------------------------------------------- */
  2450. .alert {
  2451. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  2452. .alert-dismissible .close:hover, .alert-dismissible .close:focus {
  2453. color: inherit; }
  2454. .alert[class*=bg-]:not(.bg-transparent):not(.bg-white):not(.bg-light) .alert-link {
  2455. color: inherit;
  2456. border-bottom-color: rgba(255, 255, 255, 0.85); }
  2457. .alert-rounded {
  2458. padding-left: 1.875rem;
  2459. padding-right: 1.875rem;
  2460. border-radius: 100px; }
  2461. .alert-rounded.alert-dismissible .close {
  2462. border-top-right-radius: 100px;
  2463. border-bottom-right-radius: 100px; }
  2464. .alert[class*=alert-styled-]:after {
  2465. content: '\e9a2';
  2466. font-family: "icomoon";
  2467. color: #fff;
  2468. width: 2.875rem;
  2469. left: -2.875rem;
  2470. text-align: center;
  2471. position: absolute;
  2472. top: 50%;
  2473. margin-top: -0.5rem;
  2474. font-size: 1rem;
  2475. font-weight: 400;
  2476. line-height: 1;
  2477. -webkit-font-smoothing: antialiased;
  2478. -moz-osx-font-smoothing: grayscale; }
  2479. .alert[class*=alert-styled-].alert-danger:after, .alert[class*=alert-styled-][class*=bg-danger]:after {
  2480. content: '\ed64'; }
  2481. .alert[class*=alert-styled-].alert-success:after, .alert[class*=alert-styled-][class*=bg-success]:after {
  2482. content: '\ed6e'; }
  2483. .alert[class*=alert-styled-].alert-warning:after, .alert[class*=alert-styled-][class*=bg-warning]:after {
  2484. content: '\e9bd'; }
  2485. .alert[class*=alert-styled-].alert-info:after, .alert[class*=alert-styled-][class*=bg-info]:after {
  2486. content: '\e9b9'; }
  2487. .alert.alert-styled-left {
  2488. border-left-width: 2.875rem; }
  2489. .alert.alert-styled-left[class*=bg-]:not(.bg-white):not(.bg-light) {
  2490. border-left-color: rgba(0, 0, 0, 0.15) !important; }
  2491. .alert.alert-styled-right {
  2492. border-right-width: 2.875rem; }
  2493. .alert.alert-styled-right:after {
  2494. left: auto;
  2495. right: -2.875rem; }
  2496. .alert.alert-styled-right[class*=bg-]:not(.bg-white):not(.bg-light) {
  2497. border-right-color: rgba(0, 0, 0, 0.15) !important; }
  2498. .alert.alert-styled-custom:after {
  2499. content: "\e81b"; }
  2500. .alert:not(.ui-pnotify)[class*=alert-arrow-]:before,
  2501. .alert.ui-pnotify[class*=alert-arrow-] > .brighttheme:before {
  2502. content: "";
  2503. display: inline-block;
  2504. position: absolute;
  2505. top: 50%;
  2506. left: 0;
  2507. border-left: 5px solid;
  2508. border-top: 5px solid transparent;
  2509. border-bottom: 5px solid transparent;
  2510. border-left-color: inherit;
  2511. margin-top: -5px; }
  2512. .alert:not(.ui-pnotify).alert-arrow-right:before,
  2513. .alert.ui-pnotify.alert-arrow-right > .brighttheme:before {
  2514. left: auto;
  2515. right: 0;
  2516. border-left: 0;
  2517. border-right: 5px solid;
  2518. border-right-color: inherit; }
  2519. /* ------------------------------------------------------------------------------
  2520. *
  2521. * # Progress bar component
  2522. *
  2523. * Overrides for progress bar component
  2524. *
  2525. * ---------------------------------------------------------------------------- */
  2526. .progress {
  2527. position: relative; }
  2528. .progress-bar {
  2529. width: 0;
  2530. overflow: hidden;
  2531. white-space: nowrap; }
  2532. .progress .progressbar-back-text,
  2533. .progress .progressbar-front-text {
  2534. position: absolute;
  2535. left: 0;
  2536. top: 0;
  2537. width: 100%;
  2538. text-align: center;
  2539. font-size: 0.60938rem; }
  2540. .progress .progressbar-back-text {
  2541. -ms-flex-item-align: center;
  2542. align-self: center; }
  2543. .progress.right {
  2544. -ms-flex-pack: end;
  2545. justify-content: flex-end; }
  2546. .progress.vertical {
  2547. width: 3rem;
  2548. height: 100%;
  2549. display: inline-block; }
  2550. .progress.vertical + .progress.vertical {
  2551. margin-left: 0.625rem; }
  2552. .progress.vertical .progress-bar {
  2553. width: 100%;
  2554. height: 0;
  2555. transition: height 0.6s ease; }
  2556. @media screen and (prefers-reduced-motion: reduce) {
  2557. .progress.vertical .progress-bar {
  2558. transition: none; } }
  2559. .progress.vertical.bottom .progressbar-back-text,
  2560. .progress.vertical.bottom .progressbar-front-text {
  2561. top: auto;
  2562. bottom: 0; }
  2563. .progress.vertical.bottom .progress-bar {
  2564. position: absolute;
  2565. bottom: 0; }
  2566. /* ------------------------------------------------------------------------------
  2567. *
  2568. * # Media object component
  2569. *
  2570. * Overrides for media object component
  2571. *
  2572. * ---------------------------------------------------------------------------- */
  2573. .media {
  2574. margin-top: 1.25rem; }
  2575. .media.card-body, .media:first-child {
  2576. margin-top: 0; }
  2577. .media-list {
  2578. list-style: none;
  2579. padding-left: 0;
  2580. margin-bottom: 0; }
  2581. .media-title {
  2582. margin-bottom: 0.125rem; }
  2583. .img-preview {
  2584. max-height: 5rem; }
  2585. .media-list-bordered .media {
  2586. margin-top: 0;
  2587. padding: 1rem 1.25rem;
  2588. border-top: 1px solid #ddd; }
  2589. .media-list-linked .media {
  2590. padding: 1rem 1.25rem; }
  2591. .media-list-linked li.media {
  2592. margin-top: 0;
  2593. border-top: 1px solid #ddd;
  2594. border-bottom: 1px solid #ddd; }
  2595. .media-list-linked.media-list-bordered li.media {
  2596. border-bottom: 0; }
  2597. .media-list-linked a.media {
  2598. color: inherit;
  2599. transition: all ease-in-out 0.15s; }
  2600. @media screen and (prefers-reduced-motion: reduce) {
  2601. .media-list-linked a.media {
  2602. transition: none; } }
  2603. .media-list-linked a.media:hover {
  2604. background-color: rgba(0, 0, 0, 0.04); }
  2605. /* ------------------------------------------------------------------------------
  2606. *
  2607. * # List group component
  2608. *
  2609. * Overrides for list group component
  2610. *
  2611. * ---------------------------------------------------------------------------- */
  2612. .list-group {
  2613. background-color: #fff;
  2614. border: 1px solid rgba(0, 0, 0, 0.125);
  2615. padding: 0.5rem 0;
  2616. background-clip: padding-box;
  2617. border-radius: 0.1875rem; }
  2618. .list-group-item {
  2619. display: -ms-flexbox;
  2620. display: flex;
  2621. -ms-flex-align: center;
  2622. align-items: center;
  2623. margin-bottom: 0;
  2624. border-width: 0;
  2625. background-color: transparent;
  2626. transition: all ease-in-out 0.15s; }
  2627. @media screen and (prefers-reduced-motion: reduce) {
  2628. .list-group-item {
  2629. transition: none; } }
  2630. .list-group-item:first-child {
  2631. border-top-left-radius: 0;
  2632. border-top-right-radius: 0; }
  2633. .list-group-item:last-child {
  2634. border-bottom-right-radius: 0;
  2635. border-bottom-left-radius: 0; }
  2636. .list-group-item.active .badge:not(.badge-mark) {
  2637. background-color: #fff !important;
  2638. color: #333 !important; }
  2639. .list-group-item.active .badge-mark[class*=bg-] {
  2640. background-color: #fff !important;
  2641. border-color: #fff !important; }
  2642. .list-group-item.active .badge-mark[class*=border-] {
  2643. border-color: #fff !important; }
  2644. .list-group-item.disabled, .list-group-item:disabled {
  2645. cursor: default; }
  2646. .list-group-flush {
  2647. border: 0;
  2648. border-radius: 0;
  2649. box-shadow: none; }
  2650. .list-group-divider {
  2651. padding: 0;
  2652. margin: 0.5rem 0;
  2653. border-top-width: 1px; }
  2654. .list-group-bordered {
  2655. padding: 0; }
  2656. .list-group-bordered .list-group-item {
  2657. border-top-width: 1px;
  2658. border-bottom-width: 1px;
  2659. margin-bottom: -1px; }
  2660. .list-group-bordered .list-group-item:first-child {
  2661. border-top-width: 0;
  2662. border-top-left-radius: 0.1875rem;
  2663. border-top-right-radius: 0.1875rem; }
  2664. .list-group-bordered .list-group-item:last-child {
  2665. border-bottom-right-radius: 0.1875rem;
  2666. border-bottom-left-radius: 0.1875rem; }
  2667. .list-group-bordered[class*=bg-]:not(.bg-light):not(.bg-white):not(.bg-transparent) .list-group-item {
  2668. border-top-color: rgba(255, 255, 255, 0.1);
  2669. border-bottom-color: rgba(255, 255, 255, 0.1); }
  2670. .list-group[class*=bg-]:not(.bg-light):not(.bg-transparent):not(.bg-white) {
  2671. border-radius: 0.1875rem; }
  2672. .list-group[class*=bg-]:not(.bg-light):not(.bg-transparent):not(.bg-white) .list-group-item-action:not(.active):not(.disabled) {
  2673. color: rgba(255, 255, 255, 0.9); }
  2674. .list-group[class*=bg-]:not(.bg-light):not(.bg-transparent):not(.bg-white) .list-group-item-action:not(.active):not(.disabled):hover, .list-group[class*=bg-]:not(.bg-light):not(.bg-transparent):not(.bg-white) .list-group-item-action:not(.active):not(.disabled):focus {
  2675. background-color: rgba(0, 0, 0, 0.1);
  2676. color: #fff; }
  2677. .list-group[class*=bg-]:not(.bg-light):not(.bg-transparent):not(.bg-white) .list-group-item {
  2678. color: #fff; }
  2679. .list-group[class*=bg-]:not(.bg-light):not(.bg-transparent):not(.bg-white) .list-group-item.active {
  2680. background-color: rgba(0, 0, 0, 0.2); }
  2681. .list-group[class*=bg-]:not(.bg-light):not(.bg-transparent):not(.bg-white) .list-group-item.disabled, .list-group[class*=bg-]:not(.bg-light):not(.bg-transparent):not(.bg-white) .list-group-item:disabled {
  2682. color: rgba(255, 255, 255, 0.6);
  2683. background-color: transparent; }
  2684. .list-group[class*=bg-]:not(.bg-light):not(.bg-transparent):not(.bg-white) .list-group-divider {
  2685. border-top-color: rgba(255, 255, 255, 0.4); }
  2686. .list-group-item-primary {
  2687. color: #114e7e;
  2688. background-color: #E3F2FD; }
  2689. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  2690. color: #114e7e;
  2691. background-color: #cbe7fb; }
  2692. .list-group-item-primary.list-group-item-action.active {
  2693. color: #fff;
  2694. background-color: #114e7e;
  2695. border-color: #114e7e; }
  2696. .list-group-item-secondary {
  2697. color: #3e3e3e;
  2698. background-color: #eee; }
  2699. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  2700. color: #3e3e3e;
  2701. background-color: #e1e1e1; }
  2702. .list-group-item-secondary.list-group-item-action.active {
  2703. color: #fff;
  2704. background-color: #3e3e3e;
  2705. border-color: #3e3e3e; }
  2706. .list-group-item-success {
  2707. color: #285b2a;
  2708. background-color: #E8F5E9; }
  2709. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  2710. color: #285b2a;
  2711. background-color: #d6edd8; }
  2712. .list-group-item-success.list-group-item-action.active {
  2713. color: #fff;
  2714. background-color: #285b2a;
  2715. border-color: #285b2a; }
  2716. .list-group-item-info {
  2717. color: #00626e;
  2718. background-color: #E0F7FA; }
  2719. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  2720. color: #00626e;
  2721. background-color: #caf1f6; }
  2722. .list-group-item-info.list-group-item-action.active {
  2723. color: #fff;
  2724. background-color: #00626e;
  2725. border-color: #00626e; }
  2726. .list-group-item-warning {
  2727. color: #853a23;
  2728. background-color: #FFF3E0; }
  2729. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  2730. color: #853a23;
  2731. background-color: #ffe9c7; }
  2732. .list-group-item-warning.list-group-item-action.active {
  2733. color: #fff;
  2734. background-color: #853a23;
  2735. border-color: #853a23; }
  2736. .list-group-item-danger {
  2737. color: #7f231c;
  2738. background-color: #FFEBEE; }
  2739. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  2740. color: #7f231c;
  2741. background-color: #ffd2d8; }
  2742. .list-group-item-danger.list-group-item-action.active {
  2743. color: #fff;
  2744. background-color: #7f231c;
  2745. border-color: #7f231c; }
  2746. .list-group-item-light {
  2747. color: #828282;
  2748. background-color: #f5f5f5; }
  2749. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  2750. color: #828282;
  2751. background-color: #e8e8e8; }
  2752. .list-group-item-light.list-group-item-action.active {
  2753. color: #fff;
  2754. background-color: #828282;
  2755. border-color: #828282; }
  2756. .list-group-item-dark {
  2757. color: #1a2225;
  2758. background-color: #ECEFF1; }
  2759. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  2760. color: #1a2225;
  2761. background-color: #dde3e6; }
  2762. .list-group-item-dark.list-group-item-action.active {
  2763. color: #fff;
  2764. background-color: #1a2225;
  2765. border-color: #1a2225; }
  2766. /* ------------------------------------------------------------------------------
  2767. *
  2768. * # Close button
  2769. *
  2770. * Overrides of default close button styles
  2771. *
  2772. * ---------------------------------------------------------------------------- */
  2773. .close {
  2774. cursor: pointer;
  2775. opacity: .75;
  2776. transition: color ease-in-out 0.15s, opacity ease-in-out 0.15s; }
  2777. @media screen and (prefers-reduced-motion: reduce) {
  2778. .close {
  2779. transition: none; } }
  2780. .close:hover, .close:focus {
  2781. outline: 0;
  2782. opacity: 1; }
  2783. /* ------------------------------------------------------------------------------
  2784. *
  2785. * # Modal component
  2786. *
  2787. * Overrides for modal dialog component
  2788. *
  2789. * ---------------------------------------------------------------------------- */
  2790. .modal-header {
  2791. position: relative;
  2792. border-top-left-radius: 0.1875rem;
  2793. border-top-right-radius: 0.1875rem; }
  2794. .modal-header .close {
  2795. color: inherit; }
  2796. .modal-header:not([class*=bg-]) {
  2797. padding-bottom: 0;
  2798. border-bottom-width: 0; }
  2799. .modal-footer:not([class*=bg-]) {
  2800. padding-top: 0;
  2801. border-top-width: 0; }
  2802. [class*=table-responsive] + .modal-footer,
  2803. .table + .modal-footer {
  2804. border-top-width: 1px;
  2805. border-top-color: #ddd; }
  2806. @media (min-width: 576px) {
  2807. .modal-xs {
  2808. max-width: 300px; }
  2809. .modal-full {
  2810. max-width: 94%;
  2811. margin-left: 3%;
  2812. margin-right: 3%; } }
  2813. /* ------------------------------------------------------------------------------
  2814. *
  2815. * # Tooltip component
  2816. *
  2817. * Override and extend default tooltip styles.
  2818. *
  2819. * ---------------------------------------------------------------------------- */
  2820. .bs-tooltip-top .arrow[class*=border-]:before {
  2821. border-top-color: inherit; }
  2822. .bs-tooltip-right .arrow[class*=border-]:before {
  2823. border-right-color: inherit; }
  2824. .bs-tooltip-bottom .arrow[class*=border-]:before {
  2825. border-bottom-color: inherit; }
  2826. .bs-tooltip-left .arrow[class*=border-]:before {
  2827. border-left-color: inherit; }
  2828. /* ------------------------------------------------------------------------------
  2829. *
  2830. * # Popover component
  2831. *
  2832. * Overrides for popover component
  2833. *
  2834. * ---------------------------------------------------------------------------- */
  2835. .popover-header {
  2836. font-weight: 500;
  2837. padding-bottom: 0;
  2838. border-bottom-width: 0; }
  2839. .popover-header[class*=bg-]:not(.bg-white):not(.bg-light) {
  2840. padding-top: 0.75rem;
  2841. padding-bottom: 0.75rem;
  2842. border-bottom-width: 1px; }
  2843. .bs-popover-top[class*=bg-]:not(.bg-white):not(.bg-light) .arrow, .bs-popover-top[class*=bg-]:not(.bg-white):not(.bg-light) .arrow:after, .bs-popover-top[class*=bg-]:not(.bg-white):not(.bg-light) .arrow:before, .bs-popover-top[class*=border-] .arrow, .bs-popover-top[class*=border-] .arrow:after, .bs-popover-top[class*=border-] .arrow:before {
  2844. border-top-color: inherit; }
  2845. .bs-popover-right[class*=bg-]:not(.bg-white):not(.bg-light) .arrow, .bs-popover-right[class*=bg-]:not(.bg-white):not(.bg-light) .arrow:after, .bs-popover-right[class*=bg-]:not(.bg-white):not(.bg-light) .arrow:before, .bs-popover-right[class*=border-] .arrow, .bs-popover-right[class*=border-] .arrow:after, .bs-popover-right[class*=border-] .arrow:before {
  2846. border-right-color: inherit; }
  2847. .bs-popover-bottom[class*=bg-]:not(.bg-white):not(.bg-light) .arrow, .bs-popover-bottom[class*=bg-]:not(.bg-white):not(.bg-light) .arrow:after, .bs-popover-bottom[class*=bg-]:not(.bg-white):not(.bg-light) .arrow:before, .bs-popover-bottom[class*=border-] .arrow, .bs-popover-bottom[class*=border-] .arrow:after, .bs-popover-bottom[class*=border-] .arrow:before {
  2848. border-bottom-color: inherit; }
  2849. .bs-popover-left[class*=bg-]:not(.bg-white):not(.bg-light) .arrow, .bs-popover-left[class*=bg-]:not(.bg-white):not(.bg-light) .arrow:after, .bs-popover-left[class*=bg-]:not(.bg-white):not(.bg-light) .arrow:before, .bs-popover-left[class*=border-] .arrow, .bs-popover-left[class*=border-] .arrow:after, .bs-popover-left[class*=border-] .arrow:before {
  2850. border-left-color: inherit; }
  2851. /* ------------------------------------------------------------------------------
  2852. *
  2853. * # Utilities
  2854. *
  2855. * Import Bootstrap utilities with overrides
  2856. *
  2857. * ---------------------------------------------------------------------------- */
  2858. /* ------------------------------------------------------------------------------
  2859. *
  2860. * # Background utility
  2861. *
  2862. * Override and extend default background utility.
  2863. *
  2864. * ---------------------------------------------------------------------------- */
  2865. [class*=bg-]:not(.bg-transparent):not(.bg-light):not(.bg-white):not(.btn-outline):not(body) {
  2866. color: #fff; }