index.html 100 KB

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