chuz.css 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064
  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. }
  2060. .card > hr {
  2061. margin-right: 0;
  2062. margin-left: 0;
  2063. }
  2064. .card > .list-group {
  2065. border-top: inherit;
  2066. border-bottom: inherit;
  2067. }
  2068. .card > .list-group:first-child {
  2069. border-top-width: 0;
  2070. border-top-left-radius: calc(0.25rem - 1px);
  2071. border-top-right-radius: calc(0.25rem - 1px);
  2072. }
  2073. .card > .list-group:last-child {
  2074. border-bottom-width: 0;
  2075. border-bottom-right-radius: calc(0.25rem - 1px);
  2076. border-bottom-left-radius: calc(0.25rem - 1px);
  2077. }
  2078. .card > .card-header + .list-group,
  2079. .card > .list-group + .card-footer {
  2080. border-top: 0;
  2081. }
  2082. .card-body {
  2083. -webkit-box-flex: 1;
  2084. -ms-flex: 1 1 auto;
  2085. flex: 1 1 auto;
  2086. padding: 1rem 1rem;
  2087. }
  2088. .card-title {
  2089. margin-bottom: 0.5rem;
  2090. }
  2091. .card-subtitle {
  2092. margin-top: -0.25rem;
  2093. margin-bottom: 0;
  2094. }
  2095. .card-text:last-child {
  2096. margin-bottom: 0;
  2097. }
  2098. .card-link:hover {
  2099. text-decoration: none;
  2100. }
  2101. .card-link + .card-link {
  2102. margin-left: 1rem;
  2103. }
  2104. .card-header {
  2105. padding: 0.5rem 1rem;
  2106. margin-bottom: 0;
  2107. background-color: rgba(0, 0, 0, 0.03);
  2108. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  2109. }
  2110. .card-footer {
  2111. padding: 0.5rem 1rem;
  2112. background-color: rgba(0, 0, 0, 0.03);
  2113. border-top: 1px solid rgba(0, 0, 0, 0.125);
  2114. }
  2115. .card-header-tabs {
  2116. margin-right: -0.5rem;
  2117. margin-bottom: -0.5rem;
  2118. margin-left: -0.5rem;
  2119. border-bottom: 0;
  2120. }
  2121. .card-header-pills {
  2122. margin-right: -0.5rem;
  2123. margin-left: -0.5rem;
  2124. }
  2125. .card-img-overlay {
  2126. position: absolute;
  2127. top: 0;
  2128. right: 0;
  2129. bottom: 0;
  2130. left: 0;
  2131. padding: 1rem;
  2132. }
  2133. .card-img,
  2134. .card-img-top,
  2135. .card-img-bottom {
  2136. width: 100%;
  2137. }
  2138. .pagination {
  2139. display: -webkit-box;
  2140. display: -ms-flexbox;
  2141. display: flex;
  2142. padding-left: 0;
  2143. list-style: none;
  2144. border-radius: .25rem;
  2145. }
  2146. .page-link {
  2147. position: relative;
  2148. display: block;
  2149. padding: .5rem .75rem;
  2150. margin-left: -1px;
  2151. line-height: 1.25;
  2152. }
  2153. @media all {
  2154. .page-link {
  2155. color: #f8f9fa;
  2156. background: #212529;
  2157. border: 1px solid #495057;
  2158. }
  2159. }
  2160. .page-link:hover {
  2161. z-index: 2;
  2162. text-decoration: none;
  2163. }
  2164. @media all {
  2165. .page-link:hover {
  2166. color: #cbd3da;
  2167. background: #343a40;
  2168. border-color: #495057;
  2169. }
  2170. }
  2171. .page-link:focus {
  2172. z-index: 3;
  2173. outline: 0;
  2174. -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  2175. box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.25);
  2176. }
  2177. .page-item:first-child .page-link {
  2178. margin-left: 0;
  2179. border-top-left-radius: .25rem;
  2180. border-bottom-left-radius: .25rem;
  2181. }
  2182. .page-item:last-child .page-link {
  2183. border-top-right-radius: .25rem;
  2184. border-bottom-right-radius: .25rem;
  2185. }
  2186. .page-item.active .page-link {
  2187. z-index: 3;
  2188. }
  2189. @media all {
  2190. .page-item.active .page-link {
  2191. color: #212529;
  2192. background: #0084b4;
  2193. border-color: #0084b4;
  2194. }
  2195. }
  2196. .page-item.disabled .page-link {
  2197. pointer-events: none;
  2198. cursor: auto;
  2199. }
  2200. @media all {
  2201. .page-item.disabled .page-link {
  2202. color: #ced4da;
  2203. background: #212529;
  2204. border-color: #495057;
  2205. }
  2206. }
  2207. .badge {
  2208. display: inline-block;
  2209. padding: .25em .4em;
  2210. font-weight: 400;
  2211. line-height: 1;
  2212. text-align: center;
  2213. white-space: nowrap;
  2214. vertical-align: baseline;
  2215. font-size: 95%;
  2216. border-radius: .25rem;
  2217. }
  2218. a.badge:hover,
  2219. a.badge:focus {
  2220. text-decoration: none;
  2221. }
  2222. .badge:empty {
  2223. display: none;
  2224. }
  2225. .btn .badge {
  2226. position: relative;
  2227. top: -2px;
  2228. font-size: 60%;
  2229. }
  2230. .badge-pill {
  2231. padding-right: .6em;
  2232. padding-left: .6em;
  2233. border-radius: 10rem;
  2234. }
  2235. .badge-primary {
  2236. color: #fff;
  2237. background: #0084b4;
  2238. }
  2239. a.badge-primary:hover,
  2240. a.badge-primary:focus {
  2241. color: #fff;
  2242. background: #005f81;
  2243. }
  2244. a.badge-primary:focus,
  2245. a.badge-primary.focus {
  2246. outline: 0;
  2247. -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.5);
  2248. box-shadow: 0 0 0 0.2rem rgba(0, 132, 180, 0.5);
  2249. }
  2250. .badge-secondary {
  2251. color: #fff;
  2252. background: #6c757d;
  2253. }
  2254. a.badge-secondary:hover,
  2255. a.badge-secondary:focus {
  2256. color: #fff;
  2257. background: #545b62;
  2258. }
  2259. a.badge-secondary:focus,
  2260. a.badge-secondary.focus {
  2261. outline: 0;
  2262. -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2263. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2264. }
  2265. .badge-success {
  2266. color: #fff;
  2267. background: #28a745;
  2268. }
  2269. a.badge-success:hover,
  2270. a.badge-success:focus {
  2271. color: #fff;
  2272. background: #1e7e34;
  2273. }
  2274. a.badge-success:focus,
  2275. a.badge-success.focus {
  2276. outline: 0;
  2277. -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2278. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2279. }
  2280. .badge-info {
  2281. color: #fff;
  2282. background: #17a2b8;
  2283. }
  2284. a.badge-info:hover,
  2285. a.badge-info:focus {
  2286. color: #fff;
  2287. background: #117a8b;
  2288. }
  2289. a.badge-info:focus,
  2290. a.badge-info.focus {
  2291. outline: 0;
  2292. -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2293. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2294. }
  2295. .badge-warning {
  2296. color: #212529;
  2297. background: beige;
  2298. }
  2299. a.badge-warning:hover,
  2300. a.badge-warning:focus {
  2301. color: #212529;
  2302. background: #eaeab4;
  2303. }
  2304. a.badge-warning:focus,
  2305. a.badge-warning.focus {
  2306. outline: 0;
  2307. -webkit-box-shadow: 0 0 0 0.2rem rgba(245, 245, 220, 0.5);
  2308. box-shadow: 0 0 0 0.2rem rgba(245, 245, 220, 0.5);
  2309. }
  2310. .badge-danger {
  2311. color: #fff;
  2312. background: #dc3545;
  2313. }
  2314. a.badge-danger:hover,
  2315. a.badge-danger:focus {
  2316. color: #fff;
  2317. background: #bd2130;
  2318. }
  2319. a.badge-danger:focus,
  2320. a.badge-danger.focus {
  2321. outline: 0;
  2322. -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2323. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2324. }
  2325. .badge-light {
  2326. color: #212529;
  2327. background: #dee2e6;
  2328. }
  2329. a.badge-light:hover,
  2330. a.badge-light:focus {
  2331. color: #212529;
  2332. background: #c1c9d0;
  2333. }
  2334. a.badge-light:focus,
  2335. a.badge-light.focus {
  2336. outline: 0;
  2337. -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 226, 230, 0.5);
  2338. box-shadow: 0 0 0 0.2rem rgba(222, 226, 230, 0.5);
  2339. }
  2340. .badge-dark {
  2341. color: #fff;
  2342. background: #212529;
  2343. }
  2344. a.badge-dark:hover,
  2345. a.badge-dark:focus {
  2346. color: #fff;
  2347. background: #0a0c0d;
  2348. }
  2349. a.badge-dark:focus,
  2350. a.badge-dark.focus {
  2351. outline: 0;
  2352. -webkit-box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5);
  2353. box-shadow: 0 0 0 0.2rem rgba(33, 37, 41, 0.5);
  2354. }
  2355. header {
  2356. width: 100%;
  2357. z-index: 99999;
  2358. top: 0px;
  2359. }
  2360. @media all {
  2361. header.full-width {
  2362. background: #212529;
  2363. }
  2364. }
  2365. header.fixed {
  2366. position: fixed;
  2367. }
  2368. .mega-menu .header {
  2369. -webkit-box-flex: 0;
  2370. -ms-flex: 0 0 100%;
  2371. flex: 0 0 100%;
  2372. max-width: 100%;
  2373. -webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  2374. box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  2375. }
  2376. .mega-menu .header .container {
  2377. padding-right: 0px;
  2378. padding-left: 0px;
  2379. }
  2380. .mega-menu .row-header,
  2381. .mega-menu .row-stage {
  2382. display: -webkit-box;
  2383. display: -ms-flexbox;
  2384. display: flex;
  2385. -ms-flex-wrap: wrap;
  2386. flex-wrap: wrap;
  2387. }
  2388. .mega-menu .logo {
  2389. top: 2px;
  2390. position: relative;
  2391. margin-left: 40px;
  2392. }
  2393. .mega-menu .img-logo {
  2394. position: absolute;
  2395. }
  2396. @media (min-width: 768px) {
  2397. .mega-menu .img-logo {
  2398. top: 12px;
  2399. }
  2400. }
  2401. @media (max-width: 991.98px) {
  2402. .mega-menu .img-logo {
  2403. top: 18px;
  2404. }
  2405. }
  2406. .mega-menu li,
  2407. .mega-menu ol,
  2408. .mega-menu ul {
  2409. padding: 0;
  2410. }
  2411. .mega-menu #mobile:checked + .main-menu {
  2412. display: block;
  2413. }
  2414. .mega-menu #mobile-menu {
  2415. position: relative;
  2416. display: block;
  2417. padding: 16px;
  2418. cursor: pointer;
  2419. }
  2420. .mega-menu #mobile-menu span.main-menu-dropdown-icon {
  2421. bottom: 0;
  2422. width: 50px;
  2423. cursor: pointer;
  2424. }
  2425. .mega-menu #mobile-menu .main-menu-dropdown-icon,
  2426. .mega-menu #mobile-menu span.main-menu-dropdown-icon {
  2427. position: absolute;
  2428. top: 0;
  2429. right: 0;
  2430. }
  2431. .mega-menu .main-menu {
  2432. z-index: 100;
  2433. margin: auto;
  2434. }
  2435. .mega-menu .main-menu:after,
  2436. .mega-menu .main-menu:before {
  2437. content: "";
  2438. display: table;
  2439. clear: both;
  2440. }
  2441. .mega-menu .main-menu a {
  2442. text-decoration: none;
  2443. }
  2444. .mega-menu .main-menu li {
  2445. position: relative;
  2446. display: block;
  2447. }
  2448. @media all {
  2449. .mega-menu .main-menu li {
  2450. border-top: 1px solid #343a40;
  2451. }
  2452. }
  2453. .mega-menu .main-menu .main-menu {
  2454. display: none;
  2455. max-height: 100%;
  2456. }
  2457. .mega-menu .main-menu .main-menu-dropdown-list {
  2458. display: none;
  2459. }
  2460. .mega-menu .main-menu .main-menu-dropdown-list:not(.main-menu-dropdown-megamenu) a,
  2461. .mega-menu .main-menu .main-menu-dropdown-list:not(.main-menu-dropdown-shop) a {
  2462. -webkit-transition: -webkit-transform 0.25s ease-out;
  2463. transition: -webkit-transform 0.25s ease-out;
  2464. transition: transform 0.25s ease-out;
  2465. transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
  2466. -webkit-transform: translate3d(0, 0, 0);
  2467. transform: translate3d(0, 0, 0);
  2468. }
  2469. .mega-menu .main-menu .main-menu-dropdown-list:not(.main-menu-dropdown-megamenu) a:hover,
  2470. .mega-menu .main-menu .main-menu-dropdown-list:not(.main-menu-dropdown-shop) a:hover {
  2471. -webkit-transform: translate3d(3px, 0, 0);
  2472. transform: translate3d(3px, 0, 0);
  2473. }
  2474. .mega-menu .main-menu .main-menu-dropdown-list.main-menu-dropdown-megamenu li:first-child {
  2475. font-weight: 700;
  2476. border-bottom: 1px solid #dee2e6;
  2477. }
  2478. .mega-menu .main-menu .main-menu-dropdown-list.main-menu-dropdown-megamenu li {
  2479. border: none;
  2480. }
  2481. .mega-menu .main-menu .main-menu-dropdown-item-subtitle {
  2482. font-size: .75rem;
  2483. text-indent: 10px;
  2484. margin-left: 10px;
  2485. }
  2486. .mega-menu .main-menu input[type=checkbox]:checked + .main-menu-dropdown-list {
  2487. display: block;
  2488. }
  2489. .mega-menu .main-menu input[type=checkbox],
  2490. .mega-menu .main-menu ul span.main-menu-dropdown-icon {
  2491. display: none;
  2492. }
  2493. .mega-menu .main-menu label {
  2494. margin-bottom: 0;
  2495. }
  2496. .mega-menu .main-menu label.main-menu-dropdown-icon {
  2497. width: 100%;
  2498. height: 50px;
  2499. cursor: pointer;
  2500. z-index: 10;
  2501. }
  2502. .mega-menu .main-menu label.main-menu-dropdown-icon,
  2503. .mega-menu .main-menu li label.main-menu-dropdown-icon {
  2504. position: absolute;
  2505. top: 0;
  2506. right: 0;
  2507. }
  2508. .mega-menu .main-menu > ul > li {
  2509. cursor: pointer;
  2510. }
  2511. .mega-menu .main-menu > ul > li a {
  2512. overflow: hidden;
  2513. text-overflow: ellipsis;
  2514. white-space: nowrap;
  2515. padding: 16px;
  2516. cursor: pointer;
  2517. position: relative;
  2518. display: block;
  2519. }
  2520. .mega-menu .main-menu .tip {
  2521. padding: 2px 5px;
  2522. background: #0084b4;
  2523. color: white;
  2524. text-shadow: none;
  2525. border-radius: 3px;
  2526. left: 10px;
  2527. position: relative;
  2528. text-transform: uppercase;
  2529. font-size: .75rem;
  2530. top: -2px;
  2531. }
  2532. .mega-menu .main-menu .tip:before {
  2533. right: 100%;
  2534. top: 50%;
  2535. border: solid transparent;
  2536. content: " ";
  2537. height: 0;
  2538. width: 0;
  2539. position: absolute;
  2540. pointer-events: none;
  2541. border-color: rgba(255, 255, 255, 0);
  2542. border-right-color: #0084b4;
  2543. border-width: 5px;
  2544. margin-top: -5px;
  2545. }
  2546. .mega-menu .main-menu .notification-info {
  2547. position: absolute;
  2548. width: 100%;
  2549. text-align: center;
  2550. top: 50%;
  2551. margin-top: -4px;
  2552. left: 0;
  2553. padding: 0;
  2554. display: block;
  2555. line-height: 1;
  2556. }
  2557. .mega-menu .main-menu .notification-info .notification-qty {
  2558. position: absolute;
  2559. top: -12px;
  2560. right: 10px;
  2561. width: 15px;
  2562. height: 15px;
  2563. display: block;
  2564. font-size: .75rem;
  2565. color: white;
  2566. background-color: red;
  2567. text-align: center;
  2568. line-height: 15px;
  2569. border-radius: 20px;
  2570. }
  2571. @media (max-width: 1199.98px) {
  2572. .header .main-menu .logo {
  2573. top: 3px;
  2574. }
  2575. .header .main-menu span.logo {
  2576. top: 1px;
  2577. }
  2578. .header .main-menu .fa {
  2579. min-width: 25px;
  2580. }
  2581. }
  2582. @media (max-width: 1199.98px) {
  2583. .header .main-menu .active {
  2584. color: #f8f9fa;
  2585. background: #212529;
  2586. }
  2587. }
  2588. @media (max-width: 1199.98px) {
  2589. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list {
  2590. background: #212529;
  2591. }
  2592. }
  2593. @media (max-width: 1199.98px) {
  2594. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li .main-menu-dropdown-item-subtitle {
  2595. text-indent: 30px;
  2596. margin-left: 30px;
  2597. }
  2598. }
  2599. @media (max-width: 1199.98px) {
  2600. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a {
  2601. color: #f8f9fa;
  2602. }
  2603. }
  2604. @media (max-width: 1199.98px) {
  2605. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li a {
  2606. color: #f8f9fa;
  2607. }
  2608. }
  2609. @media (max-width: 1199.98px) {
  2610. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li a:hover {
  2611. background: #212529;
  2612. }
  2613. }
  2614. @media (max-width: 1199.98px) {
  2615. .header .main-menu li:hover a,
  2616. .header .main-menu li:active a {
  2617. border-left: 3px solid #0084b4;
  2618. }
  2619. .header .main-menu .main-menu-dropdown-list li {
  2620. text-indent: 15px;
  2621. }
  2622. .header .main-menu .main-menu-dropdown-list li ul li {
  2623. text-indent: 30px;
  2624. }
  2625. .header .main-menu .main-menu-dropdown-list li ul li ul li {
  2626. text-indent: 45px;
  2627. }
  2628. .header .main-menu .main-menu-logo {
  2629. display: none;
  2630. padding: 0;
  2631. margin: 0;
  2632. }
  2633. .header .main-menu .notification-info .notification-qty {
  2634. position: absolute;
  2635. top: -3px;
  2636. right: 15px;
  2637. }
  2638. }
  2639. @media (min-width: 992px) {
  2640. .header .main-menu {
  2641. background: #212529;
  2642. border-top: 1px solid #343a40;
  2643. border-bottom: 1px solid #212529;
  2644. }
  2645. }
  2646. @media (min-width: 992px) {
  2647. .header .main-menu .logo {
  2648. font-weight: 400;
  2649. }
  2650. }
  2651. @media (min-width: 992px) {
  2652. .header .main-menu li:not(:last-child) {
  2653. border-left: 1px solid #212529;
  2654. border-right: 1px solid #212529;
  2655. }
  2656. }
  2657. @media (min-width: 992px) {
  2658. .header .main-menu a,
  2659. .header .main-menu i {
  2660. color: #f8f9fa;
  2661. }
  2662. }
  2663. @media (min-width: 992px) {
  2664. .header .main-menu .fa {
  2665. margin-right: 5px;
  2666. }
  2667. }
  2668. @media (min-width: 992px) {
  2669. .header .main-menu .active,
  2670. .header .main-menu .active > i {
  2671. color: #fff;
  2672. background: #0084b4;
  2673. }
  2674. }
  2675. @media (min-width: 992px) {
  2676. .header .main-menu .active i,
  2677. .header .main-menu .active > i i {
  2678. color: #dee2e6;
  2679. }
  2680. }
  2681. @media (min-width: 992px) {
  2682. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list {
  2683. margin-top: -3px;
  2684. border-top: 3px solid #0084b4;
  2685. }
  2686. }
  2687. @media (min-width: 992px) {
  2688. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list {
  2689. background: #212529;
  2690. }
  2691. }
  2692. @media (min-width: 992px) {
  2693. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a,
  2694. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i {
  2695. color: #f8f9fa;
  2696. }
  2697. }
  2698. @media (min-width: 992px) {
  2699. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li a,
  2700. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li i,
  2701. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i li a,
  2702. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i li i {
  2703. color: #f8f9fa;
  2704. }
  2705. }
  2706. @media (min-width: 992px) {
  2707. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li a:hover,
  2708. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li a li i:hover,
  2709. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i li a:hover,
  2710. .header .main-menu .main-menu-dropdown .main-menu-dropdown-list li i li i:hover {
  2711. background: #212529;
  2712. }
  2713. }
  2714. @media (min-width: 992px) {
  2715. .header .main-menu li:hover,
  2716. .header .main-menu li:active {
  2717. color: #dee2e6;
  2718. background: #0084b4;
  2719. }
  2720. }
  2721. @media (min-width: 992px) {
  2722. .header .main-menu li:hover a,
  2723. .header .main-menu li:hover i,
  2724. .header .main-menu li:active a,
  2725. .header .main-menu li:active i {
  2726. color: #dee2e6;
  2727. }
  2728. }
  2729. @media (min-width: 992px) {
  2730. .header .main-menu li ul li:hover,
  2731. .header .main-menu li ul li:active {
  2732. background: #212529;
  2733. }
  2734. }
  2735. @media (min-width: 992px) {
  2736. .header .main-menu li ul li:hover a,
  2737. .header .main-menu li ul li:hover i,
  2738. .header .main-menu li ul li:active a,
  2739. .header .main-menu li ul li:active i {
  2740. color: #dee2e6;
  2741. }
  2742. }
  2743. @media (min-width: 992px) {
  2744. .header .main-menu .main-menu {
  2745. display: block;
  2746. }
  2747. .header .main-menu .main-menu-dropdown-item-subtitle {
  2748. text-indent: 10px;
  2749. margin-left: 0;
  2750. }
  2751. .header #mobile-menu {
  2752. display: none;
  2753. }
  2754. .header .main-menu label.main-menu-dropdown-icon {
  2755. display: none;
  2756. }
  2757. .header .main-menu ul span.main-menu-dropdown-icon {
  2758. display: inline-block;
  2759. }
  2760. .header .main-menu li {
  2761. float: left;
  2762. border-width: 0 1px 0 0;
  2763. }
  2764. .header .main-menu .main-menu-dropdown-list {
  2765. border-width: 0;
  2766. margin: 0;
  2767. position: absolute;
  2768. top: 100%;
  2769. left: 0;
  2770. z-index: 100;
  2771. display: none;
  2772. min-width: 250px;
  2773. -webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  2774. box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  2775. }
  2776. .header .main-menu .main-menu-dropdown-list a {
  2777. padding: 10px 15px;
  2778. }
  2779. .header .main-menu .main-menu-dropdown-list li {
  2780. float: none;
  2781. border-width: 1px 0 0;
  2782. }
  2783. .header .main-menu .main-menu-dropdown-list .main-menu-dropdown-list {
  2784. top: 0;
  2785. left: 100%;
  2786. }
  2787. .header .main-menu .main-menu-dropdown-list .main-menu-dropdown-icon {
  2788. position: absolute;
  2789. top: 0;
  2790. right: 0;
  2791. padding: 1em;
  2792. }
  2793. .header .main-menu .main-menu-dropdown-list.main-menu-dropdown-shop {
  2794. min-width: 250px;
  2795. right: 100%;
  2796. left: 54px;
  2797. -webkit-transform: translate(-100%, 0);
  2798. transform: translate(-100%, 0);
  2799. }
  2800. .header .main-menu .main-menu-dropdown-list.main-menu-dropdown-megamenu {
  2801. min-width: 800px;
  2802. left: 50%;
  2803. -webkit-transform: translate(-50%, 0);
  2804. transform: translate(-50%, 0);
  2805. }
  2806. .header .main-menu input[type=checkbox]:checked + .main-menu-dropdown-list {
  2807. display: none;
  2808. }
  2809. .header .main-menu li:hover > input[type=checkbox] + .main-menu-dropdown-list {
  2810. display: block;
  2811. }
  2812. .header .main-menu .main-menu-shop {
  2813. width: 54px;
  2814. }
  2815. .header .main-menu .main-menu-right {
  2816. float: right;
  2817. }
  2818. }
  2819. .header .arrow-down:before,
  2820. .header .arrow-right:before {
  2821. content: "";
  2822. border-style: solid;
  2823. border-color: inherit;
  2824. border-width: 0 1px 1px 0;
  2825. display: inline-block;
  2826. padding: 3px;
  2827. position: absolute;
  2828. top: 50%;
  2829. }
  2830. .header .arrow-down {
  2831. padding-right: 16px;
  2832. }
  2833. .header .arrow-down:before {
  2834. right: 16px;
  2835. -webkit-transform: translate(-50%, -50%) rotate(45deg);
  2836. transform: translate(-50%, -50%) rotate(45deg);
  2837. margin-top: -1px;
  2838. }
  2839. .header .arrow-right:before {
  2840. right: 16px;
  2841. -webkit-transform: rotate(-45deg);
  2842. transform: rotate(-45deg);
  2843. margin-top: 2px;
  2844. }
  2845. .header .main-menu .hamburger {
  2846. position: absolute;
  2847. left: 50%;
  2848. top: 50%;
  2849. -webkit-transform: translate(-50%, -50%);
  2850. transform: translate(-50%, -50%);
  2851. width: 20px;
  2852. height: 1px;
  2853. }
  2854. @media all {
  2855. .header .main-menu .hamburger {
  2856. background: #f8f9fa;
  2857. }
  2858. }
  2859. .header .main-menu .hamburger:after,
  2860. .header .main-menu .hamburger:before {
  2861. position: absolute;
  2862. left: 50%;
  2863. top: 50%;
  2864. -webkit-transform: translate(-50%, -50%);
  2865. transform: translate(-50%, -50%);
  2866. width: 20px;
  2867. height: 1px;
  2868. }
  2869. @media all {
  2870. .header .main-menu .hamburger:after,
  2871. .header .main-menu .hamburger:before {
  2872. background: #f8f9fa;
  2873. }
  2874. }
  2875. .header .main-menu .hamburger:before {
  2876. content: "";
  2877. top: -5px;
  2878. }
  2879. .header .main-menu .hamburger:after {
  2880. content: "";
  2881. top: 7px;
  2882. }
  2883. .tooltip {
  2884. position: relative;
  2885. cursor: pointer;
  2886. z-index: 1050;
  2887. }
  2888. .tooltip::after {
  2889. background-color: #000;
  2890. border-radius: .25rem;
  2891. color: #fff;
  2892. content: attr(data-tooltip-title);
  2893. font-weight: normal;
  2894. min-width: 150px;
  2895. padding: .5rem .75rem;
  2896. text-align: center;
  2897. text-transform: none;
  2898. font-size: .75rem;
  2899. }
  2900. .tooltip:disabled::after {
  2901. content: attr(data-disabled-tooltip-title);
  2902. }
  2903. .tooltip::before {
  2904. width: 0;
  2905. height: 0;
  2906. content: "";
  2907. position: absolute;
  2908. -webkit-transition: opacity 0.3s ease 0ms, -webkit-transform 0.3s ease 0ms;
  2909. transition: opacity 0.3s ease 0ms, -webkit-transform 0.3s ease 0ms;
  2910. transition: opacity 0.3s ease 0ms, transform 0.3s ease 0ms;
  2911. transition: opacity 0.3s ease 0ms, transform 0.3s ease 0ms, -webkit-transform 0.3s ease 0ms;
  2912. -webkit-transform-style: preserve-3d;
  2913. transform-style: preserve-3d;
  2914. opacity: 0;
  2915. z-index: -1;
  2916. }
  2917. .tooltip::after {
  2918. position: absolute;
  2919. -webkit-transition: opacity 0.3s ease 0ms, -webkit-transform 0.3s ease 0ms;
  2920. transition: opacity 0.3s ease 0ms, -webkit-transform 0.3s ease 0ms;
  2921. transition: opacity 0.3s ease 0ms, transform 0.3s ease 0ms;
  2922. transition: opacity 0.3s ease 0ms, transform 0.3s ease 0ms, -webkit-transform 0.3s ease 0ms;
  2923. -webkit-transform-style: preserve-3d;
  2924. transform-style: preserve-3d;
  2925. opacity: 0;
  2926. z-index: -1;
  2927. }
  2928. .tooltip[data-tooltip-position="top"]::before {
  2929. border-left: 7px solid transparent;
  2930. border-right: 7px solid transparent;
  2931. left: 50%;
  2932. -webkit-transform: translate3d(-50%, 10px, 0);
  2933. transform: translate3d(-50%, 10px, 0);
  2934. border-top: 7px solid #000;
  2935. bottom: calc(100% + 3px);
  2936. }
  2937. .tooltip[data-tooltip-position="top"]:hover::before {
  2938. -webkit-transform: translate3d(-50%, 0px, 0);
  2939. transform: translate3d(-50%, 0px, 0);
  2940. }
  2941. .tooltip[data-tooltip-position="top"]::after {
  2942. left: 50%;
  2943. -webkit-transform: translate3d(-50%, 10px, 0);
  2944. transform: translate3d(-50%, 10px, 0);
  2945. bottom: calc(100% + 10px);
  2946. }
  2947. .tooltip[data-tooltip-position="top"]:hover::after {
  2948. -webkit-transform: translate3d(-50%, 0px, 0);
  2949. transform: translate3d(-50%, 0px, 0);
  2950. }
  2951. .tooltip[data-tooltip-position="bottom"]::before {
  2952. border-left: 7px solid transparent;
  2953. border-right: 7px solid transparent;
  2954. left: 50%;
  2955. -webkit-transform: translate3d(-50%, -10px, 0);
  2956. transform: translate3d(-50%, -10px, 0);
  2957. border-bottom: 7px solid #000;
  2958. top: calc(100% + 3px);
  2959. }
  2960. .tooltip[data-tooltip-position="bottom"]:hover::before {
  2961. -webkit-transform: translate3d(-50%, 0px, 0);
  2962. transform: translate3d(-50%, 0px, 0);
  2963. }
  2964. .tooltip[data-tooltip-position="bottom"]::after {
  2965. left: 50%;
  2966. -webkit-transform: translate3d(-50%, -10px, 0);
  2967. transform: translate3d(-50%, -10px, 0);
  2968. top: calc(100% + 10px);
  2969. }
  2970. .tooltip[data-tooltip-position="bottom"]:hover::after {
  2971. -webkit-transform: translate3d(-50%, 0px, 0);
  2972. transform: translate3d(-50%, 0px, 0);
  2973. }
  2974. .tooltip[data-tooltip-position="left"]::before {
  2975. -webkit-transform: translate3d(10px, -50%, 0);
  2976. transform: translate3d(10px, -50%, 0);
  2977. border-left: 7px solid #000;
  2978. right: calc(100% + 3px);
  2979. border-top: 7px solid transparent;
  2980. border-bottom: 7px solid transparent;
  2981. top: 50%;
  2982. }
  2983. .tooltip[data-tooltip-position="left"]:hover::before {
  2984. -webkit-transform: translate3d(0px, -50%, 0);
  2985. transform: translate3d(0px, -50%, 0);
  2986. }
  2987. .tooltip[data-tooltip-position="left"]::after {
  2988. top: 50%;
  2989. -webkit-transform: translate3d(10px, -50%, 0);
  2990. transform: translate3d(10px, -50%, 0);
  2991. right: calc(100% + 10px);
  2992. right: calc(100% + 10px);
  2993. }
  2994. .tooltip[data-tooltip-position="left"]:hover::after {
  2995. -webkit-transform: translate3d(0px, -50%, 0);
  2996. transform: translate3d(0px, -50%, 0);
  2997. }
  2998. .tooltip[data-tooltip-position="right"]::before {
  2999. -webkit-transform: translate3d(-10px, -50%, 0);
  3000. transform: translate3d(-10px, -50%, 0);
  3001. border-right: 7px solid #000;
  3002. left: calc(100% + 3px);
  3003. border-top: 7px solid transparent;
  3004. border-bottom: 7px solid transparent;
  3005. top: 50%;
  3006. }
  3007. .tooltip[data-tooltip-position="right"]:hover::before {
  3008. -webkit-transform: translate3d(0px, -50%, 0);
  3009. transform: translate3d(0px, -50%, 0);
  3010. }
  3011. .tooltip[data-tooltip-position="right"]::after {
  3012. top: 50%;
  3013. -webkit-transform: translate3d(-10px, -50%, 0);
  3014. transform: translate3d(-10px, -50%, 0);
  3015. left: calc(100% + 10px);
  3016. }
  3017. .tooltip[data-tooltip-position="right"]:hover::after {
  3018. -webkit-transform: translate3d(0px, -50%, 0);
  3019. transform: translate3d(0px, -50%, 0);
  3020. }
  3021. .tooltip:hover::before,
  3022. .tooltip:hover::after {
  3023. opacity: 1;
  3024. z-index: 100;
  3025. }
  3026. footer {
  3027. min-height: 220px;
  3028. font-size: .875rem;
  3029. }
  3030. @media all {
  3031. footer {
  3032. color: #fff;
  3033. background: #0084b4;
  3034. }
  3035. }
  3036. .bg-primary {
  3037. background: #0084b4;
  3038. }
  3039. a.bg-primary:hover,
  3040. a.bg-primary:focus,
  3041. button.bg-primary:hover,
  3042. button.bg-primary:focus {
  3043. background: #005f81;
  3044. }
  3045. .bg-secondary {
  3046. background: #6c757d;
  3047. }
  3048. a.bg-secondary:hover,
  3049. a.bg-secondary:focus,
  3050. button.bg-secondary:hover,
  3051. button.bg-secondary:focus {
  3052. background: #545b62;
  3053. }
  3054. .bg-success {
  3055. background: #28a745;
  3056. }
  3057. a.bg-success:hover,
  3058. a.bg-success:focus,
  3059. button.bg-success:hover,
  3060. button.bg-success:focus {
  3061. background: #1e7e34;
  3062. }
  3063. .bg-info {
  3064. background: #17a2b8;
  3065. }
  3066. a.bg-info:hover,
  3067. a.bg-info:focus,
  3068. button.bg-info:hover,
  3069. button.bg-info:focus {
  3070. background: #117a8b;
  3071. }
  3072. .bg-warning {
  3073. background: beige;
  3074. }
  3075. a.bg-warning:hover,
  3076. a.bg-warning:focus,
  3077. button.bg-warning:hover,
  3078. button.bg-warning:focus {
  3079. background: #eaeab4;
  3080. }
  3081. .bg-danger {
  3082. background: #dc3545;
  3083. }
  3084. a.bg-danger:hover,
  3085. a.bg-danger:focus,
  3086. button.bg-danger:hover,
  3087. button.bg-danger:focus {
  3088. background: #bd2130;
  3089. }
  3090. .bg-light {
  3091. background: #dee2e6;
  3092. }
  3093. a.bg-light:hover,
  3094. a.bg-light:focus,
  3095. button.bg-light:hover,
  3096. button.bg-light:focus {
  3097. background: #c1c9d0;
  3098. }
  3099. .bg-dark {
  3100. background: #212529;
  3101. }
  3102. a.bg-dark:hover,
  3103. a.bg-dark:focus,
  3104. button.bg-dark:hover,
  3105. button.bg-dark:focus {
  3106. background: #0a0c0d;
  3107. }
  3108. .clearfix::after {
  3109. display: block;
  3110. clear: both;
  3111. content: "";
  3112. }
  3113. .content2 {
  3114. padding-top: 6rem;
  3115. padding-bottom: 6rem;
  3116. color: #eeeeee;
  3117. background: linear-gradient(135deg, #2bb4c5 0%, #3c5ca2 100%);
  3118. background-image: linear-gradient(135deg, #2bb4c5 0%, #3c5ca2 100%);
  3119. max-width: 100%;
  3120. padding-right: 30px;
  3121. padding-left: 30px;
  3122. text-align: center;
  3123. }
  3124. .content3 {
  3125. padding-top: 6rem;
  3126. padding-bottom: 6rem;
  3127. color: #000000;
  3128. background-color: #f1f4fa;
  3129. max-width: 100%;
  3130. padding-right: 30px;
  3131. padding-left: 30px;
  3132. text-align: center;
  3133. }
  3134. .content4 {
  3135. padding-top: 3rem;
  3136. padding-bottom: 6rem;
  3137. color: #000000;
  3138. background-color: #ffffff;
  3139. max-width: 100%;
  3140. padding-right: 30px;
  3141. padding-left: 30px;
  3142. text-align: left;
  3143. }
  3144. .content-white-left {
  3145. padding-top: 6rem;
  3146. padding-bottom: 6rem;
  3147. color: #000000;
  3148. background-color: #ffffff;
  3149. max-width: 100%;
  3150. padding-right: 30px;
  3151. padding-left: 30px;
  3152. text-align: left;
  3153. }
  3154. .content5 {
  3155. padding-top: 6rem;
  3156. padding-bottom: 6rem;
  3157. color: #eeeeee;
  3158. background: linear-gradient(135deg, #2bb4c5 0%, #3c5ca2 100%);
  3159. background-image: linear-gradient(135deg, #2bb4c5 0%, #3c5ca2 100%);
  3160. max-width: 100%;
  3161. padding-right: 30px;
  3162. padding-left: 30px;
  3163. text-align: left;
  3164. }
  3165. .content-black {
  3166. padding-top: 6rem;
  3167. padding-bottom: 6rem;
  3168. color: #eeeeee;
  3169. background: #232323;
  3170. max-width: 100%;
  3171. padding-right: 30px;
  3172. padding-left: 30px;
  3173. text-align: left;
  3174. }
  3175. .content6 {
  3176. padding-top: 4rem;
  3177. color: #000000;
  3178. background-color: #ffffff;
  3179. max-width: 100%;
  3180. padding-right: 30px;
  3181. padding-left: 30px;
  3182. text-align: left;
  3183. }
  3184. .blog-content {
  3185. color: #808080;
  3186. }
  3187. .related-article a {
  3188. color: #F39C12;
  3189. }
  3190. .img-fluid {
  3191. max-width: 100%;
  3192. height: auto;
  3193. }
  3194. .d-flex {
  3195. display: -webkit-box !important;
  3196. display: -ms-flexbox !important;
  3197. display: flex !important;
  3198. }
  3199. .d-inline-flex {
  3200. display: -webkit-inline-box !important;
  3201. display: -ms-inline-flexbox !important;
  3202. display: inline-flex !important;
  3203. }
  3204. .flex-row {
  3205. -webkit-box-orient: horizontal !important;
  3206. -webkit-box-direction: normal !important;
  3207. -ms-flex-direction: row !important;
  3208. flex-direction: row !important;
  3209. }
  3210. .justify-content-center {
  3211. -webkit-box-pack: center !important;
  3212. -ms-flex-pack: center !important;
  3213. justify-content: center !important;
  3214. }
  3215. .float-start {
  3216. float: left !important;
  3217. }
  3218. .text-start {
  3219. text-align: left !important;
  3220. }
  3221. .text-end {
  3222. text-align: right !important;
  3223. }
  3224. .text-center {
  3225. text-align: center !important;
  3226. }
  3227. .post-title {
  3228. text-align: center;
  3229. }
  3230. .mt-1 {
  3231. margin-top: 0.25rem !important;
  3232. }
  3233. .mt-2 {
  3234. margin-top: 0.5rem !important;
  3235. }
  3236. .mt-3 {
  3237. margin-top: 1rem !important;
  3238. }
  3239. .mt-4 {
  3240. margin-top: 1.5rem !important;
  3241. }
  3242. .mt-5 {
  3243. margin-top: 3rem !important;
  3244. }
  3245. .mb-1 {
  3246. margin-bottom: 0.25rem !important;
  3247. }
  3248. .mb-2 {
  3249. margin-bottom: 0.5rem !important;
  3250. }
  3251. .mb-3 {
  3252. margin-bottom: 1rem !important;
  3253. }
  3254. .mb-4 {
  3255. margin-bottom: 1.5rem !important;
  3256. }
  3257. .mb-5 {
  3258. margin-bottom: 3rem !important;
  3259. }
  3260. .ms-1 {
  3261. margin-left: 0.25rem !important;
  3262. }
  3263. .ms-2 {
  3264. margin-left: 0.5rem !important;
  3265. }
  3266. .ms-3 {
  3267. margin-left: 1rem !important;
  3268. }
  3269. .ms-4 {
  3270. margin-left: 1.5rem !important;
  3271. }
  3272. .ms-5 {
  3273. margin-left: 3rem !important;
  3274. }
  3275. .me-1 {
  3276. margin-right: 0.25rem !important;
  3277. }
  3278. .me-2 {
  3279. margin-right: 0.5rem !important;
  3280. }
  3281. .me-3 {
  3282. margin-right: 1rem !important;
  3283. }
  3284. .me-4 {
  3285. margin-right: 1.5rem !important;
  3286. }
  3287. .me-5 {
  3288. margin-right: 3rem !important;
  3289. }
  3290. .p-1 {
  3291. padding: 0.25rem !important;
  3292. }
  3293. .p-2 {
  3294. padding: 0.5rem !important;
  3295. }
  3296. .p-3 {
  3297. padding: 1rem !important;
  3298. }
  3299. .p-4 {
  3300. padding: 1.5rem !important;
  3301. }
  3302. .p-5 {
  3303. padding: 3rem !important;
  3304. }
  3305. .mx-auto {
  3306. margin-right: auto !important;
  3307. margin-left: auto !important;
  3308. }
  3309. .row {
  3310. --bs-gutter-x: 1.5rem;
  3311. --bs-gutter-y: 1rem;
  3312. display: -webkit-box;
  3313. display: -ms-flexbox;
  3314. display: flex;
  3315. -ms-flex-wrap: wrap;
  3316. flex-wrap: wrap;
  3317. margin-top: calc(var(--bs-gutter-y) * -1);
  3318. margin-right: calc(var(--bs-gutter-x) / -2);
  3319. margin-left: calc(var(--bs-gutter-x) / -2);
  3320. }
  3321. .row > * {
  3322. -ms-flex-negative: 0;
  3323. flex-shrink: 0;
  3324. width: 100%;
  3325. max-width: 100%;
  3326. padding-right: calc(var(--bs-gutter-x) / 2);
  3327. padding-left: calc(var(--bs-gutter-x) / 2);
  3328. margin-top: var(--bs-gutter-y);
  3329. }
  3330. .col {
  3331. -webkit-box-flex: 1;
  3332. -ms-flex: 1 0 0%;
  3333. flex: 1 0 0%;
  3334. }
  3335. .w-50 {
  3336. width: 50% !important;
  3337. }
  3338. .h-100 {
  3339. height: 100% !important;
  3340. }
  3341. .row-cols-auto > * {
  3342. -webkit-box-flex: 0;
  3343. -ms-flex: 0 0 auto;
  3344. flex: 0 0 auto;
  3345. width: auto;
  3346. }
  3347. .row-cols-1 > * {
  3348. -webkit-box-flex: 0;
  3349. -ms-flex: 0 0 auto;
  3350. flex: 0 0 auto;
  3351. width: 100%;
  3352. }
  3353. .row-cols-2 > * {
  3354. -webkit-box-flex: 0;
  3355. -ms-flex: 0 0 auto;
  3356. flex: 0 0 auto;
  3357. width: 50%;
  3358. }
  3359. .row-cols-3 > * {
  3360. -webkit-box-flex: 0;
  3361. -ms-flex: 0 0 auto;
  3362. flex: 0 0 auto;
  3363. width: 33.3333333333%;
  3364. }
  3365. .row-cols-4 > * {
  3366. -webkit-box-flex: 0;
  3367. -ms-flex: 0 0 auto;
  3368. flex: 0 0 auto;
  3369. width: 25%;
  3370. }
  3371. .row-cols-5 > * {
  3372. -webkit-box-flex: 0;
  3373. -ms-flex: 0 0 auto;
  3374. flex: 0 0 auto;
  3375. width: 20%;
  3376. }
  3377. .row-cols-6 > * {
  3378. -webkit-box-flex: 0;
  3379. -ms-flex: 0 0 auto;
  3380. flex: 0 0 auto;
  3381. width: 16.6666666667%;
  3382. }
  3383. .d-grid {
  3384. display: -ms-grid !important;
  3385. display: grid !important;
  3386. }
  3387. @media (min-width: 576px) {
  3388. .col-sm {
  3389. -webkit-box-flex: 1;
  3390. -ms-flex: 1 0 0%;
  3391. flex: 1 0 0%;
  3392. }
  3393. .row-cols-sm-auto > * {
  3394. -webkit-box-flex: 0;
  3395. -ms-flex: 0 0 auto;
  3396. flex: 0 0 auto;
  3397. width: auto;
  3398. }
  3399. .row-cols-sm-1 > * {
  3400. -webkit-box-flex: 0;
  3401. -ms-flex: 0 0 auto;
  3402. flex: 0 0 auto;
  3403. width: 100%;
  3404. }
  3405. .row-cols-sm-2 > * {
  3406. -webkit-box-flex: 0;
  3407. -ms-flex: 0 0 auto;
  3408. flex: 0 0 auto;
  3409. width: 50%;
  3410. }
  3411. .row-cols-sm-3 > * {
  3412. -webkit-box-flex: 0;
  3413. -ms-flex: 0 0 auto;
  3414. flex: 0 0 auto;
  3415. width: 33.3333333333%;
  3416. }
  3417. .row-cols-sm-4 > * {
  3418. -webkit-box-flex: 0;
  3419. -ms-flex: 0 0 auto;
  3420. flex: 0 0 auto;
  3421. width: 25%;
  3422. }
  3423. .row-cols-sm-5 > * {
  3424. -webkit-box-flex: 0;
  3425. -ms-flex: 0 0 auto;
  3426. flex: 0 0 auto;
  3427. width: 20%;
  3428. }
  3429. .row-cols-sm-6 > * {
  3430. -webkit-box-flex: 0;
  3431. -ms-flex: 0 0 auto;
  3432. flex: 0 0 auto;
  3433. width: 16.6666666667%;
  3434. }
  3435. .p-sm-1 {
  3436. padding: 0.25rem !important;
  3437. }
  3438. .p-sm-2 {
  3439. padding: 0.5rem !important;
  3440. }
  3441. .p-sm-3 {
  3442. padding: 1rem !important;
  3443. }
  3444. .p-sm-4 {
  3445. padding: 1.5rem !important;
  3446. }
  3447. .p-sm-5 {
  3448. padding: 3rem !important;
  3449. }
  3450. }
  3451. @media (min-width: 992px) {
  3452. .col-lg {
  3453. -webkit-box-flex: 1;
  3454. -ms-flex: 1 0 0%;
  3455. flex: 1 0 0%;
  3456. }
  3457. .row-cols-lg-auto > * {
  3458. -webkit-box-flex: 0;
  3459. -ms-flex: 0 0 auto;
  3460. flex: 0 0 auto;
  3461. width: auto;
  3462. }
  3463. .row-cols-lg-1 > * {
  3464. -webkit-box-flex: 0;
  3465. -ms-flex: 0 0 auto;
  3466. flex: 0 0 auto;
  3467. width: 100%;
  3468. }
  3469. .row-cols-lg-2 > * {
  3470. -webkit-box-flex: 0;
  3471. -ms-flex: 0 0 auto;
  3472. flex: 0 0 auto;
  3473. width: 50%;
  3474. }
  3475. .row-cols-lg-3 > * {
  3476. -webkit-box-flex: 0;
  3477. -ms-flex: 0 0 auto;
  3478. flex: 0 0 auto;
  3479. width: 33.3333333333%;
  3480. }
  3481. .row-cols-lg-4 > * {
  3482. -webkit-box-flex: 0;
  3483. -ms-flex: 0 0 auto;
  3484. flex: 0 0 auto;
  3485. width: 25%;
  3486. }
  3487. .row-cols-lg-5 > * {
  3488. -webkit-box-flex: 0;
  3489. -ms-flex: 0 0 auto;
  3490. flex: 0 0 auto;
  3491. width: 20%;
  3492. }
  3493. .row-cols-lg-6 > * {
  3494. -webkit-box-flex: 0;
  3495. -ms-flex: 0 0 auto;
  3496. flex: 0 0 auto;
  3497. width: 16.6666666667%;
  3498. }
  3499. .row-cols-lg-6 > * {
  3500. -webkit-box-flex: 0;
  3501. -ms-flex: 0 0 auto;
  3502. flex: 0 0 auto;
  3503. width: 14.2857142857%;
  3504. }
  3505. }
  3506. @media (min-width: 1400px) {
  3507. .col-xxl {
  3508. -webkit-box-flex: 1;
  3509. -ms-flex: 1 0 0%;
  3510. flex: 1 0 0%;
  3511. }
  3512. .row-cols-xxl-auto > * {
  3513. -webkit-box-flex: 0;
  3514. -ms-flex: 0 0 auto;
  3515. flex: 0 0 auto;
  3516. width: auto;
  3517. }
  3518. .row-cols-xxl-1 > * {
  3519. -webkit-box-flex: 0;
  3520. -ms-flex: 0 0 auto;
  3521. flex: 0 0 auto;
  3522. width: 100%;
  3523. }
  3524. .row-cols-xxl-2 > * {
  3525. -webkit-box-flex: 0;
  3526. -ms-flex: 0 0 auto;
  3527. flex: 0 0 auto;
  3528. width: 50%;
  3529. }
  3530. .row-cols-xxl-3 > * {
  3531. -webkit-box-flex: 0;
  3532. -ms-flex: 0 0 auto;
  3533. flex: 0 0 auto;
  3534. width: 33.3333333333%;
  3535. }
  3536. .row-cols-xxl-4 > * {
  3537. -webkit-box-flex: 0;
  3538. -ms-flex: 0 0 auto;
  3539. flex: 0 0 auto;
  3540. width: 25%;
  3541. }
  3542. .row-cols-xxl-5 > * {
  3543. -webkit-box-flex: 0;
  3544. -ms-flex: 0 0 auto;
  3545. flex: 0 0 auto;
  3546. width: 20%;
  3547. }
  3548. .row-cols-xxl-6 > * {
  3549. -webkit-box-flex: 0;
  3550. -ms-flex: 0 0 auto;
  3551. flex: 0 0 auto;
  3552. width: 16.6666666667%;
  3553. }
  3554. }
  3555. .toggle,
  3556. [id^=drop] {
  3557. display: none;
  3558. }
  3559. /* Giving a background-color to the nav container. */
  3560. nav {
  3561. margin: 0;
  3562. padding: 0;
  3563. background-color: #FFFFFF;
  3564. }
  3565. #logo {
  3566. display: block;
  3567. padding: 0 30px;
  3568. float: left;
  3569. font-size: 20px;
  3570. /* line-height: 60px; */
  3571. color: #FFF;
  3572. }
  3573. /* Since we'll have the "ul li" "float:left"
  3574. * we need to add a clear after the container. */
  3575. nav:after {
  3576. content: "";
  3577. display: table;
  3578. clear: both;
  3579. }
  3580. /* Removing padding, margin and "list-style" from the "ul",
  3581. * and adding "position:reltive" */
  3582. nav ul {
  3583. float: right;
  3584. padding: 0;
  3585. margin: 0;
  3586. list-style: none;
  3587. position: relative;
  3588. }
  3589. /* Positioning the navigation items inline */
  3590. nav ul li {
  3591. margin: 0px;
  3592. float: left;
  3593. background-color: #FFFFFF;
  3594. }
  3595. /* Styling the links */
  3596. nav a {
  3597. display: block;
  3598. padding: 14px 20px;
  3599. color: #656565;
  3600. font-size: 12pt;
  3601. font-weight: 400;
  3602. text-decoration: none;
  3603. }
  3604. /* nav ul li ul li:hover { background: #000000; } */
  3605. /* Background color change on Hover */
  3606. nav a:hover {
  3607. background-color: #78AD42;
  3608. color: #fff;
  3609. text-decoration: none;
  3610. }
  3611. /* Hide Dropdowns by Default
  3612. * and giving it a position of absolute */
  3613. nav ul ul {
  3614. display: none;
  3615. position: absolute;
  3616. /* has to be the same number as the "line-height" of "nav a" */
  3617. /* top: 60px; */
  3618. top: 50px;
  3619. }
  3620. /* Display Dropdowns on Hover */
  3621. nav ul li:hover > ul {
  3622. display: inherit;
  3623. }
  3624. /* Fisrt Tier Dropdown */
  3625. nav ul ul li {
  3626. width: 170px;
  3627. float: none;
  3628. display: list-item;
  3629. position: relative;
  3630. }
  3631. /* Second, Third and more Tiers
  3632. * We move the 2nd and 3rd etc tier dropdowns to the left
  3633. * by the amount of the width of the first tier.
  3634. */
  3635. nav ul ul ul li {
  3636. position: relative;
  3637. top: -60px;
  3638. /* has to be the same number as the "width" of "nav ul ul li" */
  3639. left: 170px;
  3640. }
  3641. /* Change ' +' in order to change the Dropdown symbol */
  3642. li > a:after {
  3643. content: ' +';
  3644. }
  3645. li > a:only-child:after {
  3646. content: '';
  3647. }
  3648. /* Media Queries
  3649. --------------------------------------------- */
  3650. @media all and (max-width: 768px) {
  3651. #logo {
  3652. display: block;
  3653. padding: 0;
  3654. width: 100%;
  3655. text-align: center;
  3656. float: none;
  3657. }
  3658. nav {
  3659. margin: 0;
  3660. }
  3661. /* Hide the navigation menu by default */
  3662. /* Also hide the */
  3663. .toggle + a,
  3664. .menu {
  3665. display: none;
  3666. }
  3667. /* Stylinf the toggle lable */
  3668. .toggle {
  3669. display: block;
  3670. /* background-color: #FFFFFF; */
  3671. padding: 14px 20px;
  3672. color: #656565;
  3673. font-size: 17px;
  3674. text-decoration: none;
  3675. border: none;
  3676. }
  3677. .toggle:hover {
  3678. /* background-color: #000000; */
  3679. color: #78AD42;
  3680. }
  3681. /* Display Dropdown when clicked on Parent Lable */
  3682. [id^=drop]:checked + ul {
  3683. display: block;
  3684. }
  3685. /* Change menu item's width to 100% */
  3686. nav ul li {
  3687. display: block;
  3688. width: 100%;
  3689. font-weight: 600;
  3690. }
  3691. nav ul ul .toggle,
  3692. nav ul ul a {
  3693. padding: 0 40px;
  3694. }
  3695. nav ul ul ul a {
  3696. padding: 0 80px;
  3697. }
  3698. nav a:hover,
  3699. nav ul ul ul a {
  3700. background-color: #78AD42;
  3701. }
  3702. nav ul li ul li .toggle,
  3703. nav ul ul a,
  3704. nav ul ul ul a {
  3705. padding: 14px 20px;
  3706. color: #FFF;
  3707. font-size: 17px;
  3708. }
  3709. nav ul li ul li .toggle,
  3710. nav ul ul a {
  3711. background-color: #212121;
  3712. }
  3713. /* Hide Dropdowns by Default */
  3714. nav ul ul {
  3715. float: none;
  3716. position: static;
  3717. color: #ffffff;
  3718. /* has to be the same number as the "line-height" of "nav a" */
  3719. }
  3720. /* Hide menus on hover */
  3721. nav ul ul li:hover > ul,
  3722. nav ul li:hover > ul {
  3723. display: none;
  3724. }
  3725. /* Fisrt Tier Dropdown */
  3726. nav ul ul li {
  3727. display: block;
  3728. width: 100%;
  3729. }
  3730. nav ul ul ul li {
  3731. position: static;
  3732. /* has to be the same number as the "width" of "nav ul ul li" */
  3733. }
  3734. }
  3735. @media all and (max-width: 330px) {
  3736. nav ul li {
  3737. display: block;
  3738. width: 94%;
  3739. }
  3740. }
  3741. .widget {
  3742. margin-bottom: 30px;
  3743. padding-bottom: 35px;
  3744. }
  3745. .widget .widget-title {
  3746. margin-bottom: 15px;
  3747. padding-bottom: 10px;
  3748. font-size: 16px;
  3749. color: #333;
  3750. font-weight: 500;
  3751. border-bottom: 1px solid #dedede;
  3752. }
  3753. .widget.widget-latest-post .media .media-object {
  3754. width: 100px;
  3755. height: auto;
  3756. }
  3757. .widget.widget-latest-post .media .media-heading a {
  3758. color: #000;
  3759. font-size: 16px;
  3760. }
  3761. .widget.widget-latest-post .media p {
  3762. font-size: 12px;
  3763. color: #808080;
  3764. }
  3765. .widget.widget-category ul li {
  3766. margin-bottom: 10px;
  3767. }
  3768. .widget.widget-category ul li a {
  3769. color: #837f7e;
  3770. -webkit-transition: all 0.3s ease;
  3771. transition: all 0.3s ease;
  3772. }
  3773. .widget.widget-category ul li a:before {
  3774. padding-right: 10px;
  3775. }
  3776. .widget.widget-category ul li a:hover {
  3777. color: #655E7A;
  3778. padding-left: 5px;
  3779. }
  3780. .widget.widget-tag ul li {
  3781. margin-bottom: 10px;
  3782. display: inline-block;
  3783. margin-right: 5px;
  3784. }
  3785. .widget.widget-tag ul li a {
  3786. color: #837f7e;
  3787. display: inline-block;
  3788. padding: 8px 15px;
  3789. border: 1px solid #dedede;
  3790. border-radius: 30px;
  3791. font-size: 14px;
  3792. -webkit-transition: all 0.3s ease;
  3793. transition: all 0.3s ease;
  3794. }
  3795. .widget.widget-tag ul li a:hover {
  3796. color: #fff;
  3797. background: #655E7A;
  3798. border: 1px solid #655E7A;
  3799. }
  3800. .list-group {
  3801. display: -webkit-box;
  3802. display: -ms-flexbox;
  3803. display: flex;
  3804. -webkit-box-orient: vertical;
  3805. -webkit-box-direction: normal;
  3806. -ms-flex-direction: column;
  3807. flex-direction: column;
  3808. padding-left: 0;
  3809. margin-bottom: 0;
  3810. border-radius: 0.25rem;
  3811. }
  3812. .list-group-item {
  3813. position: relative;
  3814. display: block;
  3815. padding: 0.5rem 1rem;
  3816. text-decoration: none;
  3817. background-color: #fff;
  3818. border: 1px solid rgba(0, 0, 0, 0.125);
  3819. }
  3820. .list-group-item.active {
  3821. z-index: 2;
  3822. color: #fff;
  3823. background-color: #78AD42;
  3824. border-color: #78AD42;
  3825. }
  3826. .d-none {
  3827. display: none !important;
  3828. }
  3829. .d-block {
  3830. display: block !important;
  3831. }
  3832. @media (min-width: 576px) {
  3833. .d-sm-block {
  3834. display: block !important;
  3835. }
  3836. }
  3837. @media (min-width: 768px) {
  3838. .d-md-block {
  3839. display: block !important;
  3840. }
  3841. .d-md-none {
  3842. display: none !important;
  3843. }
  3844. }
  3845. @media (min-width: 992px) {
  3846. .d-lg-none {
  3847. display: none !important;
  3848. }
  3849. }
  3850. input[type="radio"][class="style"]:checked + label {
  3851. color: white;
  3852. background: #6666ff;
  3853. }
  3854. .align-items-center {
  3855. -webkit-box-align: center !important;
  3856. -ms-flex-align: center !important;
  3857. align-items: center !important;
  3858. }
  3859. .order-1 {
  3860. -webkit-box-ordinal-group: 2 !important;
  3861. -ms-flex-order: 1 !important;
  3862. order: 1 !important;
  3863. }
  3864. .order-2 {
  3865. -webkit-box-ordinal-group: 3 !important;
  3866. -ms-flex-order: 2 !important;
  3867. order: 2 !important;
  3868. }
  3869. .title {
  3870. font-size: 1.3rem;
  3871. }
  3872. .footer {
  3873. color: #656565;
  3874. }
  3875. .footer a {
  3876. color: #656565;
  3877. text-decoration: none;
  3878. }
  3879. .footer a:hover {
  3880. color: #78AD42;
  3881. }
  3882. .footer h3 {
  3883. color: black;
  3884. font-weight: 600;
  3885. padding-bottom: 20px;
  3886. }
  3887. .footer .link {
  3888. padding-bottom: 20px;
  3889. }
  3890. @media (min-width: 992px) {
  3891. .order-lg-1 {
  3892. -webkit-box-ordinal-group: 2 !important;
  3893. -ms-flex-order: 1 !important;
  3894. order: 1 !important;
  3895. }
  3896. .order-lg-2 {
  3897. -webkit-box-ordinal-group: 3 !important;
  3898. -ms-flex-order: 2 !important;
  3899. order: 2 !important;
  3900. }
  3901. }
  3902. /* Airspace Template SCSS */
  3903. .w-25 {
  3904. width: 25% !important;
  3905. }
  3906. .w-50 {
  3907. width: 50% !important;
  3908. }
  3909. .w-75 {
  3910. width: 75% !important;
  3911. }
  3912. .w-100 {
  3913. width: 100% !important;
  3914. }
  3915. /* 顏色設定 */
  3916. section-style, .section1, .section2, .section3, .section4, .section5, .section6, .section7, .section8, .section9, .section10, .section11 {
  3917. padding: 80px 0;
  3918. }
  3919. 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 {
  3920. line-height: 20px;
  3921. }
  3922. 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 {
  3923. width: 100%;
  3924. }
  3925. 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 {
  3926. padding-top: 30px;
  3927. }
  3928. 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 {
  3929. padding: 0 30px;
  3930. }
  3931. @media (min-width: 992px) {
  3932. 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 {
  3933. padding: 0 50px;
  3934. }
  3935. }
  3936. 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 {
  3937. padding-bottom: 5px;
  3938. font-size: 0.8rem;
  3939. color: #666666;
  3940. }
  3941. 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 {
  3942. color: #000;
  3943. }
  3944. .section1 table {
  3945. border-collapse: collapse;
  3946. }
  3947. .section1 td {
  3948. border: none;
  3949. }
  3950. .section2 {
  3951. background-color: #F2F2F2;
  3952. }
  3953. .section5 {
  3954. background-color: #ECECEC;
  3955. }
  3956. .section5 .card {
  3957. background-color: #ECECEC;
  3958. }
  3959. .section6 {
  3960. color: #666666;
  3961. }
  3962. .section6 h2 {
  3963. color: #000;
  3964. }
  3965. .section7 {
  3966. padding: 40px 0;
  3967. margin-bottom: 60px;
  3968. color: #666666;
  3969. background-color: #F2F2F2;
  3970. }
  3971. .section7 a {
  3972. color: #000;
  3973. font-weight: 600;
  3974. padding: 0 15px;
  3975. }
  3976. .section7 a:hover {
  3977. color: #78AD42;
  3978. text-decoration: none;
  3979. }
  3980. .section8 {
  3981. color: #666666;
  3982. }
  3983. .section8 h2 {
  3984. font-weight: 600;
  3985. color: #000;
  3986. }
  3987. .section8 p {
  3988. font-size: 0.8rem;
  3989. color: #666666;
  3990. }
  3991. .section9 {
  3992. color: #666666;
  3993. }
  3994. .section9 h1 {
  3995. font-weight: 600;
  3996. color: #000;
  3997. }
  3998. .section9 h2 {
  3999. font-weight: 600;
  4000. color: #000;
  4001. }
  4002. .section9 p {
  4003. font-size: 0.8rem;
  4004. color: #666666;
  4005. }
  4006. .section9 .title {
  4007. color: #000;
  4008. }
  4009. .section10 {
  4010. font-weight: 600;
  4011. }
  4012. .section10 .l1 {
  4013. font-size: 0.8rem;
  4014. margin-top: 60px;
  4015. color: #B4B4B4;
  4016. }
  4017. .section10 .l2 {
  4018. font-size: 0.8rem;
  4019. color: #D1C7A8;
  4020. }
  4021. .section10 .l3 {
  4022. font-size: 0.8rem;
  4023. color: #A5AA91;
  4024. }
  4025. .section11 {
  4026. background-color: #ECECEC;
  4027. }
  4028. .section12 {
  4029. color: #666666;
  4030. }
  4031. .section12 h2 {
  4032. font-weight: 600;
  4033. color: #000;
  4034. }
  4035. .section {
  4036. padding: 80px 0;
  4037. }
  4038. .section-title {
  4039. margin-bottom: 70px;
  4040. }
  4041. .section-title h2 {
  4042. text-transform: uppercase;
  4043. font-size: 28px;
  4044. font-weight: 600;
  4045. }
  4046. .section-title p {
  4047. color: #666;
  4048. }
  4049. amp-accordion h5 {
  4050. padding: 15px;
  4051. font-weight: 600;
  4052. }
  4053. amp-accordion div {
  4054. padding: 15px;
  4055. }
  4056. amp-accordion div .start {
  4057. padding-top: 20px;
  4058. }
  4059. .background-image1 {
  4060. background-image: url("/img/home/1.webp");
  4061. background-repeat: no-repeat;
  4062. background-size: cover;
  4063. background-attachment: fixed;
  4064. background-position: center center;
  4065. padding: 110px 0;
  4066. position: relative;
  4067. color: #fff;
  4068. }
  4069. @media (max-width: 768px) {
  4070. .background-image1 {
  4071. background-attachment: scroll;
  4072. padding: 100px 0;
  4073. }
  4074. .background-image1 h1 {
  4075. font-size: 35px;
  4076. }
  4077. }
  4078. .background-image1 .block {
  4079. color: #E3E3E4;
  4080. }
  4081. .background-image1 .block h1 {
  4082. font-weight: 600;
  4083. line-height: 60px;
  4084. letter-spacing: 10px;
  4085. padding-bottom: 15px;
  4086. }
  4087. .background-image1 .block p {
  4088. color: #fff;
  4089. font-size: 12pt;
  4090. line-height: 25px;
  4091. font-weight: 500;
  4092. }
  4093. .background-image2 {
  4094. background-image: url("/img/home/4.webp");
  4095. background-repeat: no-repeat;
  4096. background-size: cover;
  4097. background-attachment: fixed;
  4098. background-position: center center;
  4099. padding: 110px 0;
  4100. position: relative;
  4101. color: #fff;
  4102. }
  4103. @media (max-width: 768px) {
  4104. .background-image2 {
  4105. background-attachment: scroll;
  4106. padding: 100px 0;
  4107. }
  4108. .background-image2 h1 {
  4109. font-size: 35px;
  4110. }
  4111. }
  4112. .background-image2 .block {
  4113. color: #E3E3E4;
  4114. }
  4115. .background-image2 .block h1 {
  4116. font-weight: 600;
  4117. line-height: 60px;
  4118. letter-spacing: 10px;
  4119. padding-bottom: 15px;
  4120. }
  4121. .background-image2 .block p {
  4122. color: #fff;
  4123. font-size: 12pt;
  4124. line-height: 25px;
  4125. font-weight: 500;
  4126. }
  4127. .background-image3 {
  4128. background-image: url("/img/home/10.webp");
  4129. background-repeat: no-repeat;
  4130. background-size: cover;
  4131. background-attachment: fixed;
  4132. background-position: center center;
  4133. padding: 110px 0;
  4134. position: relative;
  4135. color: #fff;
  4136. }
  4137. @media (max-width: 768px) {
  4138. .background-image3 {
  4139. background-attachment: scroll;
  4140. padding: 100px 0;
  4141. }
  4142. .background-image3 h1 {
  4143. font-size: 35px;
  4144. }
  4145. }
  4146. .background-image3 .block {
  4147. color: #E3E3E4;
  4148. }
  4149. .background-image3 .block h1 {
  4150. font-weight: 600;
  4151. line-height: 60px;
  4152. letter-spacing: 10px;
  4153. padding-bottom: 15px;
  4154. }
  4155. .background-image3 .block p {
  4156. color: #fff;
  4157. font-size: 12pt;
  4158. line-height: 25px;
  4159. font-weight: 500;
  4160. }
  4161. .background-image3 .card-text {
  4162. padding-bottom: 5px;
  4163. font-size: 0.8rem;
  4164. }
  4165. .background-image4 {
  4166. background-image: url("/img/home/21.webp");
  4167. background-repeat: no-repeat;
  4168. background-size: cover;
  4169. background-attachment: fixed;
  4170. background-position: center center;
  4171. padding: 110px 0;
  4172. position: relative;
  4173. color: #fff;
  4174. }
  4175. @media (max-width: 768px) {
  4176. .background-image4 {
  4177. background-attachment: scroll;
  4178. padding: 100px 0;
  4179. }
  4180. .background-image4 h1 {
  4181. font-size: 35px;
  4182. }
  4183. }
  4184. .background-image4 .block {
  4185. color: #E3E3E4;
  4186. }
  4187. .background-image4 .block h1 {
  4188. font-weight: 600;
  4189. line-height: 60px;
  4190. letter-spacing: 10px;
  4191. padding-bottom: 15px;
  4192. }
  4193. .background-image4 .block p {
  4194. color: #fff;
  4195. font-size: 12pt;
  4196. line-height: 25px;
  4197. font-weight: 500;
  4198. }
  4199. .background-image5 {
  4200. background-image: url("/img/home/10.webp");
  4201. background-repeat: no-repeat;
  4202. background-size: cover;
  4203. background-attachment: fixed;
  4204. background-position: center center;
  4205. padding: 110px 0;
  4206. position: relative;
  4207. color: #fff;
  4208. }
  4209. @media (max-width: 768px) {
  4210. .background-image5 {
  4211. background-attachment: scroll;
  4212. padding: 100px 0;
  4213. }
  4214. .background-image5 h1 {
  4215. font-size: 35px;
  4216. }
  4217. }
  4218. .background-image5 .block {
  4219. color: #E3E3E4;
  4220. }
  4221. .background-image5 .block h1 {
  4222. font-weight: 600;
  4223. line-height: 60px;
  4224. letter-spacing: 10px;
  4225. padding-bottom: 15px;
  4226. }
  4227. .background-image5 .block p {
  4228. color: #fff;
  4229. font-size: 12pt;
  4230. line-height: 25px;
  4231. font-weight: 500;
  4232. }
  4233. .background-image5 p {
  4234. font-size: 0.8rem;
  4235. color: #fff;
  4236. }
  4237. .background-image6 {
  4238. background-image: url("/img/about/2.webp");
  4239. background-repeat: no-repeat;
  4240. background-size: cover;
  4241. background-attachment: fixed;
  4242. background-position: center center;
  4243. padding: 110px 0;
  4244. position: relative;
  4245. color: #fff;
  4246. }
  4247. @media (max-width: 768px) {
  4248. .background-image6 {
  4249. background-attachment: scroll;
  4250. padding: 100px 0;
  4251. }
  4252. .background-image6 h1 {
  4253. font-size: 35px;
  4254. }
  4255. }
  4256. .background-image6 .block {
  4257. color: #E3E3E4;
  4258. }
  4259. .background-image6 .block h1 {
  4260. font-weight: 600;
  4261. line-height: 60px;
  4262. letter-spacing: 10px;
  4263. padding-bottom: 15px;
  4264. }
  4265. .background-image6 .block p {
  4266. color: #fff;
  4267. font-size: 12pt;
  4268. line-height: 25px;
  4269. font-weight: 500;
  4270. }
  4271. .background-image6 p {
  4272. font-size: 0.8rem;
  4273. color: #fff;
  4274. }
  4275. .background-image7 {
  4276. background-image: url("/img/solid_wood_furniture/17.webp");
  4277. background-repeat: no-repeat;
  4278. background-size: cover;
  4279. background-attachment: fixed;
  4280. background-position: center center;
  4281. padding: 110px 0;
  4282. position: relative;
  4283. color: #fff;
  4284. }
  4285. @media (max-width: 768px) {
  4286. .background-image7 {
  4287. background-attachment: scroll;
  4288. padding: 100px 0;
  4289. }
  4290. .background-image7 h1 {
  4291. font-size: 35px;
  4292. }
  4293. }
  4294. .background-image7 .block {
  4295. color: #E3E3E4;
  4296. }
  4297. .background-image7 .block h1 {
  4298. font-weight: 600;
  4299. line-height: 60px;
  4300. letter-spacing: 10px;
  4301. padding-bottom: 15px;
  4302. }
  4303. .background-image7 .block p {
  4304. color: #fff;
  4305. font-size: 12pt;
  4306. line-height: 25px;
  4307. font-weight: 500;
  4308. }
  4309. .page-title, .page-title1, .page-title2 {
  4310. padding: 100px 0;
  4311. }
  4312. .page-title .block, .page-title1 .block, .page-title2 .block {
  4313. text-align: center;
  4314. }
  4315. .page-title .block h1, .page-title1 .block h1, .page-title2 .block h1 {
  4316. color: #fff;
  4317. font-weight: 200;
  4318. letter-spacing: 5px;
  4319. margin-top: 0;
  4320. text-transform: capitalize;
  4321. }
  4322. .page-title .block p, .page-title1 .block p, .page-title2 .block p {
  4323. color: #fff;
  4324. }
  4325. .page-title1 {
  4326. background-image: url("/img/room_planner/1.webp");
  4327. background-repeat: no-repeat;
  4328. background-size: cover;
  4329. background-attachment: fixed;
  4330. background-position: center center;
  4331. padding: 110px 0;
  4332. position: relative;
  4333. color: #fff;
  4334. }
  4335. @media (max-width: 768px) {
  4336. .page-title1 {
  4337. background-attachment: scroll;
  4338. padding: 100px 0;
  4339. }
  4340. .page-title1 h1 {
  4341. font-size: 35px;
  4342. }
  4343. }
  4344. .page-title1 .block {
  4345. color: #E3E3E4;
  4346. }
  4347. .page-title1 .block h1 {
  4348. font-weight: 600;
  4349. line-height: 60px;
  4350. letter-spacing: 10px;
  4351. padding-bottom: 15px;
  4352. }
  4353. .page-title1 .block p {
  4354. color: #fff;
  4355. font-size: 12pt;
  4356. line-height: 25px;
  4357. font-weight: 500;
  4358. }
  4359. .page-title2 {
  4360. background-image: url("/img/room_planner/1.webp");
  4361. background-repeat: no-repeat;
  4362. background-size: cover;
  4363. background-attachment: fixed;
  4364. background-position: center center;
  4365. padding: 110px 0;
  4366. position: relative;
  4367. color: #fff;
  4368. }
  4369. @media (max-width: 768px) {
  4370. .page-title2 {
  4371. background-attachment: scroll;
  4372. padding: 100px 0;
  4373. }
  4374. .page-title2 h1 {
  4375. font-size: 35px;
  4376. }
  4377. }
  4378. .page-title2 .block {
  4379. color: #E3E3E4;
  4380. }
  4381. .page-title2 .block h1 {
  4382. font-weight: 600;
  4383. line-height: 60px;
  4384. letter-spacing: 10px;
  4385. padding-bottom: 15px;
  4386. }
  4387. .page-title2 .block p {
  4388. color: #fff;
  4389. font-size: 12pt;
  4390. line-height: 25px;
  4391. font-weight: 500;
  4392. }
  4393. .overly, .page-title, .page-title1, .page-title2 {
  4394. position: relative;
  4395. }
  4396. .overly:before, .page-title:before, .page-title1:before, .page-title2:before {
  4397. content: '';
  4398. background: rgba(0, 0, 0, 0.51);
  4399. position: absolute;
  4400. top: 0;
  4401. left: 0;
  4402. right: 0;
  4403. bottom: 0;
  4404. }
  4405. /*# sourceMappingURL=chuz.css.map */