bootstrap3_xinhuoa.css 130 KB

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