chuz.css 95 KB

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