chuz.scss 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179
  1. @import 'templates/_variables.scss';
  2. :root {
  3. --color-scheme: dark;
  4. --blue: #0084b4;
  5. --indigo: #6610f2;
  6. --purple: #6f42c1;
  7. --pink: #e83e8c;
  8. --red: #dc3545;
  9. --orange: #fd7e14;
  10. --yellow: beige;
  11. --green: #28a745;
  12. --teal: #20c997;
  13. --cyan: #17a2b8;
  14. --white: #fff;
  15. --gray: #6c757d;
  16. --gray-dark: #212529;
  17. --primary: #0084b4;
  18. --secondary: #6c757d;
  19. --success: #28a745;
  20. --info: #17a2b8;
  21. --warning: beige;
  22. --danger: #dc3545;
  23. --light: #dee2e6;
  24. --dark: #212529;
  25. --breakpoint-xs: 0;
  26. --breakpoint-sm: 576px;
  27. --breakpoint-md: 768px;
  28. --breakpoint-lg: 992px;
  29. --breakpoint-xl: 1200px;
  30. --font-family-sans-serif: "Roboto Condensed", sans-serif;
  31. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
  32. }
  33. @media all {
  34. .bg-warning {
  35. color: #212529
  36. }
  37. }
  38. @media all {
  39. #sidebar {
  40. background: #212529
  41. }
  42. }
  43. .sidebar-close {
  44. background: transparent
  45. }
  46. @media all {
  47. .sidebar-close {
  48. color: #f8f9fa
  49. }
  50. }
  51. *,
  52. *::before,
  53. *::after {
  54. box-sizing: border-box
  55. }
  56. html {
  57. font-family: sans-serif;
  58. line-height: 1.15;
  59. -webkit-text-size-adjust: 100%;
  60. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  61. }
  62. article,
  63. aside,
  64. figcaption,
  65. figure,
  66. footer,
  67. header,
  68. hgroup,
  69. main,
  70. nav,
  71. section {
  72. display: block
  73. }
  74. body {
  75. margin: 0;
  76. // font-family: "Roboto Condensed", sans-serif;
  77. font-family: 'Noto Sans TC', sans-serif;
  78. font-weight: 400;
  79. line-height: 1.5;
  80. text-align: left;
  81. font-size: 1rem;
  82. letter-spacing: 2px;
  83. }
  84. @media all {
  85. body {
  86. color: #f8f9fa;
  87. background-color: #212529
  88. }
  89. }
  90. [tabindex="-1"]:focus:not(:focus-visible) {
  91. outline: 0
  92. }
  93. hr {
  94. box-sizing: content-box;
  95. height: 0;
  96. overflow: visible
  97. }
  98. h1,
  99. h2,
  100. h3,
  101. h4,
  102. h5,
  103. h6 {
  104. margin-top: 0;
  105. margin-bottom: .5rem
  106. }
  107. p {
  108. margin-top: 0;
  109. margin-bottom: 1rem
  110. }
  111. abbr[title],
  112. abbr[data-original-title] {
  113. text-decoration: underline;
  114. text-decoration: underline dotted;
  115. border-bottom: 0;
  116. text-decoration-skip-ink: none;
  117. cursor: help
  118. }
  119. address {
  120. margin-bottom: 1rem;
  121. font-style: normal;
  122. line-height: inherit
  123. }
  124. ol,
  125. ul,
  126. dl {
  127. margin-top: 0;
  128. margin-bottom: 1rem
  129. }
  130. ol ol,
  131. ul ul,
  132. ol ul,
  133. ul ol {
  134. margin-bottom: 0
  135. }
  136. dt {
  137. font-weight: 700
  138. }
  139. dd {
  140. margin-bottom: .5rem;
  141. margin-left: 0
  142. }
  143. blockquote {
  144. margin: 0 0 1rem
  145. }
  146. b,
  147. strong {
  148. font-weight: 700
  149. }
  150. small {
  151. font-size: 80%
  152. }
  153. sub,
  154. sup {
  155. position: relative;
  156. line-height: 0;
  157. vertical-align: baseline;
  158. font-size: 75%
  159. }
  160. sub {
  161. bottom: -.25em
  162. }
  163. sup {
  164. top: -.5em
  165. }
  166. a {
  167. text-decoration: none;
  168. background: transparent;
  169. }
  170. @media all {
  171. a {
  172. /* color: #f8f9fa; */
  173. color: $link-color;
  174. }
  175. }
  176. a:hover {
  177. text-decoration: underline
  178. }
  179. @media all {
  180. a:hover {
  181. color: #cbd3da
  182. }
  183. }
  184. a:not([href]) {
  185. color: inherit;
  186. text-decoration: none
  187. }
  188. a:not([href]):hover {
  189. color: inherit;
  190. text-decoration: none
  191. }
  192. pre,
  193. code,
  194. kbd,
  195. samp {
  196. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  197. font-size: 1em
  198. }
  199. pre {
  200. margin-top: 0;
  201. margin-bottom: 1rem;
  202. overflow: auto
  203. }
  204. figure {
  205. margin: 0 0 1rem
  206. }
  207. img {
  208. vertical-align: middle;
  209. border-style: none
  210. }
  211. svg {
  212. overflow: hidden;
  213. vertical-align: middle
  214. }
  215. table {
  216. border-collapse: collapse
  217. }
  218. caption {
  219. padding-top: .75rem;
  220. padding-bottom: .75rem;
  221. text-align: left;
  222. caption-side: bottom
  223. }
  224. @media all {
  225. caption {
  226. color: #6c757d
  227. }
  228. }
  229. th {
  230. text-align: inherit
  231. }
  232. label {
  233. display: inline-block;
  234. margin-bottom: .5rem
  235. }
  236. button {
  237. border-radius: 0
  238. }
  239. button:focus {
  240. outline: 1px dotted;
  241. outline: 5px auto -webkit-focus-ring-color
  242. }
  243. input,
  244. button,
  245. select,
  246. optgroup,
  247. textarea {
  248. margin: 0;
  249. font-family: inherit;
  250. line-height: inherit;
  251. font-size: inherit
  252. }
  253. button,
  254. input {
  255. overflow: visible
  256. }
  257. button,
  258. select {
  259. text-transform: none
  260. }
  261. select {
  262. word-wrap: normal
  263. }
  264. button,
  265. [type="button"],
  266. [type="reset"],
  267. [type="submit"] {
  268. -webkit-appearance: button
  269. }
  270. button:not(:disabled),
  271. [type="button"]:not(:disabled),
  272. [type="reset"]:not(:disabled),
  273. [type="submit"]:not(:disabled) {
  274. cursor: pointer
  275. }
  276. button::-moz-focus-inner,
  277. [type="button"]::-moz-focus-inner,
  278. [type="reset"]::-moz-focus-inner,
  279. [type="submit"]::-moz-focus-inner {
  280. padding: 0;
  281. border-style: none
  282. }
  283. input[type="radio"],
  284. input[type="checkbox"] {
  285. box-sizing: border-box;
  286. padding: 0
  287. }
  288. input[type="date"],
  289. input[type="time"],
  290. input[type="datetime-local"],
  291. input[type="month"] {
  292. -webkit-appearance: listbox
  293. }
  294. textarea {
  295. overflow: auto;
  296. resize: vertical
  297. }
  298. [type="number"]::-webkit-inner-spin-button,
  299. [type="number"]::-webkit-outer-spin-button {
  300. height: auto
  301. }
  302. [type="search"] {
  303. outline-offset: -2px;
  304. -webkit-appearance: none
  305. }
  306. [type="search"]::-webkit-search-decoration {
  307. -webkit-appearance: none
  308. }
  309. ::-webkit-file-upload-button {
  310. font: inherit;
  311. -webkit-appearance: button
  312. }
  313. output {
  314. display: inline-block
  315. }
  316. summary {
  317. display: list-item;
  318. cursor: pointer
  319. }
  320. template {
  321. display: none
  322. }
  323. [hidden] {
  324. display: none
  325. }
  326. h1,
  327. h2,
  328. h3,
  329. h4,
  330. h5,
  331. h6,
  332. .h1,
  333. .h2,
  334. .h3,
  335. .h4,
  336. .h5,
  337. .h6 {
  338. margin-bottom: .5rem;
  339. font-weight: 400;
  340. line-height: 1.2
  341. }
  342. h1,
  343. .h1 {
  344. font-size: 2.5rem
  345. }
  346. @media (max-width: 1200px) {
  347. h1,
  348. .h1 {
  349. font-size: calc(1.375rem + 1.5vw)
  350. }
  351. }
  352. h2,
  353. .h2 {
  354. font-size: 2rem
  355. }
  356. @media (max-width: 1200px) {
  357. h2,
  358. .h2 {
  359. font-size: calc(1.325rem + .9vw)
  360. }
  361. }
  362. h3,
  363. .h3 {
  364. font-size: 1.25rem
  365. }
  366. h4,
  367. .h4 {
  368. font-size: 1.15rem
  369. }
  370. h5,
  371. .h5 {
  372. font-size: 1rem
  373. }
  374. h6,
  375. .h6 {
  376. font-size: 1rem
  377. }
  378. .lead {
  379. font-weight: 400;
  380. font-size: 1.25rem
  381. }
  382. hr {
  383. margin-top: 2.5rem;
  384. margin-bottom: 2.5rem;
  385. border-top: 1px solid silver;
  386. }
  387. .blockquote {
  388. margin-bottom: 1rem;
  389. padding-left: 1rem;
  390. border-left: 5px solid #0084b4;
  391. font-size: 1rem
  392. }
  393. .blockquote i {
  394. float: right;
  395. font-style: italic;
  396. font-size: .875rem
  397. }
  398. .blockquote-footer {
  399. display: block;
  400. font-size: 80%
  401. }
  402. @media all {
  403. .blockquote-footer {
  404. color: #f5f5f5;
  405. }
  406. }
  407. img,
  408. amp-img {
  409. border: 0
  410. }
  411. amp-img[class^=i-amp],
  412. amp-img[class^=-amp] {
  413. height: auto;
  414. max-width: 100%
  415. }
  416. code {
  417. font-size: .875rem;
  418. color: #e83e8c;
  419. word-wrap: break-word
  420. }
  421. a>code {
  422. color: inherit
  423. }
  424. kbd {
  425. padding: .2rem .4rem;
  426. font-size: .875rem;
  427. color: #212529;
  428. background: #dee2e6;
  429. border-radius: .2rem
  430. }
  431. kbd kbd {
  432. padding: 0;
  433. font-size: 100%;
  434. font-weight: 700
  435. }
  436. pre {
  437. display: block;
  438. padding: 1rem;
  439. font-size: .875rem
  440. }
  441. @media all {
  442. pre {
  443. color: #f8f9fa;
  444. background-color: #343a40;
  445. border: 1px solid #343a40
  446. }
  447. }
  448. pre code {
  449. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  450. color: inherit;
  451. word-break: normal;
  452. text-indent: 5em;
  453. font-size: 75%
  454. }
  455. .container,
  456. .container-fluid,
  457. .container-xxl,
  458. .container-xl,
  459. .container-lg,
  460. .container-md,
  461. .container-sm {
  462. width: 100%;
  463. padding-right: var(--bs-gutter-x, 0.75rem);
  464. padding-left: var(--bs-gutter-x, 0.75rem);
  465. margin-right: auto;
  466. margin-left: auto;
  467. }
  468. @media (min-width: 576px) {
  469. .container-sm, .container {
  470. max-width: 540px;
  471. }
  472. }
  473. @media (min-width: 768px) {
  474. .container-md, .container-sm, .container {
  475. max-width: 720px;
  476. }
  477. }
  478. @media (min-width: 992px) {
  479. .container-lg, .container-md, .container-sm, .container {
  480. max-width: 960px;
  481. }
  482. }
  483. @media (min-width: 1200px) {
  484. .container-xl, .container-lg, .container-md, .container-sm, .container {
  485. max-width: 1140px;
  486. }
  487. }
  488. @media (min-width: 1400px) {
  489. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  490. max-width: 1320px;
  491. }
  492. }
  493. .row {
  494. --bs-gutter-x: 1.5rem;
  495. --bs-gutter-y: 0;
  496. display: flex;
  497. flex-wrap: wrap;
  498. margin-top: calc(var(--bs-gutter-y) * -1);
  499. margin-right: calc(var(--bs-gutter-x) / -2);
  500. margin-left: calc(var(--bs-gutter-x) / -2);
  501. }
  502. .row > * {
  503. flex-shrink: 0;
  504. width: 100%;
  505. max-width: 100%;
  506. padding-right: calc(var(--bs-gutter-x) / 2);
  507. padding-left: calc(var(--bs-gutter-x) / 2);
  508. margin-top: var(--bs-gutter-y);
  509. }
  510. .col-1,
  511. .col-2,
  512. .col-3,
  513. .col-4,
  514. .col-5,
  515. .col-6,
  516. .col-7,
  517. .col-8,
  518. .col-9,
  519. .col-10,
  520. .col-11,
  521. .col-12,
  522. .col,
  523. .col-auto,
  524. .col-sm-1,
  525. .col-sm-2,
  526. .col-sm-3,
  527. .col-sm-4,
  528. .col-sm-5,
  529. .col-sm-6,
  530. .col-sm-7,
  531. .col-sm-8,
  532. .col-sm-9,
  533. .col-sm-10,
  534. .col-sm-11,
  535. .col-sm-12,
  536. .col-sm,
  537. .col-sm-auto,
  538. .col-md-1,
  539. .col-md-2,
  540. .col-md-3,
  541. .col-md-4,
  542. .col-md-5,
  543. .col-md-6,
  544. .col-md-7,
  545. .col-md-8,
  546. .col-md-9,
  547. .col-md-10,
  548. .col-md-11,
  549. .col-md-12,
  550. .col-md,
  551. .col-md-auto,
  552. .col-lg-1,
  553. .col-lg-2,
  554. .col-lg-3,
  555. .col-lg-4,
  556. .col-lg-5,
  557. .col-lg-6,
  558. .col-lg-7,
  559. .col-lg-8,
  560. .col-lg-9,
  561. .col-lg-10,
  562. .col-lg-11,
  563. .col-lg-12,
  564. .col-lg,
  565. .col-lg-auto,
  566. .col-xl-1,
  567. .col-xl-2,
  568. .col-xl-3,
  569. .col-xl-4,
  570. .col-xl-5,
  571. .col-xl-6,
  572. .col-xl-7,
  573. .col-xl-8,
  574. .col-xl-9,
  575. .col-xl-10,
  576. .col-xl-11,
  577. .col-xl-12,
  578. .col-xl,
  579. .col-xl-auto {
  580. position: relative;
  581. width: 100%;
  582. padding-right: 15px;
  583. padding-left: 15px
  584. }
  585. .col {
  586. flex-basis: 0;
  587. flex-grow: 1;
  588. max-width: 100%
  589. }
  590. .col-1 {
  591. flex: 0 0 8.33333%;
  592. max-width: 8.33333%
  593. }
  594. .col-2 {
  595. flex: 0 0 16.66667%;
  596. max-width: 16.66667%
  597. }
  598. .col-3 {
  599. flex: 0 0 25%;
  600. max-width: 25%
  601. }
  602. .col-4 {
  603. flex: 0 0 33.33333%;
  604. max-width: 33.33333%
  605. }
  606. .col-5 {
  607. flex: 0 0 41.66667%;
  608. max-width: 41.66667%
  609. }
  610. .col-6 {
  611. flex: 0 0 50%;
  612. max-width: 50%
  613. }
  614. .col-7 {
  615. flex: 0 0 58.33333%;
  616. max-width: 58.33333%
  617. }
  618. .col-8 {
  619. flex: 0 0 66.66667%;
  620. max-width: 66.66667%
  621. }
  622. .col-9 {
  623. flex: 0 0 75%;
  624. max-width: 75%
  625. }
  626. .col-10 {
  627. flex: 0 0 83.33333%;
  628. max-width: 83.33333%
  629. }
  630. .col-11 {
  631. flex: 0 0 91.66667%;
  632. max-width: 91.66667%
  633. }
  634. .col-12 {
  635. flex: 0 0 100%;
  636. max-width: 100%
  637. }
  638. @media (min-width: 576px) {
  639. .col-sm {
  640. flex-basis: 0;
  641. flex-grow: 1;
  642. max-width: 100%
  643. }
  644. .col-sm-1 {
  645. flex: 0 0 8.33333%;
  646. max-width: 8.33333%
  647. }
  648. .col-sm-2 {
  649. flex: 0 0 16.66667%;
  650. max-width: 16.66667%
  651. }
  652. .col-sm-3 {
  653. flex: 0 0 25%;
  654. max-width: 25%
  655. }
  656. .col-sm-4 {
  657. flex: 0 0 33.33333%;
  658. max-width: 33.33333%
  659. }
  660. .col-sm-5 {
  661. flex: 0 0 41.66667%;
  662. max-width: 41.66667%
  663. }
  664. .col-sm-6 {
  665. flex: 0 0 50%;
  666. max-width: 50%
  667. }
  668. .col-sm-7 {
  669. flex: 0 0 58.33333%;
  670. max-width: 58.33333%
  671. }
  672. .col-sm-8 {
  673. flex: 0 0 66.66667%;
  674. max-width: 66.66667%
  675. }
  676. .col-sm-9 {
  677. flex: 0 0 75%;
  678. max-width: 75%
  679. }
  680. .col-sm-10 {
  681. flex: 0 0 83.33333%;
  682. max-width: 83.33333%
  683. }
  684. .col-sm-11 {
  685. flex: 0 0 91.66667%;
  686. max-width: 91.66667%
  687. }
  688. .col-sm-12 {
  689. flex: 0 0 100%;
  690. max-width: 100%
  691. }
  692. }
  693. @media (min-width: 768px) {
  694. .col-md {
  695. flex-basis: 0;
  696. flex-grow: 1;
  697. max-width: 100%
  698. }
  699. .col-md-1 {
  700. flex: 0 0 8.33333%;
  701. max-width: 8.33333%
  702. }
  703. .col-md-2 {
  704. flex: 0 0 16.66667%;
  705. max-width: 16.66667%
  706. }
  707. .col-md-3 {
  708. flex: 0 0 25%;
  709. max-width: 25%
  710. }
  711. .col-md-4 {
  712. flex: 0 0 33.33333%;
  713. max-width: 33.33333%
  714. }
  715. .col-md-5 {
  716. flex: 0 0 41.66667%;
  717. max-width: 41.66667%
  718. }
  719. .col-md-6 {
  720. flex: 0 0 50%;
  721. max-width: 50%
  722. }
  723. .col-md-7 {
  724. flex: 0 0 58.33333%;
  725. max-width: 58.33333%
  726. }
  727. .col-md-8 {
  728. flex: 0 0 66.66667%;
  729. max-width: 66.66667%
  730. }
  731. .col-md-9 {
  732. flex: 0 0 75%;
  733. max-width: 75%
  734. }
  735. .col-md-10 {
  736. flex: 0 0 83.33333%;
  737. max-width: 83.33333%
  738. }
  739. .col-md-11 {
  740. flex: 0 0 91.66667%;
  741. max-width: 91.66667%
  742. }
  743. .col-md-12 {
  744. flex: 0 0 100%;
  745. max-width: 100%
  746. }
  747. }
  748. @media (min-width: 992px) {
  749. .col-lg {
  750. flex-basis: 0;
  751. flex-grow: 1;
  752. max-width: 100%
  753. }
  754. .col-lg-1 {
  755. flex: 0 0 8.33333%;
  756. max-width: 8.33333%
  757. }
  758. .col-lg-2 {
  759. flex: 0 0 16.66667%;
  760. max-width: 16.66667%
  761. }
  762. .col-lg-3 {
  763. flex: 0 0 25%;
  764. max-width: 25%
  765. }
  766. .col-lg-4 {
  767. flex: 0 0 33.33333%;
  768. max-width: 33.33333%
  769. }
  770. .col-lg-5 {
  771. flex: 0 0 41.66667%;
  772. max-width: 41.66667%
  773. }
  774. .col-lg-6 {
  775. flex: 0 0 50%;
  776. max-width: 50%
  777. }
  778. .col-lg-7 {
  779. flex: 0 0 58.33333%;
  780. max-width: 58.33333%
  781. }
  782. .col-lg-8 {
  783. flex: 0 0 66.66667%;
  784. max-width: 66.66667%
  785. }
  786. .col-lg-9 {
  787. flex: 0 0 75%;
  788. max-width: 75%
  789. }
  790. .col-lg-10 {
  791. flex: 0 0 83.33333%;
  792. max-width: 83.33333%
  793. }
  794. .col-lg-11 {
  795. flex: 0 0 91.66667%;
  796. max-width: 91.66667%
  797. }
  798. .col-lg-12 {
  799. flex: 0 0 100%;
  800. max-width: 100%
  801. }
  802. }
  803. @media (min-width: 1200px) {
  804. .col-xl {
  805. flex-basis: 0;
  806. flex-grow: 1;
  807. max-width: 100%
  808. }
  809. .col-xl-1 {
  810. flex: 0 0 8.33333%;
  811. max-width: 8.33333%
  812. }
  813. .col-xl-2 {
  814. flex: 0 0 16.66667%;
  815. max-width: 16.66667%
  816. }
  817. .col-xl-3 {
  818. flex: 0 0 25%;
  819. max-width: 25%
  820. }
  821. .col-xl-4 {
  822. flex: 0 0 33.33333%;
  823. max-width: 33.33333%
  824. }
  825. .col-xl-5 {
  826. flex: 0 0 41.66667%;
  827. max-width: 41.66667%
  828. }
  829. .col-xl-6 {
  830. flex: 0 0 50%;
  831. max-width: 50%
  832. }
  833. .col-xl-7 {
  834. flex: 0 0 58.33333%;
  835. max-width: 58.33333%
  836. }
  837. .col-xl-8 {
  838. flex: 0 0 66.66667%;
  839. max-width: 66.66667%
  840. }
  841. .col-xl-9 {
  842. flex: 0 0 75%;
  843. max-width: 75%
  844. }
  845. .col-xl-10 {
  846. flex: 0 0 83.33333%;
  847. max-width: 83.33333%
  848. }
  849. .col-xl-11 {
  850. flex: 0 0 91.66667%;
  851. max-width: 91.66667%
  852. }
  853. .col-xl-12 {
  854. flex: 0 0 100%;
  855. max-width: 100%
  856. }
  857. }
  858. table {
  859. width: 100%;
  860. margin-bottom: 1rem
  861. }
  862. /* @media all {
  863. table {
  864. color: #f8f9fa
  865. }
  866. } */
  867. table th,
  868. table td {
  869. /* padding: .75rem; */
  870. padding: .3rem;
  871. vertical-align: top
  872. }
  873. @media all {
  874. table th,
  875. table td {
  876. /* border-top: 1px solid #343a40 */
  877. border: 1px solid #343a40
  878. }
  879. }
  880. table thead th {
  881. vertical-align: bottom
  882. }
  883. @media all {
  884. table thead th {
  885. border-bottom: 2px solid #343a40
  886. }
  887. }
  888. @media all {
  889. table tbody+tbody {
  890. border-top: 2px solid #343a40
  891. }
  892. }
  893. .form-control {
  894. display: block;
  895. width: 100%;
  896. height: calc(1.5em + .75rem + 2px);
  897. padding: .375rem .75rem;
  898. font-weight: 400;
  899. line-height: 1.5;
  900. background-clip: padding-box;
  901. appearance: none;
  902. font-size: 1rem;
  903. border-radius: .25rem
  904. }
  905. @media all {
  906. .form-control {
  907. color: #dee2e6;
  908. background: #212529;
  909. border: 1px solid #6c757d
  910. }
  911. }
  912. .form-control::-ms-expand {
  913. background: transparent;
  914. border: 0
  915. }
  916. .form-control:-moz-focusring {
  917. color: transparent;
  918. text-shadow: 0 0 0 #495057
  919. }
  920. .form-control:focus {
  921. color: #495057;
  922. background: #fff;
  923. border-color: #35c9ff;
  924. outline: 0;
  925. box-shadow: 0 0 0 .2rem rgba(0, 132, 180, 0.25)
  926. }
  927. .form-control::placeholder {
  928. opacity: 1
  929. }
  930. @media all {
  931. .form-control::placeholder {
  932. color: #ced4da
  933. }
  934. }
  935. .form-control:disabled,
  936. .form-control[readonly] {
  937. opacity: 1
  938. }
  939. @media all {
  940. .form-control:disabled,
  941. .form-control[readonly] {
  942. background: #343a40
  943. }
  944. }
  945. select.form-control {
  946. background-size: 0.5rem
  947. }
  948. @media all {
  949. select.form-control {
  950. background: #212529 url("https://ampcssframework.com/assets/icons/chevron-down.svg") no-repeat right 1rem center
  951. }
  952. }
  953. @media all {
  954. select.form-control:focus::-ms-value {
  955. color: #dee2e6;
  956. background: #212529
  957. }
  958. }
  959. .form-control-file,
  960. .form-control-range {
  961. display: block;
  962. width: 100%
  963. }
  964. .col-form-label {
  965. padding-top: calc(.375rem + 1px);
  966. padding-bottom: calc(.375rem + 1px);
  967. margin-bottom: 0;
  968. line-height: 1.5;
  969. font-size: inherit
  970. }
  971. .form-control-plaintext {
  972. display: block;
  973. width: 100%;
  974. padding: .375rem 0;
  975. margin-bottom: 0;
  976. line-height: 1.5;
  977. background: transparent;
  978. border: solid transparent;
  979. border-width: 1px 0;
  980. font-size: 1rem
  981. }
  982. @media all {
  983. .form-control-plaintext {
  984. color: #f8f9fa
  985. }
  986. }
  987. select.form-control[size],
  988. select.form-control[multiple] {
  989. height: auto
  990. }
  991. textarea.form-control {
  992. height: auto
  993. }
  994. .form-group {
  995. margin-bottom: 1rem
  996. }
  997. .form-text {
  998. display: block;
  999. margin-top: .25rem
  1000. }
  1001. .form-row {
  1002. display: flex;
  1003. flex-wrap: wrap;
  1004. margin-right: -5px;
  1005. margin-left: -5px
  1006. }
  1007. .form-row>.col,
  1008. .form-row>[class*="col-"] {
  1009. padding-right: 5px;
  1010. padding-left: 5px
  1011. }
  1012. .valid-feedback {
  1013. display: none;
  1014. width: 100%;
  1015. margin-top: .25rem;
  1016. font-size: 80%;
  1017. color: #28a745
  1018. }
  1019. .was-validated :valid~.valid-feedback,
  1020. .is-valid~.valid-feedback {
  1021. display: block
  1022. }
  1023. .was-validated .form-control:valid,
  1024. .form-control.is-valid {
  1025. border-color: #28a745
  1026. }
  1027. .was-validated .form-control:valid:focus,
  1028. .form-control.is-valid:focus {
  1029. border-color: #28a745;
  1030. box-shadow: 0 0 0 .2rem rgba(40, 167, 69, 0.25)
  1031. }
  1032. .was-validated .form-check-input:valid~.form-check-label,
  1033. .form-check-input.is-valid~.form-check-label {
  1034. color: #28a745
  1035. }
  1036. .was-validated .form-check-input:valid~.valid-feedback,
  1037. .form-check-input.is-valid~.valid-feedback {
  1038. display: block
  1039. }
  1040. .invalid-feedback {
  1041. display: none;
  1042. width: 100%;
  1043. margin-top: .25rem;
  1044. font-size: 80%;
  1045. color: #dc3545
  1046. }
  1047. .was-validated :invalid~.invalid-feedback,
  1048. .is-invalid~.invalid-feedback {
  1049. display: block
  1050. }
  1051. .was-validated .form-control:invalid,
  1052. .form-control.is-invalid {
  1053. border-color: #dc3545
  1054. }
  1055. .was-validated .form-control:invalid:focus,
  1056. .form-control.is-invalid:focus {
  1057. border-color: #dc3545;
  1058. box-shadow: 0 0 0 .2rem rgba(220, 53, 69, 0.25)
  1059. }
  1060. .was-validated .form-check-input:invalid~.form-check-label,
  1061. .form-check-input.is-invalid~.form-check-label {
  1062. color: #dc3545
  1063. }
  1064. .was-validated .form-check-input:invalid~.invalid-feedback,
  1065. .form-check-input.is-invalid~.invalid-feedback {
  1066. display: block
  1067. }
  1068. .form-inline {
  1069. display: flex;
  1070. flex-flow: row wrap;
  1071. align-items: center
  1072. }
  1073. .form-inline .form-check {
  1074. width: 100%
  1075. }
  1076. @media (min-width: 576px) {
  1077. .form-inline label {
  1078. display: flex;
  1079. align-items: center;
  1080. justify-content: center;
  1081. margin-bottom: 0
  1082. }
  1083. .form-inline .form-group {
  1084. display: flex;
  1085. flex: 0 0 auto;
  1086. flex-flow: row wrap;
  1087. align-items: center;
  1088. margin-bottom: 0
  1089. }
  1090. .form-inline .form-control {
  1091. display: inline-block;
  1092. width: auto;
  1093. vertical-align: middle
  1094. }
  1095. .form-inline .form-control-plaintext {
  1096. display: inline-block
  1097. }
  1098. .form-inline .input-group {
  1099. width: auto
  1100. }
  1101. .form-inline .form-check {
  1102. display: flex;
  1103. align-items: center;
  1104. justify-content: center;
  1105. width: auto;
  1106. padding-left: 0
  1107. }
  1108. .form-inline .form-check-input {
  1109. position: relative;
  1110. flex-shrink: 0;
  1111. margin-top: 0;
  1112. margin-right: .25rem;
  1113. margin-left: 0
  1114. }
  1115. }
  1116. .btn {
  1117. display: inline-block;
  1118. font-weight: 400;
  1119. color: #212529;
  1120. text-align: center;
  1121. vertical-align: middle;
  1122. cursor: pointer;
  1123. user-select: none;
  1124. background: transparent;
  1125. border: 1px solid transparent;
  1126. padding: .375rem .75rem;
  1127. font-size: 1rem;
  1128. line-height: 1.5;
  1129. border-radius: .25rem
  1130. }
  1131. .btn:hover {
  1132. color: #212529;
  1133. text-decoration: none
  1134. }
  1135. .btn:focus,
  1136. .btn.focus {
  1137. outline: 0;
  1138. box-shadow: 0 0 0 .2rem rgba(0, 132, 180, 0.25)
  1139. }
  1140. .btn.disabled,
  1141. .btn:disabled {
  1142. opacity: .65
  1143. }
  1144. a.btn.disabled,
  1145. fieldset:disabled a.btn {
  1146. pointer-events: none
  1147. }
  1148. .btn-primary {
  1149. color: #fff;
  1150. border-color: #0084b4;
  1151. background: #0084b4
  1152. }
  1153. .btn-primary:hover {
  1154. color: #fff;
  1155. border-color: #005f81;
  1156. background: #00688e
  1157. }
  1158. .btn-primary:focus,
  1159. .btn-primary.focus {
  1160. color: #fff;
  1161. border-color: #005f81;
  1162. background: #00688e;
  1163. box-shadow: 0 0 0 .2rem rgba(38, 150, 191, 0.5)
  1164. }
  1165. .btn-primary.disabled,
  1166. .btn-primary:disabled {
  1167. color: #fff;
  1168. background: #0084b4;
  1169. border-color: #0084b4
  1170. }
  1171. .btn-primary:not(:disabled):not(.disabled):active,
  1172. .btn-primary:not(:disabled):not(.disabled).active,
  1173. .show>.btn-primary.dropdown-toggle {
  1174. color: #fff;
  1175. background: #005f81;
  1176. border-color: #005574
  1177. }
  1178. .btn-primary:not(:disabled):not(.disabled):active:focus,
  1179. .btn-primary:not(:disabled):not(.disabled).active:focus,
  1180. .show>.btn-primary.dropdown-toggle:focus {
  1181. box-shadow: 0 0 0 .2rem rgba(38, 150, 191, 0.5)
  1182. }
  1183. .btn-secondary {
  1184. color: #fff;
  1185. border-color: #6c757d;
  1186. background: #6c757d
  1187. }
  1188. .btn-secondary:hover {
  1189. color: #fff;
  1190. border-color: #545b62;
  1191. background: #5a6268
  1192. }
  1193. .btn-secondary:focus,
  1194. .btn-secondary.focus {
  1195. color: #fff;
  1196. border-color: #545b62;
  1197. background: #5a6268;
  1198. box-shadow: 0 0 0 .2rem rgba(130, 138, 145, 0.5)
  1199. }
  1200. .btn-secondary.disabled,
  1201. .btn-secondary:disabled {
  1202. color: #fff;
  1203. background: #6c757d;
  1204. border-color: #6c757d
  1205. }
  1206. .btn-secondary:not(:disabled):not(.disabled):active,
  1207. .btn-secondary:not(:disabled):not(.disabled).active,
  1208. .show>.btn-secondary.dropdown-toggle {
  1209. color: #fff;
  1210. background: #545b62;
  1211. border-color: #4e555b
  1212. }
  1213. .btn-secondary:not(:disabled):not(.disabled):active:focus,
  1214. .btn-secondary:not(:disabled):not(.disabled).active:focus,
  1215. .show>.btn-secondary.dropdown-toggle:focus {
  1216. box-shadow: 0 0 0 .2rem rgba(130, 138, 145, 0.5)
  1217. }
  1218. .btn-success {
  1219. color: #fff;
  1220. border-color: #28a745;
  1221. background: #28a745
  1222. }
  1223. .btn-success:hover {
  1224. color: #fff;
  1225. border-color: #1e7e34;
  1226. background: #218838
  1227. }
  1228. .btn-success:focus,
  1229. .btn-success.focus {
  1230. color: #fff;
  1231. border-color: #1e7e34;
  1232. background: #218838;
  1233. box-shadow: 0 0 0 .2rem rgba(72, 180, 97, 0.5)
  1234. }
  1235. .btn-success.disabled,
  1236. .btn-success:disabled {
  1237. color: #fff;
  1238. background: #28a745;
  1239. border-color: #28a745
  1240. }
  1241. .btn-success:not(:disabled):not(.disabled):active,
  1242. .btn-success:not(:disabled):not(.disabled).active,
  1243. .show>.btn-success.dropdown-toggle {
  1244. color: #fff;
  1245. background: #1e7e34;
  1246. border-color: #1c7430
  1247. }
  1248. .btn-success:not(:disabled):not(.disabled):active:focus,
  1249. .btn-success:not(:disabled):not(.disabled).active:focus,
  1250. .show>.btn-success.dropdown-toggle:focus {
  1251. box-shadow: 0 0 0 .2rem rgba(72, 180, 97, 0.5)
  1252. }
  1253. .btn-info {
  1254. color: #fff;
  1255. border-color: #17a2b8;
  1256. background: #17a2b8
  1257. }
  1258. .btn-info:hover {
  1259. color: #fff;
  1260. border-color: #117a8b;
  1261. background: #138496
  1262. }
  1263. .btn-info:focus,
  1264. .btn-info.focus {
  1265. color: #fff;
  1266. border-color: #117a8b;
  1267. background: #138496;
  1268. box-shadow: 0 0 0 .2rem rgba(58, 176, 195, 0.5)
  1269. }
  1270. .btn-info.disabled,
  1271. .btn-info:disabled {
  1272. color: #fff;
  1273. background: #17a2b8;
  1274. border-color: #17a2b8
  1275. }
  1276. .btn-info:not(:disabled):not(.disabled):active,
  1277. .btn-info:not(:disabled):not(.disabled).active,
  1278. .show>.btn-info.dropdown-toggle {
  1279. color: #fff;
  1280. background: #117a8b;
  1281. border-color: #10707f
  1282. }
  1283. .btn-info:not(:disabled):not(.disabled):active:focus,
  1284. .btn-info:not(:disabled):not(.disabled).active:focus,
  1285. .show>.btn-info.dropdown-toggle:focus {
  1286. box-shadow: 0 0 0 .2rem rgba(58, 176, 195, 0.5)
  1287. }
  1288. .btn-warning {
  1289. color: #212529;
  1290. border-color: beige;
  1291. background: beige
  1292. }
  1293. .btn-warning:hover {
  1294. color: #212529;
  1295. border-color: #eaeab4;
  1296. background: #ededbe
  1297. }
  1298. .btn-warning:focus,
  1299. .btn-warning.focus {
  1300. color: #212529;
  1301. border-color: #eaeab4;
  1302. background: #ededbe;
  1303. box-shadow: 0 0 0 .2rem rgba(213, 214, 193, 0.5)
  1304. }
  1305. .btn-warning.disabled,
  1306. .btn-warning:disabled {
  1307. color: #212529;
  1308. background: beige;
  1309. border-color: beige
  1310. }
  1311. .btn-warning:not(:disabled):not(.disabled):active,
  1312. .btn-warning:not(:disabled):not(.disabled).active,
  1313. .show>.btn-warning.dropdown-toggle {
  1314. color: #212529;
  1315. background: #eaeab4;
  1316. border-color: #e7e7aa
  1317. }
  1318. .btn-warning:not(:disabled):not(.disabled):active:focus,
  1319. .btn-warning:not(:disabled):not(.disabled).active:focus,
  1320. .show>.btn-warning.dropdown-toggle:focus {
  1321. box-shadow: 0 0 0 .2rem rgba(213, 214, 193, 0.5)
  1322. }
  1323. .btn-danger {
  1324. color: #fff;
  1325. border-color: #dc3545;
  1326. background: #dc3545
  1327. }
  1328. .btn-danger:hover {
  1329. color: #fff;
  1330. border-color: #bd2130;
  1331. background: #c82333
  1332. }
  1333. .btn-danger:focus,
  1334. .btn-danger.focus {
  1335. color: #fff;
  1336. border-color: #bd2130;
  1337. background: #c82333;
  1338. box-shadow: 0 0 0 .2rem rgba(225, 83, 97, 0.5)
  1339. }
  1340. .btn-danger.disabled,
  1341. .btn-danger:disabled {
  1342. color: #fff;
  1343. background: #dc3545;
  1344. border-color: #dc3545
  1345. }
  1346. .btn-danger:not(:disabled):not(.disabled):active,
  1347. .btn-danger:not(:disabled):not(.disabled).active,
  1348. .show>.btn-danger.dropdown-toggle {
  1349. color: #fff;
  1350. background: #bd2130;
  1351. border-color: #b21f2d
  1352. }
  1353. .btn-danger:not(:disabled):not(.disabled):active:focus,
  1354. .btn-danger:not(:disabled):not(.disabled).active:focus,
  1355. .show>.btn-danger.dropdown-toggle:focus {
  1356. box-shadow: 0 0 0 .2rem rgba(225, 83, 97, 0.5)
  1357. }
  1358. .btn-light {
  1359. color: #212529;
  1360. border-color: #dee2e6;
  1361. background: #dee2e6
  1362. }
  1363. .btn-light:hover {
  1364. color: #212529;
  1365. border-color: #c1c9d0;
  1366. background: #c8cfd6
  1367. }
  1368. .btn-light:focus,
  1369. .btn-light.focus {
  1370. color: #212529;
  1371. border-color: #c1c9d0;
  1372. background: #c8cfd6;
  1373. box-shadow: 0 0 0 .2rem rgba(194, 198, 202, 0.5)
  1374. }
  1375. .btn-light.disabled,
  1376. .btn-light:disabled {
  1377. color: #212529;
  1378. background: #dee2e6;
  1379. border-color: #dee2e6
  1380. }
  1381. .btn-light:not(:disabled):not(.disabled):active,
  1382. .btn-light:not(:disabled):not(.disabled).active,
  1383. .show>.btn-light.dropdown-toggle {
  1384. color: #212529;
  1385. background: #c1c9d0;
  1386. border-color: #bac2cb
  1387. }
  1388. .btn-light:not(:disabled):not(.disabled):active:focus,
  1389. .btn-light:not(:disabled):not(.disabled).active:focus,
  1390. .show>.btn-light.dropdown-toggle:focus {
  1391. box-shadow: 0 0 0 .2rem rgba(194, 198, 202, 0.5)
  1392. }
  1393. .btn-dark {
  1394. color: #fff;
  1395. border-color: #212529;
  1396. background: #212529
  1397. }
  1398. .btn-dark:hover {
  1399. color: #fff;
  1400. border-color: #0a0c0d;
  1401. background: #101214
  1402. }
  1403. .btn-dark:focus,
  1404. .btn-dark.focus {
  1405. color: #fff;
  1406. border-color: #0a0c0d;
  1407. background: #101214;
  1408. box-shadow: 0 0 0 .2rem rgba(66, 70, 73, 0.5)
  1409. }
  1410. .btn-dark.disabled,
  1411. .btn-dark:disabled {
  1412. color: #fff;
  1413. background: #212529;
  1414. border-color: #212529
  1415. }
  1416. .btn-dark:not(:disabled):not(.disabled):active,
  1417. .btn-dark:not(:disabled):not(.disabled).active,
  1418. .show>.btn-dark.dropdown-toggle {
  1419. color: #fff;
  1420. background: #0a0c0d;
  1421. border-color: #050506
  1422. }
  1423. .btn-dark:not(:disabled):not(.disabled):active:focus,
  1424. .btn-dark:not(:disabled):not(.disabled).active:focus,
  1425. .show>.btn-dark.dropdown-toggle:focus {
  1426. box-shadow: 0 0 0 .2rem rgba(66, 70, 73, 0.5)
  1427. }
  1428. .btn-outline-primary {
  1429. color: #0084b4;
  1430. border-color: #0084b4
  1431. }
  1432. .btn-outline-primary:hover {
  1433. color: #fff;
  1434. background: #0084b4;
  1435. border-color: #0084b4
  1436. }
  1437. .btn-outline-primary:focus,
  1438. .btn-outline-primary.focus {
  1439. box-shadow: 0 0 0 .2rem rgba(0, 132, 180, 0.5)
  1440. }
  1441. .btn-outline-primary.disabled,
  1442. .btn-outline-primary:disabled {
  1443. color: #0084b4;
  1444. background: transparent
  1445. }
  1446. .btn-outline-primary:not(:disabled):not(.disabled):active,
  1447. .btn-outline-primary:not(:disabled):not(.disabled).active,
  1448. .show>.btn-outline-primary.dropdown-toggle {
  1449. color: #fff;
  1450. background: #0084b4;
  1451. border-color: #0084b4
  1452. }
  1453. .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
  1454. .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  1455. .show>.btn-outline-primary.dropdown-toggle:focus {
  1456. box-shadow: 0 0 0 .2rem rgba(0, 132, 180, 0.5)
  1457. }
  1458. .btn-outline-secondary {
  1459. color: #6c757d;
  1460. border-color: #6c757d
  1461. }
  1462. .btn-outline-secondary:hover {
  1463. color: #fff;
  1464. background: #6c757d;
  1465. border-color: #6c757d
  1466. }
  1467. .btn-outline-secondary:focus,
  1468. .btn-outline-secondary.focus {
  1469. box-shadow: 0 0 0 .2rem rgba(108, 117, 125, 0.5)
  1470. }
  1471. .btn-outline-secondary.disabled,
  1472. .btn-outline-secondary:disabled {
  1473. color: #6c757d;
  1474. background: transparent
  1475. }
  1476. .btn-outline-secondary:not(:disabled):not(.disabled):active,
  1477. .btn-outline-secondary:not(:disabled):not(.disabled).active,
  1478. .show>.btn-outline-secondary.dropdown-toggle {
  1479. color: #fff;
  1480. background: #6c757d;
  1481. border-color: #6c757d
  1482. }
  1483. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
  1484. .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  1485. .show>.btn-outline-secondary.dropdown-toggle:focus {
  1486. box-shadow: 0 0 0 .2rem rgba(108, 117, 125, 0.5)
  1487. }
  1488. .btn-outline-success {
  1489. color: #28a745;
  1490. border-color: #28a745
  1491. }
  1492. .btn-outline-success:hover {
  1493. color: #fff;
  1494. background: #28a745;
  1495. border-color: #28a745
  1496. }
  1497. .btn-outline-success:focus,
  1498. .btn-outline-success.focus {
  1499. box-shadow: 0 0 0 .2rem rgba(40, 167, 69, 0.5)
  1500. }
  1501. .btn-outline-success.disabled,
  1502. .btn-outline-success:disabled {
  1503. color: #28a745;
  1504. background: transparent
  1505. }
  1506. .btn-outline-success:not(:disabled):not(.disabled):active,
  1507. .btn-outline-success:not(:disabled):not(.disabled).active,
  1508. .show>.btn-outline-success.dropdown-toggle {
  1509. color: #fff;
  1510. background: #28a745;
  1511. border-color: #28a745
  1512. }
  1513. .btn-outline-success:not(:disabled):not(.disabled):active:focus,
  1514. .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  1515. .show>.btn-outline-success.dropdown-toggle:focus {
  1516. box-shadow: 0 0 0 .2rem rgba(40, 167, 69, 0.5)
  1517. }
  1518. .btn-outline-info {
  1519. color: #17a2b8;
  1520. border-color: #17a2b8
  1521. }
  1522. .btn-outline-info:hover {
  1523. color: #fff;
  1524. background: #17a2b8;
  1525. border-color: #17a2b8
  1526. }
  1527. .btn-outline-info:focus,
  1528. .btn-outline-info.focus {
  1529. box-shadow: 0 0 0 .2rem rgba(23, 162, 184, 0.5)
  1530. }
  1531. .btn-outline-info.disabled,
  1532. .btn-outline-info:disabled {
  1533. color: #17a2b8;
  1534. background: transparent
  1535. }
  1536. .btn-outline-info:not(:disabled):not(.disabled):active,
  1537. .btn-outline-info:not(:disabled):not(.disabled).active,
  1538. .show>.btn-outline-info.dropdown-toggle {
  1539. color: #fff;
  1540. background: #17a2b8;
  1541. border-color: #17a2b8
  1542. }
  1543. .btn-outline-info:not(:disabled):not(.disabled):active:focus,
  1544. .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  1545. .show>.btn-outline-info.dropdown-toggle:focus {
  1546. box-shadow: 0 0 0 .2rem rgba(23, 162, 184, 0.5)
  1547. }
  1548. .btn-outline-warning {
  1549. color: beige;
  1550. border-color: beige
  1551. }
  1552. .btn-outline-warning:hover {
  1553. color: #212529;
  1554. background: beige;
  1555. border-color: beige
  1556. }
  1557. .btn-outline-warning:focus,
  1558. .btn-outline-warning.focus {
  1559. box-shadow: 0 0 0 .2rem rgba(245, 245, 220, 0.5)
  1560. }
  1561. .btn-outline-warning.disabled,
  1562. .btn-outline-warning:disabled {
  1563. color: beige;
  1564. background: transparent
  1565. }
  1566. .btn-outline-warning:not(:disabled):not(.disabled):active,
  1567. .btn-outline-warning:not(:disabled):not(.disabled).active,
  1568. .show>.btn-outline-warning.dropdown-toggle {
  1569. color: #212529;
  1570. background: beige;
  1571. border-color: beige
  1572. }
  1573. .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
  1574. .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  1575. .show>.btn-outline-warning.dropdown-toggle:focus {
  1576. box-shadow: 0 0 0 .2rem rgba(245, 245, 220, 0.5)
  1577. }
  1578. .btn-outline-danger {
  1579. color: #dc3545;
  1580. border-color: #dc3545
  1581. }
  1582. .btn-outline-danger:hover {
  1583. color: #fff;
  1584. background: #dc3545;
  1585. border-color: #dc3545
  1586. }
  1587. .btn-outline-danger:focus,
  1588. .btn-outline-danger.focus {
  1589. box-shadow: 0 0 0 .2rem rgba(220, 53, 69, 0.5)
  1590. }
  1591. .btn-outline-danger.disabled,
  1592. .btn-outline-danger:disabled {
  1593. color: #dc3545;
  1594. background: transparent
  1595. }
  1596. .btn-outline-danger:not(:disabled):not(.disabled):active,
  1597. .btn-outline-danger:not(:disabled):not(.disabled).active,
  1598. .show>.btn-outline-danger.dropdown-toggle {
  1599. color: #fff;
  1600. background: #dc3545;
  1601. border-color: #dc3545
  1602. }
  1603. .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
  1604. .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  1605. .show>.btn-outline-danger.dropdown-toggle:focus {
  1606. box-shadow: 0 0 0 .2rem rgba(220, 53, 69, 0.5)
  1607. }
  1608. .btn-outline-light {
  1609. color: #dee2e6;
  1610. border-color: #dee2e6
  1611. }
  1612. .btn-outline-light:hover {
  1613. color: #212529;
  1614. background: #dee2e6;
  1615. border-color: #dee2e6
  1616. }
  1617. .btn-outline-light:focus,
  1618. .btn-outline-light.focus {
  1619. box-shadow: 0 0 0 .2rem rgba(222, 226, 230, 0.5)
  1620. }
  1621. .btn-outline-light.disabled,
  1622. .btn-outline-light:disabled {
  1623. color: #dee2e6;
  1624. background: transparent
  1625. }
  1626. .btn-outline-light:not(:disabled):not(.disabled):active,
  1627. .btn-outline-light:not(:disabled):not(.disabled).active,
  1628. .show>.btn-outline-light.dropdown-toggle {
  1629. color: #212529;
  1630. background: #dee2e6;
  1631. border-color: #dee2e6
  1632. }
  1633. .btn-outline-light:not(:disabled):not(.disabled):active:focus,
  1634. .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  1635. .show>.btn-outline-light.dropdown-toggle:focus {
  1636. box-shadow: 0 0 0 .2rem rgba(222, 226, 230, 0.5)
  1637. }
  1638. .btn-outline-dark {
  1639. color: #212529;
  1640. border-color: #212529
  1641. }
  1642. .btn-outline-dark:hover {
  1643. color: #fff;
  1644. background: #212529;
  1645. border-color: #212529
  1646. }
  1647. .btn-outline-dark:focus,
  1648. .btn-outline-dark.focus {
  1649. box-shadow: 0 0 0 .2rem rgba(33, 37, 41, 0.5)
  1650. }
  1651. .btn-outline-dark.disabled,
  1652. .btn-outline-dark:disabled {
  1653. color: #212529;
  1654. background: transparent
  1655. }
  1656. .btn-outline-dark:not(:disabled):not(.disabled):active,
  1657. .btn-outline-dark:not(:disabled):not(.disabled).active,
  1658. .show>.btn-outline-dark.dropdown-toggle {
  1659. color: #fff;
  1660. background: #212529;
  1661. border-color: #212529
  1662. }
  1663. .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
  1664. .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  1665. .show>.btn-outline-dark.dropdown-toggle:focus {
  1666. box-shadow: 0 0 0 .2rem rgba(33, 37, 41, 0.5)
  1667. }
  1668. .btn-link {
  1669. font-weight: 400;
  1670. color: #212529;
  1671. text-decoration: none
  1672. }
  1673. .btn-link:hover {
  1674. color: #000;
  1675. text-decoration: underline
  1676. }
  1677. .btn-link:focus,
  1678. .btn-link.focus {
  1679. text-decoration: underline;
  1680. box-shadow: none
  1681. }
  1682. .btn-link:disabled,
  1683. .btn-link.disabled {
  1684. color: #6c757d;
  1685. pointer-events: none
  1686. }
  1687. .input-group {
  1688. position: relative;
  1689. display: flex;
  1690. flex-wrap: wrap;
  1691. align-items: stretch;
  1692. width: 100%
  1693. }
  1694. .input-group>.form-control,
  1695. .input-group>.form-control-plaintext {
  1696. position: relative;
  1697. flex: 1 1 0%;
  1698. min-width: 0;
  1699. margin-bottom: 0
  1700. }
  1701. .input-group>.form-control+.form-control,
  1702. .input-group>.form-control-plaintext+.form-control {
  1703. margin-left: -1px
  1704. }
  1705. .input-group>.form-control:focus {
  1706. z-index: 3
  1707. }
  1708. .input-group>.form-control:not(:last-child) {
  1709. border-top-right-radius: 0;
  1710. border-bottom-right-radius: 0
  1711. }
  1712. .input-group>.form-control:not(:first-child) {
  1713. border-top-left-radius: 0;
  1714. border-bottom-left-radius: 0
  1715. }
  1716. .input-group-prepend,
  1717. .input-group-append {
  1718. display: flex
  1719. }
  1720. .input-group-prepend .btn,
  1721. .input-group-append .btn {
  1722. position: relative;
  1723. z-index: 2
  1724. }
  1725. .input-group-prepend .btn:focus,
  1726. .input-group-append .btn:focus {
  1727. z-index: 3
  1728. }
  1729. .input-group-prepend .btn+.btn,
  1730. .input-group-prepend .btn+.input-group-text,
  1731. .input-group-prepend .input-group-text+.input-group-text,
  1732. .input-group-prepend .input-group-text+.btn,
  1733. .input-group-append .btn+.btn,
  1734. .input-group-append .btn+.input-group-text,
  1735. .input-group-append .input-group-text+.input-group-text,
  1736. .input-group-append .input-group-text+.btn {
  1737. margin-left: -1px
  1738. }
  1739. .input-group-prepend {
  1740. margin-right: -1px
  1741. }
  1742. .input-group-append {
  1743. margin-left: -1px
  1744. }
  1745. .input-group-text {
  1746. display: flex;
  1747. align-items: center;
  1748. padding: .375rem .75rem;
  1749. margin-bottom: 0;
  1750. font-weight: 400;
  1751. line-height: 1.5;
  1752. text-align: center;
  1753. white-space: nowrap;
  1754. font-size: 1rem;
  1755. border-radius: .25rem
  1756. }
  1757. @media all {
  1758. .input-group-text {
  1759. color: #dee2e6;
  1760. background: #343a40;
  1761. border: 1px solid #6c757d
  1762. }
  1763. }
  1764. .input-group-text input[type="radio"],
  1765. .input-group-text input[type="checkbox"] {
  1766. margin-top: 0
  1767. }
  1768. .input-group>.input-group-prepend>.btn,
  1769. .input-group>.input-group-prepend>.input-group-text,
  1770. .input-group>.input-group-append:not(:last-child)>.btn,
  1771. .input-group>.input-group-append:not(:last-child)>.input-group-text,
  1772. .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
  1773. .input-group>.input-group-append:last-child>.input-group-text:not(:last-child) {
  1774. border-top-right-radius: 0;
  1775. border-bottom-right-radius: 0
  1776. }
  1777. .input-group>.input-group-append>.btn,
  1778. .input-group>.input-group-append>.input-group-text,
  1779. .input-group>.input-group-prepend:not(:first-child)>.btn,
  1780. .input-group>.input-group-prepend:not(:first-child)>.input-group-text,
  1781. .input-group>.input-group-prepend:first-child>.btn:not(:first-child),
  1782. .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child) {
  1783. border-top-left-radius: 0;
  1784. border-bottom-left-radius: 0
  1785. }
  1786. .nav {
  1787. display: flex;
  1788. flex-wrap: wrap;
  1789. padding-left: 0;
  1790. margin-bottom: 0;
  1791. list-style: none
  1792. }
  1793. .card {
  1794. position: relative;
  1795. display: flex;
  1796. flex-direction: column;
  1797. min-width: 0;
  1798. word-wrap: break-word;
  1799. background-color: #fff;
  1800. background-clip: border-box;
  1801. border: 1px solid rgba(0, 0, 0, 0.125);
  1802. border-radius: 0.25rem;
  1803. }
  1804. .card > hr {
  1805. margin-right: 0;
  1806. margin-left: 0;
  1807. }
  1808. .card > .list-group {
  1809. border-top: inherit;
  1810. border-bottom: inherit;
  1811. }
  1812. .card > .list-group:first-child {
  1813. border-top-width: 0;
  1814. border-top-left-radius: calc(0.25rem - 1px);
  1815. border-top-right-radius: calc(0.25rem - 1px);
  1816. }
  1817. .card > .list-group:last-child {
  1818. border-bottom-width: 0;
  1819. border-bottom-right-radius: calc(0.25rem - 1px);
  1820. border-bottom-left-radius: calc(0.25rem - 1px);
  1821. }
  1822. .card > .card-header + .list-group,
  1823. .card > .list-group + .card-footer {
  1824. border-top: 0;
  1825. }
  1826. .card-body {
  1827. flex: 1 1 auto;
  1828. padding: 1rem 1rem;
  1829. }
  1830. .card-title {
  1831. margin-bottom: 0.5rem;
  1832. }
  1833. .card-subtitle {
  1834. margin-top: -0.25rem;
  1835. margin-bottom: 0;
  1836. }
  1837. .card-text:last-child {
  1838. margin-bottom: 0;
  1839. }
  1840. .card-link:hover {
  1841. text-decoration: none;
  1842. }
  1843. .card-link + .card-link {
  1844. margin-left: 1rem /* rtl:ignore */;
  1845. }
  1846. .card-header {
  1847. padding: 0.5rem 1rem;
  1848. margin-bottom: 0;
  1849. background-color: rgba(0, 0, 0, 0.03);
  1850. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  1851. }
  1852. .card-header:first-child {
  1853. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  1854. }
  1855. .card-footer {
  1856. padding: 0.5rem 1rem;
  1857. background-color: rgba(0, 0, 0, 0.03);
  1858. border-top: 1px solid rgba(0, 0, 0, 0.125);
  1859. }
  1860. .card-footer:last-child {
  1861. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  1862. }
  1863. .card-header-tabs {
  1864. margin-right: -0.5rem;
  1865. margin-bottom: -0.5rem;
  1866. margin-left: -0.5rem;
  1867. border-bottom: 0;
  1868. }
  1869. .card-header-pills {
  1870. margin-right: -0.5rem;
  1871. margin-left: -0.5rem;
  1872. }
  1873. .card-img-overlay {
  1874. position: absolute;
  1875. top: 0;
  1876. right: 0;
  1877. bottom: 0;
  1878. left: 0;
  1879. padding: 1rem;
  1880. border-radius: calc(0.25rem - 1px);
  1881. }
  1882. .card-img,
  1883. .card-img-top,
  1884. .card-img-bottom {
  1885. width: 100%;
  1886. }
  1887. .card-img,
  1888. .card-img-top {
  1889. border-top-left-radius: calc(0.25rem - 1px);
  1890. border-top-right-radius: calc(0.25rem - 1px);
  1891. }
  1892. .card-img,
  1893. .card-img-bottom {
  1894. border-bottom-right-radius: calc(0.25rem - 1px);
  1895. border-bottom-left-radius: calc(0.25rem - 1px);
  1896. }
  1897. .pagination {
  1898. display: flex;
  1899. padding-left: 0;
  1900. list-style: none;
  1901. border-radius: .25rem
  1902. }
  1903. .page-link {
  1904. position: relative;
  1905. display: block;
  1906. padding: .5rem .75rem;
  1907. margin-left: -1px;
  1908. line-height: 1.25
  1909. }
  1910. @media all {
  1911. .page-link {
  1912. color: #f8f9fa;
  1913. background: #212529;
  1914. border: 1px solid #495057
  1915. }
  1916. }
  1917. .page-link:hover {
  1918. z-index: 2;
  1919. text-decoration: none
  1920. }
  1921. @media all {
  1922. .page-link:hover {
  1923. color: #cbd3da;
  1924. background: #343a40;
  1925. border-color: #495057
  1926. }
  1927. }
  1928. .page-link:focus {
  1929. z-index: 3;
  1930. outline: 0;
  1931. box-shadow: 0 0 0 .2rem rgba(0, 132, 180, 0.25)
  1932. }
  1933. .page-item:first-child .page-link {
  1934. margin-left: 0;
  1935. border-top-left-radius: .25rem;
  1936. border-bottom-left-radius: .25rem
  1937. }
  1938. .page-item:last-child .page-link {
  1939. border-top-right-radius: .25rem;
  1940. border-bottom-right-radius: .25rem
  1941. }
  1942. .page-item.active .page-link {
  1943. z-index: 3
  1944. }
  1945. @media all {
  1946. .page-item.active .page-link {
  1947. color: #212529;
  1948. background: #0084b4;
  1949. border-color: #0084b4
  1950. }
  1951. }
  1952. .page-item.disabled .page-link {
  1953. pointer-events: none;
  1954. cursor: auto
  1955. }
  1956. @media all {
  1957. .page-item.disabled .page-link {
  1958. color: #ced4da;
  1959. background: #212529;
  1960. border-color: #495057
  1961. }
  1962. }
  1963. .badge {
  1964. display: inline-block;
  1965. padding: .25em .4em;
  1966. font-weight: 400;
  1967. line-height: 1;
  1968. text-align: center;
  1969. white-space: nowrap;
  1970. vertical-align: baseline;
  1971. font-size: 95%;
  1972. border-radius: .25rem
  1973. }
  1974. a.badge:hover,
  1975. a.badge:focus {
  1976. text-decoration: none
  1977. }
  1978. .badge:empty {
  1979. display: none
  1980. }
  1981. .btn .badge {
  1982. position: relative;
  1983. top: -2px;
  1984. font-size: 60%
  1985. }
  1986. .badge-pill {
  1987. padding-right: .6em;
  1988. padding-left: .6em;
  1989. border-radius: 10rem
  1990. }
  1991. .badge-primary {
  1992. color: #fff;
  1993. background: #0084b4
  1994. }
  1995. a.badge-primary:hover,
  1996. a.badge-primary:focus {
  1997. color: #fff;
  1998. background: #005f81
  1999. }
  2000. a.badge-primary:focus,
  2001. a.badge-primary.focus {
  2002. outline: 0;
  2003. box-shadow: 0 0 0 .2rem rgba(0, 132, 180, 0.5)
  2004. }
  2005. .badge-secondary {
  2006. color: #fff;
  2007. background: #6c757d
  2008. }
  2009. a.badge-secondary:hover,
  2010. a.badge-secondary:focus {
  2011. color: #fff;
  2012. background: #545b62
  2013. }
  2014. a.badge-secondary:focus,
  2015. a.badge-secondary.focus {
  2016. outline: 0;
  2017. box-shadow: 0 0 0 .2rem rgba(108, 117, 125, 0.5)
  2018. }
  2019. .badge-success {
  2020. color: #fff;
  2021. background: #28a745
  2022. }
  2023. a.badge-success:hover,
  2024. a.badge-success:focus {
  2025. color: #fff;
  2026. background: #1e7e34
  2027. }
  2028. a.badge-success:focus,
  2029. a.badge-success.focus {
  2030. outline: 0;
  2031. box-shadow: 0 0 0 .2rem rgba(40, 167, 69, 0.5)
  2032. }
  2033. .badge-info {
  2034. color: #fff;
  2035. background: #17a2b8
  2036. }
  2037. a.badge-info:hover,
  2038. a.badge-info:focus {
  2039. color: #fff;
  2040. background: #117a8b
  2041. }
  2042. a.badge-info:focus,
  2043. a.badge-info.focus {
  2044. outline: 0;
  2045. box-shadow: 0 0 0 .2rem rgba(23, 162, 184, 0.5)
  2046. }
  2047. .badge-warning {
  2048. color: #212529;
  2049. background: beige
  2050. }
  2051. a.badge-warning:hover,
  2052. a.badge-warning:focus {
  2053. color: #212529;
  2054. background: #eaeab4
  2055. }
  2056. a.badge-warning:focus,
  2057. a.badge-warning.focus {
  2058. outline: 0;
  2059. box-shadow: 0 0 0 .2rem rgba(245, 245, 220, 0.5)
  2060. }
  2061. .badge-danger {
  2062. color: #fff;
  2063. background: #dc3545
  2064. }
  2065. a.badge-danger:hover,
  2066. a.badge-danger:focus {
  2067. color: #fff;
  2068. background: #bd2130
  2069. }
  2070. a.badge-danger:focus,
  2071. a.badge-danger.focus {
  2072. outline: 0;
  2073. box-shadow: 0 0 0 .2rem rgba(220, 53, 69, 0.5)
  2074. }
  2075. .badge-light {
  2076. color: #212529;
  2077. background: #dee2e6
  2078. }
  2079. a.badge-light:hover,
  2080. a.badge-light:focus {
  2081. color: #212529;
  2082. background: #c1c9d0
  2083. }
  2084. a.badge-light:focus,
  2085. a.badge-light.focus {
  2086. outline: 0;
  2087. box-shadow: 0 0 0 .2rem rgba(222, 226, 230, 0.5)
  2088. }
  2089. .badge-dark {
  2090. color: #fff;
  2091. background: #212529
  2092. }
  2093. a.badge-dark:hover,
  2094. a.badge-dark:focus {
  2095. color: #fff;
  2096. background: #0a0c0d
  2097. }
  2098. a.badge-dark:focus,
  2099. a.badge-dark.focus {
  2100. outline: 0;
  2101. box-shadow: 0 0 0 .2rem rgba(33, 37, 41, 0.5)
  2102. }
  2103. header {
  2104. width: 100%;
  2105. z-index: 99999;
  2106. top: 0px
  2107. }
  2108. @media all {
  2109. header.full-width {
  2110. background: #212529
  2111. }
  2112. }
  2113. header.fixed {
  2114. position: fixed
  2115. }
  2116. .mega-menu .header {
  2117. flex: 0 0 100%;
  2118. max-width: 100%;
  2119. box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15)
  2120. }
  2121. .mega-menu .header .container {
  2122. padding-right: 0px;
  2123. padding-left: 0px
  2124. }
  2125. .mega-menu .row-header,
  2126. .mega-menu .row-stage {
  2127. display: flex;
  2128. flex-wrap: wrap
  2129. }
  2130. .mega-menu .logo {
  2131. top: 2px;
  2132. position: relative;
  2133. margin-left: 40px
  2134. }
  2135. .mega-menu .img-logo {
  2136. position: absolute
  2137. }
  2138. @media (min-width: 768px) {
  2139. .mega-menu .img-logo {
  2140. top: 12px
  2141. }
  2142. }
  2143. @media (max-width: 991.98px) {
  2144. .mega-menu .img-logo {
  2145. top: 18px
  2146. }
  2147. }
  2148. .mega-menu li,
  2149. .mega-menu ol,
  2150. .mega-menu ul {
  2151. padding: 0
  2152. }
  2153. .mega-menu #mobile:checked+.main-menu {
  2154. display: block
  2155. }
  2156. .mega-menu #mobile-menu {
  2157. position: relative;
  2158. display: block;
  2159. padding: 16px;
  2160. cursor: pointer
  2161. }
  2162. .mega-menu #mobile-menu span.main-menu-dropdown-icon {
  2163. bottom: 0;
  2164. width: 50px;
  2165. cursor: pointer
  2166. }
  2167. .mega-menu #mobile-menu .main-menu-dropdown-icon,
  2168. .mega-menu #mobile-menu span.main-menu-dropdown-icon {
  2169. position: absolute;
  2170. top: 0;
  2171. right: 0
  2172. }
  2173. .mega-menu .main-menu {
  2174. z-index: 100;
  2175. margin: auto
  2176. }
  2177. .mega-menu .main-menu:after,
  2178. .mega-menu .main-menu:before {
  2179. content: "";
  2180. display: table;
  2181. clear: both
  2182. }
  2183. .mega-menu .main-menu a {
  2184. text-decoration: none
  2185. }
  2186. .mega-menu .main-menu li {
  2187. position: relative;
  2188. display: block
  2189. }
  2190. @media all {
  2191. .mega-menu .main-menu li {
  2192. border-top: 1px solid #343a40
  2193. }
  2194. }
  2195. .mega-menu .main-menu .main-menu {
  2196. display: none;
  2197. max-height: 100%
  2198. }
  2199. .mega-menu .main-menu .main-menu-dropdown-list {
  2200. display: none
  2201. }
  2202. .mega-menu .main-menu .main-menu-dropdown-list:not(.main-menu-dropdown-megamenu) a,
  2203. .mega-menu .main-menu .main-menu-dropdown-list:not(.main-menu-dropdown-shop) a {
  2204. transition: transform 0.25s ease-out;
  2205. transform: translate3d(0, 0, 0)
  2206. }
  2207. .mega-menu .main-menu .main-menu-dropdown-list:not(.main-menu-dropdown-megamenu) a:hover,
  2208. .mega-menu .main-menu .main-menu-dropdown-list:not(.main-menu-dropdown-shop) a:hover {
  2209. transform: translate3d(3px, 0, 0)
  2210. }
  2211. .mega-menu .main-menu .main-menu-dropdown-list.main-menu-dropdown-megamenu li:first-child {
  2212. font-weight: 700;
  2213. border-bottom: 1px solid #dee2e6
  2214. }
  2215. .mega-menu .main-menu .main-menu-dropdown-list.main-menu-dropdown-megamenu li {
  2216. border: none
  2217. }
  2218. .mega-menu .main-menu .main-menu-dropdown-item-subtitle {
  2219. font-size: .75rem;
  2220. text-indent: 10px;
  2221. margin-left: 10px
  2222. }
  2223. .mega-menu .main-menu input[type=checkbox]:checked+.main-menu-dropdown-list {
  2224. display: block
  2225. }
  2226. .mega-menu .main-menu input[type=checkbox],
  2227. .mega-menu .main-menu ul span.main-menu-dropdown-icon {
  2228. display: none
  2229. }
  2230. .mega-menu .main-menu label {
  2231. margin-bottom: 0
  2232. }
  2233. .mega-menu .main-menu label.main-menu-dropdown-icon {
  2234. width: 100%;
  2235. height: 50px;
  2236. cursor: pointer;
  2237. z-index: 10
  2238. }
  2239. .mega-menu .main-menu label.main-menu-dropdown-icon,
  2240. .mega-menu .main-menu li label.main-menu-dropdown-icon {
  2241. position: absolute;
  2242. top: 0;
  2243. right: 0
  2244. }
  2245. .mega-menu .main-menu>ul>li {
  2246. cursor: pointer
  2247. }
  2248. .mega-menu .main-menu>ul>li a {
  2249. overflow: hidden;
  2250. text-overflow: ellipsis;
  2251. white-space: nowrap;
  2252. padding: 16px;
  2253. cursor: pointer;
  2254. position: relative;
  2255. display: block
  2256. }
  2257. .mega-menu .main-menu .tip {
  2258. padding: 2px 5px;
  2259. background: #0084b4;
  2260. color: white;
  2261. text-shadow: none;
  2262. border-radius: 3px;
  2263. left: 10px;
  2264. position: relative;
  2265. text-transform: uppercase;
  2266. font-size: .75rem;
  2267. top: -2px
  2268. }
  2269. .mega-menu .main-menu .tip:before {
  2270. right: 100%;
  2271. top: 50%;
  2272. border: solid transparent;
  2273. content: " ";
  2274. height: 0;
  2275. width: 0;
  2276. position: absolute;
  2277. pointer-events: none;
  2278. border-color: rgba(255, 255, 255, 0);
  2279. border-right-color: #0084b4;
  2280. border-width: 5px;
  2281. margin-top: -5px
  2282. }
  2283. .mega-menu .main-menu .notification-info {
  2284. position: absolute;
  2285. width: 100%;
  2286. text-align: center;
  2287. top: 50%;
  2288. margin-top: -4px;
  2289. left: 0;
  2290. padding: 0;
  2291. display: block;
  2292. line-height: 1
  2293. }
  2294. .mega-menu .main-menu .notification-info .notification-qty {
  2295. position: absolute;
  2296. top: -12px;
  2297. right: 10px;
  2298. width: 15px;
  2299. height: 15px;
  2300. display: block;
  2301. font-size: .75rem;
  2302. color: white;
  2303. background-color: red;
  2304. text-align: center;
  2305. line-height: 15px;
  2306. border-radius: 20px
  2307. }
  2308. @media (max-width: 1199.98px) {
  2309. .header .main-menu .logo {
  2310. top: 3px
  2311. }
  2312. .header .main-menu span.logo {
  2313. top: 1px
  2314. }
  2315. .header .main-menu .fa {
  2316. min-width: 25px
  2317. }
  2318. }
  2319. @media (max-width: 1199.98px) {
  2320. .header .main-menu .active {
  2321. color: #f8f9fa;
  2322. background: #212529
  2323. }
  2324. }
  2325. @media (max-width: 1199.98px) {
  2326. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list {
  2327. background: #212529
  2328. }
  2329. }
  2330. @media (max-width: 1199.98px) {
  2331. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li .main-menu-dropdown-item-subtitle {
  2332. text-indent: 30px;
  2333. margin-left: 30px
  2334. }
  2335. }
  2336. @media (max-width: 1199.98px) {
  2337. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a {
  2338. color: #f8f9fa
  2339. }
  2340. }
  2341. @media (max-width: 1199.98px) {
  2342. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li a {
  2343. color: #f8f9fa
  2344. }
  2345. }
  2346. @media (max-width: 1199.98px) {
  2347. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li a:hover {
  2348. background: #212529
  2349. }
  2350. }
  2351. @media (max-width: 1199.98px) {
  2352. .header .main-menu li:hover a,
  2353. .header .main-menu li:active a {
  2354. border-left: 3px solid #0084b4
  2355. }
  2356. .header .main-menu .main-menu-dropdown-list li {
  2357. text-indent: 15px
  2358. }
  2359. .header .main-menu .main-menu-dropdown-list li ul li {
  2360. text-indent: 30px
  2361. }
  2362. .header .main-menu .main-menu-dropdown-list li ul li ul li {
  2363. text-indent: 45px
  2364. }
  2365. .header .main-menu .main-menu-logo {
  2366. display: none;
  2367. padding: 0;
  2368. margin: 0
  2369. }
  2370. .header .main-menu .notification-info .notification-qty {
  2371. position: absolute;
  2372. top: -3px;
  2373. right: 15px
  2374. }
  2375. }
  2376. @media (min-width: 992px) {
  2377. .header .main-menu {
  2378. background: #212529;
  2379. border-top: 1px solid #343a40;
  2380. border-bottom: 1px solid #212529
  2381. }
  2382. }
  2383. @media (min-width: 992px) {
  2384. .header .main-menu .logo {
  2385. font-weight: 400
  2386. }
  2387. }
  2388. @media (min-width: 992px) {
  2389. .header .main-menu li:not(:last-child) {
  2390. border-left: 1px solid #212529;
  2391. border-right: 1px solid #212529
  2392. }
  2393. }
  2394. @media (min-width: 992px) {
  2395. .header .main-menu a,
  2396. .header .main-menu i {
  2397. color: #f8f9fa
  2398. }
  2399. }
  2400. @media (min-width: 992px) {
  2401. .header .main-menu .fa {
  2402. margin-right: 5px
  2403. }
  2404. }
  2405. @media (min-width: 992px) {
  2406. .header .main-menu .active,
  2407. .header .main-menu .active>i {
  2408. color: #fff;
  2409. background: #0084b4
  2410. }
  2411. }
  2412. @media (min-width: 992px) {
  2413. .header .main-menu .active i,
  2414. .header .main-menu .active>i i {
  2415. color: #dee2e6
  2416. }
  2417. }
  2418. @media (min-width: 992px) {
  2419. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list {
  2420. margin-top: -3px;
  2421. border-top: 3px solid #0084b4
  2422. }
  2423. }
  2424. @media (min-width: 992px) {
  2425. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list {
  2426. background: #212529
  2427. }
  2428. }
  2429. @media (min-width: 992px) {
  2430. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a,
  2431. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i {
  2432. color: #f8f9fa
  2433. }
  2434. }
  2435. @media (min-width: 992px) {
  2436. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li a,
  2437. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li i,
  2438. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i li a,
  2439. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i li i {
  2440. color: #f8f9fa
  2441. }
  2442. }
  2443. @media (min-width: 992px) {
  2444. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li a:hover,
  2445. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li i:hover,
  2446. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i li a:hover,
  2447. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i li i:hover {
  2448. background: #212529
  2449. }
  2450. }
  2451. @media (min-width: 992px) {
  2452. .header .main-menu li:hover,
  2453. .header .main-menu li:active {
  2454. color: #dee2e6;
  2455. background: #0084b4
  2456. }
  2457. }
  2458. @media (min-width: 992px) {
  2459. .header .main-menu li:hover a,
  2460. .header .main-menu li:hover i,
  2461. .header .main-menu li:active a,
  2462. .header .main-menu li:active i {
  2463. color: #dee2e6
  2464. }
  2465. }
  2466. @media (min-width: 992px) {
  2467. .header .main-menu li ul li:hover,
  2468. .header .main-menu li ul li:active {
  2469. background: #212529
  2470. }
  2471. }
  2472. @media (min-width: 992px) {
  2473. .header .main-menu li ul li:hover a,
  2474. .header .main-menu li ul li:hover i,
  2475. .header .main-menu li ul li:active a,
  2476. .header .main-menu li ul li:active i {
  2477. color: #dee2e6
  2478. }
  2479. }
  2480. @media (min-width: 992px) {
  2481. .header .main-menu .main-menu {
  2482. display: block
  2483. }
  2484. .header .main-menu .main-menu-dropdown-item-subtitle {
  2485. text-indent: 10px;
  2486. margin-left: 0
  2487. }
  2488. .header #mobile-menu {
  2489. display: none
  2490. }
  2491. .header .main-menu label.main-menu-dropdown-icon {
  2492. display: none
  2493. }
  2494. .header .main-menu ul span.main-menu-dropdown-icon {
  2495. display: inline-block
  2496. }
  2497. .header .main-menu li {
  2498. float: left;
  2499. border-width: 0 1px 0 0
  2500. }
  2501. .header .main-menu .main-menu-dropdown-list {
  2502. border-width: 0;
  2503. margin: 0;
  2504. position: absolute;
  2505. top: 100%;
  2506. left: 0;
  2507. z-index: 100;
  2508. display: none;
  2509. min-width: 250px;
  2510. box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15)
  2511. }
  2512. .header .main-menu .main-menu-dropdown-list a {
  2513. padding: 10px 15px
  2514. }
  2515. .header .main-menu .main-menu-dropdown-list li {
  2516. float: none;
  2517. border-width: 1px 0 0
  2518. }
  2519. .header .main-menu .main-menu-dropdown-list .main-menu-dropdown-list {
  2520. top: 0;
  2521. left: 100%
  2522. }
  2523. .header .main-menu .main-menu-dropdown-list .main-menu-dropdown-icon {
  2524. position: absolute;
  2525. top: 0;
  2526. right: 0;
  2527. padding: 1em
  2528. }
  2529. .header .main-menu .main-menu-dropdown-list.main-menu-dropdown-shop {
  2530. min-width: 250px;
  2531. right: 100%;
  2532. left: 54px;
  2533. transform: translate(-100%, 0)
  2534. }
  2535. .header .main-menu .main-menu-dropdown-list.main-menu-dropdown-megamenu {
  2536. min-width: 800px;
  2537. left: 50%;
  2538. transform: translate(-50%, 0)
  2539. }
  2540. .header .main-menu input[type=checkbox]:checked+.main-menu-dropdown-list {
  2541. display: none
  2542. }
  2543. .header .main-menu li:hover>input[type=checkbox]+.main-menu-dropdown-list {
  2544. display: block
  2545. }
  2546. .header .main-menu .main-menu-shop {
  2547. width: 54px
  2548. }
  2549. .header .main-menu .main-menu-right {
  2550. float: right
  2551. }
  2552. }
  2553. .header .arrow-down:before,
  2554. .header .arrow-right:before {
  2555. content: "";
  2556. border-style: solid;
  2557. border-color: inherit;
  2558. border-width: 0 1px 1px 0;
  2559. display: inline-block;
  2560. padding: 3px;
  2561. position: absolute;
  2562. top: 50%
  2563. }
  2564. .header .arrow-down {
  2565. padding-right: 16px
  2566. }
  2567. .header .arrow-down:before {
  2568. right: 16px;
  2569. transform: translate(-50%, -50%) rotate(45deg);
  2570. margin-top: -1px
  2571. }
  2572. .header .arrow-right:before {
  2573. right: 16px;
  2574. transform: rotate(-45deg);
  2575. margin-top: 2px
  2576. }
  2577. .header .main-menu .hamburger {
  2578. position: absolute;
  2579. left: 50%;
  2580. top: 50%;
  2581. transform: translate(-50%, -50%);
  2582. width: 20px;
  2583. height: 1px
  2584. }
  2585. @media all {
  2586. .header .main-menu .hamburger {
  2587. background: #f8f9fa
  2588. }
  2589. }
  2590. .header .main-menu .hamburger:after,
  2591. .header .main-menu .hamburger:before {
  2592. position: absolute;
  2593. left: 50%;
  2594. top: 50%;
  2595. transform: translate(-50%, -50%);
  2596. width: 20px;
  2597. height: 1px
  2598. }
  2599. @media all {
  2600. .header .main-menu .hamburger:after,
  2601. .header .main-menu .hamburger:before {
  2602. background: #f8f9fa
  2603. }
  2604. }
  2605. .header .main-menu .hamburger:before {
  2606. content: "";
  2607. top: -5px
  2608. }
  2609. .header .main-menu .hamburger:after {
  2610. content: "";
  2611. top: 7px
  2612. }
  2613. .tooltip {
  2614. position: relative;
  2615. cursor: pointer;
  2616. z-index: 1050
  2617. }
  2618. .tooltip::after {
  2619. background-color: #000;
  2620. border-radius: .25rem;
  2621. color: #fff;
  2622. content: attr(data-tooltip-title);
  2623. font-weight: normal;
  2624. min-width: 150px;
  2625. padding: .5rem .75rem;
  2626. text-align: center;
  2627. text-transform: none;
  2628. font-size: .75rem
  2629. }
  2630. .tooltip:disabled::after {
  2631. content: attr(data-disabled-tooltip-title)
  2632. }
  2633. .tooltip::before {
  2634. width: 0;
  2635. height: 0;
  2636. content: "";
  2637. position: absolute;
  2638. transition: opacity 0.3s ease 0ms, transform 0.3s ease 0ms;
  2639. transform-style: preserve-3d;
  2640. opacity: 0;
  2641. z-index: -1
  2642. }
  2643. .tooltip::after {
  2644. position: absolute;
  2645. transition: opacity 0.3s ease 0ms, transform 0.3s ease 0ms;
  2646. transform-style: preserve-3d;
  2647. opacity: 0;
  2648. z-index: -1
  2649. }
  2650. .tooltip[data-tooltip-position="top"]::before {
  2651. border-left: 7px solid transparent;
  2652. border-right: 7px solid transparent;
  2653. left: 50%;
  2654. transform: translate3d(-50%, 10px, 0);
  2655. border-top: 7px solid #000;
  2656. bottom: calc(100% + 3px)
  2657. }
  2658. .tooltip[data-tooltip-position="top"]:hover::before {
  2659. transform: translate3d(-50%, 0px, 0)
  2660. }
  2661. .tooltip[data-tooltip-position="top"]::after {
  2662. left: 50%;
  2663. transform: translate3d(-50%, 10px, 0);
  2664. bottom: calc(100% + 10px)
  2665. }
  2666. .tooltip[data-tooltip-position="top"]:hover::after {
  2667. transform: translate3d(-50%, 0px, 0)
  2668. }
  2669. .tooltip[data-tooltip-position="bottom"]::before {
  2670. border-left: 7px solid transparent;
  2671. border-right: 7px solid transparent;
  2672. left: 50%;
  2673. transform: translate3d(-50%, -10px, 0);
  2674. border-bottom: 7px solid #000;
  2675. top: calc(100% + 3px)
  2676. }
  2677. .tooltip[data-tooltip-position="bottom"]:hover::before {
  2678. transform: translate3d(-50%, 0px, 0)
  2679. }
  2680. .tooltip[data-tooltip-position="bottom"]::after {
  2681. left: 50%;
  2682. transform: translate3d(-50%, -10px, 0);
  2683. top: calc(100% + 10px)
  2684. }
  2685. .tooltip[data-tooltip-position="bottom"]:hover::after {
  2686. transform: translate3d(-50%, 0px, 0)
  2687. }
  2688. .tooltip[data-tooltip-position="left"]::before {
  2689. transform: translate3d(10px, -50%, 0);
  2690. border-left: 7px solid #000;
  2691. right: calc(100% + 3px);
  2692. border-top: 7px solid transparent;
  2693. border-bottom: 7px solid transparent;
  2694. top: 50%
  2695. }
  2696. .tooltip[data-tooltip-position="left"]:hover::before {
  2697. transform: translate3d(0px, -50%, 0)
  2698. }
  2699. .tooltip[data-tooltip-position="left"]::after {
  2700. top: 50%;
  2701. transform: translate3d(10px, -50%, 0);
  2702. right: calc(100% + 10px);
  2703. right: calc(100% + 10px)
  2704. }
  2705. .tooltip[data-tooltip-position="left"]:hover::after {
  2706. transform: translate3d(0px, -50%, 0)
  2707. }
  2708. .tooltip[data-tooltip-position="right"]::before {
  2709. transform: translate3d(-10px, -50%, 0);
  2710. border-right: 7px solid #000;
  2711. left: calc(100% + 3px);
  2712. border-top: 7px solid transparent;
  2713. border-bottom: 7px solid transparent;
  2714. top: 50%
  2715. }
  2716. .tooltip[data-tooltip-position="right"]:hover::before {
  2717. transform: translate3d(0px, -50%, 0)
  2718. }
  2719. .tooltip[data-tooltip-position="right"]::after {
  2720. top: 50%;
  2721. transform: translate3d(-10px, -50%, 0);
  2722. left: calc(100% + 10px)
  2723. }
  2724. .tooltip[data-tooltip-position="right"]:hover::after {
  2725. transform: translate3d(0px, -50%, 0)
  2726. }
  2727. .tooltip:hover::before,
  2728. .tooltip:hover::after {
  2729. opacity: 1;
  2730. z-index: 100
  2731. }
  2732. footer {
  2733. min-height: 220px;
  2734. font-size: .875rem;
  2735. }
  2736. @media all {
  2737. footer {
  2738. color: #fff;
  2739. background: #0084b4;
  2740. }
  2741. }
  2742. .bg-primary {
  2743. background: #0084b4
  2744. }
  2745. a.bg-primary:hover,
  2746. a.bg-primary:focus,
  2747. button.bg-primary:hover,
  2748. button.bg-primary:focus {
  2749. background: #005f81
  2750. }
  2751. .bg-secondary {
  2752. background: #6c757d
  2753. }
  2754. a.bg-secondary:hover,
  2755. a.bg-secondary:focus,
  2756. button.bg-secondary:hover,
  2757. button.bg-secondary:focus {
  2758. background: #545b62
  2759. }
  2760. .bg-success {
  2761. background: #28a745
  2762. }
  2763. a.bg-success:hover,
  2764. a.bg-success:focus,
  2765. button.bg-success:hover,
  2766. button.bg-success:focus {
  2767. background: #1e7e34
  2768. }
  2769. .bg-info {
  2770. background: #17a2b8
  2771. }
  2772. a.bg-info:hover,
  2773. a.bg-info:focus,
  2774. button.bg-info:hover,
  2775. button.bg-info:focus {
  2776. background: #117a8b
  2777. }
  2778. .bg-warning {
  2779. background: beige
  2780. }
  2781. a.bg-warning:hover,
  2782. a.bg-warning:focus,
  2783. button.bg-warning:hover,
  2784. button.bg-warning:focus {
  2785. background: #eaeab4
  2786. }
  2787. .bg-danger {
  2788. background: #dc3545
  2789. }
  2790. a.bg-danger:hover,
  2791. a.bg-danger:focus,
  2792. button.bg-danger:hover,
  2793. button.bg-danger:focus {
  2794. background: #bd2130
  2795. }
  2796. .bg-light {
  2797. background: #dee2e6
  2798. }
  2799. a.bg-light:hover,
  2800. a.bg-light:focus,
  2801. button.bg-light:hover,
  2802. button.bg-light:focus {
  2803. background: #c1c9d0
  2804. }
  2805. .bg-dark {
  2806. background: #212529
  2807. }
  2808. a.bg-dark:hover,
  2809. a.bg-dark:focus,
  2810. button.bg-dark:hover,
  2811. button.bg-dark:focus {
  2812. background: #0a0c0d
  2813. }
  2814. .clearfix::after {
  2815. display: block;
  2816. clear: both;
  2817. content: ""
  2818. }
  2819. .content2 {
  2820. padding-top: 6rem;
  2821. padding-bottom: 6rem;
  2822. color: #eeeeee;
  2823. background: linear-gradient(135deg,#2bb4c5 0%,#3c5ca2 100%);
  2824. background-image: linear-gradient(135deg, rgb(43, 180, 197) 0%, rgb(60, 92, 162) 100%);
  2825. max-width: 100%;
  2826. padding-right: 30px;
  2827. padding-left: 30px;
  2828. text-align: center;
  2829. }
  2830. .content3 {
  2831. padding-top: 6rem;
  2832. padding-bottom: 6rem;
  2833. color: #000000;
  2834. background-color: #f1f4fa;
  2835. max-width: 100%;
  2836. padding-right: 30px;
  2837. padding-left: 30px;
  2838. text-align: center;
  2839. }
  2840. .content4 {
  2841. padding-top: 3rem;
  2842. padding-bottom: 6rem;
  2843. color: #000000;
  2844. background-color: #ffffff;
  2845. max-width: 100%;
  2846. padding-right: 30px;
  2847. padding-left: 30px;
  2848. text-align: left;
  2849. }
  2850. .content-white-left {
  2851. padding-top: 6rem;
  2852. padding-bottom: 6rem;
  2853. color: #000000;
  2854. background-color: #ffffff;
  2855. max-width: 100%;
  2856. padding-right: 30px;
  2857. padding-left: 30px;
  2858. text-align: left;
  2859. }
  2860. .content5 {
  2861. padding-top: 6rem;
  2862. padding-bottom: 6rem;
  2863. color: #eeeeee;
  2864. background: linear-gradient(135deg,#2bb4c5 0%,#3c5ca2 100%);
  2865. background-image: linear-gradient(135deg, rgb(43, 180, 197) 0%, rgb(60, 92, 162) 100%);
  2866. max-width: 100%;
  2867. padding-right: 30px;
  2868. padding-left: 30px;
  2869. text-align: left;
  2870. }
  2871. .content-black {
  2872. padding-top: 6rem;
  2873. padding-bottom: 6rem;
  2874. color: #eeeeee;
  2875. background: #232323;
  2876. max-width: 100%;
  2877. padding-right: 30px;
  2878. padding-left: 30px;
  2879. text-align: left;
  2880. }
  2881. .content6 {
  2882. padding-top: 4rem;
  2883. color: #000000;
  2884. background-color: #ffffff;
  2885. max-width: 100%;
  2886. padding-right: 30px;
  2887. padding-left: 30px;
  2888. text-align: left;
  2889. }
  2890. .blog-content {
  2891. color: #808080;
  2892. }
  2893. .related-article a {
  2894. color:#F39C12;
  2895. }
  2896. .img-fluid {
  2897. max-width: 100%;
  2898. height: auto;
  2899. }
  2900. .d-flex {
  2901. display: flex !important;
  2902. }
  2903. .d-inline-flex {
  2904. display: inline-flex !important;
  2905. }
  2906. .flex-row {
  2907. flex-direction: row !important;
  2908. }
  2909. .justify-content-center {
  2910. justify-content: center !important;
  2911. }
  2912. .float-start {
  2913. float: left !important;
  2914. }
  2915. .text-start {
  2916. text-align: left !important;
  2917. }
  2918. .text-end {
  2919. text-align: right !important;
  2920. }
  2921. .text-center {
  2922. text-align: center !important;
  2923. }
  2924. .post-title {
  2925. text-align: center;
  2926. }
  2927. .mt-1 {
  2928. margin-top: 0.25rem !important;
  2929. }
  2930. .mt-2 {
  2931. margin-top: 0.5rem !important;
  2932. }
  2933. .mt-3 {
  2934. margin-top: 1rem !important;
  2935. }
  2936. .mt-4 {
  2937. margin-top: 1.5rem !important;
  2938. }
  2939. .mt-5 {
  2940. margin-top: 3rem !important;
  2941. }
  2942. .mb-1 {
  2943. margin-bottom: 0.25rem !important;
  2944. }
  2945. .mb-2 {
  2946. margin-bottom: 0.5rem !important;
  2947. }
  2948. .mb-3 {
  2949. margin-bottom: 1rem !important;
  2950. }
  2951. .mb-4 {
  2952. margin-bottom: 1.5rem !important;
  2953. }
  2954. .mb-5 {
  2955. margin-bottom: 3rem !important;
  2956. }
  2957. .ms-1 {
  2958. margin-left: 0.25rem !important;
  2959. }
  2960. .ms-2 {
  2961. margin-left: 0.5rem !important;
  2962. }
  2963. .ms-3 {
  2964. margin-left: 1rem !important;
  2965. }
  2966. .ms-4 {
  2967. margin-left: 1.5rem !important;
  2968. }
  2969. .ms-5 {
  2970. margin-left: 3rem !important;
  2971. }
  2972. .me-1 {
  2973. margin-right: 0.25rem !important;
  2974. }
  2975. .me-2 {
  2976. margin-right: 0.5rem !important;
  2977. }
  2978. .me-3 {
  2979. margin-right: 1rem !important;
  2980. }
  2981. .me-4 {
  2982. margin-right: 1.5rem !important;
  2983. }
  2984. .me-5 {
  2985. margin-right: 3rem !important;
  2986. }
  2987. .p-1 {
  2988. padding: 0.25rem !important;
  2989. }
  2990. .p-2 {
  2991. padding: 0.5rem !important;
  2992. }
  2993. .p-3 {
  2994. padding: 1rem !important;
  2995. }
  2996. .p-4 {
  2997. padding: 1.5rem !important;
  2998. }
  2999. .p-5 {
  3000. padding: 3rem !important;
  3001. }
  3002. .mx-auto {
  3003. margin-right: auto !important;
  3004. margin-left: auto !important;
  3005. }
  3006. .row {
  3007. --bs-gutter-x: 1.5rem;
  3008. --bs-gutter-y: 1rem;
  3009. display: flex;
  3010. flex-wrap: wrap;
  3011. margin-top: calc(var(--bs-gutter-y) * -1);
  3012. margin-right: calc(var(--bs-gutter-x) / -2);
  3013. margin-left: calc(var(--bs-gutter-x) / -2);
  3014. }
  3015. .row > * {
  3016. flex-shrink: 0;
  3017. width: 100%;
  3018. max-width: 100%;
  3019. padding-right: calc(var(--bs-gutter-x) / 2);
  3020. padding-left: calc(var(--bs-gutter-x) / 2);
  3021. margin-top: var(--bs-gutter-y);
  3022. }
  3023. .col {
  3024. flex: 1 0 0%;
  3025. }
  3026. .w-50 {
  3027. width: 50% !important;
  3028. }
  3029. .h-100 {
  3030. height: 100% !important;
  3031. }
  3032. .row-cols-auto > * {
  3033. flex: 0 0 auto;
  3034. width: auto;
  3035. }
  3036. .row-cols-1 > * {
  3037. flex: 0 0 auto;
  3038. width: 100%;
  3039. }
  3040. .row-cols-2 > * {
  3041. flex: 0 0 auto;
  3042. width: 50%;
  3043. }
  3044. .row-cols-3 > * {
  3045. flex: 0 0 auto;
  3046. width: 33.3333333333%;
  3047. }
  3048. .row-cols-4 > * {
  3049. flex: 0 0 auto;
  3050. width: 25%;
  3051. }
  3052. .row-cols-5 > * {
  3053. flex: 0 0 auto;
  3054. width: 20%;
  3055. }
  3056. .row-cols-6 > * {
  3057. flex: 0 0 auto;
  3058. width: 16.6666666667%;
  3059. }
  3060. .d-grid {
  3061. display: grid !important;
  3062. }
  3063. @media (min-width: 576px) {
  3064. .col-sm {
  3065. flex: 1 0 0%;
  3066. }
  3067. .row-cols-sm-auto > * {
  3068. flex: 0 0 auto;
  3069. width: auto;
  3070. }
  3071. .row-cols-sm-1 > * {
  3072. flex: 0 0 auto;
  3073. width: 100%;
  3074. }
  3075. .row-cols-sm-2 > * {
  3076. flex: 0 0 auto;
  3077. width: 50%;
  3078. }
  3079. .row-cols-sm-3 > * {
  3080. flex: 0 0 auto;
  3081. width: 33.3333333333%;
  3082. }
  3083. .row-cols-sm-4 > * {
  3084. flex: 0 0 auto;
  3085. width: 25%;
  3086. }
  3087. .row-cols-sm-5 > * {
  3088. flex: 0 0 auto;
  3089. width: 20%;
  3090. }
  3091. .row-cols-sm-6 > * {
  3092. flex: 0 0 auto;
  3093. width: 16.6666666667%;
  3094. }
  3095. .p-sm-1 {
  3096. padding: 0.25rem !important;
  3097. }
  3098. .p-sm-2 {
  3099. padding: 0.5rem !important;
  3100. }
  3101. .p-sm-3 {
  3102. padding: 1rem !important;
  3103. }
  3104. .p-sm-4 {
  3105. padding: 1.5rem !important;
  3106. }
  3107. .p-sm-5 {
  3108. padding: 3rem !important;
  3109. }
  3110. }
  3111. @media (min-width: 992px) {
  3112. .col-lg {
  3113. flex: 1 0 0%;
  3114. }
  3115. .row-cols-lg-auto > * {
  3116. flex: 0 0 auto;
  3117. width: auto;
  3118. }
  3119. .row-cols-lg-1 > * {
  3120. flex: 0 0 auto;
  3121. width: 100%;
  3122. }
  3123. .row-cols-lg-2 > * {
  3124. flex: 0 0 auto;
  3125. width: 50%;
  3126. }
  3127. .row-cols-lg-3 > * {
  3128. flex: 0 0 auto;
  3129. width: 33.3333333333%;
  3130. }
  3131. .row-cols-lg-4 > * {
  3132. flex: 0 0 auto;
  3133. width: 25%;
  3134. }
  3135. .row-cols-lg-5 > * {
  3136. flex: 0 0 auto;
  3137. width: 20%;
  3138. }
  3139. .row-cols-lg-6 > * {
  3140. flex: 0 0 auto;
  3141. width: 16.6666666667%;
  3142. }
  3143. .row-cols-lg-6 > * {
  3144. flex: 0 0 auto;
  3145. width: 14.2857142857%;
  3146. }
  3147. }
  3148. @media (min-width: 1400px) {
  3149. .col-xxl {
  3150. flex: 1 0 0%;
  3151. }
  3152. .row-cols-xxl-auto > * {
  3153. flex: 0 0 auto;
  3154. width: auto;
  3155. }
  3156. .row-cols-xxl-1 > * {
  3157. flex: 0 0 auto;
  3158. width: 100%;
  3159. }
  3160. .row-cols-xxl-2 > * {
  3161. flex: 0 0 auto;
  3162. width: 50%;
  3163. }
  3164. .row-cols-xxl-3 > * {
  3165. flex: 0 0 auto;
  3166. width: 33.3333333333%;
  3167. }
  3168. .row-cols-xxl-4 > * {
  3169. flex: 0 0 auto;
  3170. width: 25%;
  3171. }
  3172. .row-cols-xxl-5 > * {
  3173. flex: 0 0 auto;
  3174. width: 20%;
  3175. }
  3176. .row-cols-xxl-6 > * {
  3177. flex: 0 0 auto;
  3178. width: 16.6666666667%;
  3179. }
  3180. }
  3181. .toggle,
  3182. [id^=drop] {
  3183. display: none;
  3184. }
  3185. /* Giving a background-color to the nav container. */
  3186. nav {
  3187. margin:0;
  3188. padding: 0;
  3189. background-color: #FFFFFF;
  3190. }
  3191. #logo {
  3192. display: block;
  3193. padding: 0 30px;
  3194. float: left;
  3195. font-size:20px;
  3196. /* line-height: 60px; */
  3197. color: #FFF;
  3198. }
  3199. /* Since we'll have the "ul li" "float:left"
  3200. * we need to add a clear after the container. */
  3201. nav:after {
  3202. content:"";
  3203. display:table;
  3204. clear:both;
  3205. }
  3206. /* Removing padding, margin and "list-style" from the "ul",
  3207. * and adding "position:reltive" */
  3208. nav ul {
  3209. float: right;
  3210. padding:0;
  3211. margin:0;
  3212. list-style: none;
  3213. position: relative;
  3214. }
  3215. /* Positioning the navigation items inline */
  3216. nav ul li {
  3217. margin: 0px;
  3218. // display:inline-block;
  3219. float: left;
  3220. background-color: #FFFFFF;
  3221. }
  3222. /* Styling the links */
  3223. nav a {
  3224. display:block;
  3225. padding:14px 20px;
  3226. color:#656565;
  3227. font-size:12pt;
  3228. font-weight: 400;
  3229. text-decoration:none;
  3230. }
  3231. /* nav ul li ul li:hover { background: #000000; } */
  3232. /* Background color change on Hover */
  3233. nav a:hover {
  3234. /* background-color: #000000; */
  3235. color: #78AD42;
  3236. text-decoration:none;
  3237. }
  3238. /* Hide Dropdowns by Default
  3239. * and giving it a position of absolute */
  3240. nav ul ul {
  3241. display: none;
  3242. position: absolute;
  3243. /* has to be the same number as the "line-height" of "nav a" */
  3244. /* top: 60px; */
  3245. top: 50px;
  3246. }
  3247. /* Display Dropdowns on Hover */
  3248. nav ul li:hover > ul {
  3249. display:inherit;
  3250. }
  3251. /* Fisrt Tier Dropdown */
  3252. nav ul ul li {
  3253. width:170px;
  3254. float:none;
  3255. display:list-item;
  3256. position: relative;
  3257. }
  3258. /* Second, Third and more Tiers
  3259. * We move the 2nd and 3rd etc tier dropdowns to the left
  3260. * by the amount of the width of the first tier.
  3261. */
  3262. nav ul ul ul li {
  3263. position: relative;
  3264. top:-60px;
  3265. /* has to be the same number as the "width" of "nav ul ul li" */
  3266. left:170px;
  3267. }
  3268. /* Change ' +' in order to change the Dropdown symbol */
  3269. li > a:after { content: ' +'; }
  3270. li > a:only-child:after { content: ''; }
  3271. /* Media Queries
  3272. --------------------------------------------- */
  3273. @media all and (max-width : 768px) {
  3274. #logo {
  3275. display: block;
  3276. padding: 0;
  3277. width: 100%;
  3278. text-align: center;
  3279. float: none;
  3280. }
  3281. nav {
  3282. margin: 0;
  3283. }
  3284. /* Hide the navigation menu by default */
  3285. /* Also hide the */
  3286. .toggle + a,
  3287. .menu {
  3288. display: none;
  3289. }
  3290. /* Stylinf the toggle lable */
  3291. .toggle {
  3292. display: block;
  3293. /* background-color: #FFFFFF; */
  3294. padding: 14px 20px;
  3295. color:#656565;
  3296. font-size:17px;
  3297. text-decoration:none;
  3298. border:none;
  3299. }
  3300. .toggle:hover {
  3301. /* background-color: #000000; */
  3302. color:#78AD42;
  3303. }
  3304. /* Display Dropdown when clicked on Parent Lable */
  3305. [id^=drop]:checked + ul {
  3306. display: block;
  3307. }
  3308. /* Change menu item's width to 100% */
  3309. nav ul li {
  3310. display: block;
  3311. width: 100%;
  3312. font-weight: 600;
  3313. }
  3314. nav ul ul .toggle,
  3315. nav ul ul a {
  3316. padding: 0 40px;
  3317. }
  3318. nav ul ul ul a {
  3319. padding: 0 80px;
  3320. }
  3321. nav a:hover,
  3322. nav ul ul ul a {
  3323. background-color: #000000;
  3324. }
  3325. nav ul li ul li .toggle,
  3326. nav ul ul a,
  3327. nav ul ul ul a {
  3328. padding:14px 20px;
  3329. color:#FFF;
  3330. font-size:17px;
  3331. }
  3332. nav ul li ul li .toggle,
  3333. nav ul ul a {
  3334. background-color: #212121;
  3335. }
  3336. /* Hide Dropdowns by Default */
  3337. nav ul ul {
  3338. float: none;
  3339. position:static;
  3340. color: #ffffff;
  3341. /* has to be the same number as the "line-height" of "nav a" */
  3342. }
  3343. /* Hide menus on hover */
  3344. nav ul ul li:hover > ul,
  3345. nav ul li:hover > ul {
  3346. display: none;
  3347. }
  3348. /* Fisrt Tier Dropdown */
  3349. nav ul ul li {
  3350. display: block;
  3351. width: 100%;
  3352. }
  3353. nav ul ul ul li {
  3354. position: static;
  3355. /* has to be the same number as the "width" of "nav ul ul li" */
  3356. }
  3357. }
  3358. @media all and (max-width : 330px) {
  3359. nav ul li {
  3360. display:block;
  3361. width: 94%;
  3362. }
  3363. }
  3364. .widget {
  3365. margin-bottom: 30px;
  3366. padding-bottom: 35px;
  3367. }
  3368. .widget .widget-title {
  3369. margin-bottom: 15px;
  3370. padding-bottom: 10px;
  3371. font-size: 16px;
  3372. color: #333;
  3373. font-weight: 500;
  3374. border-bottom: 1px solid #dedede;
  3375. }
  3376. .widget.widget-latest-post .media .media-object {
  3377. width: 100px;
  3378. height: auto;
  3379. }
  3380. .widget.widget-latest-post .media .media-heading a {
  3381. color: #000;
  3382. font-size: 16px;
  3383. }
  3384. .widget.widget-latest-post .media p {
  3385. font-size: 12px;
  3386. color: #808080;
  3387. }
  3388. .widget.widget-category ul li {
  3389. margin-bottom: 10px;
  3390. }
  3391. .widget.widget-category ul li a {
  3392. color: #837f7e;
  3393. -webkit-transition: all 0.3s ease;
  3394. transition: all 0.3s ease;
  3395. }
  3396. .widget.widget-category ul li a:before {
  3397. padding-right: 10px;
  3398. }
  3399. .widget.widget-category ul li a:hover {
  3400. color: #655E7A;
  3401. padding-left: 5px;
  3402. }
  3403. .widget.widget-tag ul li {
  3404. margin-bottom: 10px;
  3405. display: inline-block;
  3406. margin-right: 5px;
  3407. }
  3408. .widget.widget-tag ul li a {
  3409. color: #837f7e;
  3410. display: inline-block;
  3411. padding: 8px 15px;
  3412. border: 1px solid #dedede;
  3413. border-radius: 30px;
  3414. font-size: 14px;
  3415. -webkit-transition: all 0.3s ease;
  3416. transition: all 0.3s ease;
  3417. }
  3418. .widget.widget-tag ul li a:hover {
  3419. color: #fff;
  3420. background: #655E7A;
  3421. border: 1px solid #655E7A;
  3422. }
  3423. .list-group {
  3424. display: flex;
  3425. flex-direction: column;
  3426. padding-left: 0;
  3427. margin-bottom: 0;
  3428. border-radius: 0.25rem;
  3429. }
  3430. .list-group-item {
  3431. position: relative;
  3432. display: block;
  3433. padding: 0.5rem 1rem;
  3434. text-decoration: none;
  3435. background-color: #fff;
  3436. border: 1px solid rgba(0, 0, 0, 0.125);
  3437. }
  3438. .list-group-item.active {
  3439. z-index: 2;
  3440. color: #fff;
  3441. background-color: #496A81;
  3442. border-color: #496A81;
  3443. }
  3444. .d-none {
  3445. display: none !important;
  3446. }
  3447. .d-block {
  3448. display: block !important;
  3449. }
  3450. @media (min-width: 576px) {
  3451. .d-sm-block {
  3452. display: block !important;
  3453. }
  3454. }
  3455. @media (min-width: 768px) {
  3456. .d-md-block {
  3457. display: block !important;
  3458. }
  3459. .d-md-none {
  3460. display: none !important;
  3461. }
  3462. }
  3463. @media (min-width: 992px) {
  3464. .d-lg-none {
  3465. display: none !important;
  3466. }
  3467. }
  3468. input[type="radio"][class="style"]:checked + label {
  3469. color:white;
  3470. background:#6666ff;
  3471. }
  3472. .align-items-center {
  3473. align-items: center !important;
  3474. }
  3475. .order-1 {
  3476. order: 1 !important;
  3477. }
  3478. .order-2 {
  3479. order: 2 !important;
  3480. }
  3481. .title {
  3482. font-size: 1.3rem;
  3483. }
  3484. .footer {
  3485. color:#656565;
  3486. a {
  3487. color:#656565;
  3488. text-decoration:none;
  3489. &:hover {
  3490. color: #78AD42;
  3491. }
  3492. }
  3493. h3 {
  3494. color: black;
  3495. font-weight: 600;
  3496. padding-bottom: 20px;
  3497. }
  3498. .link {
  3499. padding-bottom: 20px;
  3500. }
  3501. }
  3502. @media (min-width: 992px) {
  3503. .order-lg-1 {
  3504. order: 1 !important;
  3505. }
  3506. .order-lg-2 {
  3507. order: 2 !important;
  3508. }
  3509. }
  3510. /* Airspace Template SCSS */
  3511. @mixin tablet{
  3512. @media(max-width:768px) {
  3513. @content;
  3514. }
  3515. }
  3516. .w-25 {
  3517. width: 25% !important;
  3518. }
  3519. .w-50 {
  3520. width: 50% !important;
  3521. }
  3522. .w-75 {
  3523. width: 75% !important;
  3524. }
  3525. .w-100 {
  3526. width: 100% !important;
  3527. }
  3528. @import 'templates/_mixins.scss';
  3529. @import 'templates/_section.scss';
  3530. @import 'templates/_common.scss';
  3531. @import 'templates/_background-image.scss';
  3532. @import 'templates/_page-title.scss';
  3533. @import 'templates/_home.scss';